/* ═══════════════════════════════════════════════════════════════
   PROGRAMS — Seyi Kayode Foundation
   Brand: Navy #0D2C4B | Green #629926 | Font: Montserrat
   ═══════════════════════════════════════════════════════════════ */

/* ── PAGE HERO (programs variant) ────────────────────────────── */
.page-hero::before {
  content: ''; position: absolute; left: -60px; bottom: -60px;
  width: 400px; height: 400px;
  border-radius: 50%; background: rgba(98,153,38,0.07);
}

/* ── PROGRAMME INTRO ──────────────────────────────────────────── */
.intro-section { background: #FEFEFE; padding: 80px 72px; }
.intro-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.intro-inner .display-h2 { text-align: center; }
.intro-sub { font-size: 16px; color: #4A6280; line-height: 1.85; margin-top: 8px; }

/* ── PROGRAMME NAV ────────────────────────────────────────────── */
.prog-nav {
  background: #FEFEFE; border-top: 1px solid rgba(13,44,75,0.08); border-bottom: 1px solid rgba(13,44,75,0.08);
  padding: 0 72px; display: flex; gap: 0; overflow-x: auto;
}
.prog-nav a {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #A0B4C8; text-decoration: none; padding: 20px 0; margin-right: 40px;
  border-bottom: 2px solid transparent; white-space: nowrap; transition: all 0.2s;
}
.prog-nav a:hover, .prog-nav a.active { color: #0D2C4B; border-bottom-color: #0D2C4B; }

/* ── PROGRAMME SECTIONS ───────────────────────────────────────── */
.prog-section { padding: 100px 72px; }
.prog-section:nth-child(odd) { background: #EEF2F7; }
.prog-section:nth-child(even) { background: #FEFEFE; }
.prog-inner { display: flex; align-items: center; gap: 88px; }
.prog-inner.reverse { flex-direction: row-reverse; }
.prog-text { flex: 1; max-width: 560px; }
.prog-num {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 80px; color: rgba(13,44,75,0.07); line-height: 1; margin-bottom: -20px;
}
.prog-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px; font-weight: 800; line-height: 1.15; color: #0D2C4B; margin-bottom: 20px;
}
.prog-heading em { font-style: italic; font-weight: 700; color: #629926; }
.prog-body { font-size: 15.5px; color: #4A6280; line-height: 1.9; margin-bottom: 16px; }
.prog-bullets { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.prog-bullets li { display: flex; align-items: flex-start; gap: 14px; font-size: 14.5px; color: #4A6280; line-height: 1.6; }
.prog-bullets li::before {
  content: ''; width: 6px; height: 6px; background: #629926;
  border-radius: 50%; flex-shrink: 0; margin-top: 8px;
}
.prog-img-area { flex: 0 0 400px; position: relative; }
.prog-img-main {
  border-radius: 8px; overflow: hidden;
  transform: rotate(2deg); box-shadow: 0 20px 56px rgba(0,0,0,0.12);
}
.prog-inner.reverse .prog-img-main { transform: rotate(-2deg); }
.prog-img-main img { width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover; object-position: center; transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
.prog-img-main:hover img { transform: scale(1.08); }
.prog-img-tag {
  position: absolute; bottom: -16px; right: -16px;
  background: #629926; color: #FEFEFE;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 2px;
}
.prog-inner.reverse .prog-img-tag { right: auto; left: -16px; }
#partnerships .arrow-link { margin-top: 28px; }

/* ── IMPACT NUMBERS ───────────────────────────────────────────── */
.impact-section { background: #629926; padding: 80px 72px; }
.impact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(254,254,254,0.15); }
.impact-cell { background: #629926; padding: 44px 32px; text-align: center; }
.impact-num {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 52px; color: #FEFEFE; line-height: 1; margin-bottom: 8px;
}
.impact-lbl {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(254,254,254,0.65);
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .prog-nav { padding-left: 48px; padding-right: 48px; }
  .intro-section, .prog-section, .impact-section { padding-left: 48px; padding-right: 48px; }
}
@media (max-width: 900px) {
  .page-hero-h1 { font-size: 48px; }
  .intro-section { padding: 64px 32px; }
  .prog-nav { padding: 0 32px; }
  .prog-section { padding: 72px 32px; }
  .prog-inner, .prog-inner.reverse { flex-direction: column; gap: 52px; }
  .prog-img-area { flex: none; width: 100%; max-width: 480px; }
  .impact-section { padding: 64px 32px; }
  .impact-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .page-hero-h1 { font-size: 36px; }
  .prog-heading { font-size: 30px; }
  .impact-num { font-size: 38px; }
}
