/* About page: show the client-provided team photo without text over the crew. */
.hero--team { padding: 48px 0; }
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}
.about-hero-copy { min-width: 0; }
.about-hero-photo { overflow: hidden; border-radius: var(--radius-lg); }
.about-hero-photo img { display: block; width: 100%; height: auto; }
@media (max-width: 900px) {
  .hero--team { padding: 32px 0 40px; }
  .about-hero-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .about-hero-photo { order: -1; }
}
