/* About page. Hero now matches the Ink treatment shared by Home, the
   Leadership Development hub and the three detail pages (Decision 0022
   superseded per the About Page Feedback Session 1 revision: the face
   logo moved out of the hero into the bio section, so the earlier
   logo-legibility reason for keeping the hero on Paper no longer
   applies). The Career Scope band keeps its own bold color field, the
   one carve-out Decision 0022 always allowed for About. Shared field/
   eyebrow/cta/section-body primitives live in sections.css. */

.ab-hero-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
  line-height: 1.1;
  max-width: 22ch;
  margin: 0 auto var(--space-4);
}

.ab-bio {
  text-align: left;
}

.ab-bio-inner {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: var(--space-5);
  align-items: start;
}

.ab-bio-image {
  width: 100%;
  height: auto;
}

.ab-bio-text h2 {
  margin-left: 0;
  max-width: 28ch;
}

.ab-scope h2 {
  max-width: 24ch;
}

.ab-scope-list {
  list-style: none;
  margin: var(--space-5) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  text-align: left;
}

.ab-scope-item dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-h3);
  color: var(--color-light-green);
  margin: 0 0 var(--space-2);
}

.ab-scope-item dd {
  font-size: 0.95rem;
  margin: 0;
}

.ab-approach {
  text-align: left;
}

.ab-approach-inner .section-body {
  max-width: none;
}

.ab-linkedin {
  margin-top: var(--space-4);
}

.ab-linkedin a {
  font-weight: 600;
  color: var(--color-dark-green);
}

.ab-fit-cta {
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}

.ab-fit-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-4);
}

.ab-fit-cta-text {
  font-weight: 600;
  font-size: var(--step-body-large);
  margin: 0;
  max-width: 38ch;
}

@media (max-width: 699px) {
  .ab-fit-cta {
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
  }
}

@media (max-width: 699px) {
  .ab-bio-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .ab-bio-image {
    max-width: 200px;
  }

  .ab-bio-text {
    text-align: left;
  }

  .ab-scope-list {
    grid-template-columns: 1fr;
  }
}
