/* V163R11 — About page hero/context and section-heading alignment */
.about-page .about-section-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
}

.about-page .about-section-intro > h2,
.about-page .about-section-copy {
  min-width: 0;
}

.about-page .about-section-intro > h2 {
  margin: 0;
  max-width: 14ch;
  text-wrap: balance;
}

.about-page .about-section-copy {
  max-width: 62ch;
}

.about-page .about-section-copy p {
  margin: 0;
}

.about-page .about-section-copy p + p {
  margin-top: 18px;
}

/* At the same width where the site already moves to compact/mobile navigation,
   stack the section intro instead of squeezing two narrow columns. */
@media (max-width: 1100px) {
  .about-page .about-section-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-page .about-section-intro > h2 {
    max-width: 18ch;
  }

  .about-page .about-section-copy {
    max-width: 68ch;
  }
}

@media (max-width: 640px) {
  .about-page .about-section-intro {
    gap: 14px;
  }
}
