/* ═══════════════════════════════════════════════════════
   CHILLSOFT BLOG — DESIGN SYSTEM v2.0
   2025 · Ultra Modern · Dark + Light Mode · Production
═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,700;12..96,800&family=Lora:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* ── TOKENS ── */
:root {
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Lora', serif;
  --font-ui: 'Bricolage Grotesque', sans-serif;

  /* Dark mode (default) */
  --bg:        #07090f;
  --bg2:       #0c0f1a;
  --bg3:       #111526;
  --surface:   #141829;
  --surface2:  #1a1f35;
  --border:    rgba(255,255,255,0.06);
  --border2:   rgba(255,255,255,0.11);

  --text:      #eef1f8;
  --text2:     #9aa5be;
  --text3:     #4e5d7a;
  --text-inv:  #07090f;

  --accent:    #3b82f6;
  --accent2:   #8b5cf6;
  --accent3:   #06b6d4;
  --gold:      #f59e0b;
  --green:     #10b981;
  --red:       #ef4444;
  --orange:    #f97316;

  --card-bg:   var(--surface);
  --nav-bg:    rgba(7,9,15,.85);
  --nav-h:     66px;
  --max:       1200px;
  --art-w:     720px;

  --shadow-xs: 0 1px 3px rgba(0,0,0,.4);
  --shadow-sm: 0 4px 16px rgba(0,0,0,.4);
  --shadow-md: 0 8px 32px rgba(0,0,0,.5);
  --shadow-lg: 0 20px 64px rgba(0,0,0,.6);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --ease:   cubic-bezier(.4,0,.2,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
  --smooth: cubic-bezier(.25,.46,.45,.94);
}

/* Light mode */
[data-theme="light"] {
  --bg:        #f8f9fc;
  --bg2:       #ffffff;
  --bg3:       #f0f2f8;
  --surface:   #ffffff;
  --surface2:  #f4f6fb;
  --border:    rgba(0,0,0,0.07);
  --border2:   rgba(0,0,0,0.12);
  --text:      #0d111c;
  --text2:     #3d4a66;
  --text3:     #8896b0;
  --text-inv:  #f8f9fc;
  --card-bg:   #ffffff;
  --nav-bg:    rgba(248,249,252,.9);
  --shadow-xs: 0 1px 3px rgba(0,0,0,.08);
  --shadow-sm: 0 4px 16px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.1);
  --shadow-lg: 0 20px 64px rgba(0,0,0,.12);
}

/* ── RESET ── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background .35s var(--ease), color .35s var(--ease);
  cursor: none;
}
img { max-width:100%; display:block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-ui); cursor: pointer; border: none; background: none; }
input, textarea { font-family: var(--font-ui); }

/* ── CUSTOM CURSOR ── */
#cs-cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9000;
  transform: translate(-50%,-50%);
  transition: width .18s var(--spring), height .18s var(--spring), opacity .2s;
  mix-blend-mode: screen;
}
#cs-cursor-ring {
  position: fixed; width: 34px; height: 34px;
  border: 1.5px solid rgba(59,130,246,.35);
  border-radius: 50%; pointer-events: none; z-index: 8999;
  transform: translate(-50%,-50%);
  transition: width .3s var(--spring), height .3s var(--spring);
}
body.cursor-hover #cs-cursor { width: 16px; height: 16px; }
body.cursor-hover #cs-cursor-ring { width: 50px; height: 50px; }

/* ── NOISE LAYER ── */
.noise-layer {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
[data-theme="light"] .noise-layer { opacity:.015; }

/* ── PROGRESS BAR ── */
#read-progress {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  height: 2px; z-index: 800; pointer-events: none;
  background: var(--border);
}
#read-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
  transition: width .08s linear;
}

/* ── NAVIGATION ── */
#cs-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 700;
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s;
}
#cs-nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  height: 100%; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}

/* Logo */
.cs-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; text-decoration: none;
}
.cs-logo-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(59,130,246,.35);
  position: relative; overflow: hidden; flex-shrink: 0;
}
.cs-logo-icon img { width: 24px; height: 24px; object-fit: contain; filter: brightness(10); }
.cs-logo-icon-text {
  font-family: var(--font-display); font-weight: 800; font-size: 16px; color: #fff;
}
.cs-logo-name {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  color: var(--text); letter-spacing: -.03em;
}
.cs-logo-name span { color: var(--accent); }
.cs-logo-pill {
  font-family: var(--font-ui); font-size: 14px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text3);
  border: 1px solid var(--border2); padding: 2px 7px; border-radius: 4px;
  margin-left: 4px;
}

/* Nav links */
.nav-menu {
  display: flex; align-items: center; gap: 2px; list-style: none; flex: 1; justify-content: center;
}
.nav-menu a {
  font-family: var(--font-ui); font-size: 15px; font-weight: 500;
  color: var(--text2); padding: 8px 14px; border-radius: var(--radius-sm);
  transition: color .2s, background .2s; white-space: nowrap;
  display: flex; align-items: center; gap: 5px;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--text); background: var(--surface2); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-icon-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text2); transition: all .2s; flex-shrink: 0;
}
.nav-icon-btn:hover { color: var(--text); background: var(--surface2); border-color: var(--border2); }
.nav-icon-btn svg { width: 16px; height: 16px; }

/* Theme toggle */
#theme-toggle { position: relative; overflow: hidden; }
.theme-sun, .theme-moon { transition: transform .3s var(--spring), opacity .3s; }
[data-theme="light"] .theme-sun { transform: rotate(-45deg); opacity: 0; position: absolute; }
[data-theme="dark"] .theme-moon, :root:not([data-theme]) .theme-moon { transform: rotate(-45deg); opacity: 0; position: absolute; }
[data-theme="light"] .theme-moon { transform: none; opacity: 1; }

/* CTA button */
.btn-nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-ui); font-size: 15px; font-weight: 700;
  padding: 9px 18px; border-radius: var(--radius-sm);
  background: var(--accent); color: #fff; letter-spacing: .01em;
  box-shadow: 0 0 20px rgba(59,130,246,.3);
  transition: transform .2s var(--spring), box-shadow .2s;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-nav-cta::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg,rgba(255,255,255,.15),transparent);
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(59,130,246,.45); }
.btn-nav-cta svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Mobile hamburger */
#nav-toggle {
  display: none; width: 36px; height: 36px;
  border-radius: var(--radius-sm); background: var(--surface);
  border: 1px solid var(--border); align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.ham-line {
  width: 18px; height: 1.5px; background: var(--text2); border-radius: 2px;
  transition: transform .25s, opacity .25s, width .25s;
}
#nav-toggle.open .ham-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#nav-toggle.open .ham-line:nth-child(2) { opacity: 0; width: 0; }
#nav-toggle.open .ham-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--bg2); z-index: 690; overflow-y: auto; padding: 24px;
  transform: translateY(-10px); opacity: 0;
  transition: transform .3s var(--ease), opacity .3s;
}
#mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.mobile-nav-links a {
  font-family: var(--font-ui); font-size: 17px; font-weight: 600; color: var(--text2);
  display: block; padding: 14px 0; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav-links a:hover { color: var(--accent); }
.mobile-cta { display: flex; flex-direction: column; gap: 10px; }
.btn-mobile-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-ui); font-size: 15px; font-weight: 700;
  padding: 14px; border-radius: var(--radius-md); background: var(--accent); color: #fff;
}
.btn-mobile-ghost {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-ui); font-size: 15px; font-weight: 600;
  padding: 14px; border-radius: var(--radius-md);
  border: 1.5px solid var(--border2); color: var(--text2);
}

/* ── PAGE LAYOUT ── */
.page-wrap {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 308px;
  grid-template-areas: 'hero hero' 'body side';
  gap: 0 56px; padding-top: calc(var(--nav-h) + 52px);
  position: relative; z-index: 2;
}

/* ── ARTICLE HERO ── */
.article-hero {
  grid-area: hero; padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
.hero-tag-row {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px;
  animation: fadeUp .5s var(--ease) .05s both;
}
.htag {
  font-family: var(--font-ui); font-size: 14px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 6px; border: 1px solid;
}
.htag-blue  { color: var(--accent);  background: rgba(59,130,246,.08);  border-color: rgba(59,130,246,.2); }
.htag-purple{ color: var(--accent2); background: rgba(139,92,246,.08); border-color: rgba(139,92,246,.2); }
.htag-green { color: var(--green);   background: rgba(16,185,129,.08);  border-color: rgba(16,185,129,.2); }
.htag-gold  { color: var(--gold);    background: rgba(245,158,11,.08);  border-color: rgba(245,158,11,.2); }
.htag-cyan  { color: var(--accent3); background: rgba(6,182,212,.08);   border-color: rgba(6,182,212,.2); }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 14px; color: var(--text3);
  margin-bottom: 20px; flex-wrap: wrap;
  animation: fadeUp .5s var(--ease) both;
}
.breadcrumb a { transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: .4; }

h1.art-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px,4.2vw,54px); line-height: 1.08;
  letter-spacing: -.025em; color: var(--text);
  margin-bottom: 20px;
  animation: fadeUp .6s var(--ease) .1s both;
}
h1.art-title em { font-style: italic; color: var(--accent); font-family: var(--font-body); font-weight: 400; }

.art-standfirst {
  font-family: var(--font-body); font-size: 18px; font-weight: 400;
  color: var(--text2); line-height: 1.7; max-width: 680px;
  margin-bottom: 28px;
  animation: fadeUp .6s var(--ease) .15s both;
}

.art-byline {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  animation: fadeUp .5s var(--ease) .2s both;
}
.byline-av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 16px;
  box-shadow: 0 0 14px rgba(59,130,246,.25);
}
.byline-av img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.byline-name { font-family: var(--font-ui); font-size: 14px; font-weight: 700; color: var(--text); }
.byline-meta { font-family: var(--font-ui); font-size: 14px; color: var(--text3); margin-top: 1px; }
.byline-sep { width: 1px; height: 28px; background: var(--border2); }
.byline-read {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: 14px; color: var(--text3);
}

/* Verdict card */
.verdict-card {
  margin-top: 36px; background: var(--surface);
  border: 1px solid var(--border2); border-radius: var(--radius-lg);
  padding: 28px; position: relative; overflow: hidden;
  animation: fadeUp .6s var(--ease) .25s both;
}
.verdict-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
}
.verdict-eyebrow {
  font-family: var(--font-ui); font-size: 15px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text3); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.verdict-eyebrow::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.verdict-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.verdict-col {
  border-radius: var(--radius-md); padding: 18px; position: relative;
}
.vc-cs { background: rgba(59,130,246,.06); border: 1px solid rgba(59,130,246,.18); }
.vc-wd { background: rgba(239,68,68,.06); border: 1px solid rgba(239,68,68,.18); }
.vc-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.vc-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.vc-dot-cs { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.vc-dot-wd { background: var(--red); box-shadow: 0 0 6px var(--red); }
.vc-brand-name { font-family: var(--font-ui); font-size: 14px; font-weight: 800; letter-spacing: .05em; }
.vc-cs .vc-brand-name { color: var(--accent); }
.vc-wd .vc-brand-name { color: var(--red); }
.vc-text { font-family: var(--font-body); font-size: 15px; color: var(--text2); line-height: 1.65; }
.vc-text strong { color: var(--text); font-weight: 600; }

/* ── ARTICLE BODY ── */
.article-body { grid-area: body; min-width: 0; padding-bottom: 80px; }

/* Sections */
.art-section { padding: 52px 0; border-bottom: 1px solid var(--border); }
.art-section:last-of-type { border-bottom: none; }

.section-label {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.section-num {
  font-family: var(--font-ui); font-size: 15px; font-weight: 800;
  letter-spacing: .1em; color: var(--text3); min-width: 24px;
}
.section-rule { flex: 1; height: 1px; background: var(--border); }

h2.section-h {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(22px,2.8vw,34px); letter-spacing: -.02em;
  color: var(--text); margin-bottom: 18px; line-height: 1.18;
}
h3.sub-h {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--text); margin: 28px 0 10px; letter-spacing: -.01em;
}

p.para {
  font-family: var(--font-body); font-size: 16.5px;
  color: var(--text2); line-height: 1.88; margin-bottom: 20px;
}
p.para strong { color: var(--text); font-weight: 600; }
p.para em { font-style: italic; color: var(--text2); }
p.para a { color: var(--accent); border-bottom: 1px solid rgba(59,130,246,.25); transition: border-color .2s; }
p.para a:hover { border-color: var(--accent); }

/* Score grid */
.score-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 28px 0;
}
.score-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 18px 14px; text-align: center;
  transition: transform .2s var(--spring), border-color .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.score-card:hover { transform: translateY(-3px); border-color: var(--border2); box-shadow: var(--shadow-sm); }
.score-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,var(--accent),var(--accent2)); opacity: 0; transition: opacity .2s;
}
.score-card:hover::after { opacity: 1; }
.sc-label { font-family: var(--font-ui); font-size: 15px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--text3); margin-bottom: 12px; line-height: 1.4; }
.sc-pair { display: flex; align-items: center; justify-content: center; gap: 10px; }
.sc-num {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 17px; font-weight: 800;
}
.sc-cs { background: rgba(59,130,246,.1); color: var(--accent); border: 1.5px solid rgba(59,130,246,.25); }
.sc-wd { background: rgba(239,68,68,.1); color: var(--red); border: 1.5px solid rgba(239,68,68,.25); }
.sc-vs { font-family: var(--font-ui); font-size: 14px; font-weight: 800; color: var(--text3); letter-spacing: .05em; }
.sc-subs { display: flex; justify-content: space-around; font-family: var(--font-ui); font-size: 14px; color: var(--text3); margin-top: 8px; }

/* Comparison table */
.table-wrap {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border); margin: 28px 0;
  overflow-x: auto;
}
.comp-tbl { width: 100%; border-collapse: collapse; min-width: 480px; }
.comp-tbl thead th {
  padding: 14px 18px; font-family: var(--font-ui); font-size: 14px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase; text-align: left;
}
.comp-tbl th.col-feat { background: var(--surface2); color: var(--text3); width: 36%; }
.comp-tbl th.col-cs { background: rgba(59,130,246,.08); color: var(--accent); border-left: 1px solid var(--border); }
.comp-tbl th.col-wd { background: rgba(239,68,68,.08); color: var(--red); border-left: 1px solid var(--border); }
.comp-tbl tbody tr { border-top: 1px solid var(--border); transition: background .15s; }
.comp-tbl tbody tr:hover { background: rgba(255,255,255,.02); }
[data-theme="light"] .comp-tbl tbody tr:hover { background: rgba(0,0,0,.02); }
.comp-tbl td {
  padding: 12px 18px; font-family: var(--font-ui); font-size: 15px;
  color: var(--text2); vertical-align: middle; line-height: 1.5;
}
.comp-tbl td.col-cs { background: rgba(59,130,246,.02); border-left: 1px solid var(--border); }
.comp-tbl td.col-wd { background: rgba(239,68,68,.02); border-left: 1px solid var(--border); }
.ic-yes { color: var(--green); margin-right: 4px; }
.ic-no  { color: var(--red); margin-right: 4px; }
.ic-mid { color: var(--gold); margin-right: 4px; }

/* Callouts */
.callout {
  border-radius: var(--radius-md); padding: 22px 24px; margin: 28px 0;
  position: relative; overflow: hidden; border: 1px solid;
}
.callout::before { content:''; position:absolute; top:0; left:0; width:3px; bottom:0; }
.callout-blue  { background: rgba(59,130,246,.05);  border-color: rgba(59,130,246,.15); }
.callout-blue::before  { background: var(--accent); }
.callout-green { background: rgba(16,185,129,.05);  border-color: rgba(16,185,129,.15); }
.callout-green::before { background: var(--green); }
.callout-gold  { background: rgba(245,158,11,.05);  border-color: rgba(245,158,11,.15); }
.callout-gold::before  { background: var(--gold); }
.callout-icon { font-size: 18px; margin-bottom: 8px; }
.callout-title {
  font-family: var(--font-ui); font-size: 14px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px;
}
.callout-blue .callout-title  { color: var(--accent); }
.callout-green .callout-title { color: var(--green); }
.callout-gold .callout-title  { color: var(--gold); }
.callout p.para { margin: 0; font-size: 14px; }

/* Pull quote */
.pull-quote {
  margin: 44px 0; padding: 28px 32px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); position: relative; overflow: hidden;
}
.pull-quote::before {
  content: '\201C'; position: absolute; top: -16px; left: 16px;
  font-family: var(--font-body); font-size: 160px; color: var(--border);
  line-height: 1; pointer-events: none;
}
.pull-quote blockquote {
  font-family: var(--font-body); font-size: 20px; font-style: italic;
  color: var(--text); line-height: 1.55; position: relative; z-index: 1; margin-bottom: 14px;
}
.pull-quote cite {
  font-family: var(--font-ui); font-size: 15px; color: var(--text3); font-style: normal;
  display: flex; align-items: center; gap: 8px;
}
.pull-quote cite::before { content: '—'; }

/* Pros/cons */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.pc-box { border-radius: var(--radius-md); padding: 22px; border: 1px solid; }
.pc-pros { background: rgba(16,185,129,.04); border-color: rgba(16,185,129,.15); }
.pc-cons { background: rgba(239,68,68,.04); border-color: rgba(239,68,68,.15); }
.pc-head {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 14px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px;
}
.pc-pros .pc-head { color: var(--green); }
.pc-cons .pc-head { color: var(--red); }
.pc-items { list-style: none; display: flex; flex-direction: column; gap: 0; }
.pc-items li {
  font-family: var(--font-ui); font-size: 15px; color: var(--text2);
  padding: 8px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 9px; line-height: 1.5;
}
.pc-items li:last-child { border-bottom: none; }
.pc-icon { font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.pc-pros .pc-icon { color: var(--green); }
.pc-cons .pc-icon { color: var(--red); }

/* Choose grid */
.choose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.choose-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 22px;
  transition: transform .2s var(--spring), border-color .2s;
}
.choose-card:hover { transform: translateY(-3px); border-color: var(--border2); }
.choose-head {
  padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 14px;
}
.choose-badge {
  font-family: var(--font-ui); font-size: 14px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 6px; border: 1px solid; display: inline-block;
}
.cb-cs { background: rgba(59,130,246,.08); color: var(--accent); border-color: rgba(59,130,246,.2); }
.cb-wd { background: rgba(239,68,68,.08); color: var(--red); border-color: rgba(239,68,68,.2); }
.choose-list { list-style: none; }
.choose-list li {
  font-family: var(--font-ui); font-size: 15px; color: var(--text2);
  padding: 7px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
}
.choose-list li:last-child { border-bottom: none; }
.choose-arrow { color: var(--text3); font-size: 14px; flex-shrink: 0; margin-top: 3px; }

/* Reach Us / Contact banner */
.reach-us {
  margin: 48px 0; background: var(--surface);
  border: 1px solid var(--border2); border-radius: var(--radius-lg); padding: 36px;
  position: relative; overflow: hidden;
}
.reach-us::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), var(--accent3), transparent);
}
.reach-us-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.reach-us-text h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  color: var(--text); margin-bottom: 8px; letter-spacing: -.02em;
}
.reach-us-text p { font-family: var(--font-ui); font-size: 14px; color: var(--text2); line-height: 1.6; }
.reach-contacts { display: flex; flex-direction: column; gap: 10px; }
.reach-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-size: 15px; color: var(--text2);
  background: var(--bg3); border: 1px solid var(--border);
  padding: 10px 14px; border-radius: var(--radius-sm); text-decoration: none;
  transition: border-color .2s, color .2s; white-space: nowrap;
}
.reach-contact-item:hover { border-color: var(--border2); color: var(--text); }
.reach-contact-item .rci-icon { font-size: 16px; flex-shrink: 0; }
.reach-contact-item strong { color: var(--text); font-weight: 700; }

/* Article CTA */
.article-cta {
  margin-top: 52px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 48px; text-align: center; position: relative; overflow: hidden;
}
.article-cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), var(--gold), transparent);
}
.cta-eyebrow {
  font-family: var(--font-ui); font-size: 15px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text3); margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.article-cta h2 {
  font-family: var(--font-display); font-size: clamp(22px,3vw,36px);
  font-weight: 800; color: var(--text); margin-bottom: 12px;
  letter-spacing: -.02em; line-height: 1.15;
}
.article-cta p { font-family: var(--font-body); font-size: 15.5px; color: var(--text2); margin-bottom: 28px; max-width: 440px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 14px; font-weight: 700;
  padding: 14px 26px; border-radius: var(--radius-md);
  background: var(--accent); color: #fff;
  box-shadow: 0 0 28px rgba(59,130,246,.35);
  transition: transform .2s var(--spring), box-shadow .2s;
  position: relative; overflow: hidden;
}
.btn-cta-primary::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,.15),transparent); }
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(59,130,246,.5); }
.btn-cta-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 14px; font-weight: 700;
  padding: 14px 26px; border-radius: var(--radius-md);
  background: #25d366; color: #fff;
  box-shadow: 0 0 20px rgba(37,211,102,.25);
  transition: transform .2s var(--spring), box-shadow .2s;
}
.btn-cta-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.4); }
.btn-cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  padding: 14px 26px; border-radius: var(--radius-md);
  background: var(--surface2); color: var(--text2);
  border: 1px solid var(--border2); transition: background .2s, color .2s;
}
.btn-cta-ghost:hover { background: var(--bg3); color: var(--text); }
.cta-trust {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 20px; flex-wrap: wrap;
}
.cta-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: 14px; color: var(--text3);
}
.cta-trust-item .ti-check { color: var(--green); font-size: 14px; }

/* ── SIDEBAR ── */
.article-side {
  grid-area: side; position: sticky; top: calc(var(--nav-h) + 20px);
  align-self: start; display: flex; flex-direction: column; gap: 18px;
  padding-bottom: 48px;
}
.side-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px; overflow: hidden; position: relative;
}
.side-card-header {
  font-family: var(--font-ui); font-size: 15px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text3);
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.side-card-header::after { content:''; flex:1; height:1px; background:var(--border); }

/* TOC */
.toc-list { list-style: none; counter-reset: toc; }
.toc-list li { counter-increment: toc; }
.toc-list a {
  display: flex; gap: 10px; align-items: flex-start;
  font-family: var(--font-ui); font-size: 15px; color: var(--text3);
  padding: 8px 0; border-bottom: 1px solid var(--border);
  transition: color .2s; line-height: 1.4;
}
.toc-list a::before {
  content: counter(toc,decimal-leading-zero);
  font-size: 15px; font-weight: 700; color: var(--text3);
  min-width: 18px; opacity: .6; margin-top: 1px;
}
.toc-list li:last-child a { border-bottom: none; }
.toc-list a:hover, .toc-list a.toc-active { color: var(--accent); }

/* Sidebar demo card */
.side-demo-card {
  background: linear-gradient(145deg, rgba(59,130,246,.12), rgba(139,92,246,.08));
  border: 1px solid rgba(59,130,246,.2); border-radius: var(--radius-lg);
  padding: 24px; text-align: center; position: relative; overflow: hidden;
}
.side-demo-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,transparent,var(--accent),transparent);
}
.side-demo-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 24px;
  box-shadow: 0 8px 20px rgba(59,130,246,.3);
}
.side-demo-card h3 {
  font-family: var(--font-display); font-size: 16px; font-weight: 800;
  color: var(--text); margin-bottom: 8px; letter-spacing: -.01em;
}
.side-demo-card p { font-family: var(--font-ui); font-size: 15px; color: var(--text2); margin-bottom: 16px; line-height: 1.6; }
.side-demo-btn {
  display: block; width: 100%; font-family: var(--font-ui); font-size: 15px; font-weight: 700;
  padding: 11px; border-radius: var(--radius-sm);
  background: var(--accent); color: #fff; text-align: center; margin-bottom: 8px;
  box-shadow: 0 0 16px rgba(59,130,246,.3); transition: transform .2s, box-shadow .2s;
}
.side-demo-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(59,130,246,.4); }
.side-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; font-family: var(--font-ui); font-size: 15px; font-weight: 600;
  padding: 10px; border-radius: var(--radius-sm);
  background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.25);
  color: #25d366; text-align: center;
  transition: background .2s;
}
.side-wa-btn:hover { background: rgba(37,211,102,.18); }

/* Related */
.related-item { padding: 11px 0; border-bottom: 1px solid var(--border); }
.related-item:last-child { border-bottom: none; padding-bottom: 0; }
.rel-tag { font-family: var(--font-ui); font-size: 15px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text3); margin-bottom: 4px; }
.related-item a {
  font-family: var(--font-ui); font-size: 15px; color: var(--text2); line-height: 1.45; display: block; transition: color .2s;
}
.related-item a:hover { color: var(--accent); }

/* ── FOOTER ── */
footer {
  position: relative; z-index: 2;
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 64px 0 36px;
}
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.footer-brand-desc {
  font-family: var(--font-ui); font-size: 15px; color: var(--text3);
  line-height: 1.7; max-width: 260px; margin: 14px 0 18px;
}
.footer-contact-strip {
  display: flex; flex-direction: column; gap: 8px;
}
.footer-contact-link {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 15px; color: var(--text3);
  transition: color .2s; text-decoration: none;
}
.footer-contact-link:hover { color: var(--accent); }
.footer-contact-link .fi { font-size: 14px; }
.footer-badges { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 14px; }
.fbadge {
  font-family: var(--font-ui); font-size: 15px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: 4px 9px; border-radius: 5px;
  border: 1px solid var(--border2); color: var(--text3);
}
.footer-col-title {
  font-family: var(--font-ui); font-size: 14px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text3); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-family: var(--font-ui); font-size: 15px; color: var(--text3); transition: color .2s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 28px; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-copy { font-family: var(--font-ui); font-size: 15px; color: var(--text3); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a {
  font-family: var(--font-ui); font-size: 15px; color: var(--text3); transition: color .2s;
}
.footer-legal a:hover { color: var(--text); }
.footer-app-btns { display: flex; gap: 8px; margin-top: 14px; }
.app-btn {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  padding: 8px 12px; border-radius: var(--radius-sm);
  border: 1px solid var(--border2); color: var(--text2); transition: border-color .2s, color .2s;
}
.app-btn:hover { border-color: var(--border2); color: var(--text); }

/* ── BLOG INDEX ── */
.blog-hero {
  padding: calc(var(--nav-h) + 64px) 0 56px;
  text-align: center; position: relative; z-index: 2;
}
.blog-hero-eyebrow {
  font-family: var(--font-ui); font-size: 14px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px; display: inline-block;
}
.blog-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px,5vw,60px); letter-spacing: -.03em;
  color: var(--text); margin-bottom: 16px; line-height: 1.05;
}
.blog-hero p {
  font-family: var(--font-body); font-size: 17px; color: var(--text2);
  max-width: 560px; margin: 0 auto 32px; line-height: 1.7;
}
.hero-search-wrap {
  max-width: 480px; margin: 0 auto;
  display: flex; gap: 0; border: 1px solid var(--border2);
  border-radius: var(--radius-md); overflow: hidden;
  background: var(--surface); box-shadow: var(--shadow-md);
}
.hero-search {
  flex: 1; border: none; background: transparent; padding: 14px 18px;
  font-family: var(--font-ui); font-size: 14px; color: var(--text); outline: none;
}
.hero-search::placeholder { color: var(--text3); }
.hero-search-btn {
  padding: 12px 20px; background: var(--accent); color: #fff;
  font-family: var(--font-ui); font-size: 15px; font-weight: 700;
  border: none; cursor: pointer; transition: background .2s;
}
.hero-search-btn:hover { background: #2563eb; }

/* Blog grid */
.blog-section {
  max-width: var(--max); margin: 0 auto; padding: 0 40px 80px;
  position: relative; z-index: 2;
}
.filter-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 32px; flex-wrap: wrap;
}
.filter-label { font-family: var(--font-ui); font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text3); margin-right: 4px; }
.filter-btn {
  font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  padding: 7px 15px; border-radius: 20px; border: 1px solid var(--border2);
  background: transparent; color: var(--text2); cursor: pointer;
  transition: all .2s; letter-spacing: .02em;
}
.filter-btn:hover { color: var(--accent); border-color: rgba(59,130,246,.3); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.week-label {
  font-family: var(--font-ui); font-size: 14px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text3);
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.week-label::after { content:''; flex:1; height:1px; background:var(--border); }
.week-theme { font-family: var(--font-ui); font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 20px; }
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 16px; margin-bottom: 40px;
}
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: transform .2s var(--spring), border-color .2s, box-shadow .2s;
  position: relative; overflow: hidden; cursor: pointer; display: block;
  text-decoration: none;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--border2); box-shadow: var(--shadow-md); }
.blog-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg,var(--accent),var(--accent2)); opacity:0; transition:opacity .2s;
}
.blog-card:hover::before { opacity:1; }
.bc-top { display:flex; justify-content:space-between; align-items:flex-start; gap:8px; margin-bottom:10px; }
.bc-day { font-family:var(--font-ui); font-size:14px; font-weight:600; color:var(--text3); letter-spacing:.05em; }
.bc-mkts { display:flex; gap:5px; }
.mkt-tag { font-family:var(--font-ui); font-size:14px; font-weight:700; padding:2px 8px; border-radius:20px; letter-spacing:.05em; }
.mkt-us { background:rgba(59,130,246,.12); color:var(--accent); }
.mkt-eu { background:rgba(139,92,246,.12); color:var(--accent2); }
.bc-title { font-family:var(--font-display); font-size:15px; font-weight:700; color:var(--text); line-height:1.35; margin-bottom:8px; }
.bc-desc { font-family:var(--font-ui); font-size:15px; color:var(--text3); line-height:1.6; margin-bottom:14px; }
.bc-footer { display:flex; flex-wrap:wrap; align-items:center; gap:6px; }
.bc-type { font-family:var(--font-ui); font-size:15px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; padding:3px 9px; border-radius:5px; }
.bct-seo { background:rgba(16,185,129,.1); color:var(--green); }
.bct-comp { background:rgba(239,68,68,.1); color:var(--red); }
.bct-tl { background:rgba(139,92,246,.1); color:var(--accent2); }
.bct-uc { background:rgba(245,158,11,.1); color:var(--gold); }
.bct-prod { background:rgba(59,130,246,.1); color:var(--accent); }
.bc-kw { font-family:var(--font-ui); font-size:15px; color:var(--text3); border:1px solid var(--border); padding:2px 8px; border-radius:10px; }
.bc-card-hidden { display:none; }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(22px); transition:opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes spin { to{transform:rotate(360deg)} }

/* ── MOBILE ── */
@media(max-width:960px){
  .nav-menu { display:none; }
  #nav-toggle { display:flex; }
  .btn-nav-cta span { display:none; }
  .page-wrap { grid-template-columns:1fr; grid-template-areas:'hero''body'; padding:0 20px; padding-top:calc(var(--nav-h)+36px); }
  .article-side { display:none; }
  .blog-section { padding:0 20px 60px; }
  .nav-inner { padding:0 20px; }
  .footer-inner { padding:0 20px; }
  .footer-top { grid-template-columns:1fr 1fr; gap:32px; }
}
@media(max-width:640px){
  .verdict-cols, .score-grid, .proscons, .choose-grid { grid-template-columns:1fr; }
  .reach-us-inner { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; }
  .cta-btns { flex-direction:column; align-items:stretch; }
  .blog-grid { grid-template-columns:1fr; }
}

/* ═══════════════════════════════════════════════
   EXTRA MOBILE POLISH
═══════════════════════════════════════════════ */
@media(max-width:960px){
  .article-hero{padding:calc(var(--nav-h) + 48px) 20px 40px}
  .art-title{font-size:clamp(1.6rem,6vw,2.6rem)}
  .verdict-card{padding:20px}
  .nav-inner{gap:12px}
  .page-wrap{padding:0 0;padding-top:0}
}
@media(max-width:640px){
  .article-hero{padding:calc(var(--nav-h) + 32px) 16px 32px}
  .art-title{font-size:clamp(1.4rem,7vw,2rem)}
  .art-standfirst{font-size:1rem}
  .score-grid{grid-template-columns:1fr 1fr}
  .stat-card .stat-val{font-size:24px}
  .article-body{padding:0 16px 60px}
  .section-h{font-size:clamp(1.2rem,5vw,1.6rem)}
  .table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch}
  .comp-table{min-width:500px}
  .blog-grid{grid-template-columns:1fr}
  .blog-card{max-width:100%}
  .article-cta{padding:40px 20px}
  .cta-btns{flex-direction:column;align-items:stretch}
  .cta-btns a{text-align:center;justify-content:center}
}
@media(max-width:400px){
  .score-grid{grid-template-columns:1fr}
  .stats-bar{grid-template-columns:1fr 1fr}
}

/* ═══════════════════════════════════════════════════════════════
   BLOG MOBILE & READABILITY IMPROVEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* Line height for readability */
body { line-height: 1.75; }
.art-body p, .art-body li { font-size: 1rem; line-height: 1.8; }
.art-body h2 { font-size: 1.5rem; }
.art-body h3 { font-size: 1.2rem; }

/* Tables always scrollable */
.comp-tbl-wrap, .art-body table { overflow-x: auto; display: block; -webkit-overflow-scrolling: touch; }

/* Nav links readable */
.nav-menu a { font-size: 15px !important; }
.btn-nav-cta { font-size: 14px !important; min-height: 40px; }

/* TOC readable */
.toc-list a { font-size: 15px !important; line-height: 1.6; }

/* Cards and meta */
.byline-meta, .byline-read { font-size: 14px !important; }
.breadcrumb { font-size: 14px !important; }
.htag { font-size: 13px !important; }

/* Footer */
.footer-links a { font-size: 14px !important; }
.footer-brand-desc { font-size: 14px !important; }
.footer-copy, .footer-legal a { font-size: 13px !important; }

/* Sidebar demo */
.side-demo-card p { font-size: 14px !important; }
.side-demo-btn, .side-wa-btn { font-size: 14px !important; min-height: 44px; }

/* CTA section */
.cta-trust-item { font-size: 14px !important; }
.pc-items li, .choose-list li { font-size: 15px !important; }

@media (max-width: 768px) {
  body { font-size: 15px; }
  
  /* Nav hamburger always visible */
  .nav-menu { display: none; }
  .mob-drawer-open .nav-menu { display: flex; flex-direction: column; }
  
  /* Article body */
  .art-body p, .art-body li { font-size: 1rem !important; line-height: 1.85; }
  .art-body h2 { font-size: 1.35rem !important; }
  .art-body h3 { font-size: 1.15rem !important; }
  
  /* Hide sidebar on mobile - show below article */
  .art-sidebar { display: none; }
  .art-layout { grid-template-columns: 1fr !important; }
  
  /* Blog card grid: 1-col */
  .blog-grid,.bc-grid { grid-template-columns: 1fr !important; }
  
  /* Table scrolls */
  .comp-tbl-wrap { overflow-x: auto; }
  .comp-tbl { min-width: 550px; font-size: 14px !important; }
  .comp-tbl thead th { font-size: 13px !important; }
  
  /* CTA box */
  .art-cta { padding: 2rem 1.25rem; }
  .pc-items li, .choose-list li { font-size: 15px !important; }
  
  /* Footer 2-col */
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  .footer-links a { font-size: 15px !important; }
  
  /* Verdict cards */
  .vc-grid { grid-template-columns: 1fr !important; }
  .vc-text { font-size: 15px !important; }
  
  /* Reach/contact */
  .reach-contact-item { font-size: 15px !important; }
  
  /* Related posts */
  .related-grid { grid-template-columns: 1fr !important; }
  .related-item a { font-size: 15px !important; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  
  .art-body p, .art-body li { font-size: 1rem !important; }
  
  /* Footer 1-col */
  .footer-grid { grid-template-columns: 1fr !important; text-align: center; }
  
  /* Score cards */
  .sc-grid { grid-template-columns: 1fr 1fr !important; }
  
  /* Blog hero */
  .blog-hero { padding: 4rem 1rem 2.5rem !important; text-align: center; }
  
  /* Breadcrumb wrap */
  .breadcrumb { flex-wrap: wrap; font-size: 13px !important; }
  
  /* Save bar buttons */
  .save-bar-btns { flex-direction: column; }
}
