/* ==========================================================================
   DirectCare Insights - shared stylesheet
   Used by /insights and every /insights/<slug> page.
   Design tokens match index.html so the chrome stays identical.
   ========================================================================== */

:root {
  --bg: #FAF7F1;
  --surface: #FFFFFF;
  --ink: #2E3A3A;
  --ink-soft: #55625F;
  --brand: #2C6E63;
  --brand-bright: #379B8A;
  --cta: #E0762F;
  --cta-hover: #C4621F;
  --brand-dark: #1F5147;
  --brand-tint: #E8F1EE;
  --accent: #C08A3E;
  --accent-tint: #F7EFE2;
  --line: #E4DED2;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(46, 58, 58, .08);
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans: 'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;
  --mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
  --header-bg: rgba(250, 247, 241, .95);
  --hero-top: #F3EEE3;
  --card-media: linear-gradient(135deg, #E8F1EE, #DDEBE6);
  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #1D2321;
  --surface: #262E2B;
  --ink: #E9E5DB;
  --ink-soft: #B5BFBA;
  --brand: #5FAE9B;
  --brand-bright: #79CDB7;
  --cta: #F08A42;
  --cta-hover: #F79E5E;
  --brand-dark: #74C0AE;
  --brand-tint: #2B3A36;
  --accent: #D2A055;
  --accent-tint: #322E26;
  --line: #3A433F;
  --shadow: 0 6px 24px rgba(0, 0, 0, .35);
  --header-bg: rgba(29, 35, 33, .95);
  --hero-top: #232B28;
  --card-media: linear-gradient(135deg, #2B3A36, #24322E);
  color-scheme: dark;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
body, .modal, .insight-card, .chart-card, .stat-tile { transition: background-color .25s ease, border-color .25s ease; }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); line-height: 1.25; }
p { color: var(--ink-soft); }
a { color: var(--brand); }
img { max-width: 100%; }
em { font-style: italic; color: var(--brand); }
.container { width: min(1120px, 92%); margin: 0 auto; }
.narrow { width: min(720px, 92%); margin: 0 auto; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-block; font-family: var(--sans); font-weight: 600; font-size: 1.05rem;
  padding: 14px 28px; border-radius: 6px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: all .18s ease;
}
.btn-primary { background: var(--cta); color: #fff; }
.btn-primary:hover { background: var(--cta-hover); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand-tint); }
[data-theme="dark"] .btn-primary { color: #14201C; }

/* Insights listing hero -------------------------------------------------- */
.insights-hero { padding: 76px 0 44px; background: linear-gradient(180deg, var(--hero-top) 0%, var(--bg) 100%); }
.eyebrow {
  display: inline-block; font-size: .85rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--brand);
  background: var(--brand-tint); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.insights-hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); font-weight: 600; }
.insights-hero p { font-size: 1.18rem; margin-top: 18px; max-width: 40em; }

/* Search and filters ----------------------------------------------------- */
.insights-controls { padding: 8px 0 4px; }
.controls-row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.insight-search {
  display: flex; align-items: center; gap: 10px; flex: 0 0 330px;
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: 999px; padding: 10px 18px; color: var(--ink-soft);
}
.insight-search:focus-within { border-color: var(--brand); }
.insight-search input {
  border: none; background: none; font: inherit; font-size: .98rem;
  color: var(--ink); width: 100%; outline: none;
}
.tag-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.tag-chip {
  font: inherit; font-size: .9rem; font-weight: 600; cursor: pointer;
  padding: 8px 16px; border-radius: 999px;
  background: transparent; border: 1.5px solid var(--line); color: var(--ink-soft);
  transition: all .16s ease;
}
.tag-chip:hover { border-color: var(--brand); color: var(--brand); }
.tag-chip[aria-pressed="true"] { background: var(--brand); border-color: var(--brand); color: #fff; }
[data-theme="dark"] .tag-chip[aria-pressed="true"] { color: #14201C; }
.results-count { margin-top: 16px; font-size: .9rem; color: var(--ink-soft); font-family: var(--mono); }

/* Insight cards ---------------------------------------------------------- */
.insights-grid-wrap { padding: 22px 0 72px; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.insight-card {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.insight-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--brand); }
.ic-media { background: var(--card-media); aspect-ratio: 1200 / 630; overflow: hidden; }
.ic-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ic-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.ic-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.ic-tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-tint); padding: 5px 11px; border-radius: 999px;
}
.insight-card h2 { font-size: 1.24rem; font-weight: 600; margin-bottom: 10px; }
.ic-excerpt { font-size: .96rem; margin-bottom: 18px; flex: 1; }
.ic-meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: .84rem; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 14px;
}
.ic-meta img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.ic-read { margin-left: auto; color: var(--brand); font-weight: 600; white-space: nowrap; }
.insights-grid-wrap.empty .insights-grid { display: none; }
.no-results { display: none; padding: 48px 0; text-align: center; color: var(--ink-soft); }
.insights-grid-wrap.empty .no-results { display: block; }

/* Post hero -------------------------------------------------------------- */
.post-hero { padding: 44px 0 40px; background: linear-gradient(180deg, var(--hero-top) 0%, var(--bg) 100%); }
.post-hero .container { width: min(820px, 92%); }
.post-breadcrumb { font-size: .86rem; color: var(--ink-soft); margin-bottom: 22px; }
.post-breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.post-breadcrumb a:hover { color: var(--brand); }
.post-breadcrumb span { margin: 0 6px; }
.post-tag {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand); background: var(--brand-tint);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.post-hero h1 { font-size: clamp(1.9rem, 4.4vw, 2.85rem); font-weight: 600; }
.post-standfirst { font-size: 1.12rem; margin-top: 20px; }
.post-standfirst strong { color: var(--ink); }
.post-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.post-meta > img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.post-meta-name { font-weight: 700; color: var(--ink); font-size: .96rem; }
.post-meta-sub { font-size: .88rem; color: var(--ink-soft); }
.post-meta-dot { color: var(--line); }
.toc-label {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); margin: 34px 0 12px;
}
.post-toc { display: flex; gap: 8px; flex-wrap: wrap; }
.post-toc a {
  font-size: .86rem; font-weight: 600; text-decoration: none; color: var(--ink-soft);
  border: 1px solid var(--line); background: var(--surface);
  padding: 7px 14px; border-radius: 999px; transition: all .16s ease;
}
.post-toc a:hover, .post-toc a.active { color: var(--brand); border-color: var(--brand); background: var(--brand-tint); }

/* Post body -------------------------------------------------------------- */
.post-body { padding: 20px 0 72px; }
.post-body .container { width: min(820px, 92%); }
.post-body p { margin-bottom: 22px; font-size: 1.06rem; }
.post-body p strong { color: var(--ink); }
.post-body h2 {
  font-size: clamp(1.5rem, 3.2vw, 2rem); font-weight: 600;
  margin: 56px 0 20px; padding-top: 8px;
}
.post-body h3 { font-size: 1.22rem; font-weight: 600; margin: 34px 0 12px; }
.kicker {
  display: block; font-family: var(--mono); font-size: .74rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px;
}
.post-body ul, .post-body ol { margin: 0 0 24px 1.15rem; color: var(--ink-soft); }
.post-body li { margin-bottom: 10px; font-size: 1.04rem; }
.post-body li strong { color: var(--ink); }

.lede { font-size: 1.16rem !important; }

/* Key takeaways ---------------------------------------------------------- */
.post-takeaways {
  background: var(--brand-tint); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 30px; margin: 8px 0 40px;
}
.post-takeaways h2 { font-size: 1.15rem !important; margin: 0 0 16px !important; padding: 0 !important; letter-spacing: .04em; text-transform: uppercase; font-family: var(--sans); font-weight: 700; color: var(--brand); }
.post-takeaways ol { margin: 0 0 0 1.1rem; }
.post-takeaways li { font-size: .99rem; margin-bottom: 12px; }
.post-takeaways li:last-child { margin-bottom: 0; }

/* Stat tiles ------------------------------------------------------------- */
.stat-tiles { display: grid; gap: 16px; margin: 30px 0 34px; }
.stat-tiles.cols-2 { grid-template-columns: repeat(2, 1fr); }
.stat-tiles.cols-3 { grid-template-columns: repeat(3, 1fr); }
.stat-tiles.cols-4 { grid-template-columns: repeat(4, 1fr); }
.stat-tile {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 20px 18px;
}
.st-label { font-size: .82rem; color: var(--ink-soft); line-height: 1.4; min-height: 3.2em; }
.st-value { font-family: var(--serif); font-size: 2.1rem; font-weight: 700; color: var(--brand); margin: 8px 0 4px; line-height: 1.1; }
.st-delta { font-size: .76rem; color: var(--ink-soft); font-family: var(--mono); }

/* Pull quote ------------------------------------------------------------- */
.pullquote {
  font-family: var(--serif); font-size: 1.42rem; line-height: 1.45; color: var(--ink);
  border-left: 3px solid var(--accent); padding: 6px 0 6px 26px; margin: 36px 0 34px;
}

/* Chart card ------------------------------------------------------------- */
.chart-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 28px; margin: 34px 0;
}
.cc-title { font-family: var(--serif); font-size: 1.16rem; font-weight: 600; color: var(--ink); }
.cc-sub { font-size: .88rem; color: var(--ink-soft); margin-top: 6px; margin-bottom: 22px; }
.chart-note { font-size: .88rem; color: var(--ink-soft); margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.bar-row { display: grid; grid-template-columns: minmax(120px, 34%) 1fr auto; gap: 14px; align-items: center; margin-bottom: 14px; }
.bar-label { font-size: .86rem; color: var(--ink-soft); line-height: 1.35; }
.bar-track { background: var(--brand-tint); border-radius: 4px; height: 22px; overflow: hidden; }
.bar-fill { background: var(--brand); height: 100%; width: var(--w, 0%); border-radius: 4px; transition: width .8s cubic-bezier(.2,.7,.3,1); }
.bar-fill.alt { background: var(--accent); }
.bar-fill.cta { background: var(--cta); }
.bar-value { font-family: var(--mono); font-size: .88rem; color: var(--ink); font-weight: 600; white-space: nowrap; }
.chart-table { margin-top: 18px; }
.chart-table summary { cursor: pointer; font-size: .86rem; color: var(--brand); font-weight: 600; }
.chart-table table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: .9rem; }
.chart-table th, .chart-table td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.chart-table th { color: var(--ink); font-weight: 700; }
.chart-table .num { text-align: right; font-family: var(--mono); }

/* Data table (standalone) ------------------------------------------------ */
.data-table-wrap { overflow-x: auto; margin: 30px 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.data-table { width: 100%; border-collapse: collapse; font-size: .94rem; min-width: 520px; }
.data-table caption { text-align: left; padding: 18px 20px 0; font-family: var(--serif); font-size: 1.06rem; color: var(--ink); font-weight: 600; }
.data-table th, .data-table td { text-align: left; padding: 12px 20px; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.data-table thead th { color: var(--ink); font-weight: 700; border-bottom: 2px solid var(--line); }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table .num { text-align: right; font-family: var(--mono); }

/* Callout / takeaway ----------------------------------------------------- */
.takeaway {
  background: var(--accent-tint); border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: 12px; padding: 22px 26px; margin: 34px 0;
}
.tk-label {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: #8A5F1E; margin-bottom: 8px;
}
[data-theme="dark"] .tk-label { color: var(--accent); }
.takeaway p:last-child { margin-bottom: 0; }

.warn { border-left-color: var(--cta); background: var(--surface); }
.warn .tk-label { color: #B0561A; }
[data-theme="dark"] .warn .tk-label { color: var(--cta); }

/* Step list -------------------------------------------------------------- */
.step-list { list-style: none; margin: 30px 0 34px !important; counter-reset: step; }
.step-list > li {
  position: relative; padding-left: 52px; margin-bottom: 24px; counter-increment: step;
}
.step-list > li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 2px;
  font-family: var(--mono); font-size: .8rem; font-weight: 600; color: var(--brand);
  background: var(--brand-tint); width: 36px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.step-list > li strong { display: block; color: var(--ink); font-size: 1.06rem; margin-bottom: 4px; font-family: var(--serif); }

/* Checklist -------------------------------------------------------------- */
.checklist { list-style: none; margin: 24px 0 30px !important; }
.checklist li { position: relative; padding-left: 32px; }
.checklist li::before { content: "\2713"; position: absolute; left: 4px; color: var(--brand); font-weight: 700; }

/* FAQ -------------------------------------------------------------------- */
.faq-block { margin: 26px 0 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.faq-q {
  cursor: pointer; padding: 18px 22px; font-weight: 600; font-size: 1.04rem; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: "+"; font-size: 1.5rem; color: var(--brand); flex-shrink: 0; }
.faq-item[open] .faq-q::after { content: "\2212"; }
.faq-a { padding: 0 22px 18px; }
.faq-a p { margin-bottom: 0; font-size: 1rem; }

/* Related ---------------------------------------------------------------- */
.related-wrap { margin: 64px 0 0; padding-top: 44px; border-top: 1px solid var(--line); }
.rel-eyebrow { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 10px; }
.rel-title { font-size: 1.7rem !important; margin: 0 0 26px !important; padding: 0 !important; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.rel-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 20px 22px; transition: all .18s ease;
}
.rel-card:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); }
.rc-tag { font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--brand); margin-bottom: 8px; }
.rc-title { font-family: var(--serif); font-size: 1.06rem; font-weight: 600; color: var(--ink); line-height: 1.35; margin-bottom: 10px; }
.rc-read { font-size: .82rem; color: var(--ink-soft); font-family: var(--mono); }

/* Post CTA --------------------------------------------------------------- */
.post-cta {
  background: var(--brand); border-radius: var(--radius);
  padding: 40px 38px; margin: 56px 0 30px; text-align: center;
}
.post-cta h2 { color: #fff; font-size: 1.7rem !important; margin: 0 0 12px !important; padding: 0 !important; }
.post-cta p { color: #DCEAE5; max-width: 36em; margin: 0 auto 24px; }
.post-cta .btn-primary { background: var(--cta); color: #fff; }
[data-theme="dark"] .post-cta { background: #24322E; }
[data-theme="dark"] .post-cta h2 { color: var(--ink); }
[data-theme="dark"] .post-cta p { color: var(--ink-soft); }
[data-theme="dark"] .post-cta .btn-primary { color: #14201C; }
.source-note { font-size: .84rem !important; color: var(--ink-soft); margin-top: 30px !important; padding-top: 18px; border-top: 1px solid var(--line); }
.source-note a { color: var(--brand); }

/* Footnotes -------------------------------------------------------------- */
.fn { font-size: .68em; line-height: 0; vertical-align: super; white-space: nowrap; }
.fn a {
  text-decoration: none; color: var(--brand); font-weight: 700;
  padding: 0 2px; border-radius: 3px;
}
.fn a:hover, .fn a:focus { background: var(--brand-tint); text-decoration: underline; }
.footnotes { margin-top: 46px; padding-top: 28px; border-top: 1px solid var(--line); }
.footnotes h2 { font-size: 1.2rem !important; margin: 0 0 16px !important; padding: 0 !important; }
.footnotes ol { margin: 0 0 0 1.2rem; }
.footnotes li {
  font-size: .9rem; margin-bottom: 11px; word-break: break-word;
  padding: 3px 6px; margin-left: -6px; border-radius: 6px;
  transition: background-color .3s ease;
}
.footnotes li:target { background: var(--brand-tint); }
.fn-back { text-decoration: none; margin-left: 7px; font-weight: 700; }
.fn-back:hover { text-decoration: underline; }

/* Sources list ----------------------------------------------------------- */
.sources { margin-top: 40px; }
.sources h2 { font-size: 1.2rem !important; margin: 0 0 14px !important; padding: 0 !important; }
.sources ol { margin-left: 1.1rem; }
.sources li { font-size: .9rem; margin-bottom: 8px; word-break: break-word; }

/* Footer ----------------------------------------------------------------- */
footer { padding: 36px 0; border-top: 1px solid var(--line); }
.foot { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot p { font-size: .92rem; }
.foot nav a { margin-left: 20px; font-size: .92rem; text-decoration: none; color: var(--ink-soft); }
.foot nav a:hover { color: var(--brand); }

/* Modal ------------------------------------------------------------------ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(46, 58, 58, .55); z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--surface); border-radius: var(--radius); width: min(520px, 100%);
  max-height: 92vh; overflow-y: auto; padding: 36px; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.25); animation: rise .25s ease;
}
@keyframes rise { from { transform: translateY(16px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal h3 { font-size: 1.5rem; margin-bottom: 6px; }
.modal > div > p { margin-bottom: 22px; font-size: 1rem; }
.modal-close {
  position: absolute; top: 14px; right: 16px; background: none; border: none;
  font-size: 1.8rem; line-height: 1; color: var(--ink-soft); cursor: pointer;
}
.modal-close:hover { color: var(--ink); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; padding: 13px 14px; font: inherit; font-size: 1rem;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--bg); color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--brand); border-color: var(--brand); }
.field textarea { min-height: 110px; resize: vertical; }
.modal .btn { width: 100%; }
.form-privacy { font-size: .85rem; color: var(--ink-soft); margin-top: 14px; text-align: center; }
.success { text-align: center; padding: 30px 6px; display: none; }
.success .check {
  width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--brand-tint); color: var(--brand); font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
}
.success h3 { margin-bottom: 10px; }
.modal.legal-modal { padding: 0; width: min(780px, 100%); height: min(85vh, 860px); display: flex; flex-direction: column; overflow: hidden; }
.legal-modal .legal-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; border-bottom: 1px solid var(--line); flex-shrink: 0; }
.legal-modal .legal-head h3 { font-size: 1.2rem; margin: 0; }
.legal-modal .legal-close { background: none; border: none; font-size: 1.7rem; line-height: 1; color: var(--ink-soft); cursor: pointer; padding: 0 4px; }
.legal-modal .legal-close:hover { color: var(--ink); }
.legal-modal iframe { border: 0; width: 100%; flex: 1; background: var(--bg); }

/* Reveal ----------------------------------------------------------------- */
.rv { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .bar-fill { transition: none; }
  html { scroll-behavior: auto; }
}

/* Responsive ------------------------------------------------------------- */
@media (max-width: 980px) {
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-tiles.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  body { font-size: 17px; }
  .insights-hero { padding: 48px 0 30px; }
  .insights-grid, .related-grid { grid-template-columns: 1fr; }
  .stat-tiles.cols-2, .stat-tiles.cols-3, .stat-tiles.cols-4 { grid-template-columns: 1fr 1fr; }
  .st-label { min-height: 0; }
  .insight-search { flex: 1 1 100%; }
  .post-body h2 { margin-top: 44px; }
  .pullquote { font-size: 1.2rem; padding-left: 18px; }
  .chart-card, .post-takeaways { padding: 22px 20px; }
  .post-cta { padding: 32px 22px; }
  .bar-row { grid-template-columns: 1fr auto; }
  .bar-row .bar-label { grid-column: 1 / -1; margin-bottom: -6px; }
  .modal { padding: 28px 22px; }
  .step-list > li { padding-left: 44px; }
}
@media (max-width: 400px) {
  .stat-tiles.cols-2, .stat-tiles.cols-3, .stat-tiles.cols-4 { grid-template-columns: 1fr; }
}
