/* ============================================================================
   about.css — standalone /about page
   Loaded after index.css - reuses .kicker/.cta-button/.link-underline/
   .footer-cta-section/.stat-list/.stat-row/main{max-width} from there, plus
   tokens from base.css. The first-fold hero reuses .hero-section/.hero-grid/
   .hero-main/.hero-title/.hero-sub/.hero-media.duotone wholesale (same
   markup as the homepage hero) rather than a new style, so no hero rules
   live in this file. Photo gallery is the shared partials/photo-gallery.html
   + photo-gallery.css. This file covers what's unique to this page.
   ========================================================================== */

/* ---------- What is BNI --------------------------------------------------- */

.ab-bni {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-bottom: 1px solid var(--color-line);
}

.ab-bni-copy h2 {
  margin: 8px 0 0;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 800;
  color: var(--color-ink);
}

.ab-bni-copy p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-body);
  max-width: 560px;
}

.ab-bni-copy p strong {
  color: var(--color-ink);
}

.ab-bni-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-line-soft);
  border: 1px solid var(--color-line-soft);
}

.ab-bni-stat {
  background: var(--color-panel);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ab-bni-stat .num {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--color-ink);
}

.ab-bni-stat .label {
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-text-muted);
}

/* ---------- Who we are (identity + values + stats + leadership) ----------- */

.ab-us {
  padding: 40px 20px;
  border-bottom: 1px solid var(--color-line);
}

.ab-us h2 {
  margin: 8px 0 0;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 800;
  color: var(--color-ink);
}

.ab-us h2 .tint {
  font-weight: 400;
  color: var(--color-text-tint);
}

.ab-us > p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-body);
  max-width: 620px;
}

.ab-values {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ab-value {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 8px 12px;
  border: 1px solid var(--color-line-soft);
}

/* the stat rows reuse .stat-list/.stat-row from index.css (same component
   as the homepage hero) rather than a grid. */
.ab-us .stat-list {
  margin-top: 24px;
  border-top: 1px solid var(--color-line-soft);
}

/* ---------- Leadership team -------------------------------------------- */

.ab-leadership {
  margin-top: 32px;
}

.ab-leadership-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

.ab-leadership-head h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-ink);
}

.ab-leadership-term {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--color-text-faint);
}

/* flex, not grid - the President/VP/Secretary Treasurer cells are each
   independently optional, so the count showing can be 1, 2 or 3. A grid's
   fixed track count leaves empty cells when a row doesn't fill; flex-wrap
   just lets whatever's present take the row. */
.ab-leaders {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--color-line-soft);
  border: 1px solid var(--color-line-soft);
}

.ab-leader {
  flex: 1 1 280px;
  background: var(--color-paper);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.ab-leader-photo {
  flex: none;
  width: 150px;
  height: 150px;
  background: var(--color-ink);
  overflow: hidden;
}

.ab-leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-leader-info {
  min-width: 0;    /* without it, the meta line's text pushes this flex item past the card's edge - see the same fix on .directory-card */
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ab-leader .role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}

.ab-leader .name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-ink);
}

.ab-leader .meta {
  font-size: 12px;
  color: var(--color-text-muted);
}

@media screen and (min-width: 1024px) {
  .ab-bni,
  .ab-us {
    padding-left: 60px;
    padding-right: 60px;
  }

  .ab-bni {
    flex-direction: row;
    gap: 60px;
    align-items: center;
  }

  .ab-bni-copy {
    flex: 1;
  }

  .ab-bni-copy h2,
  .ab-us h2 {
    font-size: 40px;
  }

  .ab-bni-stats {
    flex: none;
    width: 420px;
  }
}
