/* ===========================================================
   Venezuela Crisis Help — estilos
   Paleta: azul claro + amarillo (Venezuela)
   =========================================================== */

:root {
  --blue: #2E9BD6;
  --blue-deep: #1577B0;
  --blue-ink: #0E3A57;
  --blue-50: #EAF6FD;
  --blue-100: #D6ECFA;
  --blue-200: #BFE3F6;

  --yellow: #FFC233;
  --yellow-deep: #F0A500;
  --yellow-soft: #FFE6A1;

  --red: #E23B3B;

  --ink: #0F2A3D;
  --muted: #5B7589;
  --line: #DCEAF3;
  --bg: #F4FAFE;
  --card: #FFFFFF;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(16, 58, 87, 0.06);
  --shadow: 0 14px 40px rgba(16, 58, 87, 0.12);
  --shadow-lg: 0 24px 60px rgba(16, 58, 87, 0.18);
  --container: 1140px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Archivo Black", "Plus Jakarta Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-deep); text-decoration: none; }
h1, h2, h3 { line-height: 1.15; margin: 0; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--blue-ink); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- botones ---------- */
.btn {
  --pad: 12px 20px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad);
  border-radius: 999px; font-weight: 700; font-size: 0.98rem;
  border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(46,155,214,.35); }
.btn-primary:hover { background: var(--blue-deep); box-shadow: 0 10px 26px rgba(46,155,214,.45); transform: translateY(-1px); }
.btn-yellow { background: var(--yellow); color: var(--blue-ink); box-shadow: 0 8px 20px rgba(240,165,0,.30); }
.btn-yellow:hover { background: var(--yellow-deep); transform: translateY(-1px); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.32); }
.btn-wa:hover { background: #1FB855; color: #fff; transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.7); color: var(--blue-ink); border-color: var(--blue-200); }
.btn-ghost:hover { background: #fff; border-color: var(--blue); }
.btn-lg { --pad: 15px 28px; font-size: 1.05rem; }

/* ---------- barra de urgencia ---------- */
.urgency-bar { background: linear-gradient(90deg, #E23B3B, #C42B2B); color: #fff; }
.urgency-inner { display: flex; align-items: center; justify-content: center; gap: 16px; min-height: 40px; padding: 6px 22px; flex-wrap: wrap; }
.urgency-msg { display: inline-flex; align-items: center; gap: 9px; font-size: .9rem; font-weight: 600; }
.urgency-msg .pulse { background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
.urgency-cta { color: #fff; font-weight: 800; font-size: .9rem; border-bottom: 2px solid rgba(255,255,255,.6); }
.urgency-cta:hover { color: #fff; border-color: #fff; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 18px; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 34px; width: auto; display: block; }
.lang-switch { display: flex; align-items: center; gap: 6px; color: var(--blue-deep); }
.lang-switch svg { opacity: .75; flex: none; }
.lang-select { border: 1px solid var(--line); background: #fff; color: var(--blue-ink); font-family: var(--font); font-weight: 700; font-size: .85rem; padding: 6px 8px; border-radius: 10px; cursor: pointer; }
.lang-select:hover { border-color: var(--blue); }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a { color: var(--blue-ink); font-weight: 600; font-size: .98rem; position: relative; }
.main-nav a::after { content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background:var(--yellow-deep); transition:width .2s; }
.main-nav a:hover::after { width:100%; }
.header-cta { padding: 10px 20px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--blue-ink); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }
.mobile-nav { display: flex; flex-direction: column; padding: 8px 22px 18px; gap: 4px; border-bottom: 1px solid var(--line); background: #fff; }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { padding: 12px 8px; font-weight: 600; color: var(--blue-ink); border-radius: 10px; }
.mobile-nav a:hover { background: var(--blue-50); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding-bottom: 30px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg svg { width: 100%; height: 100%; }
.hero > .container { position: relative; z-index: 1; }
.hero-inner {
  position: relative; z-index: 1; padding: 60px 22px 40px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.hero-inner.no-media { grid-template-columns: 1fr; max-width: 820px; }
.hero-content { max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--red); font-weight: 700; font-size: .85rem;
  padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-sm); border: 1px solid #FBD9D9;
}
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(226,59,59,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(226,59,59,0);} 100%{ box-shadow: 0 0 0 0 rgba(226,59,59,0);} }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; color: var(--blue-ink); margin: 20px 0 16px; line-height: 1.08; }
.hero-title .accent { color: var(--blue-deep); }
.hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: #25506b; margin: 0 0 28px; }
.hero-lead strong { color: var(--blue-deep); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin-top: 24px; font-size: .9rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #34C759; box-shadow: 0 0 0 0 rgba(52,199,89,.6); animation: pulse-green 2s infinite; }
@keyframes pulse-green { 70%{ box-shadow: 0 0 0 8px rgba(52,199,89,0);} 100%{ box-shadow:0 0 0 0 rgba(52,199,89,0);} }

/* foto real de la cobertura en el hero */
.hero-media { margin: 0; }
.hero-photo { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: linear-gradient(135deg, var(--blue-100), var(--yellow-soft)); transform: rotate(1.4deg); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(11,46,69,.55)); }
.hero-photo-src { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff; font-size: .78rem; font-weight: 700; background: rgba(11,46,69,.55); padding: 5px 11px; border-radius: 999px; backdrop-filter: blur(4px); }
.hero-photo-cap { margin: 14px 6px 0; font-size: .85rem; color: var(--muted); text-align: center; }

/* ---------- cifras de impacto ---------- */
.impact { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 18px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px 16px; text-align: center; box-shadow: var(--shadow-sm); }
.stat-num { font-family: var(--display); font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--blue-deep); line-height: 1; letter-spacing: -.01em; }
.stat-num.red { color: var(--red); }
.stat-label { margin-top: 8px; font-size: .86rem; color: var(--muted); font-weight: 600; }
.impact-source { text-align: center; color: var(--muted); font-size: .8rem; margin: 14px 0 0; }

/* ---------- solidaridad ---------- */
.solidarity { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #fff; padding: 64px 0; text-align: center; position: relative; overflow: hidden; }
.solidarity::before { content:""; position:absolute; top:-60px; right:-40px; width:240px; height:240px; border-radius:50%; background: rgba(255,210,81,.18); }
.solidarity-inner { position: relative; max-width: 760px; margin: 0 auto; }
.sol-quote-mark { font-family: var(--display); font-size: 4rem; color: var(--yellow); line-height: .6; display: block; }
.pull-quote { font-size: clamp(1.5rem, 3.4vw, 2.3rem); font-weight: 800; line-height: 1.2; margin: 6px 0 18px; }
.sol-sub { font-size: 1.05rem; color: #DCEFFA; max-width: 600px; margin: 0 auto 26px; }
.sol-sub strong { color: var(--yellow); }

/* ---------- cómo ayudamos ---------- */
.help-strip { padding: 64px 0 8px; position: relative; z-index: 2; }
.help-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.help-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.help-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.help-ico { width: 50px; height: 50px; display: grid; place-items: center; font-size: 1.5rem; border-radius: 14px; background: linear-gradient(135deg, var(--blue-50), var(--yellow-soft)); margin-bottom: 12px; }
.help-card h3 { font-size: 1.08rem; color: var(--blue-ink); margin-bottom: 4px; }
.help-card p { margin: 0; font-size: .92rem; color: var(--muted); }

/* ---------- secciones ---------- */
.section { padding: 76px 0; }
.section-head { max-width: 680px; margin: 0 auto 42px; text-align: center; }
.section-head.tight { margin-bottom: 30px; }
.eyebrow { display: inline-block; font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--yellow-deep); margin-bottom: 12px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; color: var(--blue-ink); }
.section-sub { color: var(--muted); margin: 12px 0 0; font-size: 1.02rem; }
.dot-sep { opacity: .5; margin: 0 4px; }

/* ---------- donar ---------- */
.donate { background: linear-gradient(180deg, #fff, var(--blue-50)); }
.donate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 920px; margin: 0 auto; }
.donate-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.donate-card.featured { border-color: var(--yellow); box-shadow: 0 14px 40px rgba(240,165,0,.16); }
.donate-card h3 { font-size: 1.25rem; color: var(--blue-ink); display: flex; align-items: center; gap: 10px; }
.donate-card .pay-ico { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; font-size: 1.25rem; }
.pay-ico.pp { background: #EAF3FB; }
.pay-ico.bank { background: var(--yellow-soft); }
.pay-ico.gf { background: #E4F8EC; }
.donate-card p.dc-note { color: var(--muted); font-size: .94rem; margin: 10px 0 18px; }
.bank-rows { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 2px; }
.bank-rows li { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.bank-rows li:last-child { border-bottom: 0; }
.bank-rows .k { color: var(--muted); }
.bank-rows .v { font-weight: 700; color: var(--blue-ink); text-align: right; word-break: break-word; }
.copy-btn { margin-left: 8px; border: 1px solid var(--line); background: #fff; border-radius: 8px; font-size: .72rem; padding: 3px 8px; cursor: pointer; color: var(--blue-deep); font-weight: 700; }
.copy-btn:hover { background: var(--blue-50); }
.donate-card .btn { margin-top: auto; }
.transparency { text-align: center; color: var(--muted); font-size: .9rem; margin: 28px auto 0; max-width: 620px; }

/* ---------- donaciones en vivo ---------- */
.donations-feed { background: linear-gradient(180deg, #fff, var(--blue-50)); }
.dona-wrap { max-width: 760px; margin: 0 auto; }
.dona-summary { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); text-align: center; margin-bottom: 20px; }
.dona-amount { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.dona-raised { font-family: var(--display); font-size: clamp(2.1rem, 5.5vw, 3.1rem); color: var(--blue-deep); line-height: 1; letter-spacing: -.01em; }
.dona-of { color: var(--muted); font-size: .95rem; }
.dona-bar { height: 10px; background: var(--blue-100); border-radius: 999px; overflow: hidden; margin: 18px 0 12px; }
.dona-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--yellow), var(--yellow-deep)); border-radius: 999px; transition: width .8s ease; }
.dona-count { color: var(--ink); font-size: 1.02rem; margin-bottom: 18px; }
.dona-count strong { color: var(--blue-deep); font-weight: 800; }
.dona-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.dona-row { display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px; box-shadow: var(--shadow-sm); }
.dona-row .d-name { font-weight: 700; color: var(--blue-ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dona-row .d-amt { font-weight: 800; color: var(--yellow-deep); white-space: nowrap; }
.dona-row .d-when { color: var(--muted); font-size: .82rem; min-width: 64px; text-align: right; white-space: nowrap; }
@media (max-width: 560px) { .dona-row { grid-template-columns: 1fr auto; } .dona-row .d-when { display: none; } }

/* ---------- noticias ---------- */
.updated { font-weight: 700; color: var(--blue-deep); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-card.featured { grid-column: span 3; display: grid; grid-template-columns: 1.15fr 1fr; }
.news-thumb { position: relative; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--blue-100), var(--yellow-soft)); overflow: hidden; }
.news-card.featured .news-thumb { aspect-ratio: auto; height: 100%; min-height: 280px; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-thumb .src-badge {
  position: absolute; left: 12px; bottom: 12px; background: rgba(14,58,87,.86); color: #fff;
  font-size: .72rem; font-weight: 700; padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(4px);
}
.news-thumb.no-img { display: grid; place-items: center; color: var(--blue-deep); }
.news-thumb.no-img .ph { font-size: 2rem; opacity: .55; }
.news-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-card.featured .news-body { padding: 28px; justify-content: center; }
.news-meta { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--muted); }
.news-meta .tag { background: var(--yellow-soft); color: var(--yellow-deep); font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.news-title { font-size: 1.04rem; font-weight: 700; color: var(--blue-ink); line-height: 1.32; }
.news-card.featured .news-title { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.news-link { margin-top: auto; font-weight: 700; font-size: .9rem; color: var(--blue-deep); display: inline-flex; align-items: center; gap: 5px; }
.news-link:hover { gap: 9px; }

/* ---------- videos ---------- */
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.video-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.video-facade { position: relative; aspect-ratio: 16/9; cursor: pointer; background: #000; border: 0; padding: 0; width: 100%; display: block; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; opacity: .92; transition: opacity .2s; }
.video-facade:hover img { opacity: 1; }
.video-facade .play {
  position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(226,59,59,.92); display: grid; place-items: center; box-shadow: 0 8px 22px rgba(0,0,0,.4);
  transition: transform .2s;
}
.video-facade:hover .play { transform: scale(1.08); }
.video-facade .play::after { content:""; border-left: 18px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 4px; }
.video-card iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }
.video-body { padding: 14px 16px 16px; }
.video-title { font-size: .96rem; font-weight: 700; color: var(--blue-ink); line-height: 1.3; }
.video-chan { margin-top: 6px; font-size: .8rem; color: var(--muted); }
.video-chan a { font-weight: 700; }

.source-note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 28px; }
.loading { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 40px; }

/* ---------- comunidad ---------- */
.community { background: linear-gradient(135deg, var(--blue-ink), var(--blue-deep)); color: #fff; }
.community-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.community .eyebrow { color: var(--yellow); }
.community h2 { color: #fff; }
.community-text p { color: #CDE6F4; font-size: 1.08rem; margin-top: 14px; }
.community-contact { font-size: .98rem !important; color: #DCEFFA; }
.community-contact a { color: var(--yellow); font-weight: 700; border-bottom: 1px solid rgba(255,210,81,.5); }
.community-contact a:hover { color: var(--yellow); border-color: var(--yellow); }
.community-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.comm-btn {
  display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-sm); padding: 16px; color: #fff;
  font-weight: 700; transition: background .2s, transform .2s;
}
.comm-btn:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); color: #fff; }
button.comm-btn { font-family: inherit; font-size: inherit; text-align: left; width: 100%; cursor: pointer; }
.comm-btn .c-ico { width: 38px; height: 38px; border-radius: 10px; background: var(--yellow); color: var(--blue-ink); display: grid; place-items: center; font-size: 1.2rem; flex: none; }
.comm-btn small { display: block; font-weight: 500; color: #Bcdcec; font-size: .78rem; }

/* ---------- footer ---------- */
.site-footer { background: #08283B; color: #9FC2D6; padding: 48px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1.6fr; gap: 40px; }
.footer-logo { height: 30px; width: auto; display: block; opacity: .95; }
.footer-brand p { margin: 14px 0 0; font-size: .92rem; max-width: 340px; }
.disclaimer { font-size: .82rem; line-height: 1.6; margin: 0 0 12px; }
.legal-line { font-size: .82rem; line-height: 1.55; color: #cfe4f1; background: rgba(255,255,255,.05); border-left: 3px solid var(--yellow); padding: 11px 13px; border-radius: 0 8px 8px 0; margin: 0 0 14px; }
.impressum { margin: 0 0 14px; }
.impressum summary { cursor: pointer; font-size: .85rem; font-weight: 700; color: var(--yellow-soft); list-style: none; }
.impressum summary::-webkit-details-marker { display: none; }
.impressum summary::before { content: "▸ "; }
.impressum[open] summary::before { content: "▾ "; }
.impressum-body { font-size: .78rem; line-height: 1.65; color: #9FC2D6; margin-top: 10px; padding-left: 4px; }
.impressum-body strong { color: #fff; }
.copyright { font-size: .82rem; color: #6f9ab2; margin: 0; }
.footer-meta a { color: var(--yellow-soft); }
.footer-contact { margin-top: 18px; }
.footer-contact h4 { color: #fff; font-size: .95rem; margin: 0 0 6px; }
.footer-contact .fc-line { margin: 4px 0; font-size: .9rem; color: #9FC2D6; }
.footer-contact a { color: var(--yellow-soft); }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .main-nav, .header-cta { display: none; }
  .lang-switch { margin-left: auto; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; padding-top: 44px; }
  .hero-content { max-width: none; order: 1; }
  .hero-media { order: 2; max-width: 480px; }
  .hero-photo { transform: none; }
  .impact { grid-template-columns: repeat(2, 1fr); }
  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid, .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .news-card.featured { grid-column: span 2; grid-template-columns: 1fr; }
  .news-card.featured .news-thumb { min-height: 220px; }
  .community-inner { grid-template-columns: 1fr; gap: 26px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 620px) {
  .section { padding: 56px 0; }
  .help-grid { grid-template-columns: 1fr 1fr; }
  .donate-grid { grid-template-columns: 1fr; }
  .news-grid, .videos-grid { grid-template-columns: 1fr; }
  .news-card.featured { grid-column: span 1; }
  .community-actions { grid-template-columns: 1fr; }
  .hero-inner { padding: 54px 22px 70px; }
  .bank-rows .v { font-size: .9rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
