/* Elternordner – Designsystem
   Palette: Warm Ivory #F6F3ED · Deep Charcoal #26343B · Muted Sage #7D9282 · Soft Sand #D8C8AD · Muted Terracotta #B87561 · White
   Kontrast geprüft (WCAG 2.2 AA): Fließtext #26343B auf #F6F3ED = 11.6:1, Buttons weiß auf #9A5A47 = 5.35:1 */

@font-face {
  font-family: 'Lora';
  src: url('/assets/fonts/lora-variable.woff') format('woff');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('/assets/fonts/lora-italic-variable.woff') format('woff');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --ivory: #F6F3ED;
  --ivory-deep: #EFEAE0;
  --charcoal: #26343B;
  --charcoal-soft: #34454E;
  --sage: #7D9282;
  --sage-deep: #5F7566;
  --sage-ink: #4F6456;
  --sage-soft: #E7ECE6;
  --sand: #D8C8AD;
  --sand-soft: #EDE5D6;
  --terracotta: #B87561;
  --terracotta-ink: #9A5A47;
  --terracotta-soft: #F3E4DE;
  --white: #FFFFFF;
  --muted: #5B6B73;
  --line: #DDD5C7;
  --focus: #9A5A47;

  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
  --font-serif: 'Lora', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, serif;

  --radius-s: 8px;
  --radius: 14px;
  --radius-l: 22px;
  --shadow-s: 0 1px 2px rgba(38, 52, 59, .06), 0 2px 8px rgba(38, 52, 59, .05);
  --shadow: 0 2px 6px rgba(38, 52, 59, .06), 0 12px 32px rgba(38, 52, 59, .08);
  --container: 1180px;
  --gutter: clamp(16px, 4vw, 32px);
  --space: clamp(48px, 8vw, 96px);
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 112.5%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (min-width: 900px) { html { font-size: 118.75%; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body { margin: 0; background: var(--ivory); color: var(--charcoal); font-family: var(--font-sans); line-height: 1.65; text-rendering: optimizeLegibility; overflow-x: hidden; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
picture img { width: 100%; }
a { color: inherit; text-decoration-color: var(--terracotta); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--terracotta-ink); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.2; letter-spacing: -.01em; margin: 0 0 .5em; color: var(--charcoal); }
h1 { font-size: clamp(2rem, 1.3rem + 3vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.05rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.3em; }
li { margin: .25em 0; }
code { font-size: .9em; background: var(--sand-soft); padding: .1em .35em; border-radius: 4px; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }
.sprite { display: none; }
.icon { width: 1.15em; height: 1.15em; flex: none; display: inline-block; vertical-align: -.2em; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 12px; top: -60px; background: var(--charcoal); color: var(--white); padding: 10px 16px; border-radius: var(--radius-s); z-index: 100; }
.skip:focus { top: 12px; }
main:focus { outline: none; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 760px; }
.narrow-wide { max-width: 900px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: .85rem; color: var(--muted); }
.eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--sage-ink); margin: 0 0 .6em; }
.eyebrow a { text-decoration: none; }
.lead { font-size: clamp(1.08rem, 1rem + .4vw, 1.25rem); color: var(--charcoal-soft); max-width: 44em; }
.section { padding-block: var(--space); }
.section--sand { background: var(--sand-soft); }
.section--ivory { background: var(--ivory-deep); }
.section--charcoal { background: var(--charcoal); color: var(--ivory); }
.section--charcoal h2, .section--charcoal h3 { color: var(--white); }
.section--charcoal .eyebrow { color: var(--sand); }
.section-head { max-width: 760px; margin-bottom: 2rem; }
.section-head .lead { margin-bottom: 0; }
.subhead { margin-top: 2.5rem; }
.grid { display: grid; gap: 24px; }
@media (min-width: 700px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
.two-col { display: grid; gap: 32px; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; } }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; min-height: 48px; padding: .7em 1.25em; border-radius: 999px; border: 2px solid transparent; font: inherit; font-weight: 650; line-height: 1.2; text-decoration: none; cursor: pointer; transition: background .15s, color .15s, border-color .15s, transform .15s; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--charcoal); color: var(--white); }
.btn--primary:hover { background: var(--charcoal-soft); color: var(--white); }
.btn--accent { background: var(--terracotta-ink); color: var(--white); }
.btn--accent:hover { background: #874d3c; color: var(--white); }
.btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--ghost:hover { background: var(--charcoal); color: var(--white); }
.btn--light { background: var(--ivory); color: var(--charcoal); }
.btn--light:hover { background: var(--white); color: var(--charcoal); }
.btn--sm { min-height: 40px; padding: .45em .9em; font-size: .88rem; }
.btn--lg { min-height: 56px; padding: .85em 1.6em; font-size: 1.05rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.5rem 0; }
.icon-btn { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; border: 0; background: transparent; color: var(--charcoal); cursor: pointer; }
.icon-btn:hover { background: var(--sand-soft); }
.icon-btn .icon { width: 24px; height: 24px; }

/* ---------- Header & Navigation ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(246, 243, 237, .96); backdrop-filter: saturate(1.2) blur(8px); border-bottom: 1px solid var(--line); }
.site-header__bar { display: flex; align-items: center; justify-content: space-between; min-height: 68px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font-serif); font-weight: 650; font-size: 1.35rem; color: var(--charcoal); }
.logo__mark { width: 38px; height: 38px; }
.logo--light { color: var(--white); }
.site-header__actions { display: flex; align-items: center; gap: 6px; }
.header-cta { display: none; }
@media (min-width: 560px) { .header-cta { display: inline-flex; } }
.menu-btn .icon--close { display: none; }
.menu-btn[aria-expanded="true"] .icon--close { display: block; }
.menu-btn[aria-expanded="true"] .icon--open { display: none; }
.nav { display: none; border-top: 1px solid var(--line); }
.nav.is-open { display: block; max-height: calc(100vh - 68px); overflow-y: auto; }
.nav__list { list-style: none; margin: 0; padding-block: 8px 20px; }
.nav__item { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; border-bottom: 1px solid var(--line); }
.nav__link { display: block; padding: 14px 0; font-weight: 650; text-decoration: none; }
.nav__toggle { width: 48px; height: 48px; border: 0; background: none; cursor: pointer; color: var(--charcoal); display: grid; place-items: center; }
.nav__toggle .icon { transition: transform .2s; }
.nav__toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }
.nav__panel { display: none; grid-column: 1 / -1; padding: 0 0 16px; }
.nav__panel.is-open { display: block; }
.nav__panel ul { list-style: none; padding: 0; margin: 0 0 12px; }
.nav__panel li a { display: block; padding: 8px 0; text-decoration: none; }
.nav__panel li a:hover { text-decoration: underline; }
.nav__lead { font-size: .9rem; color: var(--muted); }
.nav__all { display: inline-flex; gap: .4em; align-items: center; font-weight: 650; }
.nav__item--shop { grid-template-columns: 1fr; }
@media (min-width: 1200px) {
  .menu-btn { display: none; }
  .nav, .nav.is-open { display: block; max-height: none; overflow: visible; }
  .nav__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0 4px; padding-block: 0; max-width: none; }
  .nav__item { display: block; border: 0; }
  .nav__link { padding: 11px 9px; font-size: .8rem; white-space: nowrap; border-bottom: 3px solid transparent; }
  .nav__link:hover { border-bottom-color: var(--terracotta); color: var(--charcoal); }
  .nav__toggle { display: none; }
  .nav__panel { position: absolute; top: 100%; left: 0; width: 340px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px 22px; z-index: 60; }
  .nav__item:nth-last-child(-n+3) .nav__panel { left: auto; right: 0; }
  .nav__item:hover .nav__panel, .nav__item:focus-within .nav__panel { display: block; }
}
@media (min-width: 1200px) and (max-width: 1379px) {
  .nav__list { flex-wrap: nowrap; justify-content: space-between; }
  .nav__link { font-size: .74rem; padding: 11px 5px; }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .3em; padding: 18px 0 0; margin: 0; font-size: .85rem; color: var(--muted); }
.breadcrumbs li { margin: 0; }
.breadcrumbs li + li::before { content: '›'; margin-right: .35em; color: var(--sage); }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* ---------- Startseite ---------- */
.home-hero { padding-block: clamp(32px, 6vw, 72px) clamp(40px, 7vw, 88px); background: radial-gradient(1200px 500px at 85% 10%, var(--sage-soft), transparent 60%), radial-gradient(900px 500px at 0% 100%, var(--sand-soft), transparent 60%); }
.home-hero__grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .home-hero__grid { grid-template-columns: 1.08fr .92fr; gap: 56px; } }
.home-hero h1 { font-size: clamp(2.1rem, 1.2rem + 3.6vw, 3.5rem); margin-bottom: .45em; }
.home-hero__media { position: relative; }
.home-hero__img img { border-radius: var(--radius-l); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; }
.float-card { position: absolute; left: -12px; bottom: -22px; display: flex; gap: 14px; align-items: center; background: var(--white); border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow); font-size: .85rem; line-height: 1.35; }
@media (max-width: 520px) { .float-card { left: 8px; bottom: -28px; } }
.float-card__ring { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--sage) 0 72%, var(--sand-soft) 72% 100%); }
.float-card__ring span { width: 42px; height: 42px; border-radius: 50%; background: var(--white); display: grid; place-items: center; font-weight: 800; font-size: 1rem; }
.trust-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .45rem; font-size: .92rem; color: var(--charcoal-soft); }
.trust-list li { display: flex; gap: .55em; align-items: center; margin: 0; }
.trust-list .icon { color: var(--sage-ink); }
.section--tool { background: var(--white); border-block: 1px solid var(--line); }
.tool-privacy { display: flex; gap: .5em; align-items: center; font-size: .85rem; color: var(--muted); margin-top: 1rem; }
.topic-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .topic-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .topic-grid { grid-template-columns: repeat(4, 1fr); } }
.topic { display: grid; gap: .5rem; align-content: start; padding: 22px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); text-decoration: none; transition: transform .15s, box-shadow .15s; }
.topic:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: inherit; }
.topic__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--sage-soft); color: var(--sage-ink); display: grid; place-items: center; }
.topic__icon .icon { width: 26px; height: 26px; }
.topic__name { font-family: var(--font-serif); font-weight: 650; font-size: 1.2rem; }
.topic__lead { font-size: .9rem; color: var(--muted); }
.situation-grid { display: grid; gap: 14px; }
@media (min-width: 800px) { .situation-grid { grid-template-columns: repeat(2, 1fr); } }
.situation { display: flex; flex-direction: column; gap: .3rem; padding: 20px 22px; border-radius: var(--radius); background: var(--white); text-decoration: none; border-left: 5px solid var(--terracotta); }
.situation:hover { box-shadow: var(--shadow-s); color: inherit; }
.situation__q { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; }
.situation__a { display: inline-flex; align-items: center; gap: .4em; color: var(--terracotta-ink); font-weight: 650; font-size: .95rem; }
.how { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; counter-reset: how; }
@media (min-width: 800px) { .how { grid-template-columns: repeat(3, 1fr); } }
.how__step { background: var(--charcoal-soft); border-radius: var(--radius); padding: 26px; margin: 0; }
.how__num { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--terracotta); color: var(--white); font-weight: 800; margin-bottom: 14px; }
.how__step p { margin: 0; color: #DCE3E6; }

/* ---------- Karten ---------- */
.card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; transition: transform .15s, box-shadow .15s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card__link { display: flex; flex-direction: column; height: 100%; text-decoration: none; }
.card__link:hover { color: inherit; }
.card__img img { aspect-ratio: 16 / 9; object-fit: cover; }
.card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.card__cat { margin: 0; font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--sage-ink); }
.card__title { font-size: 1.15rem; margin: 0; }
.card__text { font-size: .92rem; color: var(--muted); margin: 0; }
.card__meta { margin: auto 0 0; padding-top: .6rem; font-size: .8rem; color: var(--muted); display: flex; gap: .4em; align-items: center; }
.tool-card { display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius); overflow: hidden; text-decoration: none; border: 1px solid var(--line); transition: transform .15s, box-shadow .15s; }
.tool-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: inherit; }
.tool-card__img img { aspect-ratio: 16 / 10; object-fit: cover; }
.tool-card__body { display: flex; flex-direction: column; gap: .45rem; padding: 18px 20px 22px; font-size: .92rem; color: var(--muted); }
.tool-card__title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 650; color: var(--charcoal); }
.tool-card__cta { margin-top: .4rem; display: inline-flex; gap: .4em; align-items: center; color: var(--terracotta-ink); font-weight: 700; }

/* ---------- Produkt-Kacheln ---------- */
.product-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
.product-tile { background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; position: relative; transition: transform .15s, box-shadow .15s; }
.product-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-tile--free { border: 2px solid var(--sage); }
.product-tile__link { display: flex; flex-direction: column; height: 100%; text-decoration: none; padding-bottom: 18px; }
.product-tile__link:hover { color: inherit; }
.product-tile__img img { aspect-ratio: 4 / 3; object-fit: cover; }
.product-tile__badge { position: absolute; top: 12px; left: 12px; background: var(--white); border-radius: 999px; padding: 4px 12px; font-size: .75rem; font-weight: 700; box-shadow: var(--shadow-s); }
.product-tile__title { font-size: 1.1rem; margin: 16px 18px 6px; }
.product-tile__text { font-size: .88rem; color: var(--muted); margin: 0 18px 10px; }
.product-tile__price { margin: auto 18px 0; font-weight: 800; font-size: 1.2rem; }
.product-tile__price span { font-weight: 400; font-size: .85rem; color: var(--muted); }

/* ---------- Hubs & Seitenköpfe ---------- */
.hub-hero { background: linear-gradient(180deg, var(--sage-soft), var(--ivory)); padding-block: 24px 40px; }
.hub-hero__grid { display: grid; gap: 28px; align-items: center; }
@media (min-width: 900px) { .hub-hero__grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
.hub-hero__img img { border-radius: var(--radius-l); aspect-ratio: 16 / 10; object-fit: cover; box-shadow: var(--shadow); }
.hub-hero__count { display: flex; gap: .5em; align-items: center; font-weight: 650; color: var(--sage-ink); }
.subnav ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.subnav li { margin: 0; }
.subnav a { display: inline-block; padding: 10px 16px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); text-decoration: none; font-size: .9rem; font-weight: 600; }
.subnav a:hover { border-color: var(--charcoal); color: var(--charcoal); }
.hub-intro { display: grid; gap: 32px; padding-block: 16px 48px; }
@media (min-width: 1000px) { .hub-intro { grid-template-columns: minmax(0, 1fr) 340px; gap: 56px; align-items: start; } }
.page-hero { padding-block: 28px 24px; }
.page-body { display: grid; gap: 32px; padding-bottom: 64px; }
@media (min-width: 1000px) { .page-body:has(.page-body__img) { grid-template-columns: 1fr 380px; } .page-body__img { order: 2; } }
.page-body__img img { border-radius: var(--radius-l); }
.index-group { margin-bottom: 2.5rem; }
.index-list { list-style: none; padding: 0; }
.index-list li { display: grid; gap: .15rem; padding: 12px 0; border-bottom: 1px solid var(--line); }
.index-list a { font-weight: 650; }
.index-list span { font-size: .9rem; color: var(--muted); }
.link-list { display: grid; gap: .4rem; }

/* ---------- Artikel ---------- */
.article__header { padding-top: 20px; max-width: 900px; margin-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter))); margin-right: auto; }
@media (max-width: 1180px) { .article__header { margin-inline: auto; max-width: var(--container); } }
.article__meta { display: flex; flex-wrap: wrap; gap: .45em; align-items: center; font-size: .85rem; color: var(--muted); }
.article__hero { margin-block: 12px 32px; }
.figure { margin: 2rem 0; }
.figure img { border-radius: var(--radius); }
.figure--hero img { border-radius: var(--radius-l); aspect-ratio: 16 / 8; object-fit: cover; }
.figure figcaption { font-size: .82rem; color: var(--muted); margin-top: .55rem; }
.figure__credit { display: inline-block; margin-left: .4em; padding: 0 .45em; border-radius: 4px; background: var(--sand-soft); font-size: .72rem; }
.article__grid { display: grid; gap: 40px; padding-bottom: 32px; }
@media (min-width: 1100px) { .article__grid { grid-template-columns: minmax(0, 1fr) 320px; gap: 64px; } }
.article__main { min-width: 0; max-width: 780px; }
.article__aside { display: none; }
@media (min-width: 1100px) { .article__aside { display: block; } }
.sticky { position: sticky; top: 96px; display: grid; gap: 20px; }

.prose { font-size: 1.02rem; }
.prose > * + * { margin-top: 0; }
.prose h2 { margin-top: 2.2em; padding-top: .2em; }
.prose h3 { margin-top: 1.7em; }
.prose h2 .anchor, .prose h3 .anchor { margin-left: .35em; color: var(--sand); text-decoration: none; opacity: 0; font-family: var(--font-sans); font-size: .7em; }
.prose h2:hover .anchor, .prose h3:hover .anchor, .anchor:focus { opacity: 1; }
.prose ul li::marker { color: var(--terracotta); }
.prose ol li::marker { color: var(--sage-ink); font-weight: 700; }
.prose blockquote { margin: 1.5em 0; padding: .6em 1.2em; border-left: 4px solid var(--sage); background: var(--white); border-radius: 0 var(--radius-s) var(--radius-s) 0; font-style: italic; }
.prose strong { font-weight: 700; }
.prose a.ext::after { content: '↗'; font-size: .75em; margin-left: .15em; text-decoration: none; display: inline-block; }
.table-wrap { overflow-x: auto; margin: 1.6em 0; border-radius: var(--radius); border: 1px solid var(--line); background: var(--white); -webkit-overflow-scrolling: touch; }
table { border-collapse: collapse; width: 100%; font-size: .92rem; min-width: 520px; }
th, td { text-align: left; vertical-align: top; padding: 12px 14px; border-bottom: 1px solid var(--line); }
th { background: var(--sage-soft); font-weight: 700; }
tr:last-child td { border-bottom: 0; }

/* Boxen */
.box { margin: 1.8em 0; padding: 18px 22px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.box__title { display: flex; align-items: center; gap: .5em; margin: 0 0 .5em; font-weight: 750; font-size: .95rem; letter-spacing: .01em; }
.box__title .icon { width: 1.3em; height: 1.3em; }
.box__body > :last-child { margin-bottom: 0; }
.box__body ul { margin-bottom: 0; }
.box--kurz { background: var(--sage-soft); border-color: #cfd9cf; border-left: 6px solid var(--sage); }
.box--kurz .box__title { color: var(--sage-ink); text-transform: uppercase; letter-spacing: .07em; font-size: .82rem; }
.box--kurz .box__body { font-size: 1.05rem; }
.box--hinweis { border-left: 6px solid var(--charcoal); }
.box--wichtig { background: var(--terracotta-soft); border-color: #e6cfc6; border-left: 6px solid var(--terracotta); }
.box--wichtig .box__title { color: var(--terracotta-ink); }
.box--tipp { background: #FBF7EF; border-left: 6px solid var(--sand); }
.box--definition { border-left: 6px solid var(--sage); }
.box--definition .box__body p:first-child { font-family: var(--font-serif); font-size: 1.08rem; }
.box--notfall { background: var(--charcoal); color: var(--ivory); border: 0; }
.box--notfall .box__title { color: var(--sand); }
.box--notfall a { color: var(--white); }

/* Checkliste */
.checklist { margin: 2em 0; padding: 20px 22px 16px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-s); }
.checklist__head h3 { margin: 0 0 .15em; }
.checklist__meta { font-size: .8rem; color: var(--muted); margin: 0 0 .6em; }
.checklist__count { font-weight: 700; color: var(--sage-ink); }
.checklist__list { list-style: none; padding: 0; margin: 0; }
.checklist__list li { margin: 0; border-top: 1px solid var(--line); }
.checklist__list label { display: flex; gap: 14px; align-items: flex-start; padding: 12px 2px; cursor: pointer; }
.checklist__list input { appearance: none; -webkit-appearance: none; flex: none; width: 26px; height: 26px; margin: 1px 0 0; border: 2px solid var(--sage-deep); border-radius: 7px; background: var(--white); display: grid; place-items: center; cursor: pointer; }
.checklist__list input::after { content: ''; width: 12px; height: 7px; border-left: 3px solid var(--white); border-bottom: 3px solid var(--white); transform: rotate(-45deg) translate(1px, -1px); opacity: 0; }
.checklist__list input:checked { background: var(--sage-deep); }
.checklist__list input:checked::after { opacity: 1; }
.checklist__list input:checked + span { color: var(--muted); text-decoration: line-through; text-decoration-color: var(--sage); }
.checklist__actions { display: flex; gap: 8px; justify-content: flex-end; padding-top: 10px; border-top: 1px solid var(--line); }

.steps ol { counter-reset: step; list-style: none; padding: 0; }
.steps ol > li { counter-increment: step; position: relative; padding: 0 0 1.2em 3.2em; margin: 0; }
.steps ol > li::before { content: counter(step); position: absolute; left: 0; top: -.1em; width: 2.1em; height: 2.1em; border-radius: 50%; background: var(--charcoal); color: var(--white); display: grid; place-items: center; font-weight: 800; font-size: .9em; }
.steps ol > li::after { content: ''; position: absolute; left: 1.05em; top: 2.2em; bottom: .3em; width: 2px; background: var(--line); }
.steps ol > li:last-child::after { display: none; }

/* YMYL-Box */
.ymyl { margin: 0 0 2rem; padding: 18px 20px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); font-size: .86rem; }
.ymyl__facts { display: grid; gap: 10px; margin: 0 0 12px; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.ymyl__facts div { background: var(--ivory); border-radius: var(--radius-s); padding: 8px 12px; }
.ymyl__facts dt { display: flex; gap: .4em; align-items: center; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.ymyl__facts dd { margin: 2px 0 0; font-weight: 700; }
.ymyl p { margin: .4em 0 0; color: var(--charcoal-soft); }

/* Inhaltsverzeichnis */
.toc { background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); padding: 18px 20px; font-size: .88rem; }
.toc__title { font-weight: 800; text-transform: uppercase; letter-spacing: .07em; font-size: .75rem; color: var(--muted); margin-bottom: .5em; }
.toc ol { margin: 0; padding-left: 1.2em; }
.toc li { margin: .35em 0; }
.toc a { text-decoration: none; }
.toc a:hover, .toc a.is-active { text-decoration: underline; color: var(--terracotta-ink); }

/* CTAs */
.cta { display: grid; gap: 16px; border-radius: var(--radius); padding: 22px; margin: 2em 0; background: var(--white); border: 1px solid var(--line); }
.cta__title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 650; margin: 0 0 .35em; line-height: 1.25; }
.cta__body p { font-size: .92rem; }
.cta__body > :last-child { margin-bottom: 0; }
.cta__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--terracotta-soft); color: var(--terracotta-ink); }
.cta__icon .icon { width: 28px; height: 28px; }
.cta--tool { background: var(--charcoal); color: var(--ivory); border: 0; }
.cta--tool .cta__title { color: var(--white); }
.cta--tool .eyebrow { color: var(--sand); }
.cta--tool .cta__icon { background: rgba(255, 255, 255, .1); color: var(--sand); }
.cta--free { background: var(--sage-soft); border-color: #cfd9cf; }
.cta--product .cta__img img { border-radius: var(--radius-s); aspect-ratio: 4 / 3; object-fit: cover; }
.cta__row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
@media (min-width: 700px) {
  .cta--wide, .cta--inline { grid-template-columns: 240px 1fr; align-items: center; }
  .cta--free, .article__main .cta--tool { grid-template-columns: 52px 1fr; }
}
.price { font-weight: 800; font-size: 1.3rem; }
.price--free { color: var(--sage-ink); }

/* Affiliate */
.affiliate { margin: 2em 0; padding: 22px; border-radius: var(--radius); background: #FBF7EF; border: 1px dashed var(--sand); }
.affiliate__title { font-family: var(--font-serif); font-weight: 650; font-size: 1.2rem; }
.affiliate__criteria { list-style: none; padding: 0; margin: 0 0 1em; display: grid; gap: .35em; }
.affiliate__criteria li { display: flex; gap: .5em; margin: 0; font-size: .92rem; }
.affiliate__criteria .icon { color: var(--sage-ink); margin-top: .25em; }
.affiliate__disclosure { font-size: .78rem; color: var(--muted); }
.aff-grid { display: grid; gap: 16px; margin: 1em 0; }
@media (min-width: 700px) { .aff-grid { grid-template-columns: repeat(2, 1fr); } }
.aff-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); padding: 18px; display: flex; flex-direction: column; gap: .5rem; }
.aff-card__title { margin: 0; font-size: 1.05rem; }
.aff-card__fit, .aff-card__features, .aff-card__note { font-size: .86rem; margin: 0; }
.aff-card__pc { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; font-size: .84rem; }
.aff-card__pc ul { margin: 0; padding-left: 1.1em; }
.aff-card__h { font-weight: 700; margin: 0; }
.aff-card__note { color: var(--muted); }
.aff-card .btn { margin-top: auto; }

/* FAQ */
.faq { margin: 2.5em 0; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { cursor: pointer; list-style: none; padding: 16px 40px 16px 0; font-weight: 700; position: relative; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; position: absolute; right: 6px; top: 12px; font-size: 1.5rem; color: var(--terracotta-ink); transition: transform .2s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 0 12px; color: var(--charcoal-soft); }

/* Quellen, Autor, Teilen */
.sources { margin: 2.5em 0; padding: 22px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); font-size: .88rem; }
.sources h2 { font-size: 1.3rem; }
.sources ol { padding-left: 1.3em; }
.sources li { margin: .5em 0; }
.sources__note { color: var(--muted); font-size: .8rem; margin: 1em 0 0; }
.author { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: var(--radius); background: var(--sand-soft); font-size: .9rem; margin: 2em 0; }
.author__mark { flex: none; width: 48px; height: 48px; border-radius: 50%; background: var(--white); color: var(--terracotta-ink); display: grid; place-items: center; }
.author__name { font-weight: 800; margin: 0 0 .2em; }
.author p:last-child { margin: 0; }
.sharebar { display: flex; flex-wrap: wrap; gap: 8px; margin: 2em 0; padding-top: 1.2em; border-top: 1px solid var(--line); }
.pins { margin: 3rem 0; padding: 28px; border-radius: var(--radius-l); background: var(--white); border: 1px solid var(--line); }
.pins__grid { display: grid; gap: 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 560px; }
.pin { margin: 0; }
.pin img { border-radius: var(--radius); box-shadow: var(--shadow-s); aspect-ratio: 2 / 3; object-fit: cover; }
.pin figcaption { margin-top: 10px; }
.related { padding-block: 24px 64px; }

/* Produktseite */
.product-hero { background: linear-gradient(180deg, var(--sand-soft), var(--ivory)); padding-block: 24px 48px; }
.product-hero__grid { display: grid; gap: 32px; align-items: center; }
@media (min-width: 900px) { .product-hero__grid { grid-template-columns: 1.1fr .9fr; gap: 56px; } }
.product-hero__img img { border-radius: var(--radius-l); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; }
.facts { list-style: none; padding: 0; display: grid; gap: .4em; }
.facts li { display: flex; gap: .5em; margin: 0; }
.facts .icon { color: var(--sage-ink); margin-top: .25em; }
.buybox { margin-top: 1.2rem; padding: 20px 22px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-s); display: grid; gap: .5rem; justify-items: start; }
.buybox__price { font-size: 2rem; font-weight: 800; margin: 0; line-height: 1; }
.buybox__note { font-size: .8rem; color: var(--muted); margin: 0 0 .4rem; }
.buybox--bottom { margin: 3rem 0 4rem; }
.product-body { padding-block: 32px; max-width: 900px; }
.incl-list { list-style: none; padding: 0; display: grid; gap: 12px; }
@media (min-width: 760px) { .incl-list { grid-template-columns: repeat(2, 1fr); } }
.incl { display: flex; gap: 12px; margin: 0; padding: 14px 16px; background: var(--white); border-radius: var(--radius-s); border: 1px solid var(--line); font-size: .92rem; }
.incl__icon { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--sage-soft); color: var(--sage-ink); display: grid; place-items: center; }
.ticks, .crosses { list-style: none; padding: 0; }
.ticks li, .crosses li { position: relative; padding-left: 1.7em; }
.ticks li::before { content: '✓'; position: absolute; left: 0; color: var(--sage-ink); font-weight: 800; }
.crosses li::before { content: '–'; position: absolute; left: .2em; color: var(--terracotta-ink); font-weight: 800; }
.newsletter { margin-top: 1rem; display: grid; gap: .5rem; width: 100%; }
.newsletter__row { display: flex; gap: 8px; flex-wrap: wrap; }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.contact-card__h { font-weight: 800; margin-bottom: .1em; }

/* Formulare */
input[type="text"], input[type="email"], input[type="search"], input[type="tel"], input[type="date"], input[type="number"], select, textarea {
  font: inherit; color: var(--charcoal); background: var(--white); border: 2px solid #cfc6b6; border-radius: var(--radius-s); padding: .6em .8em; min-height: 48px; width: 100%;
}
textarea { min-height: 96px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--charcoal); outline: 3px solid rgba(154, 90, 71, .25); outline-offset: 0; }
label { font-weight: 650; }
.search-form { display: flex; gap: 10px; flex-wrap: wrap; max-width: 720px; }
.search-form input { flex: 1 1 260px; }
.search-results { max-width: 820px; padding-bottom: 64px; }
.search-hit { padding: 16px 0; border-bottom: 1px solid var(--line); }
.search-hit a { font-weight: 700; font-size: 1.08rem; }
.search-hit p { margin: .2em 0 0; font-size: .9rem; color: var(--muted); }
.search-hit mark { background: var(--terracotta-soft); color: inherit; padding: 0 .1em; }

/* Footer */
.site-footer { background: var(--charcoal); color: #D9E0E3; margin-top: 0; }
.site-footer a { color: var(--white); text-decoration-color: var(--terracotta); }
.footer__cta { display: grid; gap: 18px; align-items: center; padding-block: 36px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
@media (min-width: 800px) { .footer__cta { grid-template-columns: 1fr auto; } }
.footer__cta .eyebrow { color: var(--sand); }
.footer__cta-title { font-family: var(--font-serif); font-size: 1.35rem; color: var(--white); margin-bottom: .3em; }
.footer__cta p { margin-bottom: .2em; }
.footer__grid { display: grid; gap: 28px; padding-block: 40px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.footer__brand p { font-size: .9rem; }
.footer__h { font-family: var(--font-sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--sand); margin: 1.2em 0 .6em; }
.footer__col ul { list-style: none; padding: 0; margin: 0; font-size: .92rem; }
.footer__col li { margin: .45em 0; }
.footer__col a { text-decoration: none; }
.footer__col a:hover { text-decoration: underline; }
.footer__legal { padding-block: 22px 32px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .8rem; color: #B8C3C8; }

/* ---------- Werkzeuge (gemeinsam) ---------- */
.tool-mount { min-height: 200px; }
.section--tool-page { padding-bottom: 48px; }
.tool-info { max-width: 860px; padding-bottom: 48px; }
.tool { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l); box-shadow: var(--shadow); overflow: hidden; }
.tool__progress { height: 8px; background: var(--sand-soft); }
.tool__bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--sage), var(--terracotta)); transition: width .35s ease; }
.tool__body { padding: clamp(20px, 4vw, 40px); }
.tool__step { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.tool__q { font-family: var(--font-serif); font-size: clamp(1.35rem, 1.1rem + 1vw, 1.8rem); margin: .2em 0 .3em; }
.tool__hint { color: var(--muted); font-size: .92rem; }
.tool__options { display: grid; gap: 10px; margin: 1.2rem 0; }
@media (min-width: 700px) { .tool__options--4 { grid-template-columns: repeat(2, 1fr); } }
.opt { display: flex; align-items: center; gap: 12px; width: 100%; text-align: left; font: inherit; font-weight: 600; padding: 14px 18px; min-height: 56px; border-radius: var(--radius); border: 2px solid var(--line); background: var(--ivory); color: var(--charcoal); cursor: pointer; transition: border-color .15s, background .15s, transform .1s; }
.opt:hover { border-color: var(--sage); background: var(--white); }
.opt[aria-pressed="true"] { border-color: var(--charcoal); background: var(--sage-soft); }
.opt__dot { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--sage-deep); display: grid; place-items: center; }
.opt[aria-pressed="true"] .opt__dot::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--charcoal); }
.tool__nav { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-top: 1rem; }
.tool__intro { display: grid; gap: 20px; align-items: center; }
@media (min-width: 800px) { .tool__intro { grid-template-columns: 1.2fr .8fr; } }
.tool__intro ul { list-style: none; padding: 0; }
.tool__intro li { display: flex; gap: .5em; }
.tool__intro .icon { color: var(--sage-ink); margin-top: .3em; }
.fade-in { animation: fadeIn .35s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* Eltern-Check Ergebnis */
.result__head { display: grid; gap: 24px; align-items: center; }
@media (min-width: 760px) { .result__head { grid-template-columns: 220px 1fr; } }
.ring { position: relative; width: 200px; height: 200px; margin-inline: auto; }
.ring svg { width: 200px; height: 200px; transform: rotate(-90deg); }
.ring__track { stroke: var(--sand-soft); }
.ring__value { stroke: var(--sage-deep); stroke-linecap: round; transition: stroke-dashoffset 1.2s cubic-bezier(.2, .8, .2, 1); }
.ring__label { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.ring__num { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; line-height: 1; }
.ring__txt { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.level { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: .8rem; font-weight: 800; background: var(--sage-soft); color: var(--sage-ink); }
.areas { display: grid; gap: 12px; margin: 1.5rem 0; }
@media (min-width: 760px) { .areas { grid-template-columns: 1fr 1fr; column-gap: 32px; } }
.area { display: grid; gap: 6px; }
.area__row { display: flex; justify-content: space-between; gap: 10px; font-size: .9rem; font-weight: 650; }
.area__row a { text-decoration: none; }
.area__row a:hover { text-decoration: underline; }
.area__track { height: 12px; border-radius: 999px; background: var(--sand-soft); overflow: hidden; }
.area__fill { height: 100%; width: 0; border-radius: 999px; transition: width 1s ease; }
.area__fill--low { background: var(--terracotta); }
.area__fill--mid { background: var(--sand); background: #C9A97A; }
.area__fill--high { background: var(--sage-deep); }
.next { counter-reset: next; list-style: none; padding: 0; display: grid; gap: 12px; }
.next li { counter-increment: next; margin: 0; padding: 16px 18px 16px 64px; position: relative; background: var(--ivory); border-radius: var(--radius); }
.next li::before { content: counter(next); position: absolute; left: 16px; top: 16px; width: 34px; height: 34px; border-radius: 50%; background: var(--terracotta-ink); color: var(--white); display: grid; place-items: center; font-weight: 800; }
.next strong { display: block; }
.next a { font-weight: 650; font-size: .9rem; }
.plan { display: grid; gap: 14px; margin: 1rem 0; }
@media (min-width: 900px) { .plan { grid-template-columns: repeat(4, 1fr); } }
.plan__week { background: var(--ivory); border-radius: var(--radius); padding: 16px; border-top: 5px solid var(--sage); }
.plan__week:nth-child(2) { border-top-color: var(--sand); }
.plan__week:nth-child(3) { border-top-color: var(--terracotta); }
.plan__week:nth-child(4) { border-top-color: var(--charcoal); }
.plan__week h4 { margin: 0 0 .5em; }
.plan__week ul { margin: 0; padding-left: 1.1em; font-size: .88rem; }
.result__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.result__block { margin-top: 2rem; }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); background: var(--charcoal); color: var(--white); padding: 12px 18px; border-radius: 999px; box-shadow: var(--shadow); z-index: 99; font-size: .9rem; }

/* Notfallblatt-Generator */
.nb { display: grid; gap: 24px; }
@media (min-width: 1100px) { .nb { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; } }
.nb__form { display: grid; gap: 14px; }
.nb__form fieldset { border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px 16px; margin: 0; display: grid; gap: 12px; }
.nb__form legend { font-weight: 800; padding: 0 .3em; font-family: var(--font-serif); font-size: 1.05rem; }
.nb__row { display: grid; gap: 12px; }
@media (min-width: 600px) { .nb__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 4px; }
.field small { color: var(--muted); font-weight: 400; font-size: .78rem; }
.nb__preview-wrap { position: sticky; top: 96px; }
.nb__sheet { background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 210 / 297; padding: 5%; font-size: clamp(7px, .95vw, 11.5px); line-height: 1.35; overflow: hidden; }
.sheet__head { display: flex; justify-content: space-between; align-items: center; border-bottom: 3px solid var(--terracotta-ink); padding-bottom: .6em; margin-bottom: .8em; }
.sheet__title { font-family: var(--font-serif); font-size: 2.3em; font-weight: 700; margin: 0; line-height: 1; }
.sheet__sos { background: var(--terracotta-ink); color: var(--white); border-radius: .6em; padding: .45em .9em; font-weight: 800; text-align: center; line-height: 1.2; }
.sheet__sos-big { display: block; font-size: 2em; line-height: 1; }
.sheet__sos-sub { display: block; font-size: .8em; font-weight: 650; color: var(--white); }
.sheet__grid { display: grid; grid-template-columns: 1fr 1fr; gap: .7em 1.2em; }
.sheet__sec { border: 1px solid var(--line); border-radius: .5em; padding: .5em .7em; break-inside: avoid; }
.sheet__sec--wide { grid-column: 1 / -1; }
.sheet__h { font-size: .82em; text-transform: uppercase; letter-spacing: .06em; font-weight: 800; color: var(--sage-ink); margin: 0 0 .3em; }
.sheet__kv { display: grid; grid-template-columns: 38% 1fr; gap: .15em .5em; margin: 0; }
.sheet__kv dt { color: var(--muted); }
.sheet__kv dd { margin: 0; font-weight: 650; min-height: 1.3em; border-bottom: 1px dotted #cfc6b6; white-space: pre-wrap; word-break: break-word; }
.sheet__foot { margin-top: .8em; font-size: .78em; color: var(--muted); display: flex; justify-content: space-between; gap: 1em; }
.nb__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; font-size: .88rem; background: var(--terracotta-soft); padding: 12px 14px; border-radius: var(--radius-s); }
.consent input { width: 22px; height: 22px; flex: none; margin-top: 2px; }

/* Aufgabenplaner */
.ap { display: grid; gap: 22px; }
.ap__people { display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end; }
.ap__person { display: flex; align-items: center; gap: 8px; padding: 6px 8px 6px 14px; border-radius: 999px; background: var(--ivory); border: 2px solid var(--line); font-weight: 650; }
.ap__swatch { width: 14px; height: 14px; border-radius: 50%; }
.ap__remove { border: 0; background: transparent; cursor: pointer; font-size: 1.2rem; line-height: 1; width: 32px; height: 32px; border-radius: 50%; color: var(--muted); }
.ap__remove:hover { background: var(--sand-soft); color: var(--charcoal); }
.ap__add { display: flex; gap: 8px; flex-wrap: wrap; align-items: flex-end; }
.ap__add .field { min-width: 200px; }
.ap__table td, .ap__table th { vertical-align: middle; }
.ap__table select { min-height: 42px; padding: .35em .5em; }
.ap__table input[type="number"] { width: 5.5em; min-height: 42px; padding: .35em .5em; }
.ap__load { display: grid; gap: 10px; }
.load-row { display: grid; grid-template-columns: 140px 1fr 90px; gap: 10px; align-items: center; font-size: .9rem; }
.load-bar { height: 16px; border-radius: 999px; background: var(--sand-soft); overflow: hidden; }
.load-bar span { display: block; height: 100%; border-radius: 999px; transition: width .6s ease; }
.fair { padding: 12px 16px; border-radius: var(--radius); font-weight: 650; }
.fair--ok { background: var(--sage-soft); color: var(--sage-ink); }
.fair--warn { background: var(--terracotta-soft); color: var(--terracotta-ink); }
.ap__presets { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 2px solid var(--line); background: var(--white); border-radius: 999px; padding: 6px 14px; font: inherit; font-size: .88rem; cursor: pointer; min-height: 40px; }
.chip:hover { border-color: var(--sage); }
.chip[aria-pressed="true"] { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }

/* ---------- Druck ---------- */
@media print {
  @page { size: A4; margin: 16mm 14mm; }
  html { font-size: 11pt; }
  body { background: #fff; }
  .site-header, .site-footer, .breadcrumbs, .article__aside, .sharebar, .pins, .related, .cta, .affiliate, .skip, .toc, .tool-privacy, .btn, .anchor, .checklist__actions, .home-hero__media, .subnav, .result__actions, .nb__form, .nb__actions, .ap__add, .ap__presets { display: none !important; }
  .container { max-width: none; padding: 0; }
  .article__grid { display: block; }
  .figure--hero { display: none; }
  a { text-decoration: none; }
  .prose a.ext::after { content: ' (' attr(href) ')'; font-size: .8em; color: #555; }
  .box, .checklist, .ymyl, .sources, .faq__item { break-inside: avoid; box-shadow: none; }
  details.faq__item > .faq__a { display: block; }
  .tool { box-shadow: none; border: 0; }
  .nb { display: block; }
  .nb__preview-wrap { position: static; }
  .nb__sheet { border: 0; box-shadow: none; padding: 0; aspect-ratio: auto; font-size: 10.5pt; }
  .nb__preview-wrap > .tool__step, .nb__preview-wrap > .small { display: none; }
  .sheet__kv dd { min-height: 1.9em; }
  .page-tool main > .page-hero, .page-tool .tool-info { display: none; }
  .table-wrap { border: 0; overflow: visible; }
  table { min-width: 0; }
}
.price--over { color: var(--terracotta-ink); font-weight: 800; }
