:root {
  --terra: #3BA5E0; --gold: #F0A830; --sage: #5CB85C; --navy: #1B6CA8;
  --sky: #4DB8E8; --warm-red: #E8952A;
  --dark: #1A3A52; --mid: #5A7A8A; --light: #FFFFFF;
  --white: #FFFFFF; --border: #E0EBF0;
  --terra-lt: #E8F4FC; --gold-lt: #FFF6E0; --sage-lt: #E8F8E8;
  --navy-lt: #E0EEF8; --sky-lt: #E8F4FC;
  --nav-bg: #1B6CA8;
  --hero-gradient: linear-gradient(135deg, #1B6CA8 0%, #3BA5E0 40%, #F0A830 100%);
}
[data-theme="dark"] {
  --light: #0F1A28; --white: #162030; --dark: #E8EEF2; --mid: #A0B8C8;
  --border: #2A3E52;
  --terra-lt: #142838; --gold-lt: #2A2818; --sage-lt: #142818;
  --navy-lt: #142838; --sky-lt: #142838;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
  background: var(--light); color: var(--dark); line-height: 1.65;
  -webkit-font-smoothing: antialiased; transition: background .3s, color .3s;
}
a { color: var(--terra); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* Layout */
.wrap { max-width: 820px; margin: 0 auto; padding: 0 20px; }
.wrap-wide { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
.site-nav {
  background: var(--nav-bg); position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 56px; gap: 12px;
}
.nav-logo { color: #fff; font-weight: 800; font-size: 1.1rem; text-decoration: none; white-space: nowrap; }
.nav-logo:hover { text-decoration: none; opacity: .9; }
.nav-links { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.8); font-size: .85rem; font-weight: 500;
  padding: 6px 10px; border-radius: 6px; transition: background .15s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,.12); color: #fff; text-decoration: none;
}
.lang-switch {
  display: flex; background: rgba(255,255,255,.1); border-radius: 20px;
  overflow: hidden; flex-shrink: 0;
}
.lang-switch a {
  color: rgba(255,255,255,.6); font-size: .8rem; font-weight: 600;
  padding: 5px 12px; transition: all .15s;
}
.lang-switch a:hover { text-decoration: none; color: #fff; }
.lang-switch a.active { background: var(--gold); color: #1A3A52; }
.mobile-menu-btn {
  display: none; background: none; border: none; color: #fff;
  font-size: 1.5rem; cursor: pointer; padding: 4px;
}
.theme-toggle {
  background: rgba(255,255,255,.1); border: none; color: #fff;
  width: 32px; height: 32px; border-radius: 50%; font-size: 1.1rem;
  cursor: pointer; flex-shrink: 0; transition: background .15s;
  display: flex; align-items: center; justify-content: center;
}
.theme-toggle:hover { background: rgba(255,255,255,.2); }

/* Hero — split two-column layout */
.hero {
  background: linear-gradient(135deg, #1A3A52 0%, #1B6CA8 100%);
  color: #fff; overflow: hidden;
}
.hero-inner {
  display: flex; align-items: stretch;
  max-width: 1200px; margin: 0 auto;
}
.hero-text {
  flex: 1; padding: 72px 48px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-photo {
  flex: 1; min-width: 0; position: relative;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 20%; display: block;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900;
  margin-bottom: 8px; letter-spacing: -.5px; text-transform: uppercase;
}
.hero .tagline {
  font-size: clamp(1.1rem, 2.8vw, 1.5rem); color: var(--gold);
  font-weight: 700; font-style: italic; margin-bottom: 16px;
}
.hero .subtitle {
  font-size: clamp(.95rem, 2vw, 1.15rem); opacity: .92;
  max-width: 480px; margin: 0 0 36px; line-height: 1.7;
}
.hero-cta {
  display: inline-block; padding: 14px 36px; background: var(--gold);
  color: #1A3A52; font-weight: 800; font-size: 1rem; border-radius: 30px;
  transition: background .15s, transform .15s, box-shadow .15s; border: none; cursor: pointer;
  text-transform: uppercase; letter-spacing: .5px;
}
.hero-cta:hover { background: #F5BC50; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); text-decoration: none; }

/* Urgent campaign alert */
.urgent-banner {
  background: #D45050; color: #fff; text-align: center; padding: 12px 20px;
  font-size: .9rem; font-weight: 700; letter-spacing: .2px;
}
.urgent-banner a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.urgent-banner strong { color: #FFE7A8; text-transform: uppercase; }

/* Featured video push */
.video-push {
  background: var(--white); padding: 56px 20px;
}
.video-push-card {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 32px; align-items: center; max-width: 1040px; margin: 0 auto;
  background: linear-gradient(135deg, #1A3A52 0%, #1B6CA8 100%);
  color: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 12px 36px rgba(27,108,168,.22);
}
.video-push-thumb {
  position: relative; display: block; min-height: 300px; background: #0F1A28; overflow: hidden;
}
.video-push-thumb img {
  width: 100%; height: 100%; min-height: 300px; object-fit: cover; display: block;
}
.video-push-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,26,40,.05), rgba(15,26,40,.45));
}
.video-push-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 70px; height: 70px; border-radius: 50%; z-index: 2;
  background: rgba(212,80,80,.95); color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.6rem; box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.video-push-body { padding: 34px 34px 34px 0; }
.video-kicker {
  color: var(--gold); font-weight: 900; text-transform: uppercase;
  letter-spacing: .8px; font-size: .78rem; margin-bottom: 8px;
}
.video-push h2 {
  color: #fff; font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.08; margin-bottom: 14px; text-transform: uppercase;
}
.video-push p { color: rgba(255,255,255,.86); margin-bottom: 18px; font-size: 1rem; }
.video-push-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.video-link {
  display: inline-block; padding: 11px 20px; border-radius: 24px;
  background: rgba(255,255,255,.12); color: #fff; font-weight: 800;
  text-transform: uppercase; letter-spacing: .4px; font-size: .86rem;
}
.video-link:hover { background: rgba(255,255,255,.2); text-decoration: none; }

/* Watch page */
.watch-hero {
  background: linear-gradient(135deg, #1A3A52 0%, #1B6CA8 70%, #D45050 100%);
  color: #fff; padding: 56px 20px 44px; text-align: center;
}
.watch-hero .kicker {
  color: var(--gold); font-weight: 900; text-transform: uppercase;
  letter-spacing: .8px; margin-bottom: 10px;
}
.watch-hero h1 {
  font-size: clamp(2rem, 6vw, 4rem); line-height: 1; font-weight: 900;
  text-transform: uppercase; max-width: 900px; margin: 0 auto 16px;
}
.watch-hero p { color: rgba(255,255,255,.88); max-width: 720px; margin: 0 auto; font-size: 1.1rem; }
.watch-section { padding: 48px 20px 64px; background: var(--white); }
.watch-grid {
  display: grid; grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: 34px; align-items: start; max-width: 1040px; margin: 0 auto;
}
.watch-frame {
  position: relative; width: 100%; padding-top: 177.77%; background: #000;
  border-radius: 20px; overflow: hidden; box-shadow: 0 16px 36px rgba(0,0,0,.28);
}
.watch-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.watch-copy h2 { color: var(--navy); font-size: 1.55rem; margin-bottom: 14px; text-transform: uppercase; }
.watch-copy p { color: var(--mid); margin-bottom: 16px; line-height: 1.75; }
.watch-copy ul { padding-left: 22px; margin: 20px 0; color: var(--mid); }
.watch-copy li { margin-bottom: 10px; }
.share-box {
  background: var(--gold-lt); border-left: 5px solid var(--gold);
  padding: 20px; border-radius: 12px; margin-top: 24px;
}
.share-box h3 { color: var(--dark); text-transform: uppercase; font-size: 1rem; margin-bottom: 8px; }
.share-box p { margin: 0; }

/* Stats bar — bold infographic tiles */
.stat-bar {
  background: var(--white); padding: 48px 20px;
}
[data-theme="dark"] .stat-bar { background: var(--white); }
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; max-width: 960px; margin: 0 auto; text-align: center;
}
.stat-card {
  padding: 24px 16px; border-radius: 12px; color: #fff;
  background: var(--terra);
}
.stat-card:nth-child(2) { background: var(--gold); }
.stat-card:nth-child(3) { background: #D45050; }
.stat-card:nth-child(4) { background: var(--navy); }
.stat-card .num {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; color: #fff;
  line-height: 1; margin-bottom: 6px;
}
.stat-card .label {
  font-size: .78rem; color: rgba(255,255,255,.9); margin-top: 4px;
  letter-spacing: .3px; font-weight: 600; text-transform: uppercase;
}

/* Sections — clean white background */
.section { padding: 64px 20px; background: var(--white); }
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 900;
  margin-bottom: 24px; color: var(--navy);
  text-transform: uppercase; letter-spacing: .5px;
  text-align: center;
}
.section-title::after {
  content: ''; display: block; width: 60px; height: 4px;
  background: var(--gold); margin: 12px auto 0; border-radius: 2px;
}
.section p, .section li {
  font-size: 1rem; line-height: 1.75; color: var(--mid); margin-bottom: 16px;
}
.section strong { color: var(--dark); }

/* Blue accent sections */
.section-blue {
  background: linear-gradient(135deg, #1A3A52 0%, #1B6CA8 100%);
  color: rgba(255,255,255,.92);
}
.section-blue .section-title { color: #fff; }
.section-blue .section-title::after { background: var(--gold); }
.section-blue p, .section-blue li { color: rgba(255,255,255,.85); }
.section-blue strong { color: var(--gold); }
.section-blue .issue-card {
  background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,.18);
}
.section-blue .issue-card h3 { color: #1A3A52; }
.section-blue .issue-card p { color: #5A7A8A; }
.section-blue a { color: var(--gold); }
.section-blue a:hover { color: #F5BC50; }
.section-blue hr.divider { background: var(--gold); }
.section-blue .about-photo { border-color: rgba(255,255,255,.25); }
.section-blue .about-bio h2 { color: #fff; }
.section-blue .about-bio .role { color: var(--gold); }
.section-blue .highlight-box,
.section-blue .highlight-box.terra,
.section-blue .highlight-box.gold,
.section-blue .highlight-box.sage,
.section-blue .highlight-box.navy { background: rgba(255,255,255,.08); border-left-color: var(--gold); }
.section-blue .highlight-box h3 { color: #fff; }
.section-blue .highlight-box p { color: rgba(255,255,255,.85); }
.section-blue .data-table th { background: var(--gold); color: #1A3A52; }
.section-blue .data-table td { color: rgba(255,255,255,.85); border-bottom-color: rgba(255,255,255,.12); }
.section-blue .data-table tr:nth-child(even) { background: rgba(255,255,255,.05); }
.section-blue .volunteer-form input,
.section-blue .volunteer-form textarea {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff;
}
.section-blue .volunteer-form input::placeholder,
.section-blue .volunteer-form textarea::placeholder { color: rgba(255,255,255,.5); }
.section-blue .volunteer-form input:focus,
.section-blue .volunteer-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240,168,48,.3); }

/* Issue detail on blue */
.issue-detail.section-blue {
  background: linear-gradient(135deg, #1A3A52 0%, #1B6CA8 100%);
  color: rgba(255,255,255,.92);
}
.issue-detail.section-blue h1 { color: #fff; }
.issue-detail.section-blue .issue-subtitle { color: rgba(255,255,255,.8); }
.issue-detail.section-blue h2 { background: var(--gold); color: #1A3A52; }
.issue-detail.section-blue p { color: rgba(255,255,255,.85); }
.issue-detail.section-blue li { color: rgba(255,255,255,.85); }
.issue-detail.section-blue strong { color: var(--gold); }
.issue-detail.section-blue a { color: var(--gold); }
.issue-detail.section-blue .highlight-box { background: rgba(255,255,255,.08); border-left-color: var(--gold); }
.issue-detail.section-blue .highlight-box h3 { color: #fff; }
.issue-detail.section-blue .highlight-box p { color: rgba(255,255,255,.85); }
.issue-detail.section-blue .data-table th { background: var(--gold); color: #1A3A52; }
.issue-detail.section-blue .data-table td { color: rgba(255,255,255,.85); border-bottom-color: rgba(255,255,255,.12); }
.issue-detail.section-blue .data-table tr:nth-child(even) { background: rgba(255,255,255,.05); }

/* Issue Cards — bold colored left border */
.issues-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px; margin-top: 32px;
}
.issue-card {
  background: var(--white); border-radius: 0 12px 12px 0; padding: 28px 24px;
  border-left: 5px solid var(--terra);
  box-shadow: 0 2px 16px rgba(27,108,168,.08);
  transition: transform .15s, box-shadow .15s;
}
.issue-card:nth-child(2) { border-left-color: var(--gold); }
.issue-card:nth-child(3) { border-left-color: var(--sage); }
.issue-card:nth-child(4) { border-left-color: var(--sky); }
.issue-card:nth-child(5) { border-left-color: var(--warm-red); }
.issue-card:nth-child(6) { border-left-color: var(--navy); }
.issue-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(27,108,168,.14); }
.issue-card .issue-icon {
  font-size: 1.6rem; margin-bottom: 12px; display: flex;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--terra); color: #fff;
}
.issue-card:nth-child(2) .issue-icon { background: var(--gold); }
.issue-card:nth-child(3) .issue-icon { background: var(--sage); }
.issue-card:nth-child(4) .issue-icon { background: var(--sky); }
.issue-card:nth-child(5) .issue-icon { background: var(--warm-red); }
.issue-card:nth-child(6) .issue-icon { background: var(--navy); }
.issue-card h3 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark);
}
.issue-card p { font-size: .92rem; line-height: 1.6; color: var(--mid); margin: 0; }
.issue-card .issue-link {
  display: inline-block; margin-top: 14px; font-size: .88rem;
  font-weight: 700; color: var(--terra); text-transform: uppercase; letter-spacing: .3px;
}

/* Countdown */
.countdown-bar {
  background: var(--navy); color: #fff; text-align: center;
  padding: 20px; font-size: .95rem;
}
.countdown-bar strong { color: var(--gold); }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1B6CA8 0%, #2890C8 100%);
  color: #fff; text-align: center; padding: 64px 20px;
}
.cta-section h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 900; margin-bottom: 12px; color: #fff; text-transform: uppercase; letter-spacing: .5px; }
.cta-section p { font-size: 1rem; opacity: .85; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; color: #fff; }
.cta-section .hero-cta { background: var(--gold); color: #1A3A52; }
.cta-section .hero-cta:hover { background: #F5BC50; color: #1A3A52; }

/* About page */
.about-header {
  display: flex; gap: 40px; align-items: flex-start; margin-bottom: 40px; flex-wrap: wrap;
}
.about-photo {
  width: 220px; height: 280px; object-fit: cover; border-radius: 12px;
  border: 3px solid var(--border); flex-shrink: 0;
}
.about-bio { flex: 1; min-width: 280px; }
.about-bio h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; color: var(--dark); }
.about-bio .role { color: var(--terra); font-weight: 600; font-size: 1rem; margin-bottom: 16px; }

/* Issue detail page */
.issue-detail { padding: 48px 20px; background: var(--white); }
.issue-detail h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 900;
  margin-bottom: 16px; color: var(--navy); text-transform: uppercase; letter-spacing: .3px;
}
.issue-detail .issue-subtitle {
  font-size: 1.05rem; color: var(--mid); line-height: 1.7; margin-bottom: 32px;
}
.issue-detail h2 {
  font-size: 1.25rem; font-weight: 800; margin: 36px 0 12px;
  padding: 10px 16px; background: var(--navy); color: #fff;
  border-radius: 6px; display: inline-block;
}
.issue-detail p { margin-bottom: 16px; line-height: 1.75; color: var(--mid); }
.issue-detail ul { padding-left: 24px; margin-bottom: 16px; }
.issue-detail li { margin-bottom: 8px; line-height: 1.7; color: var(--mid); }
.issue-detail strong { color: var(--dark); }
.issue-detail blockquote {
  border-left: 4px solid var(--gold); padding: 16px 20px; margin: 20px 0;
  background: var(--gold-lt); border-radius: 0 8px 8px 0; font-style: italic;
}

/* Highlight box — bold colored callout */
.highlight-box {
  padding: 24px; border-radius: 12px; margin: 24px 0;
  border-left: 5px solid var(--terra); background: var(--terra-lt);
}
.highlight-box.terra { background: var(--terra-lt); border-color: var(--terra); }
.highlight-box.gold { background: var(--gold-lt); border-color: var(--gold); }
.highlight-box.sage { background: var(--sage-lt); border-color: var(--sage); }
.highlight-box.navy { background: var(--navy-lt); border-color: var(--navy); }
.highlight-box h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; color: var(--dark); text-transform: uppercase; letter-spacing: .3px; }
.highlight-box p { margin: 0; }

/* Volunteer form */
.volunteer-form {
  max-width: 500px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 16px;
}
.volunteer-form input, .volunteer-form textarea {
  width: 100%; padding: 14px 18px; border: 2px solid var(--border);
  border-radius: 8px; font-size: 1rem; font-family: inherit;
  background: var(--white); color: var(--dark);
}
.volunteer-form input:focus, .volunteer-form textarea:focus {
  outline: none; border-color: var(--terra); box-shadow: 0 0 0 3px rgba(59,165,224,.2);
}
.volunteer-form button { align-self: center; }

/* Data table */
.data-table { width: 100%; border-collapse: collapse; margin: 20px 0; border-radius: 8px; overflow: hidden; }
.data-table th {
  background: #1B6CA8; color: #fff; padding: 12px 16px;
  text-align: left; font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .3px;
}
.data-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  font-size: .92rem; color: var(--mid);
}
.data-table tr:nth-child(even) { background: var(--white); }
[data-theme="dark"] .data-table th { background: #1B6CA8; color: #fff; }

/* Footer */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,.85); padding: 40px 20px;
  text-align: center;
}
.site-footer strong { color: #fff; }
.site-footer .tagline { color: var(--gold); font-weight: 600; margin: 8px 0; }
.site-footer .disclaimer { font-size: .78rem; margin-top: 16px; opacity: .5; }
.site-footer .social-links { margin: 16px 0; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; align-items: center; }
.site-footer .social-links a { color: rgba(255,255,255,.7); font-size: .9rem; }
.site-footer .social-links a:hover { color: #fff; text-decoration: none; }

/* Social icons (shared) */
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; min-width: 44px; min-height: 44px; max-width: 44px; max-height: 44px; border-radius: 50%; transition: background .2s, transform .15s; overflow: hidden; }
.social-icon svg { width: 22px; height: 22px; max-width: 22px; max-height: 22px; fill: currentColor; flex-shrink: 0; }
.social-icon:hover { transform: scale(1.1); }
.site-footer .social-icon { background: rgba(255,255,255,.1); color: rgba(255,255,255,.75); }
.site-footer .social-icon:hover { background: rgba(255,255,255,.2); color: #fff; }

/* Social icons on blue sections */
.section-blue .social-icon { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }
.section-blue .social-icon:hover { background: rgba(255,255,255,.22); color: #fff; }

/* Social bar (for contact / get-involved pages) */
.social-bar { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin: 24px 0; }
.social-bar .social-icon { width: 52px; height: 52px; min-width: 52px; min-height: 52px; max-width: 52px; max-height: 52px; }
.social-bar .social-icon svg { width: 26px; height: 26px; max-width: 26px; max-height: 26px; }

/* Social feed section */
.social-feed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
@media (max-width: 900px) { .social-feed { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }
.feed-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; overflow: hidden; transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.feed-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.2); }
/* Thumbnail — padding hack for Firefox compatibility (no aspect-ratio) */
.feed-card-thumb {
  display: block; position: relative; overflow: hidden;
  background: rgba(0,0,0,.3); padding-top: 56.25%;
}
.feed-card-thumb img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.feed-card:hover .feed-card-thumb img { transform: scale(1.05); }
.feed-card-thumb .play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; min-width: 56px; min-height: 56px; max-width: 56px; max-height: 56px; background: rgba(255,0,0,.9); border-radius: 50%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.4); transition: background .2s, transform .2s;
}
.feed-card-thumb .play-btn svg { width: 24px; height: 24px; max-width: 24px; max-height: 24px; fill: #fff; }
.feed-card:hover .play-btn { background: rgba(255,0,0,1); transform: translate(-50%, -50%) scale(1.1); }
/* Card body */
.feed-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.feed-card-date { font-size: .8rem; color: rgba(255,255,255,.5); font-weight: 500; }
.feed-card-title { font-weight: 700; font-size: 1.05rem; line-height: 1.35; color: #fff; }
.feed-card-title a { color: inherit; text-decoration: none; }
.feed-card-title a:hover { color: var(--gold); }
.feed-card-desc { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.5; flex: 1; }
.feed-card-link { color: var(--gold); font-size: .85rem; font-weight: 600; text-decoration: none; margin-top: 4px; }
.feed-card-link:hover { text-decoration: underline; }

/* Skip to content */
.skip-link {
  position: absolute; top: -50px; left: 16px; background: var(--terra); color: #fff;
  padding: 8px 18px; border-radius: 0 0 8px 8px; font-weight: 600; font-size: .85rem; z-index: 200;
  transition: top .2s;
}
.skip-link:focus { top: 0; text-decoration: none; }

/* Divider */
hr.divider { border: none; height: 3px; background: linear-gradient(90deg, var(--terra), var(--gold), var(--sage)); margin: 0 auto; max-width: 200px; border-radius: 2px; }

/* Page header (for inner pages) */
.page-hero {
  background: var(--hero-gradient);
  color: #fff; text-align: center; padding: 48px 20px 40px;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: .5px;
}
.page-hero p { opacity: .85; font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-inner { padding: 0 12px; }
  .hero-inner { flex-direction: column-reverse; }
  .hero-photo { max-height: 300px; }
  .hero-text { padding: 40px 24px; text-align: center; }
  .hero .subtitle { margin: 0 auto 32px; }
  .video-push-card { grid-template-columns: 1fr; }
  .video-push-body { padding: 0 24px 30px; text-align: center; }
  .video-push-actions { justify-content: center; }
  .watch-grid { grid-template-columns: 1fr; max-width: 440px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .issues-grid { grid-template-columns: 1fr; }
  .about-header { flex-direction: column; align-items: center; text-align: center; }
  .about-photo { width: 180px; height: 220px; }
}
@media (max-width: 520px) {
  .stat-grid { gap: 10px; }
  .stat-card .num { font-size: 1.6rem; }
}

/* Mobile nav toggle */
.nav-links.open {
  display: flex; flex-direction: column; position: absolute;
  top: 56px; left: 0; right: 0; background: var(--nav-bg);
  padding: 12px; gap: 4px; box-shadow: 0 4px 12px rgba(0,0,0,.2);
  z-index: 99;
}
