/* =====================================================
   keineelfen.de – Style System
   Theme: Anti-Hype / No-BS Ratgeber
   Fonts: Space Grotesk (headings) + Nunito (body)
   Colors: Crimson Red, Near-Black, Warm Cream
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --red: #c83b2d;
  --red-dark: #a12e23;
  --red-light: #f5e8e7;
  --black: #111111;
  --near-black: #1e1e1e;
  --dark-gray: #333333;
  --mid-gray: #666666;
  --light-gray: #999999;
  --border-gray: #e0dbd4;
  --cream: #f9f5ef;
  --cream-dark: #f0ebe3;
  --white: #ffffff;
  --amber: #d97706;

  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --radius: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);

  --container: 1160px;
  --content-width: 740px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--near-black);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.5rem; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-top: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1.2rem; }

/* ===== CONTAINER ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== PROGRESS BAR ===== */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  width: 0%; background: var(--red);
  z-index: 9999; transition: width 0.1s linear;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--black);
  border-bottom: 3px solid var(--red);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 64px;
}
.header-logo { display: flex; align-items: center; }
.header-logo img { height: 44px; width: auto; }

.header-nav { list-style: none; display: flex; gap: 28px; padding: 0; }
.header-nav a {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--white); text-decoration: none; }
.btn-nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 6px 14px !important;
  border-radius: var(--radius) !important;
}
.btn-nav-cta:hover { background: var(--red-dark) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: all 0.3s;
}

/* ===== ALERT BAR ===== */
.alert-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.alert-bar strong { text-transform: uppercase; }

/* ===== HERO (Homepage) ===== */
.site-hero {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
  display: block;
}
.site-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,17,17,0.85) 0%,
    rgba(17,17,17,0.65) 60%,
    rgba(200,59,45,0.3) 100%
  );
  z-index: 1;
}
.site-hero .container { position: relative; z-index: 2; }
.hero-inner { position: relative; z-index: 1; max-width: 820px; }
.hero-label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 20px;
}
.site-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.site-hero h1 em {
  color: var(--red);
  font-style: normal;
}
.site-hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 32px;
}
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--red-dark); text-decoration: none; color: var(--white); }
.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 24px;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--white); color: var(--white); text-decoration: none; }

.hero-stats {
  display: flex; gap: 40px; margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red);
}
.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* ===== TOPIC BANDS ===== */
.topic-band { background: var(--cream); padding: 60px 0; }
.topic-band-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 32px;
}
.topic-band-header h2 { margin: 0; }
.topic-band-header a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Article Card */
.article-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-top: 3px solid var(--red);
  padding: 24px;
  border-radius: var(--radius-md);
  transition: box-shadow 0.2s, transform 0.2s;
  display: block;
  color: var(--near-black);
}
.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}
.card-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 10px;
}
.card-excerpt {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-meta {
  font-family: var(--font-head);
  font-size: 0.75rem;
  color: var(--light-gray);
  letter-spacing: 0.03em;
}
.card-arrow {
  display: inline-block;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 12px;
}

/* Featured Card */
.article-card.card-featured {
  border-top-width: 4px;
  background: var(--near-black);
  color: var(--white);
}
.article-card.card-featured .card-title { color: var(--white); }
.article-card.card-featured .card-excerpt { color: rgba(255,255,255,0.65); }
.article-card.card-featured .card-meta { color: rgba(255,255,255,0.4); }

/* ===== FACT-CHECK SECTION ===== */
.factcheck-section { background: var(--white); padding: 60px 0; border-top: 1px solid var(--border-gray); }
.factcheck-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.factcheck-card {
  border: 1px solid var(--border-gray);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  position: relative;
}
.factcheck-verdict {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.verdict-myth { background: #fde8e7; color: var(--red); }
.verdict-check { background: #e6f4ea; color: #2d7a4a; }
.verdict-mixed { background: #fff3e0; color: #b45309; }
.factcheck-claim {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 10px;
}
.factcheck-text { font-size: 0.875rem; color: var(--mid-gray); line-height: 1.6; }

/* ===== NEWSLETTER BAND ===== */
.newsletter-band {
  background: var(--red);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.newsletter-band h2 { color: var(--white); margin-bottom: 10px; }
.newsletter-band p { color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 13px 16px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
}
.newsletter-form button {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--near-black); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--near-black);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  margin-top: 12px;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 32px; width: auto; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-legal a:hover { color: var(--white); text-decoration: none; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border-gray);
  padding: 10px 0;
}
.breadcrumb {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: var(--light-gray);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--mid-gray); }
.breadcrumb a:hover { color: var(--red); text-decoration: none; }
.breadcrumb-sep { color: var(--light-gray); }
.breadcrumb-current { color: var(--near-black); font-weight: 600; }

/* ===== ARTICLE HERO ===== */
.article-hero {
  background: var(--near-black);
  padding: 52px 0 44px;
  position: relative;
}
.article-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--red);
}
.article-category-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.article-hero h1 {
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.15;
  max-width: 780px;
}

/* ===== META BAR ===== */
.meta-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border-gray);
}
.meta-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: var(--mid-gray);
}
.meta-author-block { display: flex; align-items: center; gap: 10px; }
.avatar-md {
  width: 34px; height: 34px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.author-name { font-weight: 700; color: var(--near-black); }
.author-role { font-size: 0.75rem; color: var(--light-gray); }
.meta-sep { color: var(--border-gray); }
.meta-item { display: flex; align-items: center; gap: 5px; }
.meta-updated { margin-left: auto; color: var(--light-gray); font-size: 0.75rem; }

/* ===== ARTICLE LAYOUT ===== */
.article-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* ===== ARTICLE CONTENT ===== */
.article-body h2 {
  border-left: 4px solid var(--red);
  padding-left: 14px;
  margin-left: -18px;
}
.article-body ul li { margin-bottom: 0.5rem; }
.article-body ol li { margin-bottom: 0.5rem; }
.article-body a { color: var(--red); }
.article-body a:hover { color: var(--red-dark); }
.article-body strong { font-weight: 700; color: var(--black); }
.fact-box strong { color: rgba(255,255,255,0.95); }

/* Pull Quote */
.pull-quote {
  margin: 36px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--red);
  background: var(--cream);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--near-black);
}

/* Fact Box */
.fact-box {
  background: #111;
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 28px 0;
}
.fact-box-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.fact-box p { color: rgba(255,255,255,0.8); margin-bottom: 0; }
.fact-box ul {
  color: rgba(255,255,255,0.8);
  list-style: disc;
  padding-left: 1.4rem;
  margin: 0;
}
.fact-box ul li {
  margin-bottom: 0.5rem;
}
.fact-box ul li::marker {
  color: var(--red);
}
.fact-box-title {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

/* Warning Box */
.warning-box {
  border: 2px solid var(--red);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 28px 0;
  background: var(--red-light);
}
.warning-box-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.warning-box p { color: var(--dark-gray); margin-bottom: 0; font-size: 0.95rem; }

/* Verdict Box */
.verdict-box {
  background: var(--cream);
  border-top: 4px solid var(--red);
  border-radius: var(--radius-md);
  padding: 28px;
  margin: 36px 0;
}
.verdict-header {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.verdict-box h3 { margin: 0 0 12px; }
.verdict-box p { margin-bottom: 0; font-size: 0.95rem; }

/* Sources Box */
.sources-box {
  background: var(--cream);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 36px;
  font-size: 0.85rem;
}
.sources-box h3 { font-size: 0.9rem; margin: 0 0 10px; }
.sources-box ul { padding-left: 1.2rem; }
.sources-box li { margin-bottom: 4px; color: var(--mid-gray); }

/* ===== FAQ SECTION ===== */
.faq-section { margin-top: 48px; border-top: 1px solid var(--border-gray); padding-top: 36px; }
.faq-section h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  border-left: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.faq-item {
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white);
  color: var(--black);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--red);
  font-weight: 400;
  flex-shrink: 0;
}
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer { padding: 0 20px 16px; font-size: 0.95rem; line-height: 1.7; color: var(--dark-gray); }

/* ===== AUTHOR BOX ===== */
.author-box {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 40px;
}
.author-avatar {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.author-info h4 { margin: 0 0 2px; font-size: 1rem; }
.author-title { font-size: 0.8rem; color: var(--mid-gray); margin-bottom: 8px; }
.author-bio { font-size: 0.875rem; color: var(--mid-gray); margin-bottom: 0; line-height: 1.6; }

/* ===== RELATED ARTICLES ===== */
.related-section { margin-top: 48px; }
.related-title { font-size: 1.3rem; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
  display: block;
  border: 1px solid var(--border-gray);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: box-shadow 0.2s;
  color: var(--near-black);
}
.related-card:hover { box-shadow: var(--shadow-sm); text-decoration: none; }
.related-card-cat {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 6px;
}
.related-card-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
}
/* Alias for alternate HTML structure */
.related-card-content { /* same as related-card-body */ }
.related-card-img { display: none; }
.related-card-body { /* no extra styling needed */ }

/* ===== SIDEBAR ===== */
.article-sidebar { position: sticky; top: 80px; }

.tldr-box {
  background: var(--near-black);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}
.tldr-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.tldr-box h3 {
  color: var(--white);
  font-size: 1rem;
  margin: 0 0 12px;
}
.tldr-box p { font-size: 0.875rem; color: rgba(255,255,255,0.75); margin-bottom: 0; line-height: 1.65; }

.sidebar-articles-box {
  background: var(--cream);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}
.sidebar-articles-box h3 {
  font-size: 0.85rem;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  color: var(--mid-gray);
}
.sidebar-article-link {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-gray);
  color: var(--near-black);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s;
}
.sidebar-article-link:last-child { border-bottom: none; }
.sidebar-article-link:hover { color: var(--red); text-decoration: none; }
.sidebar-article-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.sidebar-article-text { flex: 1; }

.sidebar-cta-box {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}
.sidebar-cta-box h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.sidebar-cta-box p { font-size: 0.85rem; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.sidebar-cta-box .btn-primary { background: var(--black); width: 100%; text-align: center; display: block; }
.sidebar-cta-box .btn-primary:hover { background: #2a2a2a; }

/* ===== UTILITY / STATIC PAGES ===== */
.page-hero {
  background: var(--near-black);
  padding: 48px 0;
  border-bottom: 4px solid var(--red);
}
.page-hero h1 { color: var(--white); font-size: 2rem; }
.page-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.page-content h2 { border-left: 4px solid var(--red); padding-left: 14px; margin-left: -18px; }
.page-content h3 { font-size: 1.1rem; }
.page-content ul li, .page-content ol li { margin-bottom: 0.4rem; }

/* ===== 404 / Not Found ===== */
.error-page {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.error-code {
  font-family: var(--font-head);
  font-size: 7rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-gray);
}

/* ===== HOMEPAGE INTRO STRIP ===== */
.intro-strip {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border-gray);
  padding: 28px 0;
}
.intro-strip p {
  max-width: 700px;
  margin: 0;
  font-size: 1.05rem;
  color: var(--dark-gray);
}
.intro-strip strong { color: var(--black); }

/* ===== HIGHLIGHT NUMBERS ===== */
.numbers-band { background: var(--white); padding: 50px 0; border-top: 1px solid var(--border-gray); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.number-card {
  text-align: center;
  padding: 24px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--red);
}
.number-val {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red);
}
.number-label { font-size: 0.85rem; color: var(--mid-gray); margin-top: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .factcheck-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 2fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 16px; }
  .header-nav { display: none; }
  .nav-toggle { display: block; }
  .header-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--black);
    padding: 20px;
    gap: 12px;
    z-index: 800;
  }

  .article-grid { grid-template-columns: 1fr; }
  .factcheck-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }

  .article-wrapper { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }

  .related-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .topic-band-header { flex-direction: column; gap: 8px; }
  .meta-bar-inner { gap: 10px; }
  .meta-updated { display: none; }
}

@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .article-hero { padding: 36px 0 28px; }
  .page-hero { padding: 32px 0; }
}
