/*
Theme Name: Money Atlas
Theme URI: https://moneyatlas.com.br
Author: Money Atlas
Description: Premium dark gold personal finance WordPress theme
Version: 1.0.0
License: GNU General Public License v2 or later
Tags: blog, finance, dark, gold, custom-colors, custom-logo, featured-images
Text Domain: moneyatlas
*/

/* ── VARIABLES ───────────────────────────────────────────────── */
:root {
  --bg:         #0a0a0a;
  --bg2:        #111111;
  --bg3:        #1a1a1a;
  --gold:       #c9a84c;
  --gold-light: #e8c96d;
  --gold-dark:  #a07830;
  --text:       #e8e0d0;
  --subtext:    #8a8070;
  --border:     rgba(201,168,76,0.15);
  --card-bg:    #141414;
  --white:      #ffffff;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold:0 4px 24px rgba(201,168,76,0.15);
  --font-head:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:  'DM Sans', 'Segoe UI', sans-serif;
  --font-mono:  'DM Mono', 'Courier New', monospace;
  --max-width:  1200px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grid texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1.2rem; color: var(--text); }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── HEADER ──────────────────────────────────────────────────── */
#masthead {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

/* Logo */
.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--bg);
  font-family: var(--font-head);
  flex-shrink: 0;
}

.site-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

.site-title a { color: var(--white); }
.site-title a:hover { color: var(--gold); }

.site-tagline {
  font-size: 10px;
  color: var(--subtext);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-top: 2px;
}

/* Navigation */
.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.main-navigation a {
  color: var(--subtext);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* Header search */
.header-search-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--subtext);
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 16px;
}

.header-search-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 18px;
}

/* ── HERO SECTION ────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #111108 50%, #0a0a0a 100%);
}

.hero-bg-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 80px,
    rgba(201,168,76,0.02) 80px,
    rgba(201,168,76,0.02) 81px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title .gold { color: var(--gold); }

.hero-description {
  font-size: 1.15rem;
  color: var(--subtext);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

/* ── CATEGORY STRIP ──────────────────────────────────────────── */
.category-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.category-strip-inner {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--subtext);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  min-width: 130px;
  text-align: center;
}

.cat-pill-icon { font-size: 22px; }
.cat-pill-label { color: var(--text); font-weight: 700; font-size: 13px; }
.cat-pill-sub { font-size: 11px; color: var(--subtext); }

.cat-pill:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  transform: translateY(-2px);
  color: var(--gold);
}

/* ── SECTION HEADERS ─────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.section-title-label {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title-label::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--gold);
  border-radius: 2px;
}

.section-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── FEATURED ARTICLE ────────────────────────────────────────── */
.featured-section { padding: 64px 0 0; }

.featured-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.featured-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}

.featured-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.featured-card-large { min-height: 440px; }
.featured-card-small { min-height: 200px; }

.featured-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
}

.featured-card:hover .featured-card-image { transform: scale(1.05); }

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.4) 50%,
    transparent 100%
  );
}

.featured-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}

.post-category-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-family: var(--font-mono);
}

.featured-card-large .featured-card-title {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}

.featured-card-small .featured-card-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.featured-card-excerpt {
  font-size: 14px;
  color: rgba(232,224,208,0.7);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(232,224,208,0.6);
  font-family: var(--font-mono);
}

.post-meta-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.post-meta-dot { color: var(--gold); }

/* ── ARTICLE GRID ────────────────────────────────────────────── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.article-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}

.article-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.article-card-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .article-card-image { transform: scale(1.05); }

.article-card-image-wrap {
  overflow: hidden;
  position: relative;
}

.article-card-body { padding: 20px; }

.article-card-title {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.35;
  transition: color var(--transition);
}

.article-card:hover .article-card-title { color: var(--gold); }

.article-card-excerpt {
  font-size: 13px;
  color: var(--subtext);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--subtext);
  font-family: var(--font-mono);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}

.read-time {
  color: var(--gold);
  font-weight: 600;
}

/* ── MAIN CONTENT LAYOUT ─────────────────────────────────────── */
.content-area {
  padding: 60px 0;
}

.content-sidebar-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* ── SIDEBAR ─────────────────────────────────────────────────── */
.sidebar {
  position: sticky;
  top: 88px;
}

.sidebar-widget {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* Newsletter widget */
.newsletter-widget {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(160,120,48,0.05));
  border-color: rgba(201,168,76,0.25);
}

.newsletter-widget-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.newsletter-widget-desc {
  font-size: 13px;
  color: var(--subtext);
  line-height: 1.6;
  margin-bottom: 16px;
}

.newsletter-form input[type="email"] {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 11px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  margin-bottom: 10px;
  transition: border-color var(--transition);
  font-family: var(--font-body);
}

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

.newsletter-form input[type="email"]::placeholder { color: var(--subtext); }

.newsletter-form .btn {
  width: 100%;
  justify-content: center;
}

.newsletter-no-spam {
  font-size: 11px;
  color: var(--subtext);
  text-align: center;
  margin-top: 8px;
  font-family: var(--font-mono);
}

/* Popular posts widget */
.popular-post-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: all var(--transition);
}

.popular-post-item:last-child { border-bottom: none; }
.popular-post-item:hover .popular-post-title { color: var(--gold); }

.popular-post-image {
  width: 64px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.popular-post-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 4px;
  transition: color var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.popular-post-date {
  font-size: 11px;
  color: var(--subtext);
  font-family: var(--font-mono);
}

/* ── SINGLE POST ─────────────────────────────────────────────── */
.post-header { padding: 60px 0 40px; }

.post-header-inner { max-width: 800px; margin: 0 auto; }

.post-title-main {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.post-featured-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  border: 1px solid var(--border);
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
}

.post-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 16px;
  color: var(--white);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.post-content h3 {
  font-size: 1.35rem;
  margin: 32px 0 12px;
  color: var(--gold-light);
}

.post-content p { margin-bottom: 1.4rem; }

.post-content a { color: var(--gold); border-bottom: 1px solid rgba(201,168,76,0.3); }
.post-content a:hover { border-bottom-color: var(--gold); }

.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 28px 0;
  background: rgba(201,168,76,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text);
}

.post-content ul, .post-content ol {
  padding-left: 24px;
  margin-bottom: 1.4rem;
}

.post-content li { margin-bottom: 6px; }

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.post-content th {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.post-content td {
  padding: 11px 16px;
  border: 1px solid var(--border);
  color: var(--text);
}

.post-content tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #111108, #1a1a0a);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.cta-banner-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner-desc {
  font-size: 15px;
  color: var(--subtext);
  max-width: 480px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-form input[type="email"] {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 13px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}

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

.cta-form input[type="email"]::placeholder { color: var(--subtext); }

/* ── FOOTER ──────────────────────────────────────────────────── */
#colophon {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
  margin-top: 60px;
}

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

.footer-brand .site-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.footer-brand-desc {
  font-size: 13px;
  color: var(--subtext);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--subtext);
  font-size: 15px;
  transition: all var(--transition);
}

.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-bottom: 16px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 13px;
  color: var(--subtext);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--subtext);
  font-family: var(--font-mono);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--subtext);
  font-size: 12px;
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ── UTILITIES ───────────────────────────────────────────────── */
.gold { color: var(--gold); }
.section-pad { padding: 60px 0; }
.mb-40 { margin-bottom: 40px; }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.6s ease forwards; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card-large { min-height: 360px; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .content-sidebar-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-navigation { display: none; }
  .menu-toggle { display: block; }
  .main-navigation.toggled { display: block; position: absolute; top: 72px; left: 0; right: 0; background: var(--bg2); border-bottom: 1px solid var(--border); padding: 16px; z-index: 999; }
  .main-navigation.toggled ul { flex-direction: column; gap: 4px; }
  .articles-grid { grid-template-columns: 1fr; }
  .category-strip-inner { gap: 8px; }
  .cat-pill { min-width: 100px; padding: 12px 16px; }
  .cta-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-section { min-height: 70vh; }
}
