@import url("/static/css/chrome.css");

:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --card: rgba(255, 255, 255, 0.85);
  --text: #111827;
  --muted: #4b5563;
  --brand: #0f5147;
  --brand-2: #d4af37;
  --ink: #0d1218;
  --line: rgba(217, 225, 234, 0.6);
  --soft: rgba(20, 108, 95, 0.05);
  --header: rgba(255, 255, 255, 0.75);
  --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: linear-gradient(180deg, #f7fafc, #eef5f4);
  color: var(--text);
  overflow-x: hidden;
}
a { color: inherit; }
.topbar, .site-header, .site-footer, .shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.fragment-shell {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
}
.fragment-display {
  position: relative;
  z-index: 10;
}
.fragment-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.fragment-skeleton {
  display: grid;
  gap: 12px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(240,245,249,.96));
  border: 1px solid rgba(217, 225, 234, 0.9);
  border-radius: inherit;
  padding: 12px 16px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.fragment-skeleton::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.55) 50%, transparent 100%);
  background-size: 220% 100%;
  animation: fragment-shimmer 1.4s ease-in-out infinite;
  pointer-events: none;
}
.fragment-skeleton > * {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  background: rgba(20, 108, 95, 0.12);
  min-height: 12px;
}
.fragment-skeleton-topbar,
.fragment-skeleton-header,
.fragment-skeleton-footer {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}
.fragment-skeleton-topbar {
  min-height: 34px;
  border-radius: 0;
  grid-template-columns: 1fr auto;
}
.fragment-skeleton-header {
  min-height: 68px;
  grid-template-columns: auto repeat(4, minmax(80px, 1fr)) auto;
}
.fragment-skeleton-footer {
  min-height: 280px;
  grid-template-columns: 1.2fr repeat(2, minmax(120px, 1fr));
}
.fragment-skeleton-generic {
  min-height: 64px;
}
.fragment-shell[data-fragment="topbar"] {
  min-height: 34px;
  border-radius: 0;
}
.fragment-shell[data-fragment="header"] {
  min-height: 68px;
}
.fragment-shell[data-fragment="footer"] {
  min-height: 280px;
}
.fragment-shell[data-fragment="generic"] {
  min-height: 64px;
}
.sk-brand {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(20, 108, 95, 0.16);
}
.sk-line { display:block; width: 100%; }
.sk-line-short { width: 180px; }
.sk-line-medium { width: 240px; }
.sk-line-long { width: 65%; }
.sk-line-nav { width: 92px; }
.sk-line-action { width: 120px; justify-self: end; }
.sk-line-col { width: 80%; }
.sk-pill {
  width: 110px;
  height: 36px;
  border-radius: 10px;
  background: rgba(20, 108, 95, 0.16);
  justify-self: end;
}
@keyframes fragment-shimmer {
  0% { transform: translateX(-55%); }
  100% { transform: translateX(55%); }
}
.topbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  padding: 9px 0;
  color: var(--muted);
  font-size: .86rem;
}
.topbar a { text-decoration: none; }
.topbar-left, .topbar-right { display:flex; align-items:center; gap: 16px; flex-wrap: wrap; }
.topbar-right a { color: var(--brand); font-weight: 400; }
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 300 !important;
  letter-spacing: 0.02em;
}
.thin-text { font-weight: 300; opacity: 0.8; }
.topbar-sep {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: var(--line);
  margin: 0 8px;
}
.premium-dark .topbar-sep {
  background: rgba(255,255,255,0.2);
}
.pill { background: var(--soft); color: var(--brand); padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.site-header {
  display:grid;
  grid-template-columns: auto 1fr;
  align-items:center;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 10000;
  padding: 12px 16px;
  background: var(--header);
  border: 1px solid rgba(217, 225, 234, 0.9);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(24, 34, 48, .08);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: -1;
  pointer-events: none;
}
.site-nav-panel {
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 16px;
  min-width: 0;
  position: relative;
  z-index: 10001;
}
.mobile-menu-identity {
  display: none;
}
.site-search input {
  width: min(300px, 28vw);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.9);
}
.site-nav { display:flex; align-items:center; gap: 4px; flex-wrap: wrap; }
.site-nav a,
.nav-group > a {
  color: var(--text);
  text-decoration:none;
  font-weight: 700;
  font-size: .94rem;
  padding: 10px 9px;
  border-radius: 10px;
}
.site-nav a:hover,
.nav-group > a:hover { background: var(--soft); color: var(--brand); }
.site-nav a.active {
  color: var(--brand);
  position: relative;
}
.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--brand-2);
  border-radius: 3px;
}
.nav-group { position:relative; }
.nav-submenu {
  position:absolute;
  top: calc(100% + 8px);
  left:0;
  display:none;
  min-width: 230px;
  padding: 8px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(24, 34, 48, .14);
  z-index: 10002;
}
.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
  display:grid;
  gap: 3px;
}
.nav-submenu a {
  display:block;
  padding: 9px 10px;
  white-space: nowrap;
  position: relative;
}
.nav-submenu a.active {
  background: var(--soft);
  color: var(--brand);
  font-weight: 800;
}
.nav-submenu a.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: var(--brand-2);
  border-radius: 0 3px 3px 0;
}
.brand {
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  min-width: max-content;
}
.brand-copy { display:flex; flex-direction:column; line-height: 1.08; }
.brand-copy small { color: var(--muted); font-size: .72rem; font-weight: 700; }
.brand-logo {
  display:inline-grid;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(20, 108, 95, 0.18);
}
.header-actions { display:flex; align-items:center; gap: 10px; }
.account-menu { position:relative; display:flex; align-items:center; gap: 10px; }
.account-button, .btn, .newsletter-form button {
  border: 0;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration:none;
  font-weight: 700;
  cursor: pointer;
}
.account-button {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}
.account-button:hover {
  background: var(--soft);
  color: var(--brand);
  border-color: rgba(20, 108, 95, 0.2);
}
.account-dropdown {
  position:absolute;
  right:0;
  top: calc(100% + 10px);
  display:none;
  width: 210px;
  padding: 8px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(24, 34, 48, .14);
  z-index: 10002;
}
.account-open .account-dropdown { display:grid; gap: 4px; }
.account-dropdown a {
  display:block;
  padding: 10px;
  border-radius: 8px;
  color: var(--text);
  text-decoration:none;
  font-weight:700;
  position: relative;
}
.account-dropdown a:hover { background: var(--soft); color: var(--brand); }
.account-dropdown a.active {
  background: var(--soft);
  color: var(--brand);
  font-weight: 800;
}
.account-dropdown a.active::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: var(--brand-2);
  border-radius: 0 3px 3px 0;
}
.nav-toggle {
  display:none;
  justify-self:end;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 9px;
}
.nav-toggle span:not(.sr-only) {
  display:block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 999px;
}
.hero { padding: 72px 0 56px; margin-top:10px }
.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 24px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero-panel {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(216, 225, 232, 0.95);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}
.hero-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.eyebrow { text-transform: uppercase; letter-spacing: .16em; color: var(--brand-2); font-size: .82rem; }
.hero h1 { max-width: 14ch; font-size: clamp(2.6rem, 6vw, 5rem); line-height: .95; margin: 12px 0; }
.lede { max-width: 60ch; color: var(--muted); font-size: 1.08rem; }
.actions { display:flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.primary { background: var(--brand); color: white; }
.secondary { border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,0.8); }
.resource-hero {
  position: relative;
  padding: 42px;
  border-radius: 32px;
  border: 1px solid rgba(216, 225, 232, 0.95);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 14%, rgba(20, 108, 95, 0.08), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(212, 175, 55, 0.08), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 249, 0.98) 100%);
}
.resource-hero::before,
.resource-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.resource-hero::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(20, 108, 95, 0.18), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(212, 175, 55, 0.18), transparent 22%);
  opacity: 0.75;
}
.resource-hero::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 35%),
    linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.03) 100%);
  opacity: 0.4;
}
.resource-hero .hero-copy,
.resource-hero .hero-panel {
  position: relative;
  z-index: 1;
}
.resource-hero .hero-panel {
  margin: 0;
  align-self: stretch;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(216, 225, 232, 0.86);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}
.resource-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.resource-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(216, 225, 232, 0.9);
  color: var(--text);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}
.resource-hero__frame,
.resource-video-card,
.resource-doc-stack,
.resource-report-card,
.resource-ledger,
.resource-tax-panel {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(216, 225, 232, 0.9);
  background: #fff;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}
.resource-hero__frame,
.resource-video-card,
.resource-tax-panel,
.resource-hero__mosaic {
  aspect-ratio: 4 / 3;
}
.resource-hero__frame img,
.resource-video-card > img,
.resource-doc-stack img,
.resource-report-card > img,
.resource-tax-panel > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.resource-hero__note {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(216, 225, 232, 0.82);
  color: var(--muted);
  line-height: 1.55;
}
.resource-hero__note strong {
  color: var(--text);
  font-size: 0.94rem;
}
.resource-hero--profile {
  background:
    radial-gradient(circle at 13% 16%, rgba(20, 108, 95, 0.14), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(212, 175, 55, 0.12), transparent 22%),
    linear-gradient(135deg, #f8fbfa 0%, #eef5f1 58%, #e8f0eb 100%);
}
.resource-hero--photos {
  background:
    radial-gradient(circle at 16% 12%, rgba(59, 130, 246, 0.12), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(20, 108, 95, 0.1), transparent 22%),
    linear-gradient(135deg, #eef4f7 0%, #f8fbfb 54%, #edf2ee 100%);
}
.resource-hero__mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}
.resource-hero__mosaic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.resource-hero__mosaic img:first-child {
  grid-row: 1 / span 2;
}
.resource-hero--videos {
  background: linear-gradient(135deg, #0c1118 0%, #121b27 54%, #0a1016 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.resource-hero--videos::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(212, 175, 55, 0.22), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.1), transparent 24%);
}
.resource-hero--videos .eyebrow {
  color: #f4dd95;
}
.resource-hero--videos h1 {
  color: #fff;
}
.resource-hero--videos .lede {
  color: rgba(255, 255, 255, 0.72);
}
.resource-hero--videos .resource-chip {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
}
.resource-video-card {
  position: relative;
  min-height: 100%;
  background: #0c1118;
}
.resource-video-card__overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(10, 15, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
.resource-video-card__play {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #d4af37, #f5e6a3);
  color: #0d1218;
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.28);
}
.resource-video-card__play svg {
  margin-left: 2px;
}
.resource-video-card__overlay strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}
.resource-video-card__overlay span:last-child {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.45;
}
.resource-hero--policies {
  background:
    radial-gradient(circle at 12% 14%, rgba(120, 84, 48, 0.1), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(212, 175, 55, 0.08), transparent 20%),
    linear-gradient(135deg, #fcf8f2 0%, #f5eddf 58%, #efe6d4 100%);
}
.resource-doc-stack {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 243, 234, 0.98) 100%);
}
.resource-doc-stack img:first-child {
  border-radius: 18px;
}
.resource-doc-stack img + img {
  border-radius: 18px;
  opacity: 0.92;
  transform: translateX(8px);
}
.resource-hero--license {
  background:
    radial-gradient(circle at 14% 16%, rgba(245, 230, 163, 0.18), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(212, 175, 55, 0.18), transparent 22%),
    linear-gradient(135deg, #101827 0%, #172033 52%, #0d1320 100%);
  border-color: rgba(212, 175, 55, 0.2);
  color: #fff;
}
.resource-hero--license::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(245, 230, 163, 0.28), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(212, 175, 55, 0.18), transparent 22%);
}
.resource-hero--license .eyebrow {
  color: #f5e6a3;
}
.resource-hero--license h1 {
  color: #fff;
}
.resource-hero--license .lede {
  color: rgba(255, 255, 255, 0.72);
}
.resource-hero--license .resource-chip {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 175, 55, 0.2);
  color: rgba(255, 255, 255, 0.92);
}
.resource-hero--reports {
  background:
    radial-gradient(circle at 16% 16%, rgba(20, 108, 95, 0.12), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(212, 175, 55, 0.08), transparent 20%),
    linear-gradient(135deg, #eef5f3 0%, #fafcfc 52%, #edf2f1 100%);
}
.resource-report-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
}
.resource-report-card > img {
  aspect-ratio: 4 / 3;
}
.resource-report-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}
.resource-report-metrics span {
  display: grid;
  gap: 2px;
  padding: 12px 10px;
  border-radius: 16px;
  background: rgba(20, 108, 95, 0.06);
  border: 1px solid rgba(20, 108, 95, 0.08);
}
.resource-report-metrics strong {
  font-size: 1.05rem;
  color: var(--text);
}
.resource-report-metrics small {
  color: var(--muted);
  font-size: 0.76rem;
}
.resource-hero--financials {
  background:
    radial-gradient(circle at 16% 14%, rgba(20, 108, 95, 0.12), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(212, 175, 55, 0.08), transparent 20%),
    linear-gradient(135deg, #eff6f2 0%, #fbfdfc 54%, #ecf3ef 100%);
}
.resource-ledger {
  display: grid;
  gap: 12px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 250, 0.98) 100%);
}
.resource-ledger__image {
  border-radius: 20px;
  overflow: hidden;
}
.resource-ledger__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.resource-ledger__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.resource-ledger__grid span {
  display: grid;
  gap: 2px;
  padding: 12px 10px;
  border-radius: 16px;
  background: rgba(20, 108, 95, 0.06);
  border: 1px solid rgba(20, 108, 95, 0.08);
}
.resource-ledger__grid strong {
  color: var(--text);
  font-size: 1rem;
}
.resource-ledger__grid small {
  color: var(--muted);
  font-size: 0.76rem;
}
.resource-hero--tax {
  min-height: 100%;
  color: #fff;
  border-color: rgba(212, 175, 55, 0.28);
  background:
    radial-gradient(circle at 16% 20%, rgba(245, 230, 163, 0.3), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(212, 175, 55, 0.3), transparent 20%),
    linear-gradient(135deg, rgba(9, 13, 19, 0.96) 0%, rgba(26, 19, 12, 0.96) 48%, rgba(55, 36, 10, 0.92) 100%),
    url('/uploads/raw/assets/wbfngo.org/wp-content/uploads/2026/04/document8.png') center right / cover no-repeat;
  background-blend-mode: normal, normal, normal, multiply;
}
.resource-hero--tax::before {
  background:
    radial-gradient(circle at 14% 14%, rgba(245, 230, 163, 0.24), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.08), transparent 24%);
}
.resource-hero--tax .eyebrow {
  color: #f5e6a3;
}
.resource-hero--tax h1 {
  color: #fff;
}
.resource-hero--tax .lede {
  color: rgba(255, 255, 255, 0.82);
}
.resource-hero--tax .resource-chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 230, 163, 0.22);
  color: #fff;
}
.resource-tax-panel {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(11, 16, 24, 0.64);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}
.resource-tax-panel__stamp {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.96), rgba(245, 230, 163, 0.95));
  color: #0d1218;
  font-weight: 900;
  font-size: 0.82rem;
  box-shadow: 0 12px 26px rgba(212, 175, 55, 0.3);
}
.videos-shell {
  display: grid;
  gap: 18px;
}
body.resources-page {
  overflow-x: clip;
}
.policy-shell,
.videos-shell {
  overflow-x: clip;
}
.videos-hero {
  background:
    radial-gradient(circle at 12% 16%, rgba(212, 175, 55, 0.18), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(135deg, #0d1218 0%, #111b27 48%, #0a0f14 100%);
  border-color: rgba(212, 175, 55, 0.2);
  color: #fff;
}
.videos-hero::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(212, 175, 55, 0.26), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.08), transparent 24%);
}
.videos-hero .eyebrow {
  color: #f5e6a3;
}
.videos-hero .lede {
  color: rgba(255, 255, 255, 0.76);
}
.videos-hero .resource-chip {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 175, 55, 0.2);
  color: #fff;
}
.video-feature-card {
  position: relative;
  display: grid;
  gap: 0;
  overflow: hidden;
  background: #0b1118;
}
.video-feature-card__image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 22px;
}
.video-feature-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}
.video-feature-card__shine {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 15, 20, 0.06) 0%, rgba(10, 15, 20, 0.48) 100%),
    radial-gradient(circle at 18% 20%, rgba(212, 175, 55, 0.18), transparent 24%);
  pointer-events: none;
}
.video-feature-card__badge {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(10, 15, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}
.video-feature-card__badge svg {
  color: #f5e6a3;
}
.video-feature-card__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(10, 15, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(12px);
}
.video-feature-card__caption strong {
  font-size: 1rem;
  line-height: 1.25;
}
.video-feature-card__caption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.45;
}
.video-feed-section {
  display: grid;
  gap: 18px;
}
.video-feed-header {
  display: grid;
  gap: 6px;
}
.video-feed-header h2 {
  margin: 0;
  font-size: 2.1rem;
}
.video-feed-header p {
  margin: 0;
  color: var(--muted);
}
.video-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.video-thumb-button {
  all: unset;
  display: grid;
  gap: 10px;
  cursor: pointer;
}
.video-thumb-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(216, 225, 232, 0.95);
  background: #0b1118;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
  aspect-ratio: 16 / 9;
}
.video-thumb-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}
.video-thumb-button:hover .video-thumb-card img {
  transform: scale(1.04);
  filter: brightness(0.92);
}
.video-thumb-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 14, 0.08) 0%, rgba(5, 10, 14, 0.58) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 14px;
}
.video-thumb-card__play {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #d4af37, #f5e6a3);
  color: #0d1218;
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.32);
}
.video-thumb-caption {
  display: grid;
  gap: 4px;
  padding: 0 4px;
}
.video-thumb-caption strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.25;
  color: var(--text);
}
.video-thumb-caption span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}
.video-empty {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(216, 225, 232, 0.9);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
}
.video-empty strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 6px;
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 10, 14, 0.82);
  backdrop-filter: blur(16px);
  display: grid;
  place-items: center;
  padding: 24px;
}
.video-modal[hidden] {
  display: none !important;
}
.video-modal__dialog {
  width: min(1040px, 100%);
  display: grid;
  gap: 12px;
}
.video-modal__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.video-modal__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal__bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: #fff;
}
.video-modal__bar strong {
  display: block;
  font-size: 1rem;
}
.video-modal__bar span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}
.video-modal__close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}
.stats-grid, .content-grid { display:grid; gap: 16px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat-card, .panel-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(216, 225, 232, 0.95);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}
.panel-card--illustrated {
  position: relative;
  overflow: hidden;
}
.panel-card--illustrated > :not(.panel-card-drawing) {
  position: relative;
  z-index: 1;
}
.panel-card-drawing {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-8deg);
  filter: grayscale(1) contrast(1.1);
}
.panel-card-drawing img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.stat-card strong, .panel-card h2 { display:block; margin-bottom: 8px; }
.stat-card span, .panel-card p { color: var(--muted); line-height: 1.6; }
.archive-import {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.archive-import__heading {
  display: grid;
  gap: 8px;
}
.archive-import__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.archive-import__lead,
.archive-import__copy {
  min-height: 100%;
}
.panel-card.archive-import__lead.panel-card--illustrated {
  border-left: 6px solid var(--brand);
  border-top: 3px solid var(--brand-2);
  background-image: 
    radial-gradient(rgba(20, 108, 95, 0.04) 1.2px, transparent 1.2px),
    linear-gradient(135deg, #ffffff 0%, #f6faf8 60%, #edf5f1 100%);
  background-size: 16px 16px, 100% 100%;
  background-position: 0 0, 0 0;
  padding: 42px 36px;
  position: relative;
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.panel-card.archive-import__lead.panel-card--illustrated:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 65px rgba(15, 23, 42, 0.1);
}
.panel-card.archive-import__lead.panel-card--illustrated h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.75rem;
  color: var(--brand);
  margin-top: 0;
  margin-bottom: 24px;
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 1.25;
  position: relative;
  padding-bottom: 12px;
}
.panel-card.archive-import__lead.panel-card--illustrated h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--brand-2);
  border-radius: 2px;
}
.panel-card.archive-import__lead.panel-card--illustrated p {
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 1.15rem;
  line-height: 1.85;
  color: #374151;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 72ch;
}
.panel-card.archive-import__lead.panel-card--illustrated p:first-of-type {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #111827;
  font-weight: 400;
}
.panel-card.archive-import__lead.panel-card--illustrated p:first-of-type::first-letter {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand);
  font-family: Georgia, serif;
  margin-right: 2px;
  vertical-align: -3px;
}
.panel-card.archive-import__lead.panel-card--illustrated p:last-child {
  margin-bottom: 0;
}
.panel-card.archive-import__lead.panel-card--illustrated .panel-card-drawing {
  opacity: 0.15;
  width: 96px;
  height: 96px;
  top: 24px;
  right: 24px;
  transform: rotate(-10deg) scale(1.1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: sepia(1) hue-rotate(100deg) saturate(1.5) contrast(0.8) brightness(1.1);
}
.panel-card.archive-import__lead.panel-card--illustrated:hover .panel-card-drawing {
  opacity: 0.22;
  transform: rotate(-5deg) scale(1.2);
}
.archive-import__copy {
  display: grid;
  gap: 12px;
}
.archive-import__copy p {
  margin: 0;
}
.archive-import__media {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.archive-import__figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(217, 225, 234, 0.8);
  box-shadow: 0 12px 24px rgba(17, 24, 32, 0.06);
}
.archive-import__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Core Team Full Width Showcase */
.team-full-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(20, 108, 95, 0.15);
}
.team-full-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Individual Team Member Cards */
.team-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(216, 225, 232, 0.75);
  border-radius: 24px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
}
.team-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  background: #f7fafc;
  border: 1px solid rgba(216, 225, 232, 0.4);
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card:hover .team-photo {
  transform: scale(1.06);
}
.team-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 6px;
}
.team-info h2 {
  font-size: 1.3rem !important;
  color: var(--brand);
  margin: 0 !important;
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.team-info .role {
  font-size: 0.88rem;
  color: var(--brand-2);
  font-weight: 750;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
}

.document-shell {
  display: grid;
  gap: 18px;
  padding: 14px 0 28px;
}
.document-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
}
.document-hero h1 {
  margin: 10px 0 12px;
  max-width: 18ch;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: .95;
}
.document-actions {
  display: grid;
  gap: 10px;
  justify-items: stretch;
}
.document-viewer {
  display: grid;
  gap: 14px;
  padding: 14px;
}
.flipbook-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.flipbook-meta {
  display: grid;
  gap: 4px;
}
.flipbook-meta strong {
  color: var(--ink);
  font-size: 1.05rem;
}
.flipbook-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.flipbook-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(78vh, 920px);
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(217, 225, 234, 0.9);
  background:
    radial-gradient(circle at top left, rgba(20, 108, 95, 0.08), transparent 36%),
    linear-gradient(180deg, #eef3f7, #e8eef2);
  overflow: hidden;
}
.flipbook-stage::before {
  content: "";
  position: absolute;
  inset: auto 16px 16px;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(24, 34, 48, 0.18), transparent);
  filter: blur(16px);
  opacity: .55;
  pointer-events: none;
}
.flipbook-book {
  position: relative;
  width: min(100%, 760px);
  aspect-ratio: 0.72;
  perspective: 2400px;
  transform-style: preserve-3d;
}
.flipbook-spine {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(17, 24, 32, 0.25), transparent);
  opacity: .7;
  pointer-events: none;
  z-index: 1;
}
.flipbook-sheet {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(242,246,250,.96));
  border: 1px solid rgba(217, 225, 234, 0.96);
  box-shadow: 0 24px 50px rgba(24, 34, 48, .14);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform 760ms cubic-bezier(.2, .75, .14, 1), box-shadow 760ms cubic-bezier(.2, .75, .14, 1);
}
.flipbook-sheet::before,
.flipbook-sheet::after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  width: 24px;
  border-radius: 999px;
  pointer-events: none;
  opacity: .34;
}
.flipbook-sheet::before {
  left: 14px;
  background: linear-gradient(90deg, rgba(24, 34, 48, .12), transparent);
}
.flipbook-sheet::after {
  right: 14px;
  background: linear-gradient(270deg, rgba(24, 34, 48, .12), transparent);
}
.flipbook-sheet canvas {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(17, 24, 32, .12);
}
.flipbook-sheet--front {
  z-index: 3;
  transform-origin: left center;
  transform: rotateY(0deg);
}
.flipbook-sheet--back {
  z-index: 2;
  transform-origin: right center;
  transform: rotateY(180deg);
}
.flipbook-book[data-turn="prev"] .flipbook-sheet--back {
  transform: rotateY(-180deg);
}
.flipbook-book.is-turning-next .flipbook-sheet--front {
  transform: rotateY(-180deg);
  box-shadow: 0 12px 28px rgba(24, 34, 48, .10);
}
.flipbook-book.is-turning-next .flipbook-sheet--back {
  transform: rotateY(0deg);
}
.flipbook-book.is-turning-prev .flipbook-sheet--front {
  transform: rotateY(180deg);
  box-shadow: 0 12px 28px rgba(24, 34, 48, .10);
}
.flipbook-book.is-turning-prev .flipbook-sheet--back {
  transform: rotateY(0deg);
}
.document-empty {
  position: absolute;
  inset: 16px;
  display: grid;
  place-items: center;
  padding: 28px;
  border-radius: 22px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
  background: rgba(255, 255, 255, .72);
  border: 1px dashed rgba(20, 108, 95, 0.2);
  backdrop-filter: blur(10px);
}
.document-empty[hidden] {
  display: none;
}
.document-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.document-status.is-error {
  color: #b42318;
}
.archive-document-card {
  display: grid;
  gap: 14px;
}
.archive-document-card__image {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(217, 225, 234, 0.9);
}
.archive-document-card__image img {
  display: block;
  width: 100%;
  height: auto;
}
.archive-document-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.archive-document-card__actions .btn {
  flex: 1 1 160px;
  justify-content: center;
}
body.login-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(20, 108, 95, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(187, 90, 30, 0.16), transparent 30%),
    linear-gradient(135deg, #08131a 0%, #102631 44%, #eef5f4 44%, #eef5f4 100%);
}
body.login-page .login-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: 40px 0;
}
.login-intro {
  color: #eef5f4;
  padding: 28px 10px 28px 0;
}
.login-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.login-brand .brand-copy strong {
  font-size: 1rem;
}
.login-brand .brand-copy small {
  color: rgba(238, 245, 244, 0.68);
}
body.login-page .eyebrow {
  color: #7fd7c7;
}
body.login-page .login-intro h1 {
  max-width: 11ch;
  margin: 12px 0 16px;
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  line-height: .94;
  letter-spacing: -0.03em;
}
body.login-page .lede {
  max-width: 55ch;
  color: rgba(238, 245, 244, 0.78);
  font-size: 1.05rem;
}
.login-highlights {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  max-width: 620px;
}
.login-highlights article {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}
.login-highlights strong,
.login-highlights span {
  display: block;
}
.login-highlights strong {
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 1rem;
}
.login-highlights span {
  color: rgba(238, 245, 244, 0.76);
  line-height: 1.5;
}
.login-panel {
  display: grid;
  gap: 18px;
  align-self: center;
  padding: 28px;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(4, 16, 24, 0.28);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}
.login-panel-header h2 {
  margin: 6px 0 8px;
  font-size: 1.45rem;
}
.login-shell {
  display: grid;
  gap: 24px;
  padding-bottom: 10px;
}
.login-hero {
  padding: 72px 0 8px;
}
.login-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.login-panel {
  display: grid;
  gap: 14px;
}
.login-note {
  padding: 12px 14px;
  border-radius: 14px;
  background: #f3f8f6;
  border: 1px solid rgba(20, 108, 95, 0.12);
  color: var(--muted);
}
.login-form {
  display: grid;
  gap: 12px;
}
.login-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}
.login-form span {
  font-size: .92rem;
}
.login-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}
.login-form input:focus {
  outline: 2px solid rgba(20, 108, 95, 0.18);
  border-color: var(--brand);
}
.login-submit {
  width: 100%;
  margin-top: 4px;
}
.login-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--brand);
  font-weight: 700;
}
.login-status.is-error { color: #b42318; }
.login-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.login-footer {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.login-footer p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}
.donation-summary {
  display: grid;
  gap: 14px;
}
.donation-summary dl {
  display: grid;
  gap: 10px;
  margin: 0;
}
.donation-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.donation-summary dt {
  color: var(--muted);
  font-weight: 700;
}
.donation-summary dd {
  margin: 0;
  text-align: right;
}
.content-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--brand);
  font-weight: 700;
  text-align: center;
}
.content-status.is-error {
  color: #b42318;
}
.content-browser {
  display: grid;
  gap: 14px;
}
.education-skill-page {
  background:
    radial-gradient(circle at top left, rgba(20, 108, 95, 0.08), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(212, 175, 55, 0.1), transparent 24%),
    linear-gradient(180deg, #f8faf9 0%, #eef4f1 100%);
}
.policy-shell {
  display: grid;
  gap: 16px;
  padding-bottom: 16px;
}
.policy-hero {
  padding-bottom: 18px;
}
.legal-aid-page {
  background:
    radial-gradient(circle at top left, rgba(20, 108, 95, 0.08), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(212, 175, 55, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfcfb 0%, #eef3ef 100%);
}
.legal-aid-shell {
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 28px;
}
.legal-aid-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.9fr);
  gap: 20px;
  align-items: start;
}
.legal-aid-head-copy {
  min-width: 0;
}
.legal-aid-head-copy h1 {
  margin: 8px 0 16px;
  max-width: 13ch;
  font-size: 4rem;
  line-height: 0.95;
  letter-spacing: 0;
}
.legal-aid-lede {
  max-width: 62ch;
  font-size: 1.05rem;
}
.legal-aid-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.legal-aid-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(20, 108, 95, 0.08);
  border: 1px solid rgba(20, 108, 95, 0.14);
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0;
}
.legal-aid-head-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(150deg, #091511 0%, #132921 56%, #0f1a17 100%);
  color: rgba(239, 247, 242, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 28px 56px rgba(10, 18, 16, 0.18);
}
.legal-aid-card-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.24);
  color: #f7e8b0;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.legal-aid-head-card h2 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: 0;
}
.legal-aid-head-card p {
  margin: 0;
  color: rgba(239, 247, 242, 0.8);
  line-height: 1.75;
}
.legal-aid-hero {
  margin: 0;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 251, 249, 0.98));
  border: 1px solid rgba(217, 225, 234, 0.92);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}
.legal-aid-hero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}
.legal-aid-hero figcaption {
  padding: 0 6px 2px;
  color: var(--muted);
  line-height: 1.6;
}
.legal-aid-story {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  gap: 18px;
  align-items: start;
}
.legal-aid-article {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 251, 248, 0.98));
  border: 1px solid rgba(217, 225, 234, 0.92);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.06);
}
.legal-aid-article h2 {
  margin: 6px 0 0;
  max-width: 14ch;
  font-size: 2.15rem;
  line-height: 1.02;
  letter-spacing: 0;
}
.legal-aid-article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.03rem;
}
.legal-aid-highlight {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(20, 108, 95, 0.08), rgba(212, 175, 55, 0.09));
  border: 1px solid rgba(20, 108, 95, 0.12);
}
.legal-aid-highlight strong {
  color: var(--brand);
  font-size: 2.7rem;
  line-height: 0.95;
  letter-spacing: 0;
}
.legal-aid-highlight span {
  color: var(--text);
  font-weight: 650;
  line-height: 1.6;
}
.legal-aid-aside {
  display: grid;
  gap: 16px;
}
.legal-aid-aside-card,
.legal-aid-stat-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 26px;
}
.legal-aid-aside-card {
  background: linear-gradient(180deg, #ffffff, #f6f9f7);
  border: 1px solid rgba(217, 225, 234, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}
.legal-aid-notes {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.legal-aid-notes li {
  padding-top: 12px;
  border-top: 1px solid rgba(20, 108, 95, 0.12);
  color: var(--text);
  line-height: 1.6;
}
.legal-aid-notes li:first-child {
  padding-top: 0;
  border-top: 0;
}
.legal-aid-stat-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent 36%),
    linear-gradient(150deg, #10231d 0%, #1a3028 100%);
  border: 1px solid rgba(212, 175, 55, 0.16);
  color: rgba(246, 251, 248, 0.9);
  box-shadow: 0 24px 52px rgba(10, 18, 16, 0.14);
}
.legal-aid-stat-card strong {
  color: #ffffff;
  font-size: 3rem;
  line-height: 0.95;
  letter-spacing: 0;
}
.legal-aid-stat-card p {
  margin: 0;
  color: rgba(246, 251, 248, 0.82);
  line-height: 1.72;
}
.legal-aid-footer-strip {
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(20, 108, 95, 0.08), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(20, 108, 95, 0.12);
  text-align: center;
}
.legal-aid-footer-strip p {
  margin: 0;
  color: var(--text);
  font-weight: 750;
  line-height: 1.55;
}
.health-hygiene-page {
  background:
    radial-gradient(circle at top left, rgba(20, 108, 95, 0.08), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(61, 132, 191, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfcfb 0%, #eef4f1 100%);
}
.health-hygiene-shell {
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 28px;
}
.health-hygiene-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.9fr);
  gap: 20px;
  align-items: start;
}
.health-hygiene-head-copy {
  min-width: 0;
}
.health-hygiene-head-copy h1 {
  margin: 8px 0 16px;
  max-width: 12ch;
  font-size: 4rem;
  line-height: 0.95;
  letter-spacing: 0;
}
.health-hygiene-lede {
  max-width: 62ch;
  font-size: 1.05rem;
}
.health-hygiene-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.health-hygiene-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(20, 108, 95, 0.08);
  border: 1px solid rgba(20, 108, 95, 0.14);
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0;
}
.health-hygiene-head-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(150deg, #10231d 0%, #1a3028 100%);
  color: rgba(239, 247, 242, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 28px 56px rgba(10, 18, 16, 0.15);
}
.health-hygiene-card-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(61, 132, 191, 0.14);
  border: 1px solid rgba(61, 132, 191, 0.24);
  color: #d9ecff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.health-hygiene-head-card h2 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: 0;
}
.health-hygiene-head-card p {
  margin: 0;
  color: rgba(239, 247, 242, 0.8);
  line-height: 1.75;
}
.health-hygiene-hero {
  margin: 0;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 251, 249, 0.98));
  border: 1px solid rgba(217, 225, 234, 0.92);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}
.health-hygiene-hero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}
.health-hygiene-hero figcaption {
  padding: 0 6px 2px;
  color: var(--muted);
  line-height: 1.6;
}
.health-hygiene-story {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  gap: 18px;
  align-items: start;
}
.health-hygiene-article {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 251, 248, 0.98));
  border: 1px solid rgba(217, 225, 234, 0.92);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.06);
}
.health-hygiene-article h2 {
  margin: 6px 0 0;
  max-width: 14ch;
  font-size: 2.15rem;
  line-height: 1.02;
  letter-spacing: 0;
}
.health-hygiene-article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.03rem;
}
.health-hygiene-highlight {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(20, 108, 95, 0.08), rgba(61, 132, 191, 0.09));
  border: 1px solid rgba(20, 108, 95, 0.12);
}
.health-hygiene-highlight strong {
  color: var(--brand);
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0;
}
.health-hygiene-highlight span {
  color: var(--text);
  font-weight: 650;
  line-height: 1.6;
}
.health-hygiene-aside {
  display: grid;
  gap: 16px;
}
.health-hygiene-aside-card,
.health-hygiene-side-visual {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 26px;
}
.health-hygiene-aside-card {
  background: linear-gradient(180deg, #ffffff, #f6f9f7);
  border: 1px solid rgba(217, 225, 234, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}
.health-hygiene-notes {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.health-hygiene-notes li {
  padding-top: 12px;
  border-top: 1px solid rgba(20, 108, 95, 0.12);
  color: var(--text);
  line-height: 1.6;
}
.health-hygiene-notes li:first-child {
  padding-top: 0;
  border-top: 0;
}
.health-hygiene-side-visual {
  margin: 0;
  background: linear-gradient(180deg, #fff, #f8faf9);
  border: 1px solid rgba(217, 225, 234, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}
.health-hygiene-side-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 18px;
}
.health-hygiene-side-visual figcaption {
  color: var(--muted);
  line-height: 1.55;
}
.health-hygiene-footer-strip {
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(20, 108, 95, 0.08), rgba(61, 132, 191, 0.08));
  border: 1px solid rgba(20, 108, 95, 0.12);
  text-align: center;
}
.health-hygiene-footer-strip p {
  margin: 0;
  color: var(--text);
  font-weight: 750;
  line-height: 1.55;
}
.environment-page {
  background:
    radial-gradient(circle at top left, rgba(20, 108, 95, 0.08), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(88, 142, 71, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfcfb 0%, #eef4ee 100%);
}
.environment-shell {
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 28px;
}
.environment-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.9fr);
  gap: 20px;
  align-items: start;
}
.environment-head-copy {
  min-width: 0;
}
.environment-head-copy h1 {
  margin: 8px 0 16px;
  max-width: 12ch;
  font-size: 4rem;
  line-height: 0.95;
  letter-spacing: 0;
}
.environment-lede {
  max-width: 62ch;
  font-size: 1.05rem;
}
.environment-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.environment-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(88, 142, 71, 0.08);
  border: 1px solid rgba(88, 142, 71, 0.14);
  color: #49743b;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0;
}
.environment-head-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(150deg, #10231d 0%, #1a3028 100%);
  color: rgba(239, 247, 242, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 28px 56px rgba(10, 18, 16, 0.15);
}
.environment-card-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(88, 142, 71, 0.14);
  border: 1px solid rgba(88, 142, 71, 0.24);
  color: #dff3d8;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.environment-head-card h2 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: 0;
}
.environment-head-card p {
  margin: 0;
  color: rgba(239, 247, 242, 0.8);
  line-height: 1.75;
}
.environment-hero {
  margin: 0;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 251, 249, 0.98));
  border: 1px solid rgba(217, 225, 234, 0.92);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}
.environment-hero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}
.environment-hero figcaption {
  padding: 0 6px 2px;
  color: var(--muted);
  line-height: 1.6;
}
.environment-story {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  gap: 18px;
  align-items: start;
}
.environment-article {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 251, 248, 0.98));
  border: 1px solid rgba(217, 225, 234, 0.92);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.06);
}
.environment-article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.03rem;
}
.environment-highlight {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(88, 142, 71, 0.08), rgba(20, 108, 95, 0.08));
  border: 1px solid rgba(88, 142, 71, 0.12);
}
.environment-highlight strong {
  color: #49743b;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0;
}
.environment-highlight span {
  color: var(--text);
  font-weight: 650;
  line-height: 1.6;
}
.environment-aside {
  display: grid;
  gap: 16px;
}
.environment-aside-card,
.environment-side-visual {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 26px;
}
.environment-aside-card {
  background: linear-gradient(180deg, #ffffff, #f6f9f7);
  border: 1px solid rgba(217, 225, 234, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}
.environment-notes {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.environment-notes li {
  padding-top: 12px;
  border-top: 1px solid rgba(88, 142, 71, 0.12);
  color: var(--text);
  line-height: 1.6;
}
.environment-notes li:first-child {
  padding-top: 0;
  border-top: 0;
}
.environment-side-visual {
  margin: 0;
  background: linear-gradient(180deg, #fff, #f8faf9);
  border: 1px solid rgba(217, 225, 234, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}
.environment-side-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 18px;
}
.environment-side-visual figcaption {
  color: var(--muted);
  line-height: 1.55;
}
.environment-footer-strip {
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(88, 142, 71, 0.08), rgba(20, 108, 95, 0.08));
  border: 1px solid rgba(88, 142, 71, 0.12);
  text-align: center;
}
.environment-footer-strip p {
  margin: 0;
  color: var(--text);
  font-weight: 750;
  line-height: 1.55;
}
.sports-page {
  background:
    radial-gradient(circle at top left, rgba(20, 108, 95, 0.08), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(39, 98, 173, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfcfb 0%, #eef4ee 100%);
}
.sports-shell {
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 28px;
}
.sports-head {
  display: grid;
  gap: 10px;
}
.sports-head-copy {
  min-width: 0;
  text-align: right;
}
.sports-head-copy h1 {
  margin: 8px 0 16px auto;
  max-width: 8ch;
  font-size: 4rem;
  line-height: 0.95;
  letter-spacing: 0;
}
.sports-lede {
  max-width: 62ch;
  margin-left: auto;
  font-size: 1.05rem;
}
.sports-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.sports-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(20, 108, 95, 0.08);
  border: 1px solid rgba(20, 108, 95, 0.14);
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0;
}
.sports-hero {
  margin: 0;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 251, 249, 0.98));
  border: 1px solid rgba(217, 225, 234, 0.92);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}
.sports-hero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}
.sports-hero figcaption {
  padding: 0 6px 2px;
  color: var(--muted);
  line-height: 1.6;
}
.sports-story {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  gap: 18px;
  align-items: start;
}
.sports-article {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 251, 248, 0.98));
  border: 1px solid rgba(217, 225, 234, 0.92);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.06);
}
.sports-article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.03rem;
}
.sports-highlight {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(20, 108, 95, 0.08), rgba(39, 98, 173, 0.08));
  border: 1px solid rgba(20, 108, 95, 0.12);
}
.sports-highlight strong {
  color: var(--brand);
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0;
}
.sports-highlight span {
  color: var(--text);
  font-weight: 650;
  line-height: 1.6;
}
.sports-aside {
  display: grid;
  gap: 16px;
}
.sports-aside-card,
.sports-side-visual {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 26px;
}
.sports-aside-card {
  background: linear-gradient(180deg, #ffffff, #f6f9f7);
  border: 1px solid rgba(217, 225, 234, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}
.sports-card-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(39, 98, 173, 0.14);
  border: 1px solid rgba(39, 98, 173, 0.24);
  color: #1f5f9f;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.sports-notes {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sports-notes li {
  padding-top: 12px;
  border-top: 1px solid rgba(20, 108, 95, 0.12);
  color: var(--text);
  line-height: 1.6;
}
.sports-notes li:first-child {
  padding-top: 0;
  border-top: 0;
}
.sports-side-visual {
  margin: 0;
  background: linear-gradient(180deg, #fff, #f8faf9);
  border: 1px solid rgba(217, 225, 234, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}
.sports-side-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 18px;
}
.sports-side-visual figcaption {
  color: var(--muted);
  line-height: 1.55;
}
.sports-footer-strip {
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(20, 108, 95, 0.08), rgba(39, 98, 173, 0.08));
  border: 1px solid rgba(20, 108, 95, 0.12);
  text-align: center;
}
.sports-footer-strip p {
  margin: 0;
  color: var(--text);
  font-weight: 750;
  line-height: 1.55;
}
body.careers-page {
  background:
    radial-gradient(circle at top left, rgba(20, 108, 95, 0.11), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(211, 175, 55, 0.14), transparent 26%),
    linear-gradient(180deg, #fbfcfc 0%, #eef5f1 100%);
}
.careers-shell {
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 28px;
}
.careers-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 22px;
  align-items: center;
}
.careers-hero-copy {
  min-width: 0;
}
.careers-hero-copy h1 {
  margin: 8px 0 14px;
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}
.career-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.career-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(20, 108, 95, 0.08);
  border: 1px solid rgba(20, 108, 95, 0.14);
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1;
}
.careers-hero-figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #f4f8f6);
  border: 1px solid rgba(217, 225, 234, 0.92);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}
.careers-hero-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
}
.careers-hero-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(217, 225, 234, 0.9);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  display: grid;
  gap: 6px;
}
.careers-hero-caption strong {
  color: var(--brand);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}
.careers-hero-caption span {
  color: var(--muted);
  line-height: 1.55;
}
.careers-value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.careers-value-card,
.careers-process-card {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f7faf8);
  border: 1px solid rgba(217, 225, 234, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}
.careers-value-card h2,
.careers-process-card h2 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}
.careers-value-card p,
.careers-process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.careers-section {
  display: grid;
  gap: 18px;
  padding: 16px 0;
}
.careers-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}
.careers-section-head h2 {
  margin: 8px 0 10px;
  font-size: 2.1rem;
  line-height: 1.05;
}
.careers-section-head .lede {
  max-width: 58ch;
}
.careers-role-count {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(20, 108, 95, 0.08), rgba(211, 175, 55, 0.12));
  border: 1px solid rgba(20, 108, 95, 0.12);
  color: var(--text);
  font-weight: 700;
}
.careers-role-count strong {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--brand);
  margin-bottom: 4px;
}
.careers-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.career-role-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f8fbfa);
  border: 1px solid rgba(217, 225, 234, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.career-role-card.is-highlighted {
  border-color: rgba(20, 108, 95, 0.28);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.09);
  transform: translateY(-2px);
}
.career-role-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.career-role-chip,
.career-role-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.career-role-chip {
  background: rgba(20, 108, 95, 0.08);
  color: var(--brand);
  border: 1px solid rgba(20, 108, 95, 0.14);
}
.career-role-badge {
  background: rgba(211, 175, 55, 0.12);
  color: #8a5f00;
  border: 1px solid rgba(211, 175, 55, 0.22);
}
.career-role-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.18;
}
.career-role-summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.career-role-meta {
  display: grid;
  gap: 10px;
  margin: 0;
}
.career-role-meta div {
  padding-top: 10px;
  border-top: 1px solid rgba(217, 225, 234, 0.9);
}
.career-role-meta dt {
  margin: 0 0 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--brand);
  font-weight: 800;
}
.career-role-meta dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.career-role-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.careers-empty {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f8fbfa);
  border: 1px dashed rgba(20, 108, 95, 0.22);
}
.careers-empty h3 {
  margin: 0;
  font-size: 1.2rem;
}
.careers-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.career-step {
  margin: 0 0 10px;
  color: var(--brand-2);
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}
.careers-callout {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 24px 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(20, 108, 95, 0.08), rgba(211, 175, 55, 0.12));
  border: 1px solid rgba(20, 108, 95, 0.14);
}
.careers-callout h2 {
  margin: 8px 0 10px;
  font-size: 2rem;
  line-height: 1.08;
}
.careers-callout .lede {
  max-width: 58ch;
  margin: 0;
}
.women-empowerment-page {
  background:
    radial-gradient(circle at top left, rgba(145, 58, 90, 0.08), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(20, 108, 95, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfaf9 0%, #eef3f0 100%);
}
.women-shell {
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 28px;
}
.women-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 20px;
  align-items: start;
}
.women-intro-copy {
  min-width: 0;
}
.women-intro-copy h1 {
  margin: 8px 0 14px;
  max-width: 12ch;
  font-size: 4rem;
  line-height: 0.95;
  letter-spacing: 0;
}
.women-lede {
  max-width: 62ch;
}
.women-intro-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 26px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.08), transparent 36%),
    linear-gradient(150deg, #10231d 0%, #1a3028 100%);
  border: 1px solid rgba(212, 175, 55, 0.16);
  color: rgba(246, 251, 248, 0.9);
  box-shadow: 0 24px 52px rgba(10, 18, 16, 0.15);
}
.women-intro-card h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.16;
}
.women-intro-card p {
  margin: 0;
  color: rgba(246, 251, 248, 0.82);
  line-height: 1.7;
}
.women-story {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(251, 247, 249, .98));
  border: 1px solid rgba(216, 225, 232, 0.95);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.06);
}
.women-story-copy {
  display: grid;
  gap: 12px;
}
.women-story-copy h2 {
  margin: 8px 0 0;
  max-width: 14ch;
  font-size: 2.35rem;
  line-height: 0.98;
  letter-spacing: 0;
}
.women-story-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.03rem;
}
.women-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.women-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(145, 58, 90, 0.08);
  border: 1px solid rgba(145, 58, 90, 0.16);
  color: #7a3553;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0;
}
.women-story:nth-of-type(3) .women-tags span {
  background: rgba(20, 108, 95, 0.08);
  border-color: rgba(20, 108, 95, 0.14);
  color: var(--brand);
}
.women-story-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(217, 225, 234, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.women-story-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.women-story-figure figcaption {
  padding: 14px 16px;
  color: var(--muted);
  border-top: 1px solid rgba(217, 225, 234, 0.72);
  background: rgba(255, 255, 255, 0.94);
  line-height: 1.55;
}
.women-footer-strip {
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(20, 108, 95, 0.08), rgba(145, 58, 90, 0.08));
  border: 1px solid rgba(20, 108, 95, 0.12);
  text-align: center;
}
.women-footer-strip p {
  margin: 0;
  color: var(--text);
  font-weight: 750;
  line-height: 1.55;
}
.education-skill-shell {
  gap: 28px;
  padding-top: 18px;
  padding-bottom: 28px;
}
.education-band {
  display: grid;
  gap: 24px;
}
.education-hero-band,
.education-learning-band {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: start;
}
.education-hero-copy,
.education-learning-copy {
  min-width: 0;
}
.education-hero-band {
  grid-template-areas: "copy story";
}
.education-hero-copy {
  grid-area: copy;
}
.education-hero-copy h1 {
  margin: 8px 0 16px;
  max-width: 11ch;
  font-size: 4.1rem;
  line-height: 0.94;
  letter-spacing: 0;
}
.education-lede {
  max-width: 62ch;
  font-size: 1.05rem;
}
.education-hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.education-hero-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(20, 108, 95, 0.08);
  border: 1px solid rgba(20, 108, 95, 0.14);
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0;
}
.education-story-card {
  grid-area: story;
  display: grid;
  gap: 18px;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent 36%),
    linear-gradient(150deg, #091511 0%, #132921 56%, #0f1a17 100%);
  color: rgba(239, 247, 242, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 28px 56px rgba(10, 18, 16, 0.18);
}
.story-mark {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.24);
  color: #f7e8b0;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.education-story-card h2 {
  margin: 8px 0 12px;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: 0;
}
.education-story-card p {
  color: rgba(239, 247, 242, 0.8);
  line-height: 1.75;
}
.story-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.story-metric {
  min-width: 0;
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.story-metric strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.15;
}
.story-metric span {
  display: block;
  margin-top: 4px;
  color: rgba(239, 247, 242, 0.72);
  font-size: 0.82rem;
  line-height: 1.35;
}
.education-learning-band {
  grid-template-areas: "visual copy";
}
.education-learning-band .education-visual-card {
  grid-area: visual;
}
.education-learning-band .education-learning-copy {
  grid-area: copy;
}
.education-learning-copy h2,
.skill-band h2 {
  margin: 8px 0 14px;
  font-size: 2.75rem;
  line-height: 0.98;
  max-width: 12ch;
  letter-spacing: 0;
}
.education-pill-list {
  display: grid;
  gap: 0;
}
.education-pill-item {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid rgba(20, 108, 95, 0.12);
}
.education-pill-item:first-child {
  border-top: 0;
  padding-top: 0;
}
.education-pill-marker {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #146c5f, #d4af37);
  box-shadow: 0 0 0 6px rgba(20, 108, 95, 0.08);
}
.education-pill-item h3 {
  margin: 0 0 4px;
  font-size: 1.14rem;
  line-height: 1.2;
  letter-spacing: 0;
}
.education-pill-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.education-visual-card {
  margin: 0;
  display: grid;
  gap: 14px;
  align-self: start;
}
.education-visual-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(217, 225, 234, 0.9);
  background: #ffffff;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}
.education-visual-frame::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 28px;
  background: radial-gradient(closest-side, rgba(15, 23, 42, 0.24), transparent);
  filter: blur(16px);
  opacity: 0.42;
  pointer-events: none;
}
.education-visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.education-visual-caption {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(217, 225, 234, 0.8);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  color: var(--muted);
}
.education-visual-caption div {
  min-width: 0;
}
.education-visual-caption strong {
  display: block;
  color: var(--brand);
  font-size: 0.92rem;
  line-height: 1.2;
}
.education-visual-caption span {
  display: block;
  margin-top: 4px;
  line-height: 1.45;
}
.skill-band {
  gap: 18px;
  padding-top: 12px;
}
.skill-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 20px;
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.skill-pill {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  border-radius: 999px;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(135deg, #0e7540 0%, #095f33 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 30px rgba(10, 79, 54, 0.18);
  font-weight: 800;
  font-size: 0.86rem;
  line-height: 1.15;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.skill-pill:nth-child(4n + 2) {
  background: linear-gradient(135deg, #0d6b3a 0%, #0f5d39 100%);
}
.skill-pill:nth-child(4n + 3) {
  background: linear-gradient(135deg, #166f4b 0%, #0d5f53 100%);
}
.skill-pill:nth-child(4n + 4) {
  background: linear-gradient(135deg, #0d6b3a 0%, #134d37 100%);
}
.skill-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(10, 79, 54, 0.22);
}
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.content-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.content-tabs a {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}
.content-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.content-card {
  display: grid;
  gap: 10px;
}
.content-card .btn {
  justify-self: start;
}
.content-detail {
  margin-top: 4px;
}

/* ── Learn More About Us Section ──────────────────────────────────────── */
.learn-about-section {
  width: min(1180px, calc(100% - 32px));
  margin: 48px auto 0;
  padding: 48px 0 32px;
  border-top: 1px solid var(--line);
}

.learn-about-inner {
  text-align: center;
}

.learn-about-inner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--brand);
  margin: 8px 0 6px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.learn-about-inner .section-sub {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 50ch;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.learn-about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.learn-about-card {
  display: block;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(216, 225, 232, 0.8);
  border-radius: 16px;
  padding: 24px 18px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.learn-about-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 108, 95, 0.2);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.learn-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}

.learn-about-card h3 {
  font-size: 1rem;
  color: var(--brand);
  margin: 0 0 6px;
  font-weight: 800;
}

.learn-about-card p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 480px) {
  .learn-about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.site-footer {
  margin-top: 56px;
  padding: 40px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-main {
  display:grid;
  grid-template-columns: 1.4fr .8fr .8fr .9fr 1.1fr;
  gap: 28px;
  align-items:start;
}
.footer-brand p,
.footer-newsletter p {
  color: var(--muted);
  line-height: 1.65;
}
.footer-column,
.footer-newsletter {
  display:grid;
  gap: 10px;
}
.footer-column strong,
.footer-newsletter strong {
  color: var(--ink);
}
.footer-column a,
.footer-column span,
.footer-bottom a {
  color: var(--muted);
  text-decoration:none;
}
.footer-column a:hover,
.footer-bottom a:hover { color: var(--brand); }
.footer-social { display:flex; gap: 8px; flex-wrap: wrap; }
.footer-social a {
  display:inline-grid;
  place-items:center;
  width: 34px;
  height: 34px;
  border:1px solid var(--line);
  border-radius: 10px;
  color: var(--brand);
  text-decoration:none;
  font-weight: 800;
  background:#fff;
}
.newsletter-form {
  display:flex;
  gap: 8px;
  align-items:center;
}
.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
}
.newsletter-form button { background: var(--ink); color: white; }
.footer-bottom {
  display:flex;
  justify-content:space-between;
  gap: 16px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}
.footer-bottom nav { display:flex; gap: 14px; flex-wrap: wrap; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .site-header { grid-template-columns: auto auto; }
  body.mobile-nav-open { overflow: hidden; }
  .nav-toggle { display:block; position: relative; z-index: 10004; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-toggle span { transition: all 0.3s ease; }

  .site-header.nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 10001;
    background:
      radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.16), transparent 36%),
      rgba(9, 21, 27, 0.46);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .site-nav-panel {
    position: fixed;
    inset: auto max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    z-index: 10003;
    max-height: min(84svh, 720px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 252, 250, 0.96)),
      radial-gradient(circle at 12% 0%, rgba(212, 175, 55, 0.2), transparent 28%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(20, 108, 95, 0.14);
    border-radius: 28px 28px 22px 22px;
    box-shadow:
      0 28px 70px rgba(9, 21, 27, 0.28),
      inset 0 1px 0 rgba(255,255,255,0.7);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px)) scale(0.98);
    transform-origin: 50% 100%;
    transition: opacity 0.32s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .site-nav-panel::before {
    content: '';
    width: 42px;
    height: 4px;
    justify-self: center;
    border-radius: 999px;
    background: rgba(20, 108, 95, 0.18);
  }
  .nav-open .site-nav-panel { 
    opacity: 1; 
    pointer-events: auto; 
    transform: translateY(0) scale(1);
  }
  .mobile-menu-identity {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 2px 8px;
    border-bottom: 1px solid rgba(20, 108, 95, 0.1);
  }
  .mobile-menu-identity img {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 14px 30px rgba(20, 108, 95, 0.18);
  }
  .mobile-menu-identity span {
    display: grid;
    gap: 3px;
    min-width: 0;
  }
  .mobile-menu-identity strong {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.08;
  }
  .mobile-menu-identity small {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.35;
  }
  .site-nav { 
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }
  .site-nav a,
  .nav-group > a { 
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    font-size: .9rem;
    font-weight: 800;
    border-radius: 14px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(20, 108, 95, 0.1);
    transition: all 0.3s ease;
  }
  .site-nav a:hover,
  .nav-group > a:hover {
    background: var(--soft);
    color: var(--brand);
    transform: translateY(-1px);
  }
  .site-nav a.active::after { display: none; }
  .nav-group { width: 100%; text-align: left; }
  .nav-submenu {
    position: static;
    display: grid;
    min-width: 0;
    box-shadow: none;
    background: transparent;
    border: 0;
    padding: 6px 0 0;
    margin: 0;
    gap: 6px;
  }
  .nav-submenu a {
    min-height: 36px;
    padding: 8px 10px;
    border-radius: 12px;
    white-space: normal;
    font-size: .82rem;
  }
  .site-search {
    width: 100%;
  }
  .site-search-wrapper { width: 100%; }
  .site-search input {
    width: 100%;
    min-height: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,0.82);
  }
  .header-actions { 
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    width: 100%; 
    gap: 8px;
  }
  .header-actions .btn,
  .header-actions .account-button {
    min-height: 42px;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: .86rem;
    white-space: nowrap;
  }
  .account-menu {
    min-width: 0;
  }
  .account-dropdown {
    right: 0;
    width: min(240px, calc(100vw - 36px));
    border: 1px solid var(--line);
    border-radius: 16px;
  }
  body.login-page {
    background: linear-gradient(180deg, #0c1d26 0%, #0f2430 50%, #eef5f4 50%, #eef5f4 100%);
  }
  body.login-page .login-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 20px 0 30px;
  }
  .login-intro { padding-right: 0; }
  .login-highlights { max-width: none; }
}

@media (max-width: 900px) {
  .topbar { align-items:flex-start; }
  .topbar-left { display:none; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid, .content-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .content-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .donation-layout { grid-template-columns: 1fr; }
  .home-hero { grid-template-columns: 1fr; }
  .resource-hero {
    padding: 28px;
  }
  .policy-grid { grid-template-columns: 1fr; }
  .legal-aid-head,
  .legal-aid-story {
    grid-template-columns: 1fr;
  }
  .legal-aid-head-copy h1 {
    font-size: 3.2rem;
  }
  .legal-aid-article h2 {
    font-size: 2rem;
  }
  .legal-aid-stat-card strong {
    font-size: 2.6rem;
  }
  .health-hygiene-head,
  .health-hygiene-story {
    grid-template-columns: 1fr;
  }
  .health-hygiene-head-copy h1 {
    font-size: 3.2rem;
  }
  .health-hygiene-article h2 {
    font-size: 2rem;
  }
  .health-hygiene-highlight strong {
    font-size: 1.9rem;
  }
  .environment-head,
  .environment-story {
    grid-template-columns: 1fr;
  }
  .environment-head-copy h1 {
    font-size: 3.2rem;
  }
  .environment-article {
    gap: 14px;
  }
  .sports-head-copy {
    text-align: left;
  }
  .sports-head-copy h1 {
    margin-left: 0;
    font-size: 3.2rem;
  }
  .sports-lede {
    margin-left: 0;
  }
  .sports-tags {
    justify-content: flex-start;
  }
  .sports-story {
    grid-template-columns: 1fr;
  }
  .careers-hero {
    gap: 16px;
  }
  .careers-section-head,
  .careers-callout {
    display: grid;
    grid-template-columns: 1fr;
  }
  .careers-value-strip {
    grid-template-columns: 1fr;
  }
  .careers-role-grid,
  .careers-process {
    grid-template-columns: 1fr;
  }
  .careers-section-head {
    display: grid;
    align-items: start;
  }
  .careers-role-count {
    width: fit-content;
  }
  .women-intro,
  .women-story {
    grid-template-columns: 1fr;
  }
  .women-intro-copy h1 {
    font-size: 3.2rem;
  }
  .women-story-copy h2 {
    font-size: 2rem;
  }
  .education-hero-band,
  .education-learning-band {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "story";
  }
  .education-learning-band {
    grid-template-areas:
      "copy"
      "visual";
  }
  .education-hero-copy h1 {
    font-size: 3.2rem;
  }
  .education-learning-copy h2,
  .skill-band h2 {
    font-size: 2.2rem;
  }
  .story-metrics {
    grid-template-columns: 1fr;
  }
  .skill-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .resource-report-metrics,
  .resource-ledger__grid {
    grid-template-columns: 1fr;
  }
  .video-feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .topbar, .site-header, .site-footer, .shell { width: min(100% - 20px, 1180px); }
  .topbar { justify-content:center; }
  .topbar-right { justify-content:center; gap: 12px; width: 100%; }
  .site-header { padding: 10px; border-radius: 14px; }
  .brand-copy strong { font-size: .94rem; }
  .header-actions { gap: 8px; }
  .header-actions .account-button { width: auto; flex-shrink: 0; }
  body.login-page .login-shell { width: min(100% - 20px, 1240px); gap: 14px; }
  .login-panel { padding: 20px; border-radius: 22px; }
  .login-highlights { gap: 10px; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 12px; }
  .footer-brand,
  .footer-newsletter { grid-column: 1 / -1; }
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .footer-bottom { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .stats-grid, .content-grid { grid-template-columns: 1fr; }
  .archive-import__grid,
  .archive-import__media { grid-template-columns: 1fr; }
  .resource-hero {
    padding: 22px;
    border-radius: 24px;
  }
  .resource-hero__chips {
    gap: 8px;
  }
  .resource-chip {
    padding: 9px 12px;
    font-size: 0.78rem;
  }
  .resource-hero__mosaic,
  .resource-report-metrics,
  .resource-ledger__grid {
    grid-template-columns: 1fr;
  }
  .resource-video-card__overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }
  .video-feature-card__caption,
  .video-thumb-caption {
    gap: 2px;
  }
  .video-feed-grid {
    grid-template-columns: 1fr;
  }
  .video-modal {
    padding: 12px;
  }
  .video-modal__bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .document-hero { grid-template-columns: 1fr; }
  .document-actions { grid-template-columns: 1fr; }
  .document-viewer { padding: 12px; }
  .flipbook-stage { min-height: min(72vh, 760px); padding: 12px; }
  .flipbook-book { width: 100%; }
  .flipbook-sheet { padding: 14px; border-radius: 22px; }
  .flipbook-spine { top: 14px; bottom: 14px; }
  .content-list { grid-template-columns: 1fr; }
  .legal-aid-shell { gap: 20px; padding-top: 14px; }
  .legal-aid-head-copy h1 {
    font-size: 2.7rem;
  }
  .legal-aid-head-card,
  .legal-aid-article,
  .legal-aid-aside-card,
  .legal-aid-stat-card {
    padding: 20px;
    border-radius: 24px;
  }
  .legal-aid-hero {
    padding: 14px;
    border-radius: 24px;
  }
  .legal-aid-article h2 {
    font-size: 1.9rem;
  }
  .legal-aid-highlight strong {
    font-size: 2.35rem;
  }
  .legal-aid-footer-strip {
    padding: 16px;
    border-radius: 18px;
  }
  .health-hygiene-shell { gap: 20px; padding-top: 14px; }
  .health-hygiene-head-copy h1 {
    font-size: 2.7rem;
  }
  .health-hygiene-head-card,
  .health-hygiene-article,
  .health-hygiene-aside-card,
  .health-hygiene-side-visual {
    padding: 20px;
    border-radius: 24px;
  }
  .health-hygiene-hero {
    padding: 14px;
    border-radius: 24px;
  }
  .health-hygiene-article h2 {
    font-size: 1.9rem;
  }
  .health-hygiene-highlight strong {
    font-size: 1.8rem;
  }
  .health-hygiene-footer-strip {
    padding: 16px;
    border-radius: 18px;
  }
  .environment-shell { gap: 20px; padding-top: 14px; }
  .environment-head-copy h1 {
    font-size: 2.7rem;
  }
  .environment-head-card,
  .environment-article,
  .environment-aside-card,
  .environment-side-visual {
    padding: 20px;
    border-radius: 24px;
  }
  .environment-hero {
    padding: 14px;
    border-radius: 24px;
  }
  .environment-highlight strong {
    font-size: 1.45rem;
  }
  .environment-footer-strip {
    padding: 16px;
    border-radius: 18px;
  }
  .sports-shell { gap: 20px; padding-top: 14px; }
  .sports-head-copy h1 {
    font-size: 2.7rem;
  }
  .sports-article,
  .sports-aside-card,
  .sports-side-visual {
    padding: 20px;
    border-radius: 24px;
  }
  .sports-hero {
    padding: 14px;
    border-radius: 24px;
  }
  .sports-highlight strong {
    font-size: 1.8rem;
  }
  .sports-footer-strip {
    padding: 16px;
    border-radius: 18px;
  }
  .careers-shell { gap: 20px; padding-top: 14px; }
  .careers-hero-copy h1 {
    font-size: 2.7rem;
  }
  .careers-hero-figure,
  .career-role-card,
  .careers-value-card,
  .careers-process-card,
  .careers-empty {
    padding: 20px;
    border-radius: 24px;
  }
  .careers-hero-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
  }
  .careers-section-head h2,
  .careers-callout h2 {
    font-size: 1.9rem;
  }
  .career-role-card h3 {
    font-size: 1.28rem;
  }
  .career-role-actions,
  .careers-callout {
    gap: 12px;
  }
  .careers-callout {
    padding: 20px;
    border-radius: 22px;
  }
  .women-shell { gap: 20px; padding-top: 14px; }
  .women-intro-copy h1 {
    font-size: 2.7rem;
  }
  .women-intro-card,
  .women-story {
    padding: 20px;
    border-radius: 24px;
  }
  .women-story-copy h2 {
    font-size: 1.9rem;
  }
  .women-tags {
    gap: 8px;
  }
  .women-tags span {
    width: 100%;
    justify-content: center;
  }
  .women-footer-strip {
    padding: 16px;
    border-radius: 18px;
  }
  .education-skill-shell { gap: 22px; padding-top: 14px; }
  .education-hero-copy h1 {
    font-size: 2.6rem;
  }
  .education-learning-copy h2,
  .skill-band h2 {
    font-size: 1.95rem;
  }
  .education-story-card { padding: 20px; border-radius: 24px; }
  .education-visual-caption { flex-direction: column; }
  .skill-pill-grid { grid-template-columns: 1fr; gap: 12px; }
  .skill-pill { min-height: 68px; }
  .donation-summary dl div { flex-direction: column; }
  .donation-summary dd { text-align: left; }
  .home-hero { gap: 16px; padding-top: 56px; }
  .fragment-shell[data-fragment="header"] { min-height: 68px; }
  .fragment-shell[data-fragment="footer"] { min-height: 340px; }
  .fragment-shell[data-fragment="topbar"] { min-height: 34px; }
  .fragment-skeleton-topbar,
  .fragment-skeleton-header,
  .fragment-skeleton-footer {
    width: min(1180px, calc(100% - 20px));
  }
  .fragment-skeleton-header { grid-template-columns: 42px 1fr; }
  .fragment-skeleton-footer { grid-template-columns: 1fr; }
  .sk-line-nav,
  .sk-line-action,
  .sk-line-short,
  .sk-line-medium,
  .sk-line-long,
  .sk-line-col { width: 100%; }
  .sk-pill { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  .flipbook-sheet {
    transition: none;
  }
  .fragment-skeleton::before {
    animation: none;
  }
}

/* -------------------------------------
   Premium & Interactive Styles
   ------------------------------------- */

/* Header & Glassmorphism */
.glass-header {
  background: var(--header);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255,255,255,0.4);
}
.glass-header::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}

/* Premium Topbar */
.topbar-wrapper.premium-dark {
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.topbar-wrapper.premium-dark a {
  color: rgba(255, 255, 255, 0.8);
}
.topbar-wrapper.premium-dark a.gold-text {
  color: var(--brand-2);
  font-weight: 400 !important;
}
.topbar-wrapper.premium-dark a:hover {
  color: #fff;
}
.topbar-wrapper.premium-dark a.gold-text:hover {
  color: #fcf6ba;
}

/* Gold Button & Pulse Glow */
.btn-gold {
  background: linear-gradient(135deg, #146c5f 0%, #1c8c7c 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 0.88rem;
  box-shadow: 0 2px 8px rgba(20, 108, 95, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
}
.btn-gold:hover {
  box-shadow: 0 6px 20px rgba(20, 108, 95, 0.35);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1c8c7c 0%, #146c5f 100%);
}
.pulse-glow {
  animation: none;
}
@keyframes gold-pulse {
  0% { box-shadow: 0 0 0 0 rgba(20, 108, 95, 0.3); }
  100% { box-shadow: 0 0 12px 4px rgba(20, 108, 95, 0.08); }
}

/* Interactive Links */
.interactive-link {
  position: relative;
  transition: all 0.3s ease;
}
.interactive-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--brand-2);
  transition: width 0.3s ease;
}
.interactive-link:hover::after {
  width: 100%;
}
.interactive-link:hover {
  color: var(--brand);
}
.topbar-wrapper.premium-dark .interactive-link:hover {
  color: var(--brand-2);
}

/* Global Hover Animations for Cards */
.card, .panel-card, .stat-card, .archive-import__figure {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card:hover, .panel-card:hover, .stat-card:hover, .archive-import__figure:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 {
  text-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

/* -------------------------------------
   Premium Extras — Scrollbar, Selection,
   Focus, Transitions & Micro-interactions
   ------------------------------------- */

/* 1. Custom Scrollbar (Webkit) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.04);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d4af37 0%, #b8860b 100%);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #e6c84a 0%, #d4af37 100%);
  background-clip: padding-box;
}

/* 2. Selection Styling */
::selection {
  background: rgba(212, 175, 55, 0.28);
  color: var(--ink);
}
::-moz-selection {
  background: rgba(212, 175, 55, 0.28);
  color: var(--ink);
}

/* 3. Focus-Visible — Accessible Gold Ring */
*:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.7);
  outline-offset: 2px;
  border-radius: 4px;
  transition: outline-offset 0.15s ease;
}

/* 4. Smooth Transitions on All Links */
a {
  transition: color 0.3s, background-color 0.3s;
}

/* 5. Image Hover Zoom (cards & links) */
.card img,
.panel-card img,
.stat-card img,
.archive-import__figure img,
.content-card img,
.archive-document-card__image img,
a img {
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.45s ease;
  will-change: transform;
}
.card:hover img,
.panel-card:hover img,
.stat-card:hover img,
.archive-import__figure:hover img,
.content-card:hover img,
.archive-document-card__image:hover img,
a:hover img {
  transform: scale(1.06);
  filter: brightness(1.04);
}

/* 6. Gold Divider Utility */
.gold-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #d4af37 30%, #f5e6a3 50%, #d4af37 70%, transparent 100%);
  margin: 2rem 0;
  opacity: 0.7;
}

/* 7. Reveal Animation (Scroll-triggered via IntersectionObserver) */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible,
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 8. Enhanced Button Styles */
.btn {
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
}
.btn:hover::before {
  opacity: 1;
}
.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}
.btn.primary {
  position: relative;
  z-index: 0;
}
.btn.primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--gold-gradient, linear-gradient(135deg, #d4af37 0%, #f5e6a3 50%, #d4af37 100%));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
  pointer-events: none;
}
.btn.primary:hover {
  color: #111;
  border-color: transparent;
  text-shadow: 0 1px 1px rgba(255,255,255,0.4);
}
.btn.primary:hover::after {
  opacity: 1;
}

/* 9. Body Grain / Noise Texture Overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  background-image:
    repeating-conic-gradient(
      rgba(0,0,0,0.08) 0% 25%,
      transparent 0% 50%
    );
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

/* 10. Premium Footer Enhancement */
.site-footer-premium {
  background: linear-gradient(180deg, #0c1d26 0%, #162e3a 60%, #1a3848 100%);
  color: rgba(238, 245, 244, 0.85);
  padding: 0 0 32px;
  margin-top: 56px;
  border-top: 2px solid rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
}
.site-footer-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.6) 50%, transparent 100%);
}
.site-footer-premium a {
  color: rgba(238, 245, 244, 0.7);
  transition: color 0.3s ease;
}
.site-footer-premium a:hover {
  color: #f5e6a3;
}
.site-footer-premium strong {
  color: #fff;
}
.site-footer-premium .footer-social a {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(238, 245, 244, 0.7);
  transition: all 0.3s ease, box-shadow 0.3s ease;
}
.site-footer-premium .footer-social a:hover {
  color: #d4af37;
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.3), 0 0 6px rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.08);
}
.site-footer-premium .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
  color: rgba(238, 245, 244, 0.5);
}
.site-footer-premium .newsletter-form input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.site-footer-premium .newsletter-form input::placeholder {
  color: rgba(238, 245, 244, 0.4);
}
.site-footer-premium .newsletter-form input:focus {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}
.site-footer-premium .newsletter-form button {
  background: var(--gold-gradient, linear-gradient(135deg, #d4af37, #f5e6a3, #d4af37));
  color: #111;
  font-weight: 800;
  border: none;
  transition: all 0.3s ease;
}
.site-footer-premium .newsletter-form button:hover {
  box-shadow: 4px 16px rgba(212, 175, 55, 0.4);
  transform: translateY(-1px);
}

/* Submenu active override to prevent bottom underlines */
.nav-submenu a.active::after {
  display: none !important;
}

/* Live Search Styling */
.site-search-wrapper {
  position: relative;
  display: inline-block;
}
@media (max-width: 1120px) {
  .site-search-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 1.5rem 0;
  }
  .site-search {
    margin: 0 !important;
    width: 100%;
  }
}
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 420px;
  max-height: 380px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(24, 34, 48, 0.16);
  z-index: 10010;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1120px) {
  .search-results-dropdown {
    width: 100%;
    left: 0;
    right: 0;
  }
}
.search-results-dropdown[hidden] {
  display: none !important;
}
.search-group-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  font-weight: 800;
  padding: 10px 16px 4px;
  border-bottom: 1px solid rgba(20, 108, 95, 0.08);
  margin-bottom: 4px;
}
.search-result-item {
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  text-align: left;
}
.search-result-item:hover,
.search-result-item.keyboard-active {
  background: var(--soft);
  border-left-color: var(--brand-2);
  color: var(--brand);
}
.search-result-title {
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}
.search-result-badge {
  font-size: 0.68rem;
  padding: 2px 6px;
  background: rgba(20, 108, 95, 0.08);
  color: var(--brand);
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
}
.search-result-item:hover .search-result-badge,
.search-result-item.keyboard-active .search-result-badge {
  background: var(--brand);
  color: white;
}
.search-result-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-no-results {
  padding: 30px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Impact Timeline Styling */
.timeline-container {
  margin: 56px 0;
}
.timeline-heading-wrap {
  text-align: center;
  margin-bottom: 40px;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1024px) {
  .timeline-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .timeline-grid {
    grid-template-columns: 1fr;
  }
}
.timeline-item {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand);
  opacity: 0.7;
}
.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(20, 108, 95, 0.2);
}
.timeline-year {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}
.timeline-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  background: rgba(20, 108, 95, 0.06);
  color: var(--brand);
  border-radius: 999px;
  margin-bottom: 12px;
}
.timeline-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.08));
}
.timeline-desc {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.timeline-item--highlight {
  border-color: var(--brand-2);
  background: linear-gradient(185deg, rgba(255, 255, 255, 0.95), rgba(212, 175, 55, 0.05));
}
.timeline-item--highlight::before {
  background: var(--brand-2);
}
.timeline-item--highlight .timeline-year {
  color: #bfa15f;
}
.timeline-item--highlight .highlight-badge {
  background: rgba(212, 175, 55, 0.15);
  color: #a08443;
}

/* Full Width Timeline Image */
.timeline-image-section {
  margin: 48px 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  border: 1px solid var(--line);
}
.timeline-image-section img {
  display: block;
  width: 100%;
  height: auto;
}

/* Stat Card Large Numbers styling */
.stat-card strong {
  font-size: clamp(2.6rem, 5.5vw, 3.8rem) !important;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 12px;
}

/* ── Mobile Organization Name ── */
.mobile-only-brand-name {
  display: none;
}

@media (max-width: 1120px) {
  .mobile-only-brand-name {
    display: inline-block;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--brand);
    margin-left: 4px;
    letter-spacing: -0.01em;
  }
}

/* ── Header Z-Index Layer Fix ── */
[data-fragment="header"] {
  position: sticky;
  top: 0;
  z-index: 10000;
}
[data-fragment="header"] .fragment-display {
  z-index: 10000;
}

/* ── App Dock (Visible on all pages) ── */
.home-app-dock {
  display: none;
}

@media (max-width: 768px) {
  body.has-app-dock {
    padding-bottom: calc(78px + env(safe-area-inset-bottom)) !important;
  }

  .home-app-dock {
    position: fixed;
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 9990;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
    width: min(430px, calc(100% - 20px));
    margin: 0 auto;
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.62);
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,252,250,0.84)),
      radial-gradient(circle at 14% 0%, rgba(212, 175, 55, 0.2), transparent 34%);
    box-shadow:
      0 18px 46px rgba(15, 23, 42, 0.2),
      inset 0 1px 0 rgba(255,255,255,0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .home-app-dock__item {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 3px;
    min-width: 0;
    min-height: 52px;
    border-radius: 17px;
    color: #22423d;
    text-decoration: none;
    font-size: .66rem;
    font-weight: 800;
    line-height: 1;
    transition: transform .2s ease, background .2s ease, color .2s ease;
  }

  .home-app-dock__item svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .home-app-dock__item--primary {
    color: #fff;
    background: linear-gradient(135deg, #146c5f, #d4af37);
    box-shadow: 0 10px 22px rgba(20, 108, 95, .22);
  }

  .home-app-dock__item--primary svg {
    fill: currentColor;
    stroke: none;
  }

  .home-app-dock__item:active {
    transform: translateY(1px) scale(.98);
  }
}

@media (max-width: 390px) {
  .home-app-dock {
    gap: 3px;
    padding: 7px;
    border-radius: 22px;
  }

  .home-app-dock__item {
    min-height: 49px;
    font-size: .6rem;
  }

  .home-app-dock__item svg {
    width: 19px;
    height: 19px;
  }
}
