/* ============================================================
   MITCON Forum — Program Detail Page Styles
   Used on /programs/{slug}
   Depends on: tokens.css, base.css, home.css
   ============================================================ */

/* ============= BREADCRUMB ============= */
.prog-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 28px;
  padding-top: 20px;
}

.prog-breadcrumb a {
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.prog-breadcrumb a:hover {
  color: var(--accent);
}

.prog-breadcrumb span[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

/* ============= HERO BANNER ============= */
.prog-hero {
  background: var(--beige);
  padding: 100px 0 70px;
  position: relative;
  overflow: hidden;
}

.prog-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(61, 187, 133, 0.16), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.prog-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.prog-hero-content > * + * {
  margin-top: 18px;
}

.prog-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

.prog-hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.prog-hero-lead {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 580px;
}

.prog-hero-metric {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  margin-top: 24px !important;
}

.prog-hero-metric i {
  color: var(--accent);
  font-size: 18px;
}

.prog-hero-metric strong {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.prog-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px !important;
}

.prog-hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.prog-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.prog-hero-since {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 991px) {
  .prog-hero-grid { grid-template-columns: 1fr; }
  .prog-hero-visual { max-width: 540px; margin: 0 auto; }
}

@media (max-width: 575px) {
  .prog-hero { padding: 80px 0 50px; }
}


/* ============= OVERVIEW ============= */
.prog-overview {
  background: #fff;
}

.prog-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

.prog-overview-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.prog-overview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.prog-overview-img:hover img {
  transform: scale(1.04);
}

.prog-overview .body-text + .body-text {
  margin-top: 14px;
}

@media (max-width: 850px) {
  .prog-overview-grid { grid-template-columns: 1fr; }
}


/* ============= IMPACT STATS (DARK BAND) ============= */
.prog-stats {
  background: var(--ink);
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.prog-stats::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  top: -300px;
  left: -200px;
  background: radial-gradient(circle, rgba(61, 187, 133, 0.12), transparent 70%);
  pointer-events: none;
}

.prog-stats-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 2;
}

.eyebrow.eyebrow-light {
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow.eyebrow-light .bar {
  background: var(--accent);
}

.prog-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px;
  position: relative;
  z-index: 2;
}

.prog-stat {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.4s var(--ease);
}

.prog-stat:hover {
  border-color: rgba(61, 187, 133, 0.4);
  background: rgba(61, 187, 133, 0.06);
  transform: translateY(-4px);
}

.prog-stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.prog-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}


/* ============= APPROACH PILLARS ============= */
.prog-pillars {
  background: #fff;
}

.prog-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.prog-pillar {
  background: var(--beige-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.prog-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.prog-pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(61, 187, 133, 0.3);
}

.prog-pillar:hover::before {
  transform: scaleX(1);
}

.prog-pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: #fff;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 20px;
  box-shadow: 0 8px 22px rgba(21, 90, 61, 0.25);
  transition: transform 0.4s var(--ease);
}

.prog-pillar:hover .prog-pillar-icon {
  transform: rotate(-8deg) scale(1.05);
}

.prog-pillar h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
  line-height: 1.3;
}

.prog-pillar p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}


/* ============= KEY INITIATIVES ============= */
.prog-initiatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}

.prog-initiative {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex