/* ------------------------------------------------------------------
   Voda a dotace — sdílený vizuální systém (Hlídač státu)
   Barvy, šířka stránky a odstupy jsou soustředěné v :root.
   ------------------------------------------------------------------ */
:root {
  --blue: #0759ce; --blue-dark: #073269; --ink: #10274a;
  --text: #33435a; --muted: #617087; --line: #dce5ef;
  --wash: #f2f7fd; --warm: #faf8f5; --green: #237447;
  --red: #c72e37; --orange: #e48121; --white: #fff;
  --container: 1240px; --section-space: 104px; --radius: 16px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 36px; }
body { margin: 0; color: var(--text); font-family: Arial, Helvetica, sans-serif; font-size: 17px; line-height: 1.7; background: white; }
a { color: var(--blue); text-underline-offset: 4px; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible, summary:focus-visible { outline: 3px solid #e99b22; outline-offset: 6px; border-radius: 3px; }
h1, h2, h3, h4, p, figure { margin: 0; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.23; }
h1 { font-size: clamp(36px, 3.6vw, 51px); letter-spacing: -1.6px; font-weight: 750; }
h2 { font-size: clamp(27px, 2.5vw, 34px); letter-spacing: -.65px; }
h3 { font-size: 21px; letter-spacing: -.25px; line-height: 1.4; }
h4 { font-size: 17px; letter-spacing: -.1px; line-height: 1.45; }
strong { color: var(--ink); }
ul, ol { padding: 0; margin: 0; }
.container { width: min(var(--container), calc(100% - 80px)); margin-inline: auto; }
.skip { position: absolute; top: -100px; left: 16px; z-index: 10; padding: 12px 20px; background: white; }
.skip:focus { top: 10px; }
.icon { width: 32px; height: 32px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* --- hlavička a patička --- */
.site-header { position: relative; z-index: 2; border-bottom: 1px solid transparent; }
.header-inner { min-height: 96px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.brand { font-size: 21px; font-weight: 750; text-decoration: none; color: var(--ink); white-space: nowrap; }
.brand span { color: var(--blue); font-weight: 600; }
.header-links { display: flex; align-items: center; gap: 26px; font-size: 14px; flex-wrap: wrap; justify-content: flex-end; }
.site-footer { padding: 38px 0; background: #092d5c; color: white; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.footer-brand { font-size: 19px; font-weight: 700; color: white; text-decoration: none; }
.footer-caption { color: #c2d3e8; font-size: 13px; margin-top: 4px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 26px; }
.footer-links a { color: white; font-size: 14px; }
.ai-note { padding: 22px 0 30px; background: #f8f9fb; border-top: 1px solid #e2e8ef; color: var(--muted); font-size: 13px; line-height: 1.7; }
.ai-note p { max-width: 900px; }

/* --- hero --- */
.hero { position: relative; }
.hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) 412px; gap: 56px; align-items: start; padding: 30px 0 88px; }
.hero-copy { max-width: 690px; padding-top: 18px; }
h1 em { display: block; color: var(--blue); font-style: normal; margin-top: 10px; }
.perex { font-size: 18px; line-height: 1.85; max-width: 600px; margin-top: 28px; }
.actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 14px 22px; border: 1.5px solid var(--blue); border-radius: 7px; text-decoration: none; font-size: 15px; font-weight: 700; line-height: 1.5; background: white; }
.button-primary { background: var(--blue); color: white; box-shadow: 0 5px 12px #0759ce16; }
.button:hover { background: #eaf3ff; text-decoration: none; }
.button-primary:hover { background: #054aab; }
.hero-art { display: grid; gap: 22px; align-content: start; }
.landscape { width: 100%; height: auto; display: block; border-radius: 14px; box-shadow: 0 10px 30px #122f5514; }
.why { width: 100%; background: #fff; border: 1px solid #e1e8ef; border-radius: 17px; padding: 32px; box-shadow: 0 14px 42px #122f5520; }
.why h2 { font-size: 22px; margin-bottom: 27px; }
.why ul { list-style: none; display: grid; gap: 25px; }
.why li { display: flex; align-items: flex-start; gap: 15px; font-size: 16px; line-height: 1.6; }
.why .icon { color: var(--blue); width: 28px; height: 28px; margin-top: 3px; }
.why small { color: var(--muted); font-size: 13px; }
.why .source-link { display: inline-block; margin: 24px 0 0 43px; }

/* --- sekce --- */
.section { padding-block: var(--section-space); }
.section-title { display: flex; align-items: baseline; gap: 17px; margin-bottom: 42px; }
.section-title::before { content: ''; align-self: center; width: 4px; height: 29px; background: var(--blue); border-radius: 2px; flex: 0 0 auto; }
.section-title h2 { flex: 1; }
.section-number { font-size: 16px; color: var(--blue); font-weight: 700; letter-spacing: .02em; margin-right: 9px; vertical-align: 4px; }
.intro { max-width: 890px; font-size: 19px; line-height: 1.85; margin-bottom: 44px; }
.intro p + p { margin-top: 18px; }
.more, .source-link { font-size: 14px; font-weight: 600; line-height: 1.6; }
.note { font-size: 14px; display: flex; align-items: flex-start; gap: 12px; margin-top: 26px; max-width: 1000px; line-height: 1.75; }
.note .icon { width: 20px; height: 20px; color: var(--blue); margin-top: 3px; }

/* --- souvislý článek (samostatný textový sloupec) --- */
.story { background: white; }
.story-column { max-width: 1240px; }
.story-column p { font-size: 18px; line-height: 1.95; }
.story-column p + p { margin-top: 22px; }
.story-column h3 { margin: 42px 0 16px; }
.story-lead { font-size: 21px !important; line-height: 1.8 !important; color: var(--ink); }
.pull { margin: 40px 0; padding: 26px 30px; border-left: 4px solid var(--blue); background: var(--wash); border-radius: 0 12px 12px 0; }
.pull p { font-size: 19px !important; line-height: 1.75 !important; color: var(--ink); }
.pull .source-link { display: inline-block; margin-top: 14px; }

/* --- datové karty --- */
.analysis { background: var(--wash); border-top: 1px solid #e8eff6; }
.stats { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.stat { padding: 30px 20px; background: white; border: 1px solid var(--line); border-radius: var(--radius); text-align: center; }
.stat .icon { color: var(--blue); width: 41px; height: 41px; margin-bottom: 18px; }
.stat dt { font-size: 26px; font-weight: 750; line-height: 1.3; color: var(--ink); white-space: nowrap; }
.stat dt.period { font-size: 24px; }
.stat dd { margin: 13px 0 0; font-size: 15px; line-height: 1.7; }
.stat dd strong { display: block; font-weight: 600; margin-bottom: 5px; }

/* --- hlavní zjištění --- */
.findings { background: var(--blue-dark); color: white; }
.findings .section-title h2, .findings .section-number { color: white; }
.findings .section-title::before { background: #79baff; }
.findings-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.finding { display: flex; flex-direction: column; gap: 23px; padding: 32px 28px; border-radius: var(--radius); background: white; color: var(--text); box-shadow: 0 10px 30px #001b3a20; }
.finding-head { display: flex; align-items: flex-start; gap: 14px; }
.badge { display: inline-flex; justify-content: center; align-items: center; width: 34px; height: 34px; flex: 0 0 auto; background: var(--blue); color: white; border-radius: 50%; font-weight: 700; font-size: 17px; line-height: 1; }
.finding h3 { font-size: 21px; }
.finding p { font-size: 16px; line-height: 1.8; }
.finding .more { margin-top: auto; padding-top: 7px; }
.findings-footnote { color: #cedff2; font-size: 13px; margin-top: 24px; max-width: 980px; line-height: 1.75; }
.findings-footnote a { color: white; }
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; }
.compare strong { font-size: 39px; color: var(--blue); white-space: nowrap; letter-spacing: -1px; }
.compare .over { color: #b4620d; }
.compare span { display: block; font-size: 14px; line-height: 1.65; }
.compare .versus { font-size: 13px; color: var(--muted); padding-top: 19px; }
.mini-water { height: 48px; display: flex; align-items: flex-end; margin-top: 15px; }
.mini-water i { height: 11px; width: 100%; display: block; background: #e7eaf0; border-radius: 3px; }
.mini-water i::before { content: ''; display: block; width: 22%; height: 100%; background: var(--blue); border-radius: 3px; }
.bricks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; height: 48px; margin-top: 15px; align-content: end; }
.bricks i { height: 12px; background: #7db791; border-radius: 1px; }
.over-bricks i { background: #edb277; }
.measure-visual { display: flex; align-items: center; gap: 18px; padding: 19px; border-radius: 11px; background: var(--wash); }
.measure-visual .icon { width: 47px; height: 47px; color: var(--blue); }
.measure-visual span { font-size: 15px; line-height: 1.55; }
.goal-change { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; text-align: center; }
.goal-change strong { color: var(--red); font-size: 25px; white-space: nowrap; letter-spacing: -.8px; }
.goal-change span { display: block; font-size: 13px; margin-top: 6px; }
.goal-change .arrow { color: var(--red); font-size: 26px; }
.goal-footnote { font-size: 13px !important; color: var(--muted); text-align: center; }

/* --- graf: plnění ukazatelů (vodorovné pruhy) --- */
.gauge { display: grid; gap: 14px; }
.gauge-row { display: grid; grid-template-columns: 1fr; gap: 5px; }
.gauge-label { font-size: 14px; line-height: 1.5; display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.gauge-label b { font-size: 15px; white-space: nowrap; }
.gauge-track { position: relative; height: 16px; background: #e9eef5; border-radius: 4px; }
.gauge-track::after { content: ''; position: absolute; left: 21.74%; top: -3px; bottom: -3px; width: 2px; background: var(--ink); opacity: .38; }
.gauge-fill { position: absolute; inset: 0 auto 0 0; min-width: 4px; background: var(--blue); border-radius: 4px; }
.gauge-row.over .gauge-fill { background: var(--orange); }
.gauge-row.over .gauge-label b { color: #b4620d; }
.gauge-row.under .gauge-label b { color: var(--blue); }
.gauge-scale { position: relative; height: 20px; font-size: 12px; color: var(--muted); margin-top: 4px; }
.gauge-scale i { position: absolute; top: 0; transform: translateX(-50%); font-style: normal; }
.gauge-100 { position: absolute; top: -4px; bottom: -4px; width: 2px; background: var(--ink); opacity: .45; }
.gauge-caption { font-size: 13px; color: var(--muted); margin-top: 16px; line-height: 1.7; }

/* --- graf: proudy peněz --- */
.streams { display: grid; gap: 10px; margin-top: 8px; }
.stream { display: grid; grid-template-columns: 300px 1fr 122px; gap: 18px; align-items: center; }
.stream-name { font-size: 15px; line-height: 1.45; }
.stream-name small { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }
.stream-bar { height: 26px; background: #eef2f7; border-radius: 5px; overflow: hidden; }
.stream-bar i { display: block; height: 100%; background: var(--blue); border-radius: 5px; }
.stream:nth-child(2) .stream-bar i { background: #2c76de; }
.stream:nth-child(3) .stream-bar i { background: #5595e8; }
.stream:nth-child(4) .stream-bar i { background: #86b4ef; }
.stream:nth-child(5) .stream-bar i { background: #b2cff5; }
.stream-value { font-size: 15px; font-weight: 700; color: var(--ink); text-align: right; white-space: nowrap; }

/* --- problém --- */
.problem { background: var(--warm); }
.problem-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
.problem-card { border: 1px solid #e8e3db; background: #ffffffb8; border-radius: var(--radius); padding: 32px; }
.problem-head { display: flex; gap: 18px; margin-bottom: 20px; align-items: center; }
.problem-head .icon { color: var(--orange); width: 36px; height: 36px; }
.problem-card p { font-size: 17px; line-height: 1.85; }
.problem-card p + p { margin-top: 14px; }
.problem-card .more { display: inline-block; margin-top: 20px; }

/* --- co funguje / kde zaostáváme --- */
.results { background: white; }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.result-card { border-radius: var(--radius); padding: 36px; }
.success { background: #f2f9f4; border: 1px solid #d5e7d9; }
.failure { background: #fff5f4; border: 1px solid #f0d3d3; }
.result-card h3 { display: flex; gap: 13px; align-items: center; text-transform: uppercase; font-size: 18px; letter-spacing: .4px; margin-bottom: 30px; }
.success h3 { color: var(--green); }
.failure h3 { color: var(--red); }
.checks { list-style: none; display: grid; gap: 23px; }
.checks li { display: flex; gap: 15px; font-size: 17px; line-height: 1.8; }
.checks .icon { width: 21px; height: 21px; color: var(--green); margin-top: 5px; }
.result-card .source-link { display: block; margin-top: 27px; }
.fail-list { display: grid; gap: 25px; }
.fail-item { display: grid; grid-template-columns: 86px 1fr; gap: 15px; }
.fail-item > strong { color: var(--red); font-size: 26px; line-height: 1.55; white-space: nowrap; letter-spacing: -.5px; }
.fail-item p { font-size: 16px; line-height: 1.8; }
.result-takeaway { margin-top: 30px; padding: 22px 0 0; border-top: 1px solid #ebcece; font-size: 17px; }

/* --- doporučení --- */
.solutions { background: var(--wash); }
.solutions-intro { max-width: 900px; margin: -10px 0 38px; line-height: 1.85; }
.solutions-grid { list-style: none; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.solution { padding: 27px 23px; border-radius: var(--radius); border: 1px solid var(--line); background: white; display: flex; flex-direction: column; align-items: flex-start; }
.solution .badge { margin-bottom: 23px; }
.solution h3 { color: var(--blue); font-size: 18px; line-height: 1.55; margin-bottom: 17px; }
.solution p { font-size: 15px; line-height: 1.85; margin-bottom: 23px; }
.solution .source-link { margin-top: auto; font-size: 13px; }

/* --- zdroje a metodika --- */
.sources { background: #f8f9fb; border-top: 1px solid #e2e8ef; }
.source-intro { max-width: 830px; font-size: 18px; line-height: 1.85; margin-bottom: 34px; }
.sources-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.source-card { border: 1px solid var(--line); background: white; border-radius: 12px; padding: 24px 20px; text-decoration: none; display: flex; flex-direction: column; gap: 10px; transition: border-color .2s, transform .2s; }
.source-card .icon { margin-bottom: 8px; color: var(--blue); }
.source-card strong { font-size: 17px; }
.source-card span { color: var(--text); font-size: 14px; line-height: 1.65; }
.source-card:hover { border-color: var(--blue); transform: translateY(-3px); }
details { margin-top: 38px; border: 1px solid var(--line); border-radius: 12px; padding: 23px 26px; background: white; }
summary { cursor: pointer; color: var(--ink); font-weight: 700; font-size: 17px; }
.method-body { padding-top: 24px; max-width: 960px; font-size: 16px; }
.method-body h3 { font-size: 19px; margin: 24px 0 12px; }
.method-body ul { padding-left: 22px; }
.method-body li { margin-bottom: 13px; }
.method-body p + p { margin-top: 13px; }

/* --- rozcestník na podstránky --- */
.next-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.next-card { border: 1px solid var(--line); background: white; border-radius: var(--radius); padding: 28px; text-decoration: none; display: flex; flex-direction: column; gap: 11px; transition: border-color .2s, transform .2s; }
.next-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.next-card strong { font-size: 19px; color: var(--ink); }
.next-card span { font-size: 15px; line-height: 1.7; color: var(--text); }
.next-card em { font-style: normal; font-size: 14px; font-weight: 600; color: var(--blue); margin-top: auto; padding-top: 8px; }

/* --- podstránky --- */
.subhero { background: var(--wash); border-top: 1px solid #e8eff6; border-bottom: 1px solid #e8eff6; padding: 44px 0 56px; }
.crumbs { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.crumbs a { font-weight: 600; }
.subhero h1 { font-size: clamp(31px, 3vw, 44px); max-width: 940px; }
.subhero .perex { margin-top: 22px; max-width: 760px; }
.page-body { padding-block: 72px; }
.page-body .container > * + * { margin-top: 30px; }
.block { max-width: 900px; }
.block h2 { margin: 58px 0 20px; }
.block h3 { margin: 34px 0 14px; }
.block p { font-size: 17px; line-height: 1.9; }
.block p + p { margin-top: 16px; }
.block ul.plain { list-style: none; display: grid; gap: 14px; margin: 20px 0; }
.block ul.plain li { position: relative; padding-left: 24px; font-size: 17px; line-height: 1.8; }
.block ul.plain li::before { content: '▪'; position: absolute; left: 0; top: 0; color: var(--blue); }
.explain { border: 1px solid var(--line); background: var(--wash); border-radius: 12px; padding: 24px 28px; margin: 28px 0; max-width: 900px; }
.explain h4 { margin-bottom: 9px; color: var(--blue); }
.explain p { font-size: 16px; line-height: 1.8; }
.caution { border: 1px solid #f0e0c4; background: #fffaf0; border-radius: 12px; padding: 24px 28px; margin: 28px 0; max-width: 900px; }
.caution h4 { margin-bottom: 9px; color: #96601a; }
.caution p { font-size: 16px; line-height: 1.8; }
.caution p + p { margin-top: 12px; }
.table-wrap { overflow-x: auto; margin: 26px 0; border: 1px solid var(--line); border-radius: 12px; background: white; }
table { border-collapse: collapse; width: 100%; font-size: 15px; }
caption { text-align: left; font-size: 14px; color: var(--muted); padding: 16px 18px 0; line-height: 1.6; }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { background: var(--wash); color: var(--ink); font-size: 14px; white-space: nowrap; }
tbody tr:last-child td, tbody tr:last-child th { border-bottom: 0; }
td.num, th.num { text-align: right; white-space: nowrap; }
tbody th { font-weight: 400; }
tr.highlight td, tr.highlight th { background: #fff6f5; }
tr.highlight td.num:last-child { color: var(--red); font-weight: 700; }
tr.over td.num:last-child { color: #b4620d; font-weight: 700; }
.back-link { display: inline-block; margin-top: 12px; font-weight: 600; }
.sources-list { max-width: 900px; display: grid; gap: 12px; list-style: none; }
.sources-list li { font-size: 16px; line-height: 1.75; }


@media (max-width: 1150px) {
  .container { width: calc(100% - 64px); }
  .hero-inner { grid-template-columns: minmax(0, 1fr) 350px; gap: 40px; }
  .why { padding: 27px; } .perex { max-width: 520px; }
  .stats { gap: 12px; } .stat { padding: 25px 12px; } .stat dt { font-size: 23px; }
  .stat dt.period { font-size: 20px; } .finding { padding: 26px 22px; }
  .finding-head { flex-direction: column; gap: 16px; } .finding h3 { font-size: 20px; }
  .goal-change strong { font-size: 21px; } .compare strong { font-size: 33px; }
  .solutions-grid, .sources-grid, .next-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .stream { grid-template-columns: 230px 1fr 110px; gap: 14px; }
}
@media (max-width: 900px) {
  :root { --section-space: 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding: 26px 0 70px; }
  .hero-copy { max-width: 720px; padding-top: 0; } h1 { font-size: 46px; }
  .perex { max-width: 660px; }
  .hero-art { width: 100%; max-width: 560px; margin-top: 38px; }
  .stats { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
  .findings-grid { grid-template-columns: 1fr; gap: 24px; }
  .finding { padding: 32px; } .finding-head { flex-direction: row; }
  .finding h3 { font-size: 23px; } .finding p { font-size: 17px; }
  .compare { max-width: 400px; gap: 30px; } .compare strong { font-size: 45px; }
  .goal-change { max-width: 450px; gap: 25px; } .goal-change strong { font-size: 28px; }
  .goal-footnote { text-align: left; } .measure-visual { max-width: 410px; }
  .problem-grid { gap: 24px; } .problem-card { padding: 27px; }
  .problem-head { align-items: flex-start; flex-direction: column; }
  .results-grid { grid-template-columns: 1fr; } .result-card { padding: 34px; }
  .next-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stream { grid-template-columns: 1fr; gap: 6px; }
  .stream-value { text-align: left; }
}
@media (max-width: 600px) {
  :root { --section-space: 68px; }
  body { font-size: 16px; }
  .container { width: calc(100% - 40px); }
  .header-inner { min-height: 82px; flex-wrap: wrap; gap: 10px; } .brand { font-size: 18px; }
  .header-links { font-size: 13px; gap: 16px; }
  h1 { font-size: 35px; letter-spacing: -1.2px; } h2 { font-size: 27px; }
  .perex { font-size: 17px; margin-top: 25px; }
  .actions { gap: 12px; margin-top: 28px; } .button { width: 100%; }
  .why { padding: 27px; } .why li { font-size: 15px; }
  .section-title { gap: 11px; margin-bottom: 32px; }
  .section-title::before { width: 3px; height: 28px; }
  .section-number { font-size: 14px; margin-right: 4px; vertical-align: 2px; }
  .stats { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
  .stat { padding: 26px 12px; } .stat dt { font-size: 22px; }
  .stat dt.period { font-size: 19px; } .stat dd { font-size: 14px; }
  .stat:last-child { grid-column: 1/-1; }
  .intro, .story-column p { font-size: 17px; }
  .story-lead { font-size: 19px !important; }
  .pull { padding: 22px 24px; } .pull p { font-size: 18px !important; }
  .finding { padding: 28px 23px; } .finding h3 { font-size: 21px; }
  .finding-head { gap: 12px; } .badge { width: 30px; height: 30px; font-size: 16px; }
  .goal-change { gap: 10px; } .goal-change strong { font-size: 24px; }
  .compare { gap: 17px; } .compare strong { font-size: 38px; }
  .problem-grid { grid-template-columns: 1fr; } .problem-head { flex-direction: row; }
  .problem-card { padding: 27px 24px; } .problem-card p { font-size: 16px; }
  .result-card { padding: 28px 24px; } .checks li { font-size: 16px; }
  .fail-item { grid-template-columns: 72px 1fr; gap: 12px; } .fail-item > strong { font-size: 23px; }
  .solutions-grid, .sources-grid, .next-grid { grid-template-columns: 1fr; gap: 18px; }
  .solution { padding: 26px; } .solution h3 { font-size: 20px; } .solution p { font-size: 16px; }
  .solution .badge { margin-bottom: 17px; } .source-card { padding: 24px; }
  details { padding: 21px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .subhero { padding: 32px 0 40px; } .page-body { padding-block: 54px; }
  .block h2 { margin: 44px 0 16px; } .block p { font-size: 16px; }
  th, td { padding: 10px 12px; font-size: 14px; }
  .explain, .caution { padding: 20px 22px; }
}
@media (max-width: 380px) {
  .stat dt { font-size: 19px; } .stat dt.period { font-size: 17px; } .stat { padding-inline: 9px; }
  .brand { font-size: 16px; } .finding-head { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
@media print {
  :root { --section-space: 32px; } body { font-size: 10pt; }
  .container { width: 100%; } .site-header, .actions, .hero-art, .site-footer { display: none; }
  .hero-inner { min-height: auto; padding: 0 0 25px; } .hero-copy { width: 100%; max-width: none; }
  h1 { font-size: 26pt; } h2 { font-size: 18pt; } .perex { font-size: 11pt; }
  .findings { background: #eee; color: #111; }
  .findings .section-title h2, .findings .section-number, .findings-footnote, .findings-footnote a { color: #111; }
  .finding, .problem-card, .result-card, .solution, .table-wrap { break-inside: avoid; }
  .findings-grid, .results-grid, .problem-grid { grid-template-columns: 1fr; }
  .stats, .solutions-grid, .sources-grid, .next-grid { grid-template-columns: repeat(2,1fr); }
  a { color: inherit; }
}
