/* SG Press Daily — dark editorial theme */
:root {
  --ink: #070B14;
  --cyan: #2DD4BF;
  --green-dark: #0B3D32;
  --green-mid: #146B56;
  --green-light: #1A8A6E;
  --green-hover: #22C08A;
  --charcoal: #12161F;
  --slate: #1E2430;
  --text-light: #F0F2F5;
  --text-muted: #9CA3AF;
  --sidebar-width: 260px;
  --header-height: 64px;
  --radius: 6px;
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.site-pressdaily {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  background: var(--ink);
  color: var(--text-light);
}

.surface-dark { background: var(--ink); color: var(--text-light); }
.surface-charcoal { background: var(--charcoal); color: var(--text-light); }
.surface-slate { background: var(--slate); color: var(--text-light); }
.surface-accent {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--text-light);
}
.surface-desk {
  background: linear-gradient(180deg, var(--green-dark) 0%, #082a22 100%);
  color: var(--text-light);
}
.surface-desk .eyebrow { color: rgba(45, 212, 191, 0.9); }
.surface-accent p { color: rgba(240, 242, 245, 0.85); max-width: 560px; margin-left: auto; margin-right: auto; }
.surface-accent h2 { color: var(--text-light); }
.surface-form { background: var(--charcoal); color: var(--text-light); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; }
a { color: var(--cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text-light); }
img { max-width: 100%; height: auto; display: block; }

.container { width: min(1120px, 92vw); margin: 0 auto; }
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.accent-divider {
  width: 48px;
  height: 3px;
  background: var(--cyan);
  margin: 1rem 0 1.5rem;
}

/* Sidebar */
.sidebar-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  z-index: 200;
  border-right: 1px solid rgba(45, 212, 191, 0.15);
  overflow-y: auto;
}
.sidebar-inner { padding: 2rem 1.5rem; }
.sidebar-wordmark {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.sidebar-wordmark:hover { color: var(--cyan); }
.sidebar-links { display: flex; flex-direction: column; gap: 0.25rem; }
.sidebar-links a {
  display: block;
  padding: 0.65rem 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  border-left: 2px solid transparent;
}
.sidebar-links a:hover,
.sidebar-links a.is-active {
  color: var(--text-light);
  background: rgba(45, 212, 191, 0.08);
  border-left-color: var(--cyan);
}
.sidebar-desk {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.desk-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}
.sidebar-desk p { font-size: 0.85rem; color: var(--text-muted); margin: 0.5rem 0 0; }

.sidebar-scrim {
  position: fixed;
  inset: 0;
  background: rgba(7, 11, 20, 0.75);
  z-index: 150;
  backdrop-filter: blur(2px);
}
.sidebar-scrim[hidden] { display: none; }

.pressdaily-shell {
  min-height: 100vh;
  margin-left: var(--sidebar-width);
}

.pressdaily-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-wordmark {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  display: none;
}
.edition-strip {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.sidebar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.sidebar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  transition: transform 0.2s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-primary {
  background: var(--green-mid);
  color: #fff;
  font-weight: 700;
  border: 2px solid transparent;
}
.btn-primary:hover {
  background: var(--green-hover);
  color: #fff;
  border-color: var(--green-hover);
}
.surface-accent .btn-primary,
.surface-desk .btn-primary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.surface-accent .btn-primary:hover,
.surface-desk .btn-primary:hover {
  background: var(--green-hover);
  color: #fff;
  border-color: var(--green-hover);
}
.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(240, 242, 245, 0.3);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }

/* Hero Pattern D */
.hero-stacked {
  display: flex;
  flex-direction: column;
}
.hero-stacked-top {
  display: flex;
  align-items: center;
  padding: 4rem 0 2rem;
}
.hero-stacked-bottom {
  position: relative;
  overflow: hidden;
  max-width: min(820px, 88vw);
  margin: 0 auto 3rem;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(45, 212, 191, 0.15);
}
.hero-stacked-bottom img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius) + 2px);
}
.hero-caption {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
  background: rgba(7, 11, 20, 0.7);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
}
.hero-serial { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.5rem; }
.hero-sub { font-size: 1.15rem; color: var(--text-muted); max-width: 640px; }
.trust-strip {
  display: inline-flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  background: rgba(30, 36, 48, 0.6);
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.trust-strip strong { color: var(--cyan); }

/* Stat strip */
.stat-strip {
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-value {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cyan);
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* Sections */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* News grid */
.editorial-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}
.lead-rail { display: flex; flex-direction: column; gap: 1.5rem; }
.news-card {
  background: var(--slate);
  border-radius: var(--radius);
  border-top: 3px solid var(--cyan);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.news-card img { width: 100%; height: 200px; object-fit: cover; }
.news-card-body { padding: 1.25rem 1.5rem; }
.news-card .card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
}
.news-card h3 { margin: 0.5rem 0; font-size: 1.2rem; }
.news-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

.digest-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.digest-item {
  padding: 1.25rem;
  background: var(--charcoal);
  border-radius: var(--radius);
  border-left: 3px solid var(--cyan);
}
.digest-item h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.digest-item p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* Desk briefs */
.desk-briefs-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.desk-briefs-header .accent-divider {
  margin-left: auto;
  margin-right: auto;
}
.brief-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.brief-card {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--cyan);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.brief-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(45, 212, 191, 0.35);
}
.brief-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.12);
  margin-bottom: 0.5rem;
}
.brief-card svg { width: 22px; height: 22px; fill: var(--cyan); }
.brief-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: var(--text-light);
}
.brief-card p {
  font-size: 0.88rem;
  color: rgba(240, 242, 245, 0.72);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}
.brief-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.02em;
}
.brief-card-link:hover { color: #fff; }
.brief-card-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

/* Trust floating card */
.trust-card {
  padding: 2rem;
  background: var(--slate);
  border-radius: var(--radius);
  border: 1px solid rgba(45, 212, 191, 0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--slate);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  min-height: 44px;
}
.faq-question:hover { color: var(--cyan); }
.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--cyan);
  transition: transform 0.2s;
}
.faq-item.is-open .faq-question::after { content: "−"; }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.faq-item:not(.is-open) .faq-answer { display: none; }

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--cyan);
  border-color: var(--cyan);
}
.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.checkbox-group input { width: auto; margin-top: 0.2rem; min-width: 18px; min-height: 18px; }

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--slate);
  border-radius: var(--radius);
  overflow: hidden;
  border-top: 3px solid var(--cyan);
}
.team-card img { height: 180px; object-fit: cover; width: 100%; }
.team-card-body { padding: 1.25rem; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-role { font-size: 0.8rem; color: var(--cyan); font-weight: 600; margin-bottom: 0.75rem; }

/* Page hero inner */
.page-hero { padding: 4rem 0 3rem; }
.page-hero p { color: var(--text-muted); max-width: 720px; }

/* Footer */
.site-footer {
  position: relative;
  margin-top: 4rem;
  padding: 0 0 2rem;
  background: linear-gradient(180deg, var(--ink) 0%, #050810 100%);
  border-top: none;
  overflow: visible;
}
.site-footer::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--cyan), var(--green-mid));
}
.footer-top-band {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 2rem;
}
.footer-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-wordmark {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.02em;
}
.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0.35rem 0 0;
  max-width: 420px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(45, 212, 191, 0.2);
}
.footer-col p, .footer-col li {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a {
  color: var(--text-muted);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-col a:hover {
  color: var(--cyan);
  padding-left: 4px;
}
.footer-contact-block {
  padding: 1rem 1.25rem;
  background: rgba(30, 36, 48, 0.5);
  border-radius: var(--radius);
  border-left: 3px solid var(--cyan);
}
.footer-contact-block a { color: var(--text-light); font-weight: 500; }
.footer-contact-block a:hover { color: var(--cyan); padding-left: 0; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--cyan); }
.disclaimer-box {
  margin-top: 1rem;
  padding: 1.25rem;
  background: rgba(11, 61, 50, 0.25);
  border-radius: var(--radius);
  border: 1px solid rgba(45, 212, 191, 0.12);
  font-size: 0.8rem;
  color: rgba(156, 163, 175, 0.95);
  line-height: 1.65;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--charcoal);
  border-top: 1px solid rgba(45, 212, 191, 0.2);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.4);
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-text { flex: 1; min-width: 280px; font-size: 0.88rem; color: var(--text-muted); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cookie-actions .btn { font-size: 0.85rem; padding: 0.6rem 1.2rem; min-height: 44px; }

/* Legal prose */
.legal-content { max-width: 800px; }
.legal-content h2 { margin-top: 2.5rem; }
.legal-content ul { color: var(--text-muted); padding-left: 1.25rem; }
.legal-content li { margin-bottom: 0.5rem; }

/* 404 — archive missing edition */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}
.error-archive {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  overflow: hidden;
}
.error-archive::before {
  content: "404";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-family: var(--font-head);
  font-size: clamp(8rem, 22vw, 16rem);
  font-weight: 700;
  color: rgba(45, 212, 191, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.error-archive-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
}
.error-stamp {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 2px solid var(--cyan);
  border-radius: var(--radius);
  transform: rotate(-3deg);
  opacity: 0.85;
}
.error-archive h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}
.error-archive .error-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.error-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  text-align: left;
}
.error-link-card {
  display: block;
  padding: 1.25rem 1.5rem;
  background: var(--slate);
  border-radius: var(--radius);
  border-left: 3px solid var(--cyan);
  color: var(--text-light);
  transition: background 0.2s, transform 0.2s;
}
.error-link-card:hover {
  background: var(--charcoal);
  color: var(--cyan);
  transform: translateY(-2px);
}
.error-link-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--text-light);
}
.error-link-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.error-link-card:hover strong { color: var(--cyan); }
.error-link-card:hover span { color: var(--text-muted); }
@media (max-width: 767px) {
  .error-links { grid-template-columns: 1fr; }
}

/* Reveal animations — JS only */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* Coverage / programs cards */
.beat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.beat-card {
  padding: 2rem;
  background: var(--slate);
  border-radius: var(--radius);
  border-top: 3px solid var(--cyan);
}
.beat-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

/* Alert */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.alert-success {
  background: rgba(45, 212, 191, 0.15);
  border: 1px solid var(--cyan);
  color: var(--cyan);
}

/* Responsive */
@media (max-width: 1023px) {
  .sidebar-nav {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .sidebar-nav.is-open { transform: translateX(0); }
  .pressdaily-shell { margin-left: 0; }
  .header-wordmark { display: block; }
  .sidebar-toggle { display: flex; margin-left: auto; }
  .edition-strip { display: none; }
  .hero-stacked-bottom { max-width: 92vw; margin-bottom: 2rem; }
  .hero-stacked-bottom img { max-height: 260px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-grid { grid-template-columns: 1fr; }
  .brief-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: 1fr; }
  .beat-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .section { padding: 3rem 0; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .digest-columns { grid-template-columns: 1fr; }
  .brief-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
}
