/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #0f172a;
  --bg-surface: #1e293b;
  --bg-elevated: #273548;
  --border: #334155;
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent: #3b82f6;
  --accent-light: #60a5fa;
  --accent-hover: #2563eb;
  --danger: #ef4444;
  --success: #22c55e;
  --warning: #f59e0b;
  --max-width: 800px;
  --max-width-wide: 1100px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* === Site Header === */
.site-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 1rem;
}

.header-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.site-logo:hover {
  opacity: 0.92;
  text-decoration: none;
}

.site-logo img {
  width: 115px;
  max-width: 52vw;
  height: auto;
  border-radius: 0;
}

@media (max-width: 480px) {
  .site-logo img {
    width: 98px;
  }
}

.site-nav {
  display: none;
  gap: 0.25rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}

.site-nav a:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  text-decoration: none;
}

.site-nav > a,
.nav-dropdown-trigger {
  min-height: 34px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: background 0.2s;
}

.nav-toggle:hover span {
  background: var(--text-primary);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0 1rem;
  border-top: 1px solid var(--border);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0.5rem 0;
  font-weight: 500;
}

.mobile-nav a:hover {
  color: var(--text-primary);
  text-decoration: none;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }
}

/* === Hero Section === */
.hero {
  text-align: center;
  padding: 3.5rem 1rem;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero .tagline {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.hero .hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero {
    padding: 4.5rem 1.5rem;
  }
  .hero h1 {
    font-size: 2.75rem;
  }
}

/* === Content Container === */
.content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}

.content-wide {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* === Article Header === */
.article-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.article-header h1 {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .article-header h1 {
    font-size: 2.25rem;
  }
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.article-meta .author {
  font-weight: 600;
  color: var(--text-primary);
}

.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--success);
}

/* === Breadcrumbs === */
.breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--accent-light);
}

.breadcrumbs span {
  margin: 0 0.4rem;
}

/* === Key Takeaways Box === */
.key-takeaways {
  background: var(--bg-surface);
  border: 1px solid var(--accent);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}

.key-takeaways h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

.key-takeaways ul {
  list-style: none;
  padding: 0;
}

.key-takeaways li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.key-takeaways li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* === Typography === */
.content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.75rem 0 0.75rem;
  color: var(--text-primary);
}

.content p {
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.content ul, .content ol {
  margin: 0 0 1.25rem 1.25rem;
}

.content li {
  margin-bottom: 0.5rem;
}

.content strong {
  color: #f1f5f9;
  font-weight: 600;
}

.content blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--bg-surface);
  border-radius: 0 8px 8px 0;
  color: var(--text-secondary);
  font-style: italic;
}

/* === Tables === */
.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  border-radius: 8px;
  overflow: hidden;
}

.content thead {
  background: var(--bg-surface);
}

.content th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.content td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.content tbody tr:hover {
  background: var(--bg-surface);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* === Card Grid === */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
}

.card-body {
  padding: 1.25rem;
}

.card-body .card-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-body h3 a {
  color: var(--text-primary);
}

.card-body h3 a:hover {
  color: var(--accent-light);
  text-decoration: none;
}

.card-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.card-body .read-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

/* === FAQ Section === */
.faq-section {
  margin: 2rem 0;
}

.faq-section h2 {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  padding: 1.25rem;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* === Related Articles === */
.related-articles {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.related-articles h2 {
  font-size: 1.2rem;
  border-bottom: none;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 1rem;
}

.related-articles ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-articles li {
  margin-bottom: 0.75rem;
}

.related-articles a {
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.related-articles a::before {
  content: "\2192";
  color: var(--accent);
}

/* === Section Intro === */
.section-title {
  text-align: center;
  margin: 3rem 0 1rem;
}

.section-title h2 {
  font-size: 1.5rem;
  border-bottom: none;
  padding-bottom: 0;
  display: inline-block;
}

.section-title p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0.5rem auto 0;
}

/* === About Section === */
.about-section {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.about-section h2 {
  font-size: 1.2rem;
  border-bottom: none;
  margin-top: 0;
  padding-bottom: 0;
  margin-bottom: 0.75rem;
}

.about-section p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === Footer === */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 2rem 1rem;
  margin-top: 3rem;
}

.footer-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-nav a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--text-primary);
}

.footer-info {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.35rem;
  text-decoration: none;
}

.footer-logo img {
  width: 105px;
  height: auto;
  border-radius: 0;
}

.footer-info p {
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* === Utility === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--text-secondary);
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* === Navigation Dropdowns === */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  line-height: 1.2;
  margin: 0;
  appearance: none;
}

.nav-dropdown-trigger::after {
  content: "\25BE";
  font-size: 0.7rem;
  opacity: 0.6;
}

.nav-dropdown-trigger:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 220px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  text-decoration: none;
}

/* === Featured Story (Homepage) === */
.featured-story {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem 0;
  transition: border-color 0.2s;
}

.featured-story:hover {
  border-color: var(--accent);
}

.featured-story img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 0;
}

.featured-story .featured-body {
  padding: 1.5rem 2rem 2rem;
}

.featured-story .card-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.featured-story h3 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.featured-story h3 a {
  color: var(--text-primary);
}

.featured-story h3 a:hover {
  color: var(--accent-light);
  text-decoration: none;
}

.featured-story p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 700px;
}

.featured-story .read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

@media (min-width: 768px) {
  .featured-story img {
    height: 360px;
  }
  .featured-story h3 {
    font-size: 1.75rem;
  }
}

/* === Horizontal Card (Investigations Grid) === */
.horizontal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .horizontal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.horizontal-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.horizontal-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

@media (min-width: 600px) {
  .horizontal-card {
    flex-direction: row;
  }
}

.horizontal-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0;
}

@media (min-width: 600px) {
  .horizontal-card img {
    width: 200px;
    height: auto;
    min-height: 160px;
  }
}

.horizontal-card .card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* === Article List (Compact text-only) === */
.article-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.article-list-item {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: background 0.15s;
}

.article-list-item:last-child {
  border-bottom: none;
}

.article-list-item:hover {
  background: var(--bg-elevated);
}

.article-list-item .list-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.article-list-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.article-list-item h4 a {
  color: var(--text-primary);
}

.article-list-item h4 a:hover {
  color: var(--accent-light);
  text-decoration: none;
}

.article-list-item .list-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* === Table of Contents === */
.toc {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}

.toc h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin: 0 0 0.75rem;
}

.toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
}

.toc li {
  counter-increment: toc-counter;
  margin-bottom: 0.4rem;
}

.toc li::before {
  content: counter(toc-counter) ".";
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  margin-right: 0.5rem;
}

.toc a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.toc a:hover {
  color: var(--accent-light);
}

/* === Stat Row === */
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

@media (min-width: 600px) {
  .stat-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1.2;
}

.stat-item .stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

/* === Callout Box === */
.callout-box {
  background: var(--bg-elevated);
  border: 1px solid var(--warning);
  border-left: 4px solid var(--warning);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.callout-box h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--warning);
  margin-bottom: 0.5rem;
}

.callout-box p {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.6;
}

/* === Timeline === */
.timeline {
  position: relative;
  margin: 1.5rem 0 2rem;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.75rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-primary);
}

.timeline-item .timeline-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.timeline-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0.2rem 0 0.3rem;
  color: var(--text-primary);
}

.timeline-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* === Newsletter Signup === */
.newsletter-signup {
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.newsletter-signup h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.newsletter-signup p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}

.newsletter-form button {
  padding: 0.6rem 1.25rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: var(--accent-hover);
}

/* === Trending Ticker === */
.trending-ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: 0.8rem;
}

.trending-label {
  font-weight: 700;
  color: var(--danger);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.7rem;
}

.trending-ticker a {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  background: var(--bg-surface);
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}

.trending-ticker a:hover {
  border-color: var(--accent);
  color: var(--text-primary);
  text-decoration: none;
}

/* === Related Coverage (alternative to FAQ) === */
.related-coverage {
  margin: 2.5rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.related-coverage h2 {
  font-size: 1.2rem;
  border-bottom: none;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 1rem;
}

.related-coverage ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-coverage li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.related-coverage li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.related-coverage a {
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.2rem;
}

.related-coverage .coverage-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}
