/* A balanced two-column team section, scoped to the About page. */
body[data-page="about"] .about-people .people-layout {
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
body[data-page="about"] .about-people h2 {
  font-size: clamp(2.2rem, 3.6vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
}
body[data-page="about"] .about-people p {
  max-width: 44ch;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0;
}
body[data-page="about"] .about-people .collaboration-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  margin: 0;
  border-radius: 12px;
}
body[data-page="about"] .about-people .collaboration-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 800px) {
  body[data-page="about"] .about-people .people-layout { grid-template-columns: 1fr; gap: 32px; }
  body[data-page="about"] .about-people p { max-width: 60ch; }
  body[data-page="about"] .about-people h2 { font-size: clamp(2rem, 7vw, 3rem); }
}
