/* Leadership Development hub page — comparison-cards layout, chosen from
   the hub prototype review (src/_prototypes/hub-comparison-cards.njk /
   hub-comparison-cards.css). Two offer columns presented as a flat spec
   sheet so a visitor can scan facts and pick a path without reading
   narrative copy. Shared field/eyebrow/cta/section-body primitives live
   in sections.css.

   Per Decision 0028 (2026-07-30) the hub originally shipped with no
   independent transactional CTA of its own. Decision 0034 (2026-08-03)
   reversed that: a "still not sure which path fits" CTA now sits between
   The Difference section and the AI note, offering a direct conversation
   as a third option alongside the two Explore Mentorship/Coaching
   wayfinding links. */

.ld-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);
}

.ld-section {
  text-align: center;
}

.ld-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-5);
  text-align: left;
}

.ld-difference-note {
  font-size: 0.9rem;
  max-width: 55ch;
  margin: var(--space-5) auto 0;
  opacity: 0.75;
}

.ld-difference-note + .ld-difference-note {
  margin-top: var(--space-2);
}

.ld-card {
  background: var(--color-white);
  border-radius: 10px;
  padding: var(--space-5);
  border-top: 4px solid var(--color-medium-green);
}

.ld-card--coaching {
  border-top-color: var(--color-terracotta);
}

.ld-card-eyebrow {
  font-size: var(--step-small);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark-green);
  margin: 0 0 var(--space-2);
}

.ld-card--coaching .ld-card-eyebrow {
  color: var(--color-terracotta);
}

.ld-card-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-h2);
  margin: 0 0 var(--space-3);
}

.ld-card-detail {
  font-size: 0.95rem;
  margin: 0 0 var(--space-4);
  max-width: 45ch;
}

.ld-fact-list {
  list-style: none;
  margin: 0 0 var(--space-3);
  padding: 0;
}

.ld-fact-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: 0.9rem;
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(18, 35, 28, 0.1);
}

.ld-fact-list li span:first-child {
  font-weight: 700;
  opacity: 0.7;
}

.ld-fact-list li span:last-child {
  text-align: right;
}

.ld-card-goal {
  font-size: 0.95rem;
  font-weight: 600;
  padding: var(--space-3) 0;
  margin: 0 0 var(--space-4);
  border-top: 1px solid rgba(18, 35, 28, 0.1);
  border-bottom: 1px solid rgba(18, 35, 28, 0.1);
}

.ld-card-note {
  font-size: 0.85rem;
  opacity: 0.75;
  margin: 0 0 var(--space-2);
}

.ld-ai-text {
  font-size: var(--step-body-large);
  max-width: 65ch;
  margin: 0 auto;
}

.ld-fit-cta {
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}

.ld-fit-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-4);
}

.ld-fit-cta-text {
  font-weight: 600;
  font-size: var(--step-body-large);
  margin: 0;
  max-width: 38ch;
}

@media (max-width: 699px) {
  .ld-fit-cta {
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
  }
}

.ld-quote {
  max-width: 60ch;
  margin: 0 auto;
}

.ld-quote-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 0.96rem + 1.2vw, 1.75rem);
  line-height: 1.3;
  margin: 0 0 var(--space-3);
}

.ld-quote-attribution {
  font-size: var(--step-small);
  font-weight: 700;
  color: var(--color-dark-green);
  margin: 0;
}

@media (max-width: 859px) {
  .ld-grid {
    grid-template-columns: 1fr;
  }
}
