/* Teleform Atlas — Warm Grove Journal — Clay Design */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0a0a0a;
  --primary-active: #1f1f1f;
  --primary-disabled: #e5e5e5;
  --ink: #0a0a0a;
  --body: #3a3a3a;
  --body-strong: #1a1a1a;
  --muted: #6a6a6a;
  --muted-soft: #9a9a9a;
  --hairline: #e5e5e5;
  --hairline-soft: #f0f0f0;
  --canvas: #fffaf0;
  --surface-soft: #faf5e8;
  --surface-card: #f5f0e0;
  --surface-strong: #ebe6d6;
  --surface-dark: #0a1a1a;
  --on-primary: #ffffff;
  --on-dark: #ffffff;
  --brand-pink: #ff4d8b;
  --brand-teal: #1a3a3a;
  --brand-lavender: #b8a4ed;
  --brand-peach: #ffb084;
  --brand-ochre: #e8b94a;
  --brand-mint: #a4d4c5;
  --success: #22c55e;
  --error: #ef4444;
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 9999px;
}

html { scroll-behavior: smooth; }

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--body);
  background: var(--canvas);
}

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

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  height: 72px;
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--brand-teal);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg { width: 20px; height: 20px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.logo-tagline {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.primary-nav { display: flex; align-items: center; gap: 4px; }

.primary-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: color 0.15s, background 0.15s;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--ink);
  background: var(--surface-card);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
  flex-direction: column;
  gap: 5px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--canvas);
  z-index: 99;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--hairline);
}

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

.mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border-bottom: 1px solid var(--hairline-soft);
}

.mobile-nav a:hover { background: var(--surface-card); }

/* ── BREADCRUMBS ── */
.breadcrumbs {
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline-soft);
}

.breadcrumbs ol {
  display: flex;
  gap: 6px;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumbs li { font-size: 13px; color: var(--muted); }
.breadcrumbs li a { color: var(--muted); text-decoration: none; }
.breadcrumbs li a:hover { color: var(--ink); }
.breadcrumbs li + li::before { content: "›"; margin-right: 6px; }

/* ── HERO ── */
.hero {
  background: var(--canvas);
  padding: 80px 0 96px;
  border-bottom: 1px solid var(--hairline-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  background: var(--surface-card);
  padding: 4px 12px;
  border-radius: var(--r-pill);
}

.hero h1 {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-lead {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--body-strong);
  margin-bottom: 36px;
}

.hero-image-card {
  background: var(--surface-soft);
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── EDITORIAL SUMMARY ── */
.editorial-summary {
  background: var(--surface-strong);
  border-radius: var(--r-xl);
  padding: 32px;
  margin-top: 32px;
  border-left: 4px solid var(--brand-teal);
}

.editorial-summary p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--body-strong);
}

/* ── SECTION ── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.55;
}

/* ── ARTICLE CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.card {
  background: var(--surface-card);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

.card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.card-pink { background: var(--brand-pink); color: var(--on-primary); }
.card-teal { background: var(--brand-teal); color: var(--on-dark); }
.card-lavender { background: var(--brand-lavender); }
.card-peach { background: var(--brand-peach); }
.card-ochre { background: var(--brand-ochre); }

.card-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.75;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.card-excerpt {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.85;
  flex: 1;
}

.card-meta {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.7;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  padding: 10px 18px;
  border: 1.5px solid currentColor;
  border-radius: var(--r-md);
  width: fit-content;
  margin-top: 8px;
  transition: opacity 0.15s;
}

.card-cta:hover { opacity: 0.75; }

/* ── MAIN ARTICLE FEATURED ── */
.featured-article {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  background: var(--surface-soft);
  border-radius: var(--r-xl);
  padding: 48px;
  align-items: start;
}

.featured-article-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.featured-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-article-content { display: flex; flex-direction: column; gap: 16px; }

.featured-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface-strong);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  width: fit-content;
}

.featured-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.featured-summary {
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
}

.featured-meta {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--r-md);
  text-decoration: none;
  text-align: center;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
  height: 44px;
  line-height: 20px;
}

.btn-primary:hover { background: var(--primary-active); color: var(--on-primary); }

.btn-secondary {
  display: inline-block;
  background: var(--canvas);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--hairline);
  text-decoration: none;
  text-align: center;
  transition: background 0.15s;
  height: 44px;
  line-height: 20px;
}

.btn-secondary:hover { background: var(--surface-card); }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--surface-strong);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-caption {
  padding: 12px 16px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  background: var(--surface-card);
}

/* ── ARTICLE PAGE ── */
.article-header { padding: 64px 0 32px; }

.article-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface-card);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.article-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 20px;
}

.article-byline {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  margin-bottom: 32px;
}

.article-byline-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.article-byline-item strong { color: var(--body-strong); }

.article-summary {
  background: var(--surface-soft);
  border-radius: var(--r-xl);
  padding: 32px;
  margin-bottom: 40px;
  border-left: 4px solid var(--brand-teal);
}

.article-summary p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--body-strong);
  font-weight: 400;
}

.article-layout {
  display: grid;
  grid-template-columns: 680px 1fr;
  gap: 64px;
  align-items: start;
}

.article-body h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin: 48px 0 16px;
  line-height: 1.2;
}

.article-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--body-strong);
  margin: 32px 0 12px;
  line-height: 1.3;
}

.article-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 20px;
}

.article-body ul, .article-body ol {
  margin: 16px 0 20px 24px;
}

.article-body li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  margin-bottom: 8px;
}

.article-image-wrap {
  margin: 40px 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-strong);
}

.article-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.article-image-wrap figcaption {
  padding: 12px 16px;
  font-size: 12px;
  color: var(--muted);
  background: var(--surface-card);
}

.key-context-box {
  background: var(--brand-teal);
  color: var(--on-dark);
  border-radius: var(--r-xl);
  padding: 32px;
  margin: 40px 0;
}

.key-context-box h3 { color: var(--on-dark); font-size: 16px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.key-context-box ul { margin-left: 20px; }
.key-context-box li { color: var(--on-dark); opacity: 0.9; font-size: 15px; margin-bottom: 10px; }

.not-covered-box {
  background: var(--surface-card);
  border-radius: var(--r-xl);
  padding: 32px;
  margin: 40px 0;
  border: 1px solid var(--hairline);
}

.not-covered-box h3 { color: var(--ink); font-size: 16px; margin-bottom: 16px; }
.not-covered-box ul { margin-left: 20px; }
.not-covered-box li { font-size: 15px; color: var(--muted); margin-bottom: 8px; }

/* ── TABLE OF CONTENTS ── */
.toc-sidebar {
  position: sticky;
  top: 100px;
}

.toc-box {
  background: var(--surface-soft);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--hairline);
}

.toc-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toc-list li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  display: block;
  padding: 6px 8px;
  border-radius: var(--r-xs);
  transition: all 0.15s;
  line-height: 1.4;
}

.toc-list li a:hover {
  color: var(--ink);
  background: var(--surface-card);
}

.toc-list li.sub a { padding-left: 20px; font-size: 13px; }

/* ── RELATED ARTICLES ── */
.related-section { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--hairline-soft); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.related-card {
  background: var(--surface-card);
  border-radius: var(--r-lg);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
  border: 1px solid var(--hairline);
}

.related-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.related-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.related-card-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.related-card-meta {
  font-size: 13px;
  color: var(--muted);
}

/* ── CONTACT FORM ── */
.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--body-strong);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--canvas);
  color: var(--ink);
  font-size: 16px;
  font-family: inherit;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 12px 16px;
  height: 44px;
  transition: border-color 0.15s;
  outline: none;
}

.form-group textarea {
  height: auto;
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--ink);
}

.form-message {
  display: none;
  background: var(--surface-soft);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin-top: 24px;
  border-left: 4px solid var(--brand-teal);
  font-size: 15px;
  color: var(--body-strong);
}

.form-message.visible { display: block; }
.form-error { border-color: var(--error) !important; }
.field-error { font-size: 12px; color: var(--error); margin-top: 4px; }

/* ── STATIC PAGES ── */
.page-header { padding: 64px 0 48px; border-bottom: 1px solid var(--hairline-soft); margin-bottom: 64px; }

.page-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 16px;
}

.page-lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 600px;
}

.prose { max-width: 740px; }
.prose h2 { font-size: 24px; font-weight: 600; color: var(--ink); margin: 40px 0 16px; letter-spacing: -0.3px; }
.prose h3 { font-size: 18px; font-weight: 600; color: var(--body-strong); margin: 28px 0 12px; }
.prose p { font-size: 16px; line-height: 1.7; color: var(--body); margin-bottom: 18px; }
.prose ul, .prose ol { margin: 16px 0 20px 24px; }
.prose li { font-size: 16px; line-height: 1.65; color: var(--body); margin-bottom: 8px; }
.prose a { color: var(--ink); }
.prose strong { color: var(--body-strong); font-weight: 600; }

/* ── COVERAGE PAGE ── */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.coverage-card {
  background: var(--surface-card);
  border-radius: var(--r-xl);
  padding: 32px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--hairline);
  transition: box-shadow 0.2s;
}

.coverage-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

/* ── FOOTER ── */
.site-footer {
  background: var(--surface-soft);
  border-top: 1px solid var(--hairline);
  padding: 64px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 280px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--ink); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 13px; color: var(--muted-soft); }

.footer-disclaimer-note {
  font-size: 13px;
  color: var(--muted-soft);
  max-width: 600px;
  text-align: right;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--surface-dark);
  color: var(--on-dark);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cookie-banner.hidden { display: none; }

.cookie-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  flex: 1;
  min-width: 200px;
}

.cookie-text a { color: var(--brand-mint); }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  background: var(--on-primary);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
}

.btn-cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
}

.btn-cookie-settings {
  background: transparent;
  color: var(--brand-mint);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--r-md);
  border: 1px solid rgba(164,212,197,0.3);
  cursor: pointer;
  text-decoration: none;
}

/* ── ABOUT PAGE CARDS ── */
.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.about-card {
  border-radius: var(--r-xl);
  padding: 32px;
}

.about-card-title { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.about-card-body { font-size: 15px; line-height: 1.6; }

/* ── UTILITIES ── */
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.text-muted { color: var(--muted); }
.text-sm { font-size: 14px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 40px; }
  .article-layout { grid-template-columns: 1fr; }
  .toc-sidebar { position: static; }
  .featured-article { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .burger { display: flex; }
  .hero { padding: 48px 0 64px; }
  .hero h1 { font-size: 32px; letter-spacing: -0.5px; }
  .hero-lead { font-size: 16px; }
  .section { padding: 64px 0; }
  .section-title { font-size: 28px; }
  .cards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .about-feature-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-disclaimer-note { text-align: left; }
  .article-title { font-size: 32px; letter-spacing: -0.5px; }
  .page-title { font-size: 32px; letter-spacing: -0.5px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .featured-article { padding: 24px; }
}
