/* ============================================================
   Leadership Page
   Source: _design-reference/redesign/leadership.html
   ============================================================ */

/* ── Hero ── */
.lead-hero {
  background: linear-gradient(135deg, #1F2A3D 0%, #2C3E5A 100%);
  overflow: hidden;
}

.lead-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.lead-hero__text {
  padding: 80px 64px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.lead-hero__eyebrow {
  font-size: 11px;
  font-weight: 800;
  color: var(--apoh-green);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lead-hero__title {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 24px;
  color: #fff;
}

.lead-hero__title em {
  font-style: italic;
  font-family: var(--font-slab);
  color: var(--apoh-green);
}

.lead-hero__lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 32px;
  max-width: 480px;
}

.lead-hero__roster {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.lead-hero__roster-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lead-hero__roster-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--apoh-green);
  flex-shrink: 0;
}

.lead-hero__roster-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.lead-hero__roster-label strong {
  color: #fff;
}

.lead-hero__photo {
  position: relative;
  overflow: hidden;
}

.lead-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.lead-hero__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(31, 42, 61, 0.35) 0%, transparent 40%);
}

/* ── Intro Band ── */
.lead-intro {
  background: #fff;
  padding: 64px 48px;
  border-bottom: 1px solid #EAEAE7;
}

.lead-intro__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.lead-intro__inner p {
  font-size: 18px;
  line-height: 1.75;
  color: #585961;
  margin: 0 0 20px;
}

.lead-intro__inner p:last-child {
  margin-bottom: 0;
}

/* ── Leader Cards ── */
.lead-cards {
  background: #FAFAF9;
  padding: 72px 48px 80px;
  border-bottom: 1px solid #EAEAE7;
}

.lead-cards__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.lead-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #EAEAE7;
  box-shadow: 0 4px 24px rgba(31, 42, 61, 0.06);
}

/* Alternate: odd cards have background tint */
.lead-card:nth-child(even) {
  background: #FAFAF9;
}

/* Flipped card — photo on right, bio on left */
.lead-card--flipped .lead-card__photo {
  order: 1;
}

.lead-card--flipped .lead-card__bio {
  order: 0;
}

.lead-card__photo {
  position: relative;
  min-height: 520px;
}

.lead-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.lead-card__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
}

.lead-card__bio {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lead-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.lead-card__badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lead-card__badge-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lead-card__name {
  font-size: 36px;
  font-weight: 900;
  color: #1F2A3D;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 6px;
}

.lead-card__org {
  font-size: 14px;
  color: #9A9CA3;
  font-weight: 600;
  margin: 0 0 28px;
}

.lead-card__divider {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.lead-card__text p {
  font-size: 15px;
  line-height: 1.75;
  color: #585961;
  margin: 0 0 16px;
}

.lead-card__text p:last-child {
  margin-bottom: 0;
}

/* ── Founder Quote ── */
.lead-quote {
  background: #fff;
  padding: 80px 48px;
}

.lead-quote__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.lead-quote__block {
  text-align: center;
  margin-bottom: 64px;
}

.lead-quote__mark {
  font-size: 48px;
  color: var(--apoh-blue);
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.lead-quote__text {
  font-size: 28px;
  font-weight: 700;
  color: #1F2A3D;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin: 0 auto 20px;
  max-width: 720px;
  text-wrap: balance;
}

.lead-quote__attr {
  font-size: 14px;
  color: #9A9CA3;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.lead-quote__photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px -16px rgba(31, 42, 61, 0.18);
}

.lead-quote__photo img {
  width: 100%;
  display: block;
  max-height: 540px;
  object-fit: cover;
  object-position: center;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .lead-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .lead-hero__text {
    padding: 48px 24px 40px;
  }

  .lead-hero__title {
    font-size: 36px;
  }

  .lead-hero__photo {
    min-height: 300px;
  }

  .lead-hero__roster {
    flex-direction: column;
    gap: 10px;
  }

  .lead-intro {
    padding: 48px 24px;
  }

  .lead-intro__inner p {
    font-size: 16px;
  }

  .lead-cards {
    padding: 48px 24px 56px;
  }

  .lead-card {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .lead-card--flipped .lead-card__photo {
    order: 0;
  }

  .lead-card--flipped .lead-card__bio {
    order: 1;
  }

  .lead-card__photo {
    min-height: 280px;
  }

  .lead-card__bio {
    padding: 32px 24px;
  }

  .lead-card__name {
    font-size: 28px;
  }

  .lead-quote {
    padding: 48px 24px;
  }

  .lead-quote__text {
    font-size: 22px;
  }

  .lead-quote__block {
    margin-bottom: 40px;
  }

  .lead-quote__photo {
    border-radius: 16px;
  }
}
