/* ===== SHARED STYLES: usimmigrationlaw.today ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:   #0D1B2A;
  --blue:   #1B3A5C;
  --accent: #C8392B;
  --gold:   #D4A843;
  --smoke:  #F6F7F9;
  --white:  #FFFFFF;
  --text:   #1A2535;
  --muted:  #5C6B7A;
  --border: #E2E6EC;
  --tag-bg: #EEF2F7;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 68px;
  background: var(--navy);
  border-bottom: 3px solid var(--accent);
}
.logo { font-family: 'Merriweather', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: .5rem; }
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.75); text-decoration: none; letter-spacing: .05em; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-subscribe { background: var(--accent); color: var(--white) !important; padding: .45rem 1.1rem; border-radius: 4px; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; }

/* TICKER */
.ticker { background: var(--blue); padding: .5rem 5vw; display: flex; align-items: center; gap: 1rem; overflow: hidden; }
.ticker-label { font-size: .68rem; font-weight: 700; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; border-right: 1px solid rgba(255,255,255,.2); padding-right: 1rem; }
.ticker-wrap { overflow: hidden; flex: 1; }
.ticker-track { display: flex; gap: 3rem; animation: ticker 40s linear infinite; white-space: nowrap; }
.ticker-track a { font-size: .78rem; color: rgba(255,255,255,.8); text-decoration: none; transition: color .2s; }
.ticker-track a:hover { color: var(--white); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); padding: 60px 5vw 50px; }
.page-hero-inner { max-width: 800px; }
.page-eyebrow { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.page-hero h1 { font-family: 'Merriweather', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 1rem; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.8; font-weight: 300; max-width: 580px; }

/* SECTION */
.section { padding: 70px 5vw; }
.section.smoke { background: var(--smoke); }
.section.navy { background: var(--navy); }
.section-label { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: .6rem; }
.section-title { font-family: 'Merriweather', serif; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 1rem; }
.section-title.white { color: var(--white); }
.section-sub { font-size: .95rem; color: var(--muted); line-height: 1.8; font-weight: 300; max-width: 580px; margin-bottom: 2.5rem; }
.section-head { margin-bottom: 2.5rem; }

/* BUTTONS */
.btn-red { background: var(--accent); color: var(--white); padding: .8rem 1.8rem; border-radius: 5px; font-size: .88rem; font-weight: 600; text-decoration: none; display: inline-block; transition: opacity .2s, transform .15s; }
.btn-red:hover { opacity: .88; transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); padding: .8rem 1.8rem; border-radius: 5px; font-size: .88rem; font-weight: 600; text-decoration: none; display: inline-block; transition: opacity .2s; }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.3); color: var(--white); padding: .8rem 1.8rem; border-radius: 5px; font-size: .88rem; font-weight: 500; text-decoration: none; display: inline-block; transition: border-color .2s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { border: 1.5px solid var(--border); color: var(--text); padding: .7rem 1.5rem; border-radius: 5px; font-size: .85rem; font-weight: 500; text-decoration: none; display: inline-block; transition: all .2s; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* TAGS */
.tag { display: inline-block; font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--tag-bg); color: var(--blue); padding: .2rem .6rem; border-radius: 3px; }
.tag.red { background: rgba(200,57,43,.1); color: var(--accent); }
.tag.gold { background: rgba(212,168,67,.12); color: #8A6A00; }

/* ARTICLE CARD */
.article-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 1.4rem; margin-bottom: 1rem; display: flex; gap: 1.2rem; text-decoration: none; transition: box-shadow .2s, transform .15s; }
.article-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); transform: translateY(-2px); }
.article-card-num { font-family: 'Merriweather', serif; font-size: 1.8rem; font-weight: 700; color: var(--border); min-width: 36px; line-height: 1; }
.article-card h3 { font-size: .92rem; font-weight: 600; color: var(--navy); line-height: 1.45; margin: .4rem 0; }
.article-card p { font-size: .8rem; color: var(--muted); line-height: 1.6; }
.article-featured { background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--accent); border-radius: 8px; padding: 2rem; margin-bottom: 1rem; text-decoration: none; display: block; transition: box-shadow .2s; }
.article-featured:hover { box-shadow: 0 8px 28px rgba(0,0,0,.09); }
.article-featured h3 { font-family: 'Merriweather', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin: .8rem 0; }
.article-featured p { font-size: .88rem; color: var(--muted); line-height: 1.7; }
.article-meta { font-size: .72rem; color: var(--muted); margin-top: .8rem; }

/* SIDEBAR */
.sidebar-box { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 1.6rem; margin-bottom: 1.5rem; }
.sidebar-box h4 { font-family: 'Merriweather', serif; font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 1.2rem; padding-bottom: .8rem; border-bottom: 2px solid var(--accent); }
.sidebar-link { display: flex; align-items: flex-start; gap: .7rem; padding: .7rem 0; border-bottom: 1px solid var(--border); text-decoration: none; }
.sidebar-link:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-link:hover h5 { color: var(--accent); }
.sidebar-dot { width: 6px; height: 6px; min-width: 6px; border-radius: 50%; background: var(--gold); margin-top: 6px; }
.sidebar-link h5 { font-size: .82rem; font-weight: 500; color: var(--navy); line-height: 1.45; }

/* SUBSCRIBE BOX */
.subscribe-box { background: var(--navy); border-radius: 8px; padding: 1.8rem; margin-bottom: 1.5rem; }
.subscribe-box h4 { font-family: 'Merriweather', serif; font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.subscribe-box p { font-size: .8rem; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 1.2rem; }
.subscribe-form { display: flex; flex-direction: column; gap: .7rem; }
.subscribe-form input { padding: .7rem .9rem; border: 1px solid rgba(255,255,255,.15); border-radius: 5px; background: rgba(255,255,255,.08); color: var(--white); font-size: .85rem; outline: none; font-family: 'Inter', sans-serif; }
.subscribe-form input::placeholder { color: rgba(255,255,255,.4); }
.subscribe-form button { background: var(--accent); color: var(--white); border: none; padding: .75rem; border-radius: 5px; font-size: .85rem; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; transition: opacity .2s; }
.subscribe-form button:hover { opacity: .85; }

/* CAT TABS */
.cat-tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.cat-tab { padding: .4rem 1rem; border-radius: 20px; font-size: .75rem; font-weight: 600; border: 1.5px solid var(--border); cursor: pointer; text-decoration: none; color: var(--muted); background: var(--white); transition: all .2s; }
.cat-tab:hover, .cat-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* NEWSLETTER */
.newsletter-section { background: var(--accent); padding: 60px 5vw; text-align: center; }
.newsletter-section h2 { font-family: 'Merriweather', serif; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--white); font-weight: 700; margin-bottom: .8rem; }
.newsletter-section p { color: rgba(255,255,255,.8); font-size: .95rem; margin-bottom: 2rem; font-weight: 300; }
.nl-form { display: flex; gap: .8rem; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.nl-form input { flex: 1; min-width: 220px; padding: .85rem 1.1rem; border: none; border-radius: 5px; font-size: .9rem; outline: none; font-family: 'Inter', sans-serif; }
.nl-form button { background: var(--navy); color: var(--white); border: none; padding: .85rem 1.8rem; border-radius: 5px; font-size: .88rem; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; transition: opacity .2s; }
.nl-form button:hover { opacity: .85; }
.newsletter-section small { display: block; margin-top: 1rem; color: rgba(255,255,255,.55); font-size: .75rem; }

/* FOOTER */
footer { background: var(--navy); padding: 60px 5vw 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: .82rem; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 260px; margin-top: .8rem; }
.footer-col h5 { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul a { font-size: .82rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.25); }
.footer-disclaimer { font-size: .72rem; color: rgba(255,255,255,.2); max-width: 500px; line-height: 1.6; text-align: right; }

/* DISCLAIMER BAR */
.disclaimer-bar { background: rgba(200,57,43,.07); border: 1px solid rgba(200,57,43,.2); border-radius: 6px; padding: 1rem 1.2rem; font-size: .8rem; color: #8B3A2A; line-height: 1.65; }

/* GUIDE CARD */
.guide-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 1.6rem; text-decoration: none; display: block; transition: box-shadow .2s, transform .15s; }
.guide-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); transform: translateY(-3px); }
.guide-card .cat-icon { font-size: 1.4rem; margin-bottom: .8rem; }
.guide-card h3 { font-size: .92rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; line-height: 1.4; }
.guide-card p { font-size: .8rem; color: var(--muted); line-height: 1.6; }
.guide-card .arrow { font-size: .78rem; color: var(--accent); font-weight: 600; margin-top: .8rem; display: block; }

/* CONTACT FORM */
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--border); border-radius: 6px; font-size: .9rem; font-family: 'Inter', sans-serif; color: var(--text); outline: none; transition: border-color .2s; background: var(--white); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 1.5rem 5vw; gap: 1rem; border-top: 1px solid rgba(255,255,255,.1); }
  .nav-links.open { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── ARTICLE PAGE STYLES ── */
.article-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); padding: 50px 5vw 40px; }
.breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .72rem; color: rgba(255,255,255,.5); margin-bottom: 1.2rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.25); }
.article-hero h1 { font-family: 'Merriweather', serif; font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 1rem; max-width: 820px; }
.article-meta-bar { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; margin-top: .8rem; }
.article-meta-bar .tag { font-size: .65rem; }
.article-meta-bar time { font-size: .75rem; color: rgba(255,255,255,.45); }

.article-layout { display: grid; grid-template-columns: 1fr 290px; gap: 3rem; padding: 60px 5vw; background: var(--smoke); align-items: start; }
.article-body { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 2.5rem; }
.article-body h2 { font-family: 'Merriweather', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); margin: 2.5rem 0 1rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.article-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.article-body h3 { font-size: .98rem; font-weight: 700; color: var(--navy); margin: 1.8rem 0 .6rem; }
.article-body h4 { font-size: .88rem; font-weight: 600; color: var(--blue); margin: 1.2rem 0 .4rem; }
.article-body p { font-size: .93rem; color: var(--text); line-height: 1.85; margin-bottom: 1rem; }
.article-body ul, .article-body ol { margin: .8rem 0 1.2rem 1.4rem; display: flex; flex-direction: column; gap: .35rem; }
.article-body li { font-size: .9rem; color: var(--text); line-height: 1.7; }
.article-body strong { font-weight: 600; color: var(--navy); }
.article-body a { color: var(--accent); text-decoration: underline; }

.callout { background: var(--smoke); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: 0 8px 8px 0; padding: 1.2rem 1.4rem; margin: 1.5rem 0; }
.callout p { margin: 0; font-size: .88rem; }
.callout.gold { border-left-color: var(--gold); background: rgba(212,168,67,.06); }
.callout.navy-box { border-left-color: var(--navy); background: var(--navy); }
.callout.navy-box p { color: rgba(255,255,255,.85); margin: 0; }

.data-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .85rem; border-radius: 6px; overflow: hidden; }
.data-table th { background: var(--navy); color: var(--white); padding: .7rem 1rem; text-align: left; font-size: .75rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.data-table td { padding: .7rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: top; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: rgba(0,0,0,.02); }

.faq-item { border-bottom: 1px solid var(--border); padding: 1rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-weight: 600; color: var(--navy); font-size: .92rem; margin-bottom: .4rem; }
.faq-a { font-size: .88rem; color: var(--muted); line-height: 1.65; }

.article-sidebar { position: sticky; top: 90px; }
.toc-box { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 1.4rem; margin-bottom: 1.5rem; }
.toc-box h4 { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.toc-list li a { font-size: .82rem; color: var(--muted); text-decoration: none; line-height: 1.4; transition: color .2s; display: block; }
.toc-list li a:hover { color: var(--accent); }

@media (max-width: 960px) { .article-layout { grid-template-columns: 1fr; } .article-sidebar { position: static; } }

/* ── ARTICLE / GUIDE PAGE STYLES ── */
.article-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); padding: 50px 5vw 40px; }
.breadcrumb { display:flex; align-items:center; gap:.4rem; font-size:.72rem; color:rgba(255,255,255,.5); margin-bottom:1.2rem; flex-wrap:wrap; }
.breadcrumb a { color:rgba(255,255,255,.6); text-decoration:none; transition:color .2s; }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb sep { color:rgba(255,255,255,.25); }
.article-hero h1 { font-family:'Merriweather',serif; font-size:clamp(1.6rem,3vw,2.4rem); font-weight:700; color:var(--white); line-height:1.25; margin-bottom:1rem; max-width:820px; }
.article-meta { display:flex; align-items:center; gap:1rem; flex-wrap:wrap; margin-top:.8rem; }
.article-meta span { font-size:.75rem; color:rgba(255,255,255,.45); }

.article-layout { display:grid; grid-template-columns:1fr 300px; gap:3rem; padding:60px 5vw; background:var(--smoke); align-items:start; }
.article-content { background:var(--white); border:1px solid var(--border); border-radius:8px; padding:2.5rem; }
.article-content h2 { font-family:'Merriweather',serif; font-size:1.25rem; font-weight:700; color:var(--navy); margin:2.5rem 0 .9rem; padding-top:2rem; border-top:1px solid var(--border); }
.article-content h2:first-child { margin-top:0; padding-top:0; border-top:none; }
.article-content h3 { font-size:1rem; font-weight:700; color:var(--navy); margin:1.8rem 0 .6rem; }
.article-content h4 { font-size:.9rem; font-weight:600; color:var(--blue); margin:1.2rem 0 .4rem; }
.article-content p { font-size:.925rem; color:var(--text); line-height:1.85; margin-bottom:1rem; }
.article-content ul, .article-content ol { margin:.6rem 0 1.2rem 1.4rem; display:flex; flex-direction:column; gap:.35rem; }
.article-content li { font-size:.9rem; color:var(--text); line-height:1.7; }
.article-content strong { font-weight:600; color:var(--navy); }
.article-content a { color:var(--accent); text-decoration:none; border-bottom:1px solid rgba(200,57,43,.2); }
.article-content a:hover { border-color:var(--accent); }

.callout { border:1px solid var(--border); border-left:4px solid var(--accent); border-radius:0 8px 8px 0; padding:1.2rem 1.5rem; margin:1.8rem 0; background:var(--white); }
.callout.gold { border-left-color:var(--gold); background:rgba(212,168,67,.05); }
.callout.navy { border-left-color:var(--navy); background:rgba(13,27,42,.04); }
.callout h4 { font-size:.82rem; font-weight:700; color:var(--navy); margin-bottom:.4rem; text-transform:uppercase; letter-spacing:.06em; }
.callout p { margin:0; font-size:.88rem; }

.data-table { width:100%; border-collapse:collapse; margin:1.5rem 0; font-size:.85rem; border-radius:6px; overflow:hidden; border:1px solid var(--border); }
.data-table th { background:var(--navy); color:var(--white); padding:.65rem 1rem; text-align:left; font-size:.75rem; font-weight:600; letter-spacing:.04em; }
.data-table td { padding:.65rem 1rem; border-bottom:1px solid var(--border); color:var(--text); }
.data-table tr:last-child td { border-bottom:none; }
.data-table tr:nth-child(even) td { background:rgba(0,0,0,.02); }

.faq-list { display:flex; flex-direction:column; gap:0; margin-top:1.2rem; }
.faq-item { border-bottom:1px solid var(--border); padding:1rem 0; }
.faq-q { font-size:.92rem; font-weight:600; color:var(--navy); margin-bottom:.4rem; }
.faq-a { font-size:.88rem; color:var(--muted); line-height:1.7; margin:0; }

.key-takeaway { background:var(--navy); border-radius:8px; padding:1.8rem; margin:2rem 0; }
.key-takeaway h3 { font-family:'Merriweather',serif; font-size:1rem; color:var(--gold); margin-bottom:.8rem; }
.key-takeaway p { color:rgba(255,255,255,.8); font-size:.9rem; line-height:1.75; margin:0; }

.article-sidebar { position:sticky; top:80px; }

@media(max-width:960px){
  .article-layout { grid-template-columns:1fr; }
  .article-sidebar { position:static; }
}


/* ══════════════════════════════════════════════════
   MOBILE FIXES — overflow, tables, layout stability
   ══════════════════════════════════════════════════ */

/* Hard-lock horizontal scroll globally */
html, body { max-width: 100%; overflow-x: hidden; }

/* Tables: wrap in scroll container on mobile */
.table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.5rem 0; }
.table-wrap .data-table { margin: 0; min-width: 480px; }

/* Prevent article content from stretching */
.article-content { min-width: 0; overflow-x: hidden; }
.article-content img, .article-content table { max-width: 100%; }

/* Make all data-tables scroll on small screens */
.data-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ── MOBILE NAV (≤768px) ── */
@media (max-width: 768px) {
  nav { padding: 0 4vw; height: 58px; }
  .nav-toggle { display: block; z-index: 101; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 58px; left: 0; right: 0;
    background: var(--navy); border-top: 2px solid var(--accent);
    padding: 1rem 0; z-index: 100;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .75rem 5vw; font-size: .85rem; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-subscribe { border-radius: 0; padding: .75rem 5vw; }

  /* Hero */
  .article-hero { padding: 28px 5vw 24px; }
  .article-hero h1 { font-size: 1.4rem; }

  /* Article layout: stack single column */
  .article-layout { grid-template-columns: 1fr; gap: 1.5rem; padding: 24px 4vw; }
  .article-content { padding: 1.4rem; }
  .article-sidebar { position: static; }

  /* Tables inside articles */
  .article-content .data-table { font-size: .78rem; }
  .article-content .data-table th,
  .article-content .data-table td { padding: .5rem .6rem; }

  /* Callout */
  .callout { padding: 1rem 1.1rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: 1; }

  /* News grid */
  .news-grid { grid-template-columns: 1fr; }
  .featured-card { grid-column: 1; }
}

@media (max-width: 480px) {
  .article-content { padding: 1rem; }
  .article-layout { padding: 16px 3.5vw; }
  .article-content h2 { font-size: 1.1rem; }
  .article-content h3 { font-size: .95rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ── FOOTER FIXES ── */
footer { background: var(--navy); padding: 50px 5vw 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-top: .6rem; }
.footer-col h5 { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li a { font-size: .82rem; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 0; flex-wrap: wrap; gap: .5rem; }
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.3); }
.footer-disclaimer { font-style: italic; }

/* ── SIDEBAR BOXES ── */
.sidebar-box { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 1.2rem; margin-bottom: 1rem; }
.sidebar-box h4 { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: .9rem; border-bottom: 1px solid var(--border); padding-bottom: .6rem; }
.sidebar-link { display: flex; align-items: flex-start; gap: .6rem; padding: .55rem 0; border-bottom: 1px solid var(--border); text-decoration: none; transition: opacity .2s; }
.sidebar-link:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-link:hover { opacity: .75; }
.sidebar-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); margin-top: 6px; flex-shrink: 0; }
.sidebar-link h5 { font-size: .8rem; font-weight: 500; color: var(--navy); line-height: 1.4; margin: 0; }
.subscribe-box { background: var(--navy); border-radius: 8px; padding: 1.4rem; margin-bottom: 1rem; }
.subscribe-box h4 { font-size: .8rem; font-weight: 700; color: var(--gold); margin-bottom: .5rem; }
.subscribe-box p { font-size: .78rem; color: rgba(255,255,255,.55); margin-bottom: .9rem; line-height: 1.5; }
.subscribe-form { display: flex; flex-direction: column; gap: .5rem; }
.subscribe-form input { padding: .55rem .75rem; border: none; border-radius: 4px; font-size: .8rem; background: rgba(255,255,255,.12); color: var(--white); outline: none; }
.subscribe-form input::placeholder { color: rgba(255,255,255,.35); }
.subscribe-form button { padding: .55rem; background: var(--accent); color: var(--white); border: none; border-radius: 4px; font-size: .78rem; font-weight: 600; cursor: pointer; }
.disclaimer-bar { font-size: .75rem; color: var(--muted); background: rgba(200,57,43,.04); border: 1px solid rgba(200,57,43,.12); border-radius: 6px; padding: .8rem 1rem; line-height: 1.5; }

/* ── NEWSLETTER SECTION ── */
.newsletter-section { background: var(--blue); padding: 60px 5vw; text-align: center; }
.newsletter-section h2 { font-family: 'Merriweather', serif; font-size: clamp(1.3rem, 2.5vw, 1.8rem); color: var(--white); margin-bottom: .6rem; }
.newsletter-section p { font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }
.nl-form { display: flex; gap: .5rem; max-width: 420px; margin: 0 auto 1rem; }
.nl-form input { flex: 1; padding: .75rem 1rem; border: none; border-radius: 4px; font-size: .85rem; }
.nl-form button { padding: .75rem 1.4rem; background: var(--accent); color: var(--white); border: none; border-radius: 4px; font-weight: 600; cursor: pointer; white-space: nowrap; font-size: .85rem; }
.newsletter-section small { font-size: .72rem; color: rgba(255,255,255,.3); }

/* TAGS */
.tag { display: inline-block; font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 3px; background: var(--tag-bg); color: var(--muted); }
.tag.red { background: rgba(200,57,43,.1); color: var(--accent); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .nl-form { flex-direction: column; }
  .nl-form input, .nl-form button { width: 100%; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
