/* =============================================================
   Page Chrome System
   Reusable layout layers that solve three UX jobs on every page:
     1. Lede           — quick overview under the hero
     2. Page Nav       — find / jump to specific sections
     3. Info Card      — contextual reference (rail on desktop, inline on mobile)
     4. Mobile CTA Bar — persistent primary actions on small screens
   Mobile-first; collapses gracefully on phones.
   ============================================================= */

:root {
  --ile-sticky-offset: 88px; /* clears the sticky site-header */
}

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: calc(var(--ile-sticky-offset) + 80px); }

/* ── Layer 1 — Page Lede ───────────────────────────────────── */
.page-lede {
  max-width: 880px;
  margin: -48px auto 56px;
  padding: 36px 44px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(27, 94, 32, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-lede__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #317d5d;
  margin: 0 0 12px;
}

.page-lede__summary {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  line-height: 1.7;
  color: #2d2d2d;
  margin: 0 0 24px;
}

.page-lede__summary strong { color: #1B5E20; }

.page-lede__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-lede__cta a {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.page-lede__cta a.is-primary {
  background: linear-gradient(135deg, #317d5d, #1B5E20);
  color: #fff;
  box-shadow: 0 4px 12px rgba(27, 94, 32, 0.2);
}

.page-lede__cta a.is-secondary {
  background: transparent;
  color: #1B5E20;
  border: 2px solid #e8e0d0;
}

.page-lede__cta a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(27, 94, 32, 0.25);
}

.page-fact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.page-fact-pills li {
  background: #f9f5ef;
  color: #1B5E20;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .page-lede {
    margin: -32px 16px 40px;
    padding: 26px 22px;
  }
  .page-fact-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 4px 4px 4px;
    margin-left: -4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .page-fact-pills::-webkit-scrollbar { display: none; }
}

/* ── Layer 2 — Page Nav (sticky TOC) ───────────────────────── */
.page-nav {
  position: sticky;
  top: var(--ile-sticky-offset);
  z-index: 5;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid #e8e0d0;
  border-bottom: 1px solid #e8e0d0;
  margin: 0 0 48px;
}

.page-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

.page-nav__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #6b6b6b;
  flex-shrink: 0;
}

.page-nav__list {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
}

.page-nav__list::-webkit-scrollbar { display: none; }

.page-nav__list a {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  color: #2d2d2d;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.page-nav__list a:hover {
  background: #f9f5ef;
  color: #1B5E20;
}

.page-nav__list a.is-active {
  background: #1B5E20;
  color: #fff;
}

.page-nav__toggle { display: none; }

@media (max-width: 720px) {
  .page-nav__inner {
    padding: 10px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .page-nav__label { display: none; }

  .page-nav__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid #e8e0d0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1B5E20;
    cursor: pointer;
    text-align: left;
  }
  .page-nav__toggle::after {
    content: '▾';
    margin-left: 8px;
    transition: transform 0.2s ease;
  }
  .page-nav.is-open .page-nav__toggle::after { transform: rotate(180deg); }
  .page-nav__toggle-current {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .page-nav__list {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border: 1px solid #e8e0d0;
    border-top: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .page-nav.is-open .page-nav__list { display: flex; }

  .page-nav__list a {
    display: block;
    padding: 12px 16px;
    border-radius: 0;
    border-top: 1px solid #f3eee3;
  }
  .page-nav__list a:first-child { border-top: 0; }
}

/* ── Layer 3a — Body + Rail Grid ───────────────────────────── */
.body-with-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 960px) {
  .body-with-rail {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 56px;
  }
}

.body-with-rail__main { min-width: 0; }

.body-with-rail__rail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 960px) {
  .body-with-rail__rail {
    position: sticky;
    top: calc(var(--ile-sticky-offset) + 76px); /* clear page-nav */
    align-self: start;
    max-height: calc(100vh - var(--ile-sticky-offset) - 96px);
    overflow-y: auto;
    padding-right: 4px;
  }
  .body-with-rail__rail::-webkit-scrollbar { width: 6px; }
  .body-with-rail__rail::-webkit-scrollbar-thumb {
    background: #e8e0d0;
    border-radius: 3px;
  }
}

/* ── Layer 3b — Info Card ──────────────────────────────────── */
.info-card {
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(27, 94, 32, 0.04);
}

.info-card + .info-card { margin-top: 0; }

.info-card--accent {
  background: linear-gradient(135deg, #f9f5ef, #fff);
  border-color: rgba(255, 204, 0, 0.5);
}

.info-card--dark {
  background: linear-gradient(135deg, #317d5d 0%, #1B5E20 100%);
  color: #fff;
  border-color: transparent;
}

.info-card--dark a { color: #ffcc00; }

.info-card__eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #317d5d;
  margin: 0 0 8px;
}

.info-card--dark .info-card__eyebrow { color: rgba(255, 204, 0, 0.95); }

.info-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: inherit;
  line-height: 1.25;
}

.info-card__person {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 12px;
}

.info-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #e8e0d0;
}

.info-card__person-meta { flex: 1; min-width: 0; }

.info-card__person-name {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 2px;
  line-height: 1.2;
}

.info-card__person-role {
  font-size: 13px;
  color: #6b6b6b;
  margin: 0;
  line-height: 1.3;
}

.info-card__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0;
  padding: 14px 0;
  border-top: 1px solid #e8e0d0;
  border-bottom: 1px solid #e8e0d0;
}

.info-card--dark .info-card__contact {
  border-color: rgba(255, 255, 255, 0.2);
}

.info-card__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.info-card__contact a:hover { color: #1B5E20; }
.info-card--dark .info-card__contact a:hover { color: #fff; }

.info-card__contact .ico {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f9f5ef;
  color: #317d5d;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.info-card--dark .info-card__contact .ico {
  background: rgba(255, 255, 255, 0.15);
  color: #ffcc00;
}

.info-card__downloads {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-card__downloads-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b6b6b;
  margin: 0 0 6px;
}

.info-card--dark .info-card__downloads-title { color: rgba(255, 255, 255, 0.6); }

.info-card__downloads a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1B5E20;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 0;
  border-bottom: 1px dashed #e8e0d0;
}

.info-card--dark .info-card__downloads a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.info-card__downloads a:last-child { border-bottom: 0; }

.info-card__downloads a::before {
  content: '↓';
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f9f5ef;
  color: #317d5d;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.info-card--dark .info-card__downloads a::before {
  background: rgba(255, 255, 255, 0.15);
  color: #ffcc00;
}

.info-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
}

.info-card__list li {
  font-size: 13px;
  color: inherit;
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
  font-weight: 500;
}

.info-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #317d5d;
  font-weight: 700;
}

.info-card--dark .info-card__list li::before { color: #ffcc00; }

/* ── Layer 4 — Mobile CTA bar ──────────────────────────────── */
.mobile-cta-bar { display: none; }

@media (max-width: 720px) {
  .mobile-cta-bar {
    display: grid;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    grid-template-columns: repeat(var(--cta-count, 2), 1fr);
    gap: 1px;
    background: #e8e0d0;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.1);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-cta-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    background: #fff;
    color: #1B5E20;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
  }

  .mobile-cta-bar a.is-primary {
    background: linear-gradient(135deg, #317d5d, #1B5E20);
    color: #fff;
  }

  .mobile-cta-bar a.is-primary:active { filter: brightness(0.92); }
  .mobile-cta-bar a:active { background: #f9f5ef; }

  body.has-mobile-cta { padding-bottom: 68px; }
}

/* =============================================================
   Homepage CTA Strip
   3 primary actions directly under the hero (Apply / Programs / Give).
   Uses the medium brand green (#317d5d) so it reads as the "doorway" into
   the site rather than another header. Stats band lives later in the page.
   ============================================================= */

.home-cta-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #317d5d;
  position: relative;
  overflow: hidden;
}

.home-cta-strip::before {
  /* Slim gold accent at the very top */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: #ffcc00;
  z-index: 2;
}

.home-cta-strip::after {
  /* Subtle decorative pattern — kente-style diagonals at very low opacity
     to give the strip texture so it doesn't read as a flat utility bar */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.025) 0 2px,
      transparent 2px 14px
    );
  pointer-events: none;
}

.home-cta-tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 44px 28px 40px;
  color: #fff;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  transition: background 0.25s ease, transform 0.25s ease;
  z-index: 1;
}

.home-cta-tile:last-child { border-right: 0; }

.home-cta-tile::after {
  /* Animated gold underline on hover */
  content: '';
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #ffcc00;
  transition: width 0.3s ease;
}

.home-cta-tile:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.home-cta-tile:hover::after { width: 56px; }

.home-cta-tile__label {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  line-height: 1.15;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.home-cta-tile__sub {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.3px;
  line-height: 1.4;
  margin-top: 2px;
}

.home-cta-tile__arrow {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: #ffcc00;
  opacity: 0.75;
  transform: translateX(0);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.home-cta-tile:hover .home-cta-tile__arrow {
  opacity: 1;
  transform: translateX(6px);
}

@media (max-width: 720px) {
  .home-cta-strip { grid-template-columns: 1fr; }
  .home-cta-tile {
    padding: 24px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 16px;
  }
  .home-cta-tile:last-child { border-bottom: 0; }
  .home-cta-tile__label { letter-spacing: 1.5px; }
  .home-cta-tile__sub { display: none; }
  .home-cta-tile__arrow { margin-top: 0; opacity: 1; }
  .home-cta-tile::after { display: none; }
}

/* =============================================================
   Homepage Stats Band — placed mid-page (after About cards),
   restyled so it reads as a different element from the CTA strip.
   ============================================================= */

.home-stats-band {
  background: #f9f5ef;
  padding: 56px 24px;
  border-top: 1px solid #e8e0d0;
  border-bottom: 1px solid #e8e0d0;
  position: relative;
}

.home-stats-band__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.home-stats-band__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #317d5d;
  margin: 0 0 28px;
}

.home-stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.home-stats-band__stat {
  padding: 0 12px;
  position: relative;
}

.home-stats-band__stat + .home-stats-band__stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #d6c895, transparent);
}

.home-stats-band__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 1.5rem + 1.6vw, 3rem);
  font-weight: 800;
  color: #1B5E20;
  line-height: 1.1;
}

.home-stats-band__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #6b6b6b;
  font-weight: 600;
  margin-top: 8px;
}

@media (max-width: 720px) {
  .home-stats-band { padding: 40px 16px; }
  .home-stats-band__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }
  .home-stats-band__stat:nth-child(odd) + .home-stats-band__stat::before { display: none; }
}

/* =============================================================
   News Filter Bar — pill row on /news/ and category archive pages
   ============================================================= */

.news-filter-bar {
  margin: 0 auto 40px;
  max-width: 1100px;
  padding: 0 16px;
}

.news-filter-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 6px;
  background: #f9f5ef;
  border-radius: 9999px;
}

.news-filter-bar__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.news-filter-bar__pill:hover {
  background: #fff;
  color: #1B5E20;
}

.news-filter-bar__pill.is-active {
  background: #1B5E20;
  color: #fff;
}

.news-filter-bar__count {
  font-size: 11px;
  font-weight: 700;
  background: rgba(27, 94, 32, 0.1);
  color: #1B5E20;
  padding: 2px 7px;
  border-radius: 9999px;
  min-width: 18px;
  text-align: center;
}

.news-filter-bar__pill.is-active .news-filter-bar__count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

@media (max-width: 720px) {
  .news-filter-bar__inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .news-filter-bar__inner::-webkit-scrollbar { display: none; }
  .news-filter-bar__pill { font-size: 13px; padding: 8px 14px; }
}

/* =============================================================
   Category News patterns — embeddable Query Loops on any Page
   ============================================================= */

/* Featured (hero) ─────────────────────────────────── */
.cat-news-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cat-news-featured__image {
  margin: 0;
}

.cat-news-featured__image img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 18px 40px rgba(27, 94, 32, 0.12);
}

.cat-news-featured__body { min-width: 0; }

.cat-news-featured__eyebrow,
.cat-news-featured__eyebrow a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #317d5d;
  text-decoration: none;
}

.cat-news-featured__title a {
  color: #1a1a1a;
  text-decoration: none;
}

.cat-news-featured__title a:hover { color: #1B5E20; }

.cat-news-featured__date {
  font-size: 13px;
  color: #6b6b6b;
  margin: 0 0 8px;
}

.cat-news-featured__excerpt {
  margin-top: 14px;
}

.cat-news-featured__excerpt a {
  display: inline-block;
  margin-top: 6px;
  color: #1B5E20;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 1px;
}

.cat-news-featured__excerpt a:hover { color: #317d5d; }

@media (max-width: 860px) {
  .cat-news-featured {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cat-news-featured__image img { max-height: 280px; }
}

/* News-card grid (shared with archive — reinforced here) ── */
.news-card {
  background: #fff;
  border: 1px solid #e8e0d0;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(27, 94, 32, 0.1);
}

.news-card .wp-block-post-featured-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  display: block;
}

/* Compact list ────────────────────────────────────── */
.cat-news-list-item:last-child { border-bottom: 0 !important; }

.cat-news-list-item .wp-block-post-featured-image img {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.cat-news-list-item .wp-block-post-title a {
  color: #1a1a1a;
  text-decoration: none;
}

.cat-news-list-item .wp-block-post-title a:hover { color: #1B5E20; }

/* =============================================================
   Spotlight Hero — cinematic full-bleed pinned article
   When a Spotlight Article is pinned on the homepage, this replaces
   the rotating news slider as the hero. Same treatment is used
   anywhere the [ile_spotlight] shortcode renders.
   ============================================================= */

.spotlight-hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  background: #1B5E20;
  isolation: isolate;
}

.spotlight-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.spotlight-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 8s ease-out;
}

.spotlight-hero:hover .spotlight-hero__image {
  transform: scale(1.06);
}

.spotlight-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.6) 35%,
      rgba(0, 0, 0, 0.2) 70%,
      transparent 100%
    ),
    linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 50%);
}

.spotlight-hero__overlay::after {
  /* slim gold accent line at the bottom for brand continuity */
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #ffcc00;
}

.spotlight-hero__inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px 110px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.spotlight-hero__body { max-width: 740px; }

.spotlight-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffcc00;
  margin: 0 0 22px;
  padding: 9px 20px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 204, 0, 0.55);
  border-radius: 9999px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  width: fit-content;
}

.spotlight-hero__eyebrow::before {
  content: '★';
  font-size: 13px;
  color: #ffcc00;
}

.spotlight-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 1.5rem + 2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  max-width: 16ch;
}

.spotlight-hero__title a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(120deg, transparent 0%, transparent 100%);
  background-size: 100% 3px;
  background-position: 0 calc(100% - 4px);
  background-repeat: no-repeat;
  transition: background-image 0.4s ease;
}

.spotlight-hero__title a:hover {
  background-image: linear-gradient(120deg, #ffcc00 0%, #ffcc00 100%);
}

.spotlight-hero__date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  margin: 0 0 20px;
  letter-spacing: 0.5px;
}

.spotlight-hero__excerpt {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 36px;
  max-width: 56ch;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.spotlight-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: #ffcc00;
  color: #1a1a1a;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.spotlight-hero__cta:hover {
  transform: translateY(-2px);
  background: #fff;
  color: #1B5E20;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.spotlight-hero__cta span {
  transition: transform 0.2s ease;
  font-size: 16px;
}

.spotlight-hero__cta:hover span {
  transform: translateX(5px);
}

/* =============================================================
   Support Us — "Talk to Mama Pam" inline contact callout
   ============================================================= */

.support-contact-callout {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 48px;
  padding: 24px 32px;
  background: linear-gradient(135deg, #f9f5ef 0%, #fff 100%);
  border: 1px solid #e8e0d0;
  border-left: 4px solid #ffcc00;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(27, 94, 32, 0.06);
}

.support-contact-callout__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #317d5d, #1B5E20);
  color: #ffcc00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  font-family: 'Playfair Display', Georgia, serif;
  flex-shrink: 0;
}

.support-contact-callout__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #317d5d;
  margin: 0 0 4px;
}

.support-contact-callout__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px;
  line-height: 1.25;
}

.support-contact-callout__desc {
  font-size: 14px;
  line-height: 1.55;
  color: #555;
  margin: 0;
}

.support-contact-callout__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.support-contact-callout__actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #fff;
  color: #1B5E20;
  border: 1px solid #e8e0d0;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.support-contact-callout__actions a:hover {
  background: #1B5E20;
  color: #fff;
  border-color: #1B5E20;
}

@media (max-width: 720px) {
  .support-contact-callout {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 20px;
    margin-left: 16px;
    margin-right: 16px;
  }
  .support-contact-callout__avatar { width: 56px; height: 56px; font-size: 19px; }
  .support-contact-callout__actions {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: stretch;
  }
  .support-contact-callout__actions a {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .spotlight-hero { min-height: 480px; }
  .spotlight-hero__inner {
    padding: 72px 22px 92px;
    min-height: 480px;
  }
  .spotlight-hero__title {
    letter-spacing: -0.3px;
    max-width: none;
  }
  .spotlight-hero__cta {
    padding: 14px 26px;
    font-size: 13px;
  }
}

