/* ==========================================================================
   About page only — intro band, story text column, values/credentials grid.
   Buttons/cards/section-headings/CTA band/footer live in components.css.
   ========================================================================== */

.about-intro {
  padding: var(--space-8) 0;
  text-align: center;
}

.about-lede {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.story {
  padding: var(--space-8) 0;
}

.story-content {
  max-width: 720px;
  margin: 0 auto;
}

.story-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.story-content p:last-child {
  margin-bottom: 0;
}

.values {
  padding: var(--space-8) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

/* Explicit column counts (4 / 2 / 1) rather than auto-fit(minmax(...)):
   with exactly 4 cards, auto-fit can land on a width where only 3 columns
   fit, stranding the 4th card alone on its own row. Stepping straight from
   4 to 2 columns guarantees an even 2x2 layout instead. */
@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
