/* ============================================================GTYF - Grooming Teens & Youths Foundation
   Mobile-first premium nonprofit homepage stylesheet.
   Palette: deep forest green + warm gold + white + soft gray.
   Fonts: Archivo (headings) + Manrope (body).
   ============================================================ */

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  color: #1d2b23;
  background: #f7f9f7;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: "Archivo", ui-sans-serif, system-ui, sans-serif; line-height: 1.08; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.hidden { display: none; }

/* ---------- Variables ---------- */
:root {
  --green: #14432f;
  --green-deep: #0d2e20;
  --gold: #d4a938;
  --gold-bright: #f3c33d;
  --mist: #f1f5f1;
  --radius: 1.1rem;
  --card-shadow: 0 10px 30px -12px rgba(20, 50, 35, 0.18);
  --card-shadow-hover: 0 18px 40px -14px rgba(20, 50, 35, 0.28);
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

.section { padding: 3.5rem 0; }
.section-bottom { padding: 0 0 3.5rem; }
.section-mist { background: var(--mist); }
@media (min-width: 768px) { .section { padding: 5rem 0; } .section-bottom { padding-bottom: 5rem; } }

.h2 { font-size: 1.85rem; font-weight: 900; color: #16221b; margin-top: .6rem; }
.h3 { font-size: 1.4rem; font-weight: 800; }
@media (min-width: 768px) { .h2 { font-size: 2.4rem; } }

.overline {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em;
  color: var(--green);
}
.overline::after { content: ""; width: 2.5rem; height: 3px; border-radius: 999px; background: var(--gold); }
.overline-light { color: var(--gold-bright); }
.lead { margin-top: 1rem; max-width: 40rem; font-size: .94rem; color: rgba(22, 34, 27, .75); }
.lead-compact { margin-top: .75rem; max-width: 38rem; font-size: .94rem; color: rgba(22, 34, 27, .7); }
.mt-3 { margin-top: .75rem; } .mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; }
.mb-8 { margin-bottom: 2rem; } .mb-10 { margin-bottom: 2.5rem; }
.text-gold { color: var(--gold-bright); }
.text-white { color: #fff; }

.grid-2 { display: grid; gap: 2rem; align-items: center; }
.grid-3 { display: grid; gap: 1.25rem; }
.grid-4 { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1.1fr .9fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  border-radius: 999px; padding: .75rem 1.5rem;
  font-weight: 700; font-size: .875rem;
  transition: transform 160ms var(--ease), box-shadow 200ms var(--ease), background 200ms;
}
.btn:active { transform: scale(.97); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 10px 24px -8px rgba(22, 67, 47, .5); }
.btn-green:hover { background: var(--green-deep); }
.btn-white { background: #fff; color: var(--green); box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .3); }
.btn-white:hover { background: var(--mist); }
.btn-gold { background: var(--gold-bright); color: var(--green-deep); box-shadow: 0 6px 18px -6px rgba(212, 169, 56, .6); }
.btn-gold:hover { background: #f6cd52; }
.btn-big { padding: .95rem 2rem; }

.link-gold { color: var(--gold); font-size: .8125rem; font-weight: 700; transition: color 200ms; }
.link-gold:hover { color: var(--green); }
.link-green { color: var(--green); font-size: .8125rem; font-weight: 700; transition: color 200ms; }
.link-green:hover { color: var(--gold); }

/* ---------- Top bar ---------- */
.topbar { background: var(--green-deep); color: rgba(255, 255, 255, .9); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .5rem 1rem; font-size: .75rem; }
.topbar-item { display: inline-flex; align-items: center; gap: .375rem; }
.topbar-item .topbar-text-sm { display: inline; }
.topbar-item:hover { color: #f7d662; }
.ic { width: .9rem; height: .9rem; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
@media (max-width: 767px) { .topbar-item .topbar-text { display: none; } }
@media (min-width: 768px) { .topbar-item .topbar-text-sm { display: none; } }
@media (min-width: 1024px) { .topbar-inner { padding: .5rem 2rem; max-width: 1200px; margin: 0 auto; font-size: .8rem; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100; background: #fff;
  box-shadow: 0 6px 24px -10px rgba(20, 50, 35, .25);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .75rem 1rem; }
.brand { display: flex; align-items: center; gap: .625rem; min-width: 0; }
.brand-logo { width: 2.75rem; height: 2.75rem; border-radius: 50%; flex: none; }
.brand-name { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; color: var(--green); line-height: 1.15; white-space: nowrap; }
@media (min-width: 640px) { .brand-logo { width: 3rem; height: 3rem; } .brand-name { font-size: .9rem; white-space: normal; } .brand-name br { display: none; } }

.nav { display: none; gap: 1.4rem; }
.nav a { font-size: .8125rem; font-weight: 700; color: rgba(22, 34, 27, .75); position: relative; transition: color 200ms; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0; background: var(--gold); transition: width 220ms var(--ease); }
.nav a:hover { color: var(--green); }
.nav a:hover::after { width: 100%; }
@media (min-width: 1024px) { .nav { display: flex; } }

.header-actions { display: flex; align-items: center; gap: .5rem; }
.menu-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 50%; border: none;
  background: transparent; color: var(--green); transition: background 200ms;
}
.menu-toggle:hover { background: var(--mist); }
.menu-toggle svg { width: 1.5rem; height: 1.5rem; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-nav { display: none; border-top: 1px solid #e8ece8; padding: .75rem 1rem; flex-direction: column; gap: .25rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: .625rem .75rem; border-radius: .75rem; font-size: .875rem; font-weight: 700; color: rgba(22, 34, 27, .8); transition: background 200ms, color 200ms; }
.mobile-nav a:hover { background: var(--mist); color: var(--green); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 560px; display: flex; align-items: flex-start; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13, 46, 32, .9) 0%, rgba(13, 46, 32, .6) 55%, rgba(13, 46, 32, .25) 100%),
              linear-gradient(0deg, rgba(13, 46, 32, .8) 0%, transparent 45%);
}
.hero-content { position: relative; z-index: 2; padding-top: 3.5rem; padding-bottom: 3.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.pill { display: inline-flex; align-items: center; gap: .5rem; border-radius: 999px; padding: .4rem 1rem; font-size: .6875rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.pill-gold { background: var(--gold-bright); color: var(--green-deep); box-shadow: 0 8px 20px -6px rgba(0, 0, 0, .35); }
.hero-title { font-size: 2.5rem; font-weight: 900; color: #fff; max-width: 30rem; }
.hero-title .text-gold { display: block; }
.hero-copy { max-width: 26rem; font-size: .94rem; color: rgba(255, 255, 255, .85); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }
@media (min-width: 768px) {
  .hero { min-height: 640px; }
  .hero-content { padding-top: 4.5rem; }
  .hero-title { font-size: 3.4rem; }
}
@media (min-width: 1024px) { .hero-title { font-size: 4rem; } }

/* ---------- Floating impact card ---------- */
.impact-card {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(13, 46, 32, .92); backdrop-filter: blur(8px);
  border-radius: 1rem; padding: .9rem 1.1rem; color: #fff;
  box-shadow: var(--card-shadow); max-width: 22rem;
}
.play-btn {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 50%; border: none; flex: none;
  background: var(--gold-bright); color: var(--green-deep);
  box-shadow: 0 8px 20px -6px rgba(212, 169, 56, .7);
  transition: transform 200ms var(--ease);
}
.play-btn:hover { transform: scale(1.05); }
.play-btn svg { width: 1.2rem; height: 1.2rem; margin-left: 2px; }
.impact-title { font-size: .875rem; font-weight: 800; }
.impact-sub { font-size: .75rem; color: rgba(255, 255, 255, .7); }

/* ---------- Stats ---------- */
.stats-wrap { position: relative; z-index: 10; margin-top: -2.5rem; }
@media (min-width: 640px) { .stats-wrap { margin-top: -3.5rem; } }
.stats-card {
  background: #fff; border-radius: 1.25rem; box-shadow: var(--card-shadow);
  padding: 1.5rem 1rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  text-align: center;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-ic { width: 1.75rem; height: 1.75rem; margin-bottom: .4rem; fill: none; stroke: var(--green); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.stat-num { font-size: 1.3rem; font-weight: 800; color: var(--green); font-variant-numeric: tabular-nums; }
.stat-label { font-size: .6875rem; font-weight: 600; color: rgba(22, 34, 27, .55); margin-top: .15rem; }
@media (min-width: 640px) {
  .stats-card { grid-template-columns: repeat(5, 1fr); padding: 2rem; }
  .stat { border-left: 1px solid #e8ece8; padding-left: 1rem; }
  .stat:first-child { border-left: none; padding-left: 0; }
  .stat-num { font-size: 1.5rem; }
}

/* ---------- Cards ---------- */
.card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.card-white { padding: 1.5rem; }
@media (min-width: 640px) { .card-white { padding: 2.5rem; } }
.lift:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.ic-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 1rem;
  background: var(--mist); color: var(--green); margin-bottom: 1rem;
}
.ic-chip svg { width: 1.5rem; height: 1.5rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.1rem; font-weight: 800; color: var(--green); margin-bottom: .4rem; }
.card p { font-size: .875rem; color: rgba(22, 34, 27, .7); }
.card-img > figure, .card-img > figure img { border-radius: 1.1rem 1.1rem 0 0; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-img > figure { position: relative; overflow: hidden; }
.card-img > figure figcaption, .img-card figcaption, .founder-img figcaption, .big-img figcaption {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  background: rgba(13, 46, 32, .8); backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, .9); font-size: .6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; padding: .3rem .65rem; border-radius: 0 .7rem 0 0;
}
.card-body { padding: 1.15rem; }
.tag {
  display: inline-block; border-radius: 999px; background: var(--mist);
  padding: .25rem .75rem; font-size: .625rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em; color: var(--green);
}
.tag-gold { background: var(--gold-bright); color: var(--green-deep); }
.card-img .card-body .link-gold { display: inline-block; margin-top: .75rem; }

/* ---------- Founder ---------- */
.founder-grid { display: grid; gap: 1.5rem; align-items: center; }
.founder-img { position: relative; overflow: hidden; border-radius: 1.1rem; box-shadow: var(--card-shadow); max-width: 17rem; margin: 0 auto; }
.founder-img img { aspect-ratio: 3 / 4; object-fit: cover; }
.founder-text { text-align: center; }
@media (min-width: 640px) { .founder-grid { grid-template-columns: .85fr 1.15fr; } .founder-img { margin: 0; } .founder-text { text-align: left; } }
.founder-name { font-size: 1.25rem; font-weight: 800; color: var(--green); }
.founder-role { font-size: .875rem; font-weight: 600; color: rgba(22, 34, 27, .55); margin-top: .25rem; }
.gold-rule { display: inline-block; width: 3rem; height: 3px; border-radius: 999px; background: var(--gold); margin-top: .75rem; }

/* ---------- About image ---------- */
.img-card { position: relative; overflow: hidden; border-radius: 1.3rem; box-shadow: var(--card-shadow); }
.img-card img { aspect-ratio: 4 / 3; object-fit: cover; }

/* ---------- Events card ---------- */
.card-img-big { display: grid; overflow: hidden; }
.big-img { position: relative; overflow: hidden; }
.big-img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; min-height: 240px; }
.big-img figcaption { border-radius: 0 .7rem 0 0; }
.big-body { padding: 1.5rem; }
.event-list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .625rem; font-size: .875rem; color: rgba(22, 34, 27, .8); }
.event-list > div { display: flex; align-items: center; gap: .625rem; }
.ev-ic { width: 1.1rem; height: 1.1rem; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
@media (min-width: 1024px) {
  .card-img-big { grid-template-columns: 1.2fr 1fr; }
  .big-img img { aspect-ratio: auto; height: 100%; min-height: 320px; }
  .big-body { padding: 2.5rem; }
}

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.gallery-item { border-radius: 1rem; overflow: hidden; box-shadow: var(--card-shadow); }
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-item figcaption { background: #fff; padding: .6rem .9rem; font-size: .75rem; font-weight: 600; color: rgba(22, 34, 27, .7); }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; }
  .gallery-wide { grid-column: span 2; }
  .gallery-wide img { aspect-ratio: 16 / 9; }
}

/* ---------- Impact section ---------- */
.impact-section { position: relative; overflow: hidden; background: var(--green-deep); color: #fff; padding: 3.5rem 0; }
@media (min-width: 768px) { .impact-section { padding: 5rem 0; } }
.watermark { position: absolute; right: -4rem; top: -4rem; width: 16rem; opacity: .08; pointer-events: none; }
.relative { position: relative; z-index: 2; }
.impact-grid { display: grid; gap: 1.5rem; }
.impact-numbers { display: flex; flex-direction: column; gap: 1.25rem; }
.impact-card-2 {
  display: flex; align-items: center; gap: 1.25rem;
  background: rgba(255, 255, 255, .1); backdrop-filter: blur(4px);
  border-radius: 1rem; padding: 1.25rem;
}
.impact-num { font-size: 1.5rem; font-weight: 800; color: var(--gold-bright); font-variant-numeric: tabular-nums; white-space: nowrap; }
.impact-card-2 p:last-child { font-size: .875rem; color: rgba(255, 255, 255, .85); }
.stories { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .stories { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .impact-grid { grid-template-columns: 1fr 1.2fr; } }
.story-card {
  display: flex; gap: 1rem; background: #fff; color: #16221b;
  border-radius: 1rem; padding: 1.25rem; box-shadow: var(--card-shadow);
}
.story-card img { width: 4rem; height: 4rem; border-radius: .8rem; object-fit: cover; flex: none; }
@media (min-width: 640px) { .story-card img { width: 5rem; height: 5rem; } }
.quote-ic { width: 1rem; height: 1rem; fill: var(--gold); display: block; margin-bottom: .25rem; }
.story-card blockquote p { font-size: .8125rem; color: rgba(22, 34, 27, .75); }
.story-card figcaption { margin-top: .5rem; font-size: .6875rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--green); }
.story-card figcaption em { font-style: normal; font-weight: 600; color: rgba(22, 34, 27, .45); font-size: .625rem; text-transform: none; letter-spacing: 0; }

/* ---------- News date ---------- */
.date { display: flex; align-items: center; gap: .375rem; font-size: .6875rem; font-weight: 600; color: rgba(22, 34, 27, .5); }
.date-ic { width: .875rem; height: .875rem; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card-img .card-body h3 { margin-top: .375rem; line-height: 1.25; }
.card-img .card-body p { margin-top: .375rem; }

/* ---------- Donate ---------- */
.card-donate {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  border-radius: 1.5rem; padding: 1.75rem; color: #fff;
  box-shadow: var(--card-shadow);
}
.watermark-donate { position: absolute; left: -5rem; bottom: -4rem; width: 18rem; opacity: .05; transform: rotate(12deg); pointer-events: none; }
@media (min-width: 640px) { .card-donate { padding: 3rem; } }
.donate-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .donate-grid { grid-template-columns: 1.2fr .8fr; align-items: center; } }
.donate-copy { max-width: 36rem; margin-top: 1rem; font-size: .94rem; color: rgba(255, 255, 255, .8); }
.bank-box { margin-top: 1.5rem; background: rgba(255, 255, 255, .1); backdrop-filter: blur(4px); border-radius: 1rem; padding: 1.25rem; }
.bank-head { font-size: .6875rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-bright); }
.bank-box p { margin-top: .25rem; font-size: .875rem; color: rgba(255, 255, 255, .9); }
.acct-num { font-weight: 800; letter-spacing: .05em; }
.copy-row { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
#copyBtn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.75rem; height: 1.75rem; border-radius: 50%; border: none;
  background: rgba(255, 255, 255, .15); color: #fff;
  transition: background 200ms, color 200ms;
}
#copyBtn:hover { background: var(--gold-bright); color: var(--green-deep); }
#copyBtn svg { width: .875rem; height: .875rem; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.donate-side { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.heart-ic { width: 3.5rem; height: 3.5rem; fill: none; stroke: var(--gold-bright); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.trust-text { max-width: 18rem; font-size: .875rem; color: rgba(255, 255, 255, .75); }
@media (min-width: 1024px) { .donate-side { align-items: flex-start; text-align: left; } }

/* ---------- Footer ---------- */
footer { background: var(--green-deep); color: #fff; padding: 3rem 0 0; }
.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr .8fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: .75rem; }
.footer-brand img { width: 3rem; height: 3rem; border-radius: 50%; }
.footer-brand p { font-size: .8rem; font-weight: 800; text-transform: uppercase; line-height: 1.2; }
.footer-copy { margin-top: 1rem; max-width: 22rem; font-size: .875rem; color: rgba(255, 255, 255, .7); }
.socials { margin-top: 1.25rem; display: flex; gap: .75rem; }
.socials a {
  display: flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(255, 255, 255, .1); color: #fff;
  transition: background 200ms, color 200ms;
}
.socials a:hover { background: var(--gold-bright); color: var(--green-deep); }
.socials svg { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
footer h4 { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-bright); margin-bottom: 1rem; }
footer ul li { margin-bottom: .625rem; }
footer ul a, .contact-list li { font-size: .875rem; color: rgba(255, 255, 255, .75); transition: color 200ms; }
footer ul a:hover { color: var(--gold-bright); }
.contact-list li { display: flex; align-items: flex-start; gap: .625rem; }
.contact-list svg { width: 1rem; height: 1rem; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; margin-top: .25rem; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 1.5rem 1rem; text-align: center; font-size: .75rem; color: rgba(255, 255, 255, .6); }
.footer-bottom a { font-weight: 700; color: var(--gold-bright); }
.footer-bottom strong { color: rgba(255, 255, 255, .8); }

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 500ms var(--ease), transform 500ms var(--ease); }
  .reveal.in-view { opacity: 1; transform: translateY(0); }
}
/* ============================================================
   EXTRA STYLES — Gallery page, Executives/Mentors, Video modal,
   Programs page, Nav active state (scoped, do not remove)
   ============================================================ */

/* Nav active state for subpages */
.nav a.active, .mobile-nav a.active { color: var(--green); }
.nav a.active::after { width: 100%; background: var(--gold); }
.mobile-nav a.active { background: var(--mist); color: var(--green); }

/* ---------- Executives / Mentors photo grid ---------- */
.exec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
@media (min-width: 640px) { .exec-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .exec-grid { grid-template-columns: repeat(5, 1fr); } }
.exec-grid-mentors { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .exec-grid-mentors { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .exec-grid-mentors { grid-template-columns: repeat(5, 1fr); } }
.exec-item { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--card-shadow); background: #fff; }
.exec-item img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; transition: transform 300ms var(--ease); }
.exec-item:hover img { transform: scale(1.03); }
.exec-item figcaption {
  padding: .6rem .75rem; text-align: center;
  background: #fff; border-top: 1px solid #e8ece8;
}
.exec-item figcaption strong { display: block; font-size: .8rem; font-weight: 800; color: var(--green); }
.exec-item figcaption span { display: block; font-size: .6875rem; font-weight: 600; color: rgba(22, 34, 27, .55); margin-top: .1rem; }
.exec-collage img { aspect-ratio: 1 / 1; object-position: center; }
@media (min-width: 1024px) { .exec-collage img { aspect-ratio: 4 / 3; } }

/* ---------- Impact video modal (Watch Our Impact) ---------- */
.impact-video-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 24, 17, .85); backdrop-filter: blur(6px);
  padding: 1rem;
}
.impact-video-modal.hidden { display: none; }
.impact-video-box { position: relative; width: 100%; max-width: 56rem; }
.impact-video-wrap { position: relative; width: 100%; padding-top: 56.25%; border-radius: 1rem; overflow: hidden; box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .6); }
.impact-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.impact-video-close {
  position: absolute; top: -2.75rem; right: 0;
  display: flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border-radius: 50%; border: none;
  background: rgba(255, 255, 255, .15); color: #fff;
}
.impact-video-close svg { width: 1.1rem; height: 1.1rem; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
@media (max-width: 639px) { .impact-video-close { top: auto; bottom: -2.75rem; } }

/* ============================================================
   GALLERY PAGE (gallery.html) — matches mobile screenshot:
   white page hero, featured fade carousel, More Moments grid,
   full-screen lightbox.
   ============================================================ */

/* ---------- Gallery page hero ---------- */
.g-pagehero { position: relative; overflow: hidden; padding: 3rem 0 2.5rem; background: #fff; }
.g-pagehero-deco { position: absolute; right: -6rem; top: -6rem; width: 20rem; height: 20rem; border-radius: 50%; background: radial-gradient(circle, rgba(212, 169, 56, .28) 0%, rgba(212, 169, 56, 0) 65%); pointer-events: none; }
.g-pagehero-deco::after { content: ""; position: absolute; left: 1rem; top: 1rem; width: 14rem; height: 14rem; border-radius: 50%; background: radial-gradient(circle, rgba(20, 67, 47, .12) 0%, rgba(20, 67, 47, 0) 70%); }
.g-pagehero-title { font-size: 3rem; font-weight: 900; color: #16221b; }
@media (min-width: 768px) { .g-pagehero { padding: 4.5rem 0 3.5rem; } .g-pagehero-title { font-size: 4rem; } }
.g-gold-rule { display: block; width: 3.25rem; height: 4px; border-radius: 999px; background: var(--gold); margin: .75rem 0 1rem; }
.g-pagehero-sub { max-width: 26rem; font-size: 1rem; color: rgba(22, 34, 27, .65); }

/* ---------- Gallery carousel ---------- */
.g-carousel-wrap { margin-top: 2rem; }
.g-carousel { position: relative; border-radius: 1.5rem; overflow: hidden; box-shadow: var(--card-shadow); }
.g-carousel-stage { position: relative; width: 100%; aspect-ratio: 4 / 3; background: var(--mist); }
@media (min-width: 1024px) { .g-carousel-stage { aspect-ratio: 16 / 9; } }
.g-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 600ms var(--ease); }
.g-slide.g-active { opacity: 1; z-index: 2; }
.g-arrow {
  position: absolute; top: 50%; z-index: 5; transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center;
  width: 2.6rem; height: 2.6rem; border-radius: 50%; border: none;
  background: var(--green); color: #fff;
  box-shadow: 0 8px 20px -6px rgba(13, 46, 32, .6);
  transition: background 200ms, transform 160ms var(--ease);
}
.g-arrow:hover { background: var(--green-deep); }
.g-arrow:active { transform: translateY(-50%) scale(.94); }
.g-arrow svg { width: 1.1rem; height: 1.1rem; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.g-arrow-prev { left: .75rem; }
.g-arrow-next { right: .75rem; }
.g-dots { position: absolute; left: 50%; bottom: .85rem; z-index: 5; transform: translateX(-50%); display: flex; gap: .45rem; }
.g-dot {
  width: .55rem; height: .55rem; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .35); padding: 0; transition: background 220ms var(--ease), transform 220ms var(--ease);
}
.g-dot[aria-selected="true"], .g-dot:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: scale(1.25); }

/* ---------- More Moments ---------- */
.g-moments { margin-top: 3rem; padding-top: .5rem; }
.g-moments-head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.g-ic-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: .75rem;
  background: var(--mist); color: var(--green);
}
.g-ic-chip svg { width: 1.3rem; height: 1.3rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.g-moments-title { font-size: 1.5rem; font-weight: 800; color: #16221b; }
.g-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .g-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.g-item { position: relative; border-radius: 1.2rem; overflow: hidden; box-shadow: var(--card-shadow); margin: 0; }
.g-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; cursor: pointer; transition: transform 300ms var(--ease); }
.g-item:hover img { transform: scale(1.03); }
.g-item figcaption { display: none; }

/* ---------- Lightbox ---------- */
.g-lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center;
  background: rgba(8, 18, 12, .92); backdrop-filter: blur(8px);
  padding: 1rem;
}
.g-lightbox.open { display: flex; }
.g-lb-stage { display: flex; align-items: center; justify-content: center; max-width: 100%; max-height: 100%; }
.g-lb-stage img { max-width: 100%; max-height: 86vh; border-radius: .75rem; object-fit: contain; }
.g-lb-close {
  position: absolute; top: 1rem; right: 1rem;
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 50%; border: none;
  background: rgba(255, 255, 255, .12); color: #fff;
  transition: background 200ms;
}
.g-lb-close:hover { background: rgba(255, 255, 255, .25); }
.g-lb-close svg { width: 1.2rem; height: 1.2rem; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; }
.g-lb-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 2.6rem; height: 2.6rem; border-radius: 50%; border: none;
  background: rgba(255, 255, 255, .12); color: #fff;
  position: absolute; top: 50%; transform: translateY(-50%);
  transition: background 200ms;
}
.g-lb-arrow:hover { background: var(--gold-bright); color: var(--green-deep); }
.g-lb-arrow svg { width: 1.2rem; height: 1.2rem; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.g-lb-prev { left: .75rem; }
.g-lb-next { right: .75rem; }
@media (max-width: 639px) { .g-lb-arrow { width: 2.2rem; height: 2.2rem; } }

/* ---------- Programs page ---------- */
.p-list { margin-top: .5rem; display: flex; flex-direction: column; gap: .85rem; }
.p-list li { position: relative; padding-left: 1.5rem; font-size: .9rem; color: rgba(22, 34, 27, .78); line-height: 1.6; }
.p-list li::before { content: ""; position: absolute; left: .25rem; top: .55rem; width: .5rem; height: .5rem; border-radius: 50%; background: var(--gold); }
@media (max-width: 639px) { .big-img figcaption { font-size: .55rem; } }


/* ============================================================
   GTYF REVISION — hero slideshow, homepage structure, host card,
   and Programs page showcase.
   ============================================================ */
.hero-slideshow { position: absolute; inset: 0; overflow: hidden; background: var(--green-deep); }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transform: scale(1.02); transition: opacity 900ms var(--ease), transform 6s linear; }
.hero-slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.hero-slideshow + .hero-overlay { z-index: 2; }
.hero-content { z-index: 3; }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity 200ms linear; transform: none; }
}

/* Keep the full About image visible instead of cropping its top or bottom. */
.about-img-card { background: var(--mist); }
.about-img-card img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; object-position: center; }

/* Homepage upcoming-programs invitation without program photographs. */
.upcoming-teaser-grid { display: grid; gap: 1.5rem; align-items: stretch; }
.upcoming-teaser .lead-compact { max-width: 34rem; }
.upcoming-panel { padding: 1.35rem; border-left: 4px solid var(--gold); }
.upcoming-panel h3 { margin-top: .9rem; }
.upcoming-panel p { margin-top: .45rem; font-size: .875rem; color: rgba(22, 34, 27, .72); }
@media (min-width: 768px) { .upcoming-teaser-grid { grid-template-columns: 1fr .85fr; gap: 3rem; align-items: center; } .upcoming-panel { padding: 1.75rem; } }

/* Host placeholder — replace only images/host.jpg and the host name text. */
.host-card { display: grid; gap: 1.5rem; align-items: center; padding: 1rem; }
.host-img { position: relative; overflow: hidden; border-radius: 1rem; background: var(--mist); }
.host-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; object-position: center; }
.host-img figcaption { position: absolute; left: 0; bottom: 0; background: rgba(13, 46, 32, .82); color: #fff; padding: .35rem .65rem; font-size: .62rem; font-weight: 700; }
.host-copy { padding: .25rem .5rem .75rem; }
.host-copy h3 { color: var(--green); font-size: 1.25rem; }
.host-copy p { margin-top: .3rem; color: rgba(22, 34, 27, .62); font-weight: 700; }
@media (min-width: 640px) { .host-card { grid-template-columns: minmax(14rem, 22rem) 1fr; padding: 1.5rem; } .host-copy { padding: 1rem; } }

/* Programs page showcase inspired by the supplied slide reference. */
.program-showcase { padding-top: 2.5rem; background: #fff; }
.program-showcase-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.program-outline-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 3rem; padding: .75rem 1.4rem; border: 2px solid var(--green); border-radius: 1rem; color: var(--green); font-weight: 800; white-space: nowrap; transition: background 200ms, color 200ms, transform 160ms var(--ease); }
.program-outline-btn:hover { background: var(--green); color: #fff; }
.program-outline-btn:active { transform: scale(.97); }
.program-carousel { position: relative; overflow: hidden; border-radius: 1.35rem; background: var(--green-deep); box-shadow: var(--card-shadow); }
.program-track { display: flex; width: 100%; transform: translate3d(0, 0, 0); transition: transform 600ms var(--ease); }
.program-slide-card { position: relative; flex: 0 0 100%; min-height: 22rem; overflow: hidden; }
.program-slide-card > img { width: 100%; height: 100%; min-height: 22rem; object-fit: cover; object-position: center; }
.program-slide-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6, 25, 17, .88), rgba(6, 25, 17, .18) 75%), linear-gradient(0deg, rgba(6, 25, 17, .68), transparent 55%); }
.program-slide-copy { position: absolute; left: 1.35rem; right: 1.35rem; bottom: 1.35rem; color: #fff; }
.program-slide-kicker { color: var(--gold-bright); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.program-slide-copy h3 { max-width: 17rem; margin-top: .35rem; font-size: 1.75rem; line-height: 1.05; }
.program-slide-number { position: absolute; right: 0; bottom: -.15rem; color: #fff; font-size: 4.2rem; font-weight: 900; line-height: .8; opacity: .95; }
.program-arrow { position: absolute; top: 50%; z-index: 4; display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border: 0; border-radius: .9rem; background: var(--green); color: #fff; transform: translateY(-50%); box-shadow: 0 10px 20px rgba(0,0,0,.18); transition: background 180ms, transform 160ms var(--ease); }
.program-arrow:hover { background: var(--green-deep); }
.program-arrow:active { transform: translateY(-50%) scale(.94); }
.program-arrow span { font-size: 2rem; line-height: 1; margin-top: -.15rem; }
.program-arrow-prev { left: .75rem; }
.program-arrow-next { right: .75rem; }
.program-dots { display: flex; align-items: center; justify-content: center; gap: .55rem; margin-top: 1.25rem; }
.program-dot { width: .72rem; height: .72rem; padding: 0; border: 0; border-radius: 999px; background: #d4dce0; transition: width 220ms var(--ease), background 220ms var(--ease), transform 160ms var(--ease); }
.program-dot.is-active { width: 3.4rem; background: #b9f400; }
.program-dot:active { transform: scale(.9); }
.program-page-catalog { padding-top: 1rem; }
@media (min-width: 640px) { .program-slide-card, .program-slide-card > img { min-height: 30rem; } .program-slide-copy { left: 2.5rem; bottom: 2.25rem; } .program-slide-copy h3 { font-size: 2.5rem; max-width: 27rem; } .program-slide-number { font-size: 7rem; } }
@media (min-width: 1024px) { .program-slide-card, .program-slide-card > img { min-height: 34rem; } }
@media (prefers-reduced-motion: reduce) { .program-track { transition: none; } }


/* Homepage text-first event/news cards after program photographs move to programs.html. */
.no-event-image { display: block; }
.no-event-image .big-body { width: 100%; }
.news-card-no-image { min-height: 100%; }

/* ============================================================
   GTYF VIEWPORT STABILITY PATCH
   Keeps the standalone page inside the device viewport.
   This patch changes layout behavior only; it does not change
   text, images, links, or JavaScript.
   ============================================================ */

html,
body {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  margin: 0;
}

header,
main,
footer,
section,
.topbar,
.hero,
.impact-section,
.impact-video-modal {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* Prevent flex and grid children from creating an invisible wide canvas. */
.topbar-inner,
.header-inner,
.mobile-nav,
.container,
.grid-2,
.grid-3,
.grid-4,
.founder-grid,
.upcoming-teaser-grid,
.host-card,
.program-showcase-head,
.impact-grid,
.impact-numbers,
.gallery-grid,
.hero-content,
.card,
.stats-card,
.program-carousel,
.program-page-catalog {
  min-width: 0;
  max-width: 100%;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.topbar-inner,
.header-inner,
.mobile-nav {
  overflow-x: hidden;
}

.topbar-item,
.brand,
.brand-name,
.nav,
.header-actions,
.hero-content,
.hero-copy,
.hero-title,
.impact-card,
.program-showcase-head,
.program-outline-btn,
.program-slide-copy,
.card-body,
.big-body,
.founder-text,
.host-copy {
  min-width: 0;
  max-width: 100%;
}

.brand-name,
.hero-title,
.hero-copy,
.program-slide-copy h3,
.card h3,
.card p,
.lead,
.lead-compact,
.founder-text,
.host-copy,
.event-list,
.news-card-no-image {
  overflow-wrap: anywhere;
  word-break: normal;
}

.brand-name {
  white-space: normal;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

.hero-slideshow,
.hero-overlay,
.hero-slide {
  max-width: 100%;
}

.hero-slide {
  min-width: 0;
}

/* The heading and outline button stack instead of forcing a wide row. */
.program-showcase-head {
  flex-wrap: wrap;
}

.program-showcase-head > * {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 639px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .topbar-inner {
    gap: .5rem;
  }

  .topbar-item {
    flex: 1 1 0;
    overflow: hidden;
  }

  .topbar-item:last-child {
    justify-content: flex-end;
  }

  .header-inner {
    gap: .5rem;
  }

  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 3rem);
  }

  .brand-logo {
    width: 2.5rem;
    height: 2.5rem;
  }

  .brand-name {
    font-size: .72rem;
    line-height: 1.12;
  }

  .hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  .hero-copy {
    font-size: .9rem;
  }

  .hero-ctas {
    max-width: 100%;
  }

  .hero-ctas .btn {
    max-width: 100%;
  }

  .impact-card {
    width: 100%;
  }

  .program-showcase-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .program-outline-btn {
    width: auto;
    max-width: 100%;
  }
}

@media (min-width: 640px) {
  .program-showcase-head > * {
    flex: 0 1 auto;
  }
}

/* ============================================================
   MOBILE-FIRST CENTERED FIT REFINEMENT
   The previous viewport patch prevented overflow by hiding it too
   early. These rules make each layout child shrink or wrap first,
   so the complete design stays visible before the document clips
   accidental browser-level overflow.
   ============================================================ */

html {
  width: 100%;
  min-width: 100%;
  max-width: none;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-width: 100%;
  max-width: none;
  overflow-x: hidden;
}

body > .topbar,
body > header,
body > main,
body > footer {
  width: 100%;
  min-width: 0;
  max-width: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  min-width: 0;
  margin-inline: auto;
  padding-inline: 1rem;
}

.topbar-inner,
.header-inner,
.mobile-nav,
.hero-content,
.stats-card,
.grid-2,
.grid-3,
.grid-4,
.founder-grid,
.upcoming-teaser-grid,
.host-card,
.impact-grid,
.stories,
.donate-grid,
.footer-grid,
.program-showcase-head,
.program-carousel,
.program-page-catalog {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.topbar-inner,
.header-inner,
.mobile-nav {
  overflow: visible;
}

.topbar-item,
.brand,
.brand-name,
.header-actions,
.hero-content,
.hero-title,
.hero-copy,
.hero-ctas,
.impact-card,
.stat,
.card,
.card-body,
.founder-text,
.host-copy,
.program-showcase-head > *,
.program-slide-copy {
  min-width: 0;
  max-width: 100%;
}

.hero-title,
.hero-copy,
.brand-name,
.stat-label,
.card h3,
.card p,
.founder-text,
.host-copy,
.program-slide-copy h3,
.event-list,
.news-card-no-image {
  overflow-wrap: break-word;
}

.brand-name {
  white-space: normal;
}

.hero-slideshow,
.hero-overlay,
.hero-slide,
.hero-img,
.hero-content {
  width: 100%;
  max-width: 100%;
}

.hero-slideshow,
.hero-overlay,
.hero-slide,
.hero-img {
  min-width: 0;
}

@media (max-width: 767px) {
  .container {
    padding-inline: 1rem;
  }

  .topbar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem;
  }

  .topbar-item {
    flex: 0 1 auto;
  }

  .header-inner {
    gap: .5rem;
  }

  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 3rem);
  }

  .brand-logo {
    width: 2.65rem;
    height: 2.65rem;
  }

  .brand-name {
    font-size: clamp(.7rem, 2.6vw, .82rem);
    line-height: 1.12;
  }

  .hero {
    width: 100%;
    min-height: 560px;
  }

  .hero-content {
    align-items: stretch;
    padding-inline: 1rem;
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .hero-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.15rem, 10vw, 3.1rem);
    line-height: 1;
    letter-spacing: -.035em;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    font-size: clamp(.9rem, 3.7vw, 1rem);
  }

  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: .65rem;
  }

  .hero-ctas .btn {
    flex: 1 1 11rem;
    min-width: 0;
    max-width: 100%;
    justify-content: center;
    padding-inline: .9rem;
  }

  .impact-card {
    width: 100%;
    max-width: 100%;
  }

  .stats-wrap .container {
    padding-inline: .75rem;
  }

  .stats-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem .55rem;
    padding: 1.15rem .65rem;
  }

  .stat-label {
    font-size: .66rem;
    line-height: 1.3;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .founder-grid,
  .upcoming-teaser-grid,
  .host-card,
  .impact-grid,
  .stories,
  .donate-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .img-card,
  .about-img-card,
  .founder-img,
  .host-img,
  .card,
  .card-donate,
  .stats-card {
    width: 100%;
    max-width: 100%;
  }

  .about-img-card img,
  .host-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .program-showcase-head {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

  .program-showcase-head .h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .program-outline-btn {
    width: 100%;
    max-width: 100%;
  }

  .program-carousel {
    border-radius: 1rem;
  }

  .program-slide-card,
  .program-slide-card > img {
    min-height: 24rem;
  }

  .program-slide-copy {
    left: 1rem;
    right: 1rem;
    bottom: 1.1rem;
  }

  .program-slide-copy h3 {
    max-width: calc(100% - 2.25rem);
    font-size: clamp(1.45rem, 7vw, 2.15rem);
  }

  .program-slide-number {
    right: 0;
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .program-arrow {
    width: 2.55rem;
    height: 2.55rem;
  }

  .program-arrow-prev {
    left: .5rem;
  }

  .program-arrow-next {
    right: .5rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }
}
/* Fix: Support Our Mission text color */
#donate .card-donate .overline-light {
  color: #ffffff !important;
}
/* Fix donation paragraph text colors */
#donate .donate-copy,
#donate .trust-text {
  color: #ffffff !important;
}
