/* ====================================================
   TRAGEN BLOG — Shared Styles
   ==================================================== */

:root {
  --navy: #060B18;
  --navy-2: #0F1729;
  --steel: #1A2540;
  --steel-2: #243050;
  --orange: #F26A1B;
  --orange-2: #FF8C42;
  --gold: #E8C840;
  --text: #D8E0F0;
  --text-dim: #FFFFFF;
  --text-grey: #7A8BAA;
  --text-bright: #FFFFFF;
  --line: rgba(255,255,255,0.08);
  --radius: 4px;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(6,11,24,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  color: var(--text-bright); letter-spacing: 2px;
  text-decoration: none;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-dim); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: #fff;
  border: none; padding: 10px 24px;
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; border-radius: var(--radius);
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--orange-2); transform: translateY(-1px); }

/* Nav burger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-bright); border-radius: 2px;
  transition: all 0.3s;
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  background: var(--orange); color: #fff;
  border: none; padding: 14px 32px;
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; border-radius: var(--radius);
  transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--orange-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(242,106,27,0.3); }
.btn-secondary {
  background: transparent; color: var(--text-bright);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 28px;
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; border-radius: var(--radius);
  transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

/* ── BREADCRUMBS ─────────────────────────────────── */
.breadcrumbs {
  padding: 80px 40px 0;
  max-width: 1200px; margin: 0 auto;
}
.breadcrumb-list {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none; align-items: center;
}
.breadcrumb-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-grey);
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.5px;
}
.breadcrumb-list li:not(:last-child)::after {
  content: '/'; color: var(--text-grey); opacity: 0.5;
}
.breadcrumb-list a { color: var(--text-grey); text-decoration: none; transition: color 0.2s; }
.breadcrumb-list a:hover { color: var(--orange); }
.breadcrumb-list li:last-child { color: var(--text-dim); }

/* ── ARTICLE HERO ────────────────────────────────── */
.article-hero {
  padding: 40px 40px 60px;
  position: relative; overflow: hidden;
}
.article-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center;
}
.article-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.article-cat {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  color: var(--orange); letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--orange); padding: 4px 12px; border-radius: 2px;
}
.article-read-time {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-grey); letter-spacing: 1px; text-transform: uppercase;
}
.article-date {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-grey); letter-spacing: 1px;
}
.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700; line-height: 1.08;
  color: var(--text-bright); letter-spacing: -0.3px;
  margin-bottom: 20px;
}
.article-hero h1 em { color: var(--orange); font-style: normal; }
.article-hero-lead {
  font-size: 18px; color: var(--text-dim);
  line-height: 1.7; font-weight: 300;
  max-width: 600px; margin-bottom: 32px;
}
.article-hero-img {
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.article-hero-img::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  z-index: 1;
}
.article-hero-img img {
  width: 100%; height: 280px; object-fit: cover; display: block;
}

/* ── ARTICLE LAYOUT ──────────────────────────────── */
.article-wrapper {
  max-width: 1200px; margin: 0 auto;
  padding: 0 40px 80px;
  display: grid; grid-template-columns: 240px 1fr; gap: 64px; align-items: start;
}

/* Sidebar TOC */
.article-toc {
  position: sticky; top: 84px;
}
.toc-title {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--orange); text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 16px;
}
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.toc-list a {
  display: block; font-size: 13px; color: var(--text-grey);
  text-decoration: none; padding: 6px 12px;
  border-left: 2px solid var(--line);
  transition: color 0.2s, border-color 0.2s;
  line-height: 1.4;
}
.toc-list a:hover { color: var(--text-bright); border-left-color: var(--orange); }
.toc-list a.active { color: var(--orange); border-left-color: var(--orange); }

/* Article body */
.article-body {
  max-width: 840px;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px); font-weight: 700;
  color: var(--text-bright); margin: 52px 0 20px;
  letter-spacing: 0.2px; line-height: 1.2;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: var(--text-bright); margin: 32px 0 14px;
  letter-spacing: 0.2px;
}
.article-body p {
  font-size: 16px; color: var(--text-dim);
  line-height: 1.75; margin-bottom: 20px;
}
.article-body strong { color: var(--text-bright); font-weight: 600; }
.article-body em { color: var(--orange); font-style: normal; font-weight: 500; }
.article-body ul, .article-body ol {
  margin: 0 0 20px 0; padding-left: 0; list-style: none;
}
.article-body ul li, .article-body ol li {
  font-size: 16px; color: var(--text-dim);
  line-height: 1.7; margin-bottom: 10px;
  padding-left: 24px; position: relative;
}
.article-body ul li::before {
  content: '';
  position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
}
.article-body ol { counter-reset: ol-counter; }
.article-body ol li { counter-increment: ol-counter; }
.article-body ol li::before {
  content: counter(ol-counter) '.';
  position: absolute; left: 0; top: 0;
  font-family: var(--font-mono); font-size: 14px;
  color: var(--orange); font-weight: 600;
}

/* ── INFO BLOCKS ─────────────────────────────────── */
.info-box {
  background: var(--navy-2); border: 1px solid var(--line);
  border-radius: 6px; padding: 28px 32px;
  margin: 32px 0;
}
.info-box.orange {
  background: rgba(242,106,27,0.07);
  border-color: rgba(242,106,27,0.3);
}
.info-box.gold {
  background: rgba(232,200,64,0.06);
  border-color: rgba(232,200,64,0.3);
}
.info-box-title {
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  color: var(--text-bright); text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.info-box.orange .info-box-title { color: var(--orange); }
.info-box.gold .info-box-title { color: var(--gold); }

/* Stat highlight */
.stat-row {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin: 32px 0;
}
.stat-item {
  text-align: center;
  background: var(--steel); border: 1px solid var(--line);
  border-radius: 6px; padding: 20px 28px;
  flex: 1; min-width: 120px;
}
.stat-item .num {
  font-family: var(--font-display); font-size: 40px; font-weight: 700;
  color: var(--orange); line-height: 1;
}
.stat-item .label {
  font-size: 13px; color: var(--text-grey); margin-top: 6px;
  line-height: 1.4;
}

/* Pull quote */
.pull-quote {
  border-left: 4px solid var(--orange);
  padding: 20px 28px; margin: 32px 0;
  background: rgba(242,106,27,0.06);
  border-radius: 0 6px 6px 0;
}
.pull-quote p {
  font-size: 18px; font-weight: 500; color: var(--text-bright);
  line-height: 1.6; margin: 0; font-style: italic;
}

/* ── COMPARISON TABLE ────────────────────────────── */
.compare-wrap {
  overflow-x: auto; margin: 32px 0;
  border-radius: 6px; border: 1px solid var(--line);
}
.compare-table {
  width: 100%; border-collapse: collapse; min-width: 520px;
}
.compare-table thead th {
  padding: 16px 20px; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-grey);
  border-bottom: 2px solid var(--line);
  background: var(--navy-2);
}
.compare-table thead th.col-tragen { color: var(--orange); border-bottom-color: var(--orange); }
.compare-table tbody tr { border-bottom: 1px solid var(--line); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.compare-table tbody td {
  padding: 14px 20px; font-size: 14px; color: var(--text-grey);
}
.compare-table tbody td:first-child { color: var(--text); font-weight: 500; }
.compare-table .col-tragen { color: var(--text-bright); background: rgba(242,106,27,0.04); }
.check { color: #4ADE80; }
.cross { color: #EF4444; }

/* ── CTA BLOCKS ──────────────────────────────────── */
.cta-block {
  border-radius: 8px; padding: 40px; margin: 48px 0;
  position: relative; overflow: hidden;
}
.cta-block.soft {
  background: var(--steel);
  border: 1px solid var(--line);
}
.cta-block.hard {
  background: linear-gradient(135deg, rgba(242,106,27,0.18) 0%, rgba(242,106,27,0.06) 100%);
  border: 1px solid rgba(242,106,27,0.35);
}
.cta-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
}
.cta-block-tag {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  color: var(--orange); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 12px; display: block;
}
.cta-block h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--text-bright); margin-bottom: 12px;
}
.cta-block p {
  font-size: 15px; color: var(--text-dim); line-height: 1.65;
  margin-bottom: 24px; max-width: 540px;
}
.cta-block .btn-row {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* ── WHO IT FITS / NOT FIT ───────────────────────── */
.fit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin: 32px 0;
}
.fit-card {
  border-radius: 6px; padding: 28px;
}
.fit-card.yes {
  background: rgba(74,222,128,0.05);
  border: 1px solid rgba(74,222,128,0.2);
}
.fit-card.no {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.2);
}
.fit-card-title {
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px;
}
.fit-card.yes .fit-card-title { color: #4ADE80; }
.fit-card.no .fit-card-title { color: #EF4444; }
.fit-list { list-style: none; padding: 0; margin: 0; }
.fit-list li {
  font-size: 14px; color: var(--text-dim); line-height: 1.6;
  margin-bottom: 10px; padding-left: 22px; position: relative;
}
.fit-card.yes .fit-list li::before { content: '+'; position: absolute; left: 0; color: #4ADE80; font-weight: 700; }
.fit-card.no .fit-list li::before { content: '-'; position: absolute; left: 0; color: #EF4444; font-weight: 700; }

/* ── FAQ ─────────────────────────────────────────── */
.faq-section { margin: 48px 0 0; }
.faq-section-title {
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  color: var(--text-bright); margin-bottom: 24px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-body); font-size: 16px; font-weight: 500;
  color: var(--text-bright); text-align: left; transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  font-family: var(--font-display); font-size: 22px; font-weight: 400;
  color: var(--orange); flex-shrink: 0; transition: transform 0.3s;
}
.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer {
  font-size: 15px; color: var(--text-dim); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s;
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 20px;
}

/* ── RELATED ARTICLES ────────────────────────────── */
.related-section { margin: 64px 0 0; padding-top: 40px; border-top: 1px solid var(--line); }
.related-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--text-bright); margin-bottom: 24px;
}
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.related-card {
  background: var(--navy-2); border: 1px solid var(--line);
  border-radius: 6px; overflow: hidden;
  text-decoration: none; transition: border-color 0.25s, transform 0.2s;
  display: flex; flex-direction: column;
}
.related-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.related-card-img { height: 140px; overflow: hidden; }
.related-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.related-card:hover .related-card-img img { transform: scale(1.05); }
.related-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.related-card-cat {
  font-family: var(--font-mono); font-size: 10px; color: var(--orange);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.related-card-title {
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  color: var(--text-bright); line-height: 1.3; flex: 1;
}
.related-card-read {
  font-size: 12px; color: var(--orange); margin-top: 14px;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.5px;
}

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--navy-2); border-top: 1px solid var(--line);
  padding: 48px 40px 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px;
}
.footer-brand {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--text-bright); letter-spacing: 2px; margin-bottom: 12px;
}
.footer-brand span { color: var(--orange); }
.footer-sub { font-size: 13px; color: var(--text-grey); line-height: 1.6; }
.footer-col-title {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-grey);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: var(--text-grey); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1200px; margin: 32px auto 0;
  padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text-grey);
}
.footer-bottom a { color: var(--text-grey); text-decoration: none; }
.footer-bottom a:hover { color: var(--text-bright); }

/* ── WhatsApp float ──────────────────────────────── */
.float-wa {
  position: fixed; right: 28px; bottom: 28px; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  font-size: 24px; text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(37,211,102,0.45); }

/* ─────────────────────────────────────────────────── */
/* BLOG INDEX PAGE                                    */
/* ─────────────────────────────────────────────────── */

.blog-hero {
  padding: 100px 40px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.blog-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(242,106,27,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(26,37,64,0.5) 0%, transparent 60%);
}
.blog-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.blog-tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  color: var(--orange); letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--orange); padding: 4px 12px; border-radius: 2px;
  margin-bottom: 20px;
}
.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px); font-weight: 700;
  color: var(--text-bright); line-height: 1.08;
  margin-bottom: 16px; letter-spacing: -0.3px;
}
.blog-hero h1 em { color: var(--orange); font-style: normal; }
.blog-hero p {
  font-size: 18px; color: var(--text-dim); line-height: 1.7;
  font-weight: 300;
}

/* Filters */
.blog-filters {
  max-width: 1200px; margin: 0 auto;
  padding: 0 40px 40px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.filter-btn {
  background: var(--steel); border: 1px solid var(--line);
  color: var(--text-dim); padding: 8px 20px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  border-radius: 3px; cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--orange); color: var(--text-bright); }
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* Blog grid */
.blog-grid-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 0 40px 80px;
}
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.blog-card {
  background: var(--navy-2); border: 1px solid var(--line);
  border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.blog-card-img {
  height: 200px; overflow: hidden; position: relative;
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,11,24,0.5) 0%, transparent 60%);
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-family: var(--font-mono); font-size: 10px; color: var(--orange);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px;
}
.blog-card h2 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--text-bright); line-height: 1.25; margin-bottom: 12px;
  flex: 1;
}
.blog-card p {
  font-size: 14px; color: var(--text-grey); line-height: 1.65;
  margin-bottom: 20px;
}
.blog-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--line);
  margin-top: auto;
}
.blog-card-time {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-grey);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.blog-card-link {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: var(--orange); text-transform: uppercase; letter-spacing: 0.5px;
  transition: color 0.2s;
}
.blog-card:hover .blog-card-link { color: var(--orange-2); }

/* ─────────────────────────────────────────────────── */
/* RESPONSIVE                                         */
/* ─────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .article-wrapper { grid-template-columns: 200px 1fr; gap: 40px; }
  .article-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .article-hero-img { max-width: 100%; }
  .article-hero-img img { height: 220px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .fit-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .breadcrumbs { padding: 74px 20px 0; }
  .article-hero { padding: 20px 20px 40px; }
  .article-wrapper { grid-template-columns: 1fr; padding: 0 20px 60px; gap: 0; }
  .article-toc { display: none; }

  .blog-hero { padding: 80px 20px 40px; }
  .blog-filters { padding: 0 20px 28px; }
  .blog-grid-wrap { padding: 0 20px 60px; }
  .blog-grid { grid-template-columns: 1fr; }

  .related-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 12px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-block { padding: 28px 20px; }
  .cta-block .btn-row { flex-direction: column; }

  footer { padding: 40px 20px 24px; }
}
