@charset "utf-8";
/* vandtiaregler.se — site stylesheet
   Tokens and base rules follow the supplied design-tokens.css handoff. */

/* ---------- Fonts (self-hosted, SIL OFL) ---------- */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-var-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  color-scheme: light;
  --paper: #fbfaf7;
  --ink: #30243b;
  --violet: #6442d9;
  --violet-dark: #4b31a8;
  --violet-soft: #efeafc;
  --mint: #ddf3e8;
  --mint-deep: #bfe6d3;
  --coral: #f06449;
  --coral-soft: #fdeae6;
  --red-suit: #b62d43;
  --muted: #675d70;
  --line: #dcd5e8;
  --radius: 18px;
  --radius-sm: 10px;
  --content: 1200px;
  --font: "Manrope", Arial, Helvetica, sans-serif;
  --shadow-card: 0 1px 2px rgba(48, 36, 59, .06), 0 8px 24px rgba(48, 36, 59, .05);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

h1, h2, h3, h4 { line-height: 1.1; letter-spacing: -.035em; margin: 0 0 var(--space-2); }
h1 { font-size: clamp(40px, 6vw, 84px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; }
h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 800; }
h4 { font-size: 19px; font-weight: 800; }
p { margin: 0 0 var(--space-2); }
p:last-child { margin-bottom: 0; }

a { color: var(--violet); }
a:hover { color: var(--violet-dark); }

button, input, select, textarea { font: inherit; color: inherit; }
button, .button { min-height: 44px; }

img { max-width: 100%; }

ul, ol { margin: 0 0 var(--space-2); padding-left: 1.25em; }
li { margin-bottom: 6px; }
li:last-child { margin-bottom: 0; }

:focus-visible { outline: 3px solid var(--violet); outline-offset: 4px; border-radius: 4px; }

.container { width: min(var(--content), calc(100% - 64px)); margin-inline: auto; }
.muted { color: var(--muted); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: 0; left: 0; z-index: 200;
  background: var(--violet); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0; text-decoration: none;
  transform: translateY(-120%);
}
.skip-link:focus { transform: translateY(0); color: #fff; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-size: 13px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--violet); margin: 0 0 var(--space-2);
}
.pill {
  display: inline-block; background: var(--mint); color: var(--ink);
  font-size: 14px; font-weight: 700; padding: 6px 14px; border-radius: 999px;
  margin: 0 0 var(--space-2);
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 22px; border-radius: var(--radius-sm); border: 1px solid transparent;
  font-weight: 700; text-decoration: none; cursor: pointer; background: none;
}
.button svg { flex: none; }
.button-primary { background: var(--violet); color: #fff; border-color: var(--violet); }
.button-primary:hover { background: var(--violet-dark); border-color: var(--violet-dark); color: #fff; }
.button-secondary { background: #fff; color: var(--violet); border-color: var(--line); }
.button-secondary:hover { border-color: var(--violet); color: var(--violet-dark); }
.button-ghost { background: transparent; color: var(--violet); border-color: var(--violet); }
.button-ghost:hover { background: var(--violet-soft); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--space-3); }

/* ---------- Header ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 60;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3); min-height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img { width: 38px; height: 38px; display: block; }
.brand-name { font-size: 22px; font-weight: 800; letter-spacing: -.03em; }

.desktop-nav ul { display: flex; gap: var(--space-3); list-style: none; margin: 0; padding: 0; }
.desktop-nav li { margin: 0; }
.desktop-nav a {
  display: inline-block; padding: 8px 2px; text-decoration: none;
  color: var(--ink); font-weight: 600; border-bottom: 2px solid transparent;
}
.desktop-nav a:hover { color: var(--violet); }
.desktop-nav a[aria-current="page"],
.desktop-nav a.is-section { color: var(--violet); border-bottom-color: var(--violet); }

.menu-toggle {
  display: none; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: #fff; cursor: pointer;
}
.menu-toggle svg { display: block; }

/* ---------- Mobile menu ---------- */
.mobile-menu[hidden] { display: none !important; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 100; background: var(--paper);
  padding: var(--space-2); overflow: auto;
}
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; min-height: 60px; }
.mobile-menu ul { list-style: none; margin: var(--space-3) 0 0; padding: 0; }
.mobile-menu li { margin: 0; }
.mobile-menu a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 56px; padding: 10px 14px; text-decoration: none;
  color: var(--ink); font-size: 24px; font-weight: 800; border-radius: 12px;
}
.mobile-menu a[aria-current="page"] { background: var(--mint); color: var(--ink); }
.mobile-menu .submenu { margin: 0 0 0 14px; border-left: 2px solid var(--line); padding-left: 12px; }
.mobile-menu .submenu a { font-size: 19px; font-weight: 600; }
.mobile-menu-secondary { margin-top: var(--space-3); border-top: 1px solid var(--line); padding-top: var(--space-2); }
.mobile-menu-secondary a { font-size: 17px; font-weight: 600; min-height: 48px; color: var(--muted); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding: var(--space-2) 0 0; font-size: 15px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.breadcrumbs li { margin: 0; display: flex; align-items: center; gap: 8px; color: var(--muted); }
.breadcrumbs li + li::before { content: "/"; color: var(--line); }
.breadcrumbs a { text-decoration: none; font-weight: 600; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--muted); }

/* ---------- Hero ---------- */
.hero { padding: var(--space-5) 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: center; }
.hero-mint { background: linear-gradient(180deg, var(--mint) 0%, rgba(221, 243, 232, .35) 100%); }
.hero h1 { margin-bottom: var(--space-2); }
.hero .lead { font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; margin-bottom: var(--space-2); }
.hero .intro { color: var(--muted); max-width: 54ch; }
.hero-media img { width: 100%; height: auto; border-radius: var(--radius); display: block; box-shadow: var(--shadow-card); }
.hero-dot { color: var(--coral); }

/* ---------- Summary cards ---------- */
.summary-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3); margin: var(--space-5) 0 var(--space-3);
}
.summary-card {
  display: flex; gap: var(--space-2); background: var(--mint);
  border-radius: var(--radius); padding: var(--space-3);
}
.summary-card .icon {
  flex: none; width: 44px; height: 44px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.summary-card h3 { font-size: 20px; margin-bottom: 6px; }
.summary-card p { font-size: 16px; color: var(--muted); }

/* ---------- Notes / callouts ---------- */
.note {
  display: flex; gap: 14px; align-items: flex-start;
  border-radius: var(--radius); padding: var(--space-2) var(--space-3);
  margin: var(--space-3) 0;
}
.note .icon { flex: none; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
.note p { font-size: 16px; }
.note-violet { background: var(--violet-soft); }
.note-mint { background: var(--mint); }
.note-coral { background: var(--coral-soft); }
.note strong { font-weight: 800; }

/* ---------- Article layout ---------- */
.article-layout {
  display: grid; grid-template-columns: 240px minmax(0, 1fr);
  gap: var(--space-5); padding: var(--space-5) 0 var(--space-6);
  align-items: start;
}
.article-layout.layout-wide { grid-template-columns: minmax(0, 1fr) 300px; }
.article-copy { max-width: 72ch; }
.article-copy > section { margin-bottom: var(--space-6); }
.article-copy > section:last-child { margin-bottom: 0; }

.toc { position: sticky; top: var(--space-2); background: var(--mint); border-radius: var(--radius); padding: var(--space-3); }
.toc h2 { font-size: 20px; margin-bottom: var(--space-2); }
.toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.toc li { margin-bottom: 4px; counter-increment: toc; }
.toc a {
  display: flex; gap: 10px; align-items: baseline; min-height: 40px;
  padding: 6px 0; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 16px;
}
.toc a::before {
  content: counter(toc); flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: #fff; color: var(--violet); font-size: 13px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}
.toc a:hover { color: var(--violet); }

.aside-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-3); margin-top: var(--space-3); }
.aside-panel h2, .aside-panel h3 { font-size: 20px; }
.aside-panel p { font-size: 16px; color: var(--muted); }
.aside-stack { position: sticky; top: var(--space-2); }
/* Sidebar panels are supporting material, not page-level sections. */
.aside-stack .panel { margin-top: var(--space-3); }
.aside-stack .panel h2 { font-size: 20px; letter-spacing: -.02em; }
.aside-stack .panel p,
.aside-stack .panel li { font-size: 16px; }
.aside-stack .panel ul { padding-left: 1.1em; }

/* ---------- Numbered section headings ---------- */
.section-head { display: flex; align-items: center; gap: 14px; margin-bottom: var(--space-3); }
.section-head .num {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: var(--violet); color: #fff; font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.section-head h2 { margin: 0; }

/* ---------- Panels & grids ---------- */
.panel { border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-3); background: #fff; }
.mint-panel { background: var(--mint); border-color: transparent; }
.violet-panel { background: var(--violet-soft); border-color: transparent; }

.step-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-3); }
.step-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-3); }
.step-card .step-head { display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-2); }
.step-card .badge {
  flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--violet);
  color: #fff; font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step-card h3 { font-size: 18px; margin: 0; }
.step-card p { font-size: 16px; color: var(--muted); }

/* ---------- Special card blocks ---------- */
.special-list { display: grid; gap: var(--space-3); }
.special-item {
  display: grid; grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: var(--space-3); align-items: center;
  background: var(--violet-soft); border-radius: var(--radius); padding: var(--space-3);
}
.special-item .rank-badge {
  width: 76px; height: 76px; border-radius: 50%; background: var(--violet); color: #fff;
  font-size: 30px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.special-item h3 { margin-bottom: 6px; }
.special-item p { font-size: 16px; color: var(--muted); }
.special-item:nth-child(even) { background: var(--mint); }

/* ---------- Playing cards ---------- */
.card-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-end; margin: 0; padding: 0; list-style: none; }
.card-row li { margin: 0; }
.playing-card { width: 70px; aspect-ratio: 70 / 98; flex: none; display: block; }
.playing-card svg { display: block; width: 100%; height: 100%; }
.card-group { margin: var(--space-3) 0; }
.card-group-label { font-size: 14px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.card-empty-slot {
  width: 70px; aspect-ratio: 70 / 98; flex: none; border: 2px dashed var(--line);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 13px; text-align: center; padding: 4px;
}

/* ---------- Setup diagram ---------- */
.setup-diagram { display: grid; gap: var(--space-3); }
.setup-row { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: var(--space-2); align-items: center; }
.setup-row .setup-label { font-weight: 800; font-size: 16px; }
.setup-row .setup-note { display: block; font-weight: 400; font-size: 14px; color: var(--muted); }

/* ---------- Practice / lesson module ---------- */
.lesson { background: var(--violet-soft); border-radius: var(--radius); padding: var(--space-3); }
.lesson-scene { background: #fff; border-radius: var(--radius); padding: var(--space-3); border: 1px solid var(--line); }
.lesson-scene h3 { margin-bottom: 4px; }
.lesson-meta { font-size: 14px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--violet); margin-bottom: 8px; }
.lesson-board { display: grid; gap: var(--space-3); margin: var(--space-3) 0; }
.lesson-outcome { background: var(--mint); border-radius: var(--radius-sm); padding: var(--space-2) var(--space-3); font-size: 16px; }
.lesson-outcome[hidden] { display: none !important; }
.lesson-controls { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--space-3); }
.lesson-note { font-size: 15px; color: var(--muted); margin-top: var(--space-2); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item[open] { background: var(--mint); border-color: transparent; }
.faq-item summary {
  display: flex; align-items: center; gap: 14px; cursor: pointer;
  padding: var(--space-2) var(--space-3); min-height: 60px;
  font-weight: 800; font-size: 18px; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; margin-left: auto; flex: none;
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--violet);
  color: var(--violet); font-weight: 700; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item summary .faq-num {
  flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--violet-soft);
  color: var(--violet); font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.faq-answer { padding: 0 var(--space-3) var(--space-3) calc(var(--space-3) + 46px); }
.faq-answer p { font-size: 16px; }

/* ---------- Glossary ---------- */
.glossary-search { margin-bottom: var(--space-4); max-width: 520px; }
.glossary-search label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 16px; }
.glossary-search input {
  width: 100%; min-height: 52px; padding: 12px 18px;
  border: 1px solid var(--line); border-radius: 999px; background: #fff;
}
.glossary-list { list-style: none; margin: 0; padding: 0; }
.glossary-list li { margin: 0; border-bottom: 1px solid var(--line); padding: var(--space-3) 0; }
.glossary-list li:last-child { border-bottom: 0; }
.glossary-entry { display: grid; grid-template-columns: 70px minmax(0, 1fr); gap: var(--space-2); align-items: start; }
.glossary-initial { font-size: 46px; font-weight: 800; color: var(--violet); line-height: 1; }
.glossary-entry h2, .glossary-entry h3 { font-size: 24px; margin-bottom: 4px; }
.glossary-entry p { font-size: 17px; color: var(--muted); }
.glossary-empty { padding: var(--space-3); background: var(--violet-soft); border-radius: var(--radius); font-weight: 600; }
.glossary-empty[hidden] { display: none !important; }

/* ---------- Variant comparison ---------- */
.comparison-list { display: grid; gap: 12px; list-style: none; margin: 0; padding: 0; }
.comparison-row {
  display: grid; grid-template-columns: 44px minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-2); align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-2);
  margin: 0;
}
.comparison-row .num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--violet-soft);
  color: var(--violet); font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.comparison-question { font-weight: 800; font-size: 17px; }
.comparison-option { border-radius: var(--radius-sm); padding: 10px 14px; font-size: 16px; }
.comparison-option .label {
  display: block; font-size: 12px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 2px;
}
.comparison-ours { background: var(--mint); }
.comparison-ours .label { color: var(--violet-dark); }
.comparison-alt { background: var(--violet-soft); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--mint); border-radius: var(--radius);
  padding: var(--space-4); margin: var(--space-5) 0;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: var(--space-3); align-items: center;
}
.cta-banner h2 { font-size: clamp(24px, 2.6vw, 32px); }
.cta-banner p { color: var(--muted); margin: 0; }
.cta-violet { background: var(--violet); color: #fff; }
.cta-violet h2, .cta-violet p { color: #fff; }
.cta-violet .button-primary { background: #fff; color: var(--violet); border-color: #fff; }
.cta-violet .button-primary:hover { background: var(--violet-soft); color: var(--violet-dark); }

/* ---------- News ---------- */
.news-empty { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-3); color: var(--muted); }

/* ---------- Source list ---------- */
.source-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-2); }
.source-list li { margin: 0; font-size: 16px; }
.source-list .source-use { display: block; color: var(--muted); font-size: 15px; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; margin: var(--space-3) 0; }
table { border-collapse: collapse; width: 100%; font-size: 16px; }
caption { text-align: left; font-weight: 800; padding-bottom: 10px; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-weight: 800; }
thead th { background: var(--violet-soft); }

/* ---------- Footer ---------- */
.site-footer { background: #2b2036; color: #efeaf5; margin-top: var(--space-6); padding: var(--space-5) 0; }
.site-footer .container { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: var(--space-4); align-items: start; }
.site-footer .brand { color: #fff; }
.site-footer .brand-name { color: #fff; }
.site-footer .tagline { color: #bcb0c9; font-size: 16px; margin-top: 8px; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--space-3); }
.footer-nav li { margin: 0; }
.footer-nav a { color: #efeaf5; text-decoration: none; font-weight: 600; min-height: 44px; display: inline-flex; align-items: center; }
.footer-nav a:hover { color: #fff; text-decoration: underline; }
.footer-legal { grid-column: 1 / -1; border-top: 1px solid #453655; padding-top: var(--space-2); color: #bcb0c9; font-size: 15px; }

/* ---------- 404 ---------- */
.error-page { padding: var(--space-6) 0; text-align: center; }
.error-page .code { font-size: clamp(64px, 12vw, 140px); font-weight: 800; color: var(--violet); line-height: 1; }
.error-page ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; margin-top: var(--space-3); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .article-layout,
  .article-layout.layout-wide { grid-template-columns: minmax(0, 1fr); gap: var(--space-4); }
  .toc, .aside-stack { position: static; }
}

@media (max-width: 860px) {
  .summary-grid { grid-template-columns: minmax(0, 1fr); }
  .comparison-row { grid-template-columns: 34px minmax(0, 1fr); }
  .comparison-row .comparison-option { grid-column: 2; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 32px); }
  .hero { padding: var(--space-3) 0 var(--space-4); }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: var(--space-3); }
  .hero h1 { font-size: clamp(34px, 9vw, 46px); }
  .hero .button-row .button { width: 100%; }
  .step-grid { grid-template-columns: minmax(0, 1fr); }
  .special-item { grid-template-columns: 56px minmax(0, 1fr); }
  .special-item .rank-badge { width: 56px; height: 56px; font-size: 22px; }
  .special-item .card-row { grid-column: 1 / -1; }
  .panel { padding: 18px; }
  .playing-card, .card-empty-slot { width: 58px; }
  .setup-row { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .cta-banner { grid-template-columns: minmax(0, 1fr); padding: var(--space-3); }
  .site-footer .container { grid-template-columns: minmax(0, 1fr); }
  .footer-nav ul { flex-direction: column; gap: 0; }
  .faq-answer { padding-left: var(--space-3); }
  .glossary-entry { grid-template-columns: 48px minmax(0, 1fr); }
  .glossary-initial { font-size: 34px; }
  .article-layout { padding: var(--space-3) 0 var(--space-5); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
