/* ==========================================================================
   KASTIKE: Bauhaus-modulares Informationsangebot
   Rasterprinzip: 4px Tuschelinien bilden das Layout. Keine Rundungen ausser
   den Kategorieformen. Anton nur fuer Wortmarke, Labels und Kennzahlen.
   ========================================================================== */

/* Schriften lokal ausgeliefert. Keine Verbindung zu Google-Servern,
   damit beim Seitenaufruf keine IP-Adresse an Dritte uebertragen wird. */
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/anton-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: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/anton-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;
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/hankengrotesk-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: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/hankengrotesk-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;
}

:root {
  --kst-ink: #121212;
  --kst-paper: #FAFAF7;
  --kst-ground: #D9D7D0;
  --kst-muted: #3D3D3A;
  --kst-soft: #55534C;
  --kst-faint: #77756E;

  --kst-blue: #1D3FBF;
  --kst-red: #D33A2C;
  --kst-yellow: #E8B921;
  --kst-yellow-ink: #6B5A10;
  --kst-green: #1E8A5E;

  --kst-rule: 4px solid #121212;
  --kst-rule-thin: 2px solid #121212;
  --kst-pad: 44px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--kst-ground);
  color: var(--kst-ink);
  font-family: 'Hanken Grotesk', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--kst-blue); }

.kst-shell {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  background: var(--kst-paper);
  border-left: var(--kst-rule);
  border-right: var(--kst-rule);
}

/* --------------------------------------------------------- Kategorieformen */
.kst-mark { flex: none; display: inline-block; }
.kst-mark-vorsorge  { width: 12px; height: 12px; background: var(--kst-blue); border-radius: 50%; }
.kst-mark-kosten    { width: 12px; height: 12px; background: var(--kst-red); }
.kst-mark-recht     { width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 12px solid var(--kst-yellow); }
.kst-mark-haushalt  { width: 13px; height: 13px; background: var(--kst-green); border-radius: 50% 50% 0 0; }

.kst-mark-lg.kst-mark-vorsorge { width: 40px; height: 40px; }
.kst-mark-lg.kst-mark-kosten   { width: 40px; height: 40px; }
.kst-mark-lg.kst-mark-recht    { border-left-width: 22px; border-right-width: 22px; border-bottom-width: 38px; }
.kst-mark-lg.kst-mark-haushalt { width: 44px; height: 22px; border-radius: 22px 22px 0 0; }

.kst-cat {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 700; letter-spacing: 0.02em;
}
.kst-cat-vorsorge { color: var(--kst-blue); }
.kst-cat-kosten   { color: var(--kst-red); }
.kst-cat-recht    { color: #8A6E08; }
.kst-cat-haushalt { color: var(--kst-green); }


/* Rasterkinder duerfen unter ihre Inhaltsbreite schrumpfen. Ohne diese Regel
   setzen lange deutsche Komposita die Mindestbreite der Spalte. */
.kst-hero > *, .kst-cards > *, .kst-split > *, .kst-grid > *,
.kst-nl > *, .kst-confirm > *, .kst-pagehead > *, .kst-list > article > *,
.kst-article > *, .kst-steps > * { min-width: 0; }

.kst-hero-title, .kst-title, .kst-card-title, .kst-list-title, .kst-tile-title,
.kst-split-title, .kst-nl-head, .kst-body h2, .kst-body h3, .kst-legal h1,
.kst-pagehead h1, .kst-confirm h1 { overflow-wrap: break-word; }

/* Grosse Anton-Zeilen nicht trennen: Silbentrennung wirkt dort wie ein Fehler.
   overflow-wrap oben faengt uebermaessig lange Komposita weiterhin ab. */
.kst-hero-title, .kst-title, .kst-pagehead h1, .kst-confirm h1, .kst-legal h1,
.kst-nl-head, .kst-figure-num, .kst-keyfig-num { hyphens: manual; }

/* Kleinere Ueberschriften duerfen trennen, das haelt die Spalten ruhig. */
.kst-card-title, .kst-list-title, .kst-tile-title, .kst-split-title { hyphens: auto; }

/* ------------------------------------------------------------- Hinweisband */
.kst-disclosure {
  background: var(--kst-ink); color: var(--kst-paper);
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
}
.kst-disclosure-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 9px var(--kst-pad); flex-wrap: wrap;
}
.kst-disclosure b { font-weight: 700; }

/* ---------------------------------------------------------------- Masthead */
.kst-masthead {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 22px var(--kst-pad); border-bottom: var(--kst-rule);
}
.kst-brand { display: flex; align-items: center; gap: 13px; }
.kst-brand-mark { width: 26px; height: 26px; background: var(--kst-blue); flex: none; }
.kst-brand-name {
  font-family: 'Anton', 'Hanken Grotesk', sans-serif; font-weight: 400;
  font-size: 27px; letter-spacing: 0.02em; line-height: 1;
}
.kst-brand-tag {
  font-size: 12.5px; font-weight: 600; color: var(--kst-faint);
  letter-spacing: 0.06em; text-transform: uppercase; margin-top: 3px;
}
.kst-brand a:hover { color: inherit; }

.kst-nav { display: flex; gap: 24px; font-size: 15.5px; font-weight: 600; align-items: center; }
.kst-nav a { display: inline-flex; align-items: center; gap: 8px; padding: 4px 0; border-bottom: 3px solid transparent; }
.kst-nav a.active { border-bottom-color: var(--kst-ink); }
.kst-nav a.kst-nav-pill {
  background: var(--kst-ink); color: var(--kst-paper) !important;
  padding: 9px 18px; font-weight: 700; border-bottom: 3px solid var(--kst-ink) !important;
}
.kst-nav a.kst-nav-pill:hover { background: var(--kst-blue); border-bottom-color: var(--kst-blue) !important; color: var(--kst-paper) !important; }
.kst-nav-pill img { width: 15px; height: 15px; flex: none; }

.kst-navtoggle { display: none; }

/* ------------------------------------------------------------------- Bilder */
.kst-fig { border: var(--kst-rule); background: var(--kst-ground); overflow: hidden; }
.kst-fig img { width: 100%; object-fit: cover; }
.kst-fig-cap {
  font-size: 13.5px; line-height: 1.45; color: var(--kst-faint);
  padding: 9px 2px 0; font-weight: 500;
}

/* ------------------------------------------------------------------- Hero */
.kst-hero { display: grid; grid-template-columns: 1fr 1fr; border-bottom: var(--kst-rule); }
.kst-hero-text {
  padding: 46px var(--kst-pad) 48px; border-right: var(--kst-rule);
  display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
}
.kst-hero-title {
  font-family: 'Anton', 'Hanken Grotesk', sans-serif; font-weight: 400;
  font-size: clamp(34px, 3.5vw, 50px); line-height: 1.06; letter-spacing: 0.004em;
  margin-top: 20px; text-wrap: pretty;
}
.kst-hero-stand { font-size: 18px; line-height: 1.55; color: var(--kst-muted); max-width: 32em; }
.kst-hero-meta { margin-top: 16px; font-size: 14.5px; font-weight: 600; color: var(--kst-faint); }
.kst-hero-img { position: relative; min-height: 380px; background: var(--kst-ground); }
.kst-hero-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.kst-hero-dot {
  position: absolute; right: 30px; bottom: 30px; width: 104px; height: 104px;
  border-radius: 50%; background: var(--kst-yellow); pointer-events: none;
}

/* ------------------------------------------------------------- Kartenreihe */
.kst-cards { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: var(--kst-rule); }
.kst-card { padding: 30px 34px 36px; border-right: var(--kst-rule); display: block; }
.kst-card:last-child { border-right: 0; }
.kst-card:hover { background: #F3F2ED; color: inherit; }
.kst-card-label { margin-top: 20px; }
.kst-card-title {
  margin-top: 9px; font-size: 25px; font-weight: 700; line-height: 1.14;
  letter-spacing: -0.02em; text-wrap: pretty;
}
.kst-card-ex { margin-top: 11px; font-size: 15.5px; line-height: 1.55; color: var(--kst-soft); }

/* ------------------------------------------------------------- Kennzahlblock */
.kst-split { display: grid; grid-template-columns: 440px 1fr; border-bottom: var(--kst-rule); }
.kst-figure-panel {
  background: var(--kst-blue); color: var(--kst-paper);
  padding: 38px 40px 42px; border-right: var(--kst-rule);
}
.kst-figure-label { font-size: 14.5px; font-weight: 700; color: #9FB0EA; letter-spacing: 0.04em; text-transform: uppercase; }
.kst-figure-num {
  margin-top: 14px; font-family: 'Anton', 'Hanken Grotesk', sans-serif;
  font-size: clamp(44px, 4.6vw, 66px); line-height: 1; letter-spacing: 0.01em;
}
.kst-figure-sub { margin-top: 13px; font-size: 16.5px; line-height: 1.55; color: #C9D2F2; }
.kst-figure-src { margin-top: 16px; font-size: 13px; line-height: 1.5; color: #9FB0EA; }
.kst-figure-src a { text-decoration: underline; }
.kst-figure-src a:hover { color: #FFF; }

.kst-split-body { display: flex; flex-direction: column; justify-content: center; padding: 34px 40px; }
.kst-split-title {
  margin-top: 12px; font-size: clamp(22px, 2.2vw, 29px); font-weight: 700;
  line-height: 1.14; letter-spacing: -0.022em; max-width: 22em; text-wrap: pretty;
}
.kst-split-ex { margin-top: 11px; font-size: 16px; line-height: 1.55; color: var(--kst-soft); max-width: 34em; }
.kst-split-meta { margin-top: 12px; font-size: 14.5px; font-weight: 600; color: var(--kst-faint); }

/* --------------------------------------------------------------- Blockliste */
.kst-section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 26px var(--kst-pad) 22px; border-bottom: var(--kst-rule-thin);
}
.kst-section-title {
  font-family: 'Anton', 'Hanken Grotesk', sans-serif; font-size: 26px;
  text-transform: uppercase; letter-spacing: 0.02em; line-height: 1;
}
.kst-section-note { font-size: 14px; font-weight: 600; color: var(--kst-faint); }

.kst-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.kst-grid > * { border-right: var(--kst-rule); border-bottom: var(--kst-rule); padding: 26px 30px 30px; }
.kst-grid > *:nth-child(3n) { border-right: 0; }
.kst-tile:hover { background: #F3F2ED; color: inherit; }
.kst-tile-img { border: var(--kst-rule-thin); margin-bottom: 16px; background: var(--kst-ground); }
.kst-tile-img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.kst-tile-title { margin-top: 9px; font-size: 20px; font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; text-wrap: pretty; }
.kst-tile-meta { margin-top: 9px; font-size: 13.5px; font-weight: 600; color: var(--kst-faint); }

/* ------------------------------------------------------------- Kategorieseite */
.kst-pagehead { padding: 40px var(--kst-pad) 34px; border-bottom: var(--kst-rule); display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: end; }
.kst-pagehead h1 {
  font-family: 'Anton', 'Hanken Grotesk', sans-serif; font-weight: 400;
  font-size: clamp(38px, 4.4vw, 60px); line-height: 1.02; text-transform: uppercase; letter-spacing: 0.01em;
  margin-top: 14px;
}
.kst-pagehead p { font-size: 17px; line-height: 1.6; color: var(--kst-muted); }

.kst-crumb { padding: 14px var(--kst-pad); font-size: 13.5px; font-weight: 600; color: var(--kst-faint); border-bottom: var(--kst-rule-thin); }
.kst-crumb a:hover { color: var(--kst-blue); }

.kst-list > article {
  display: grid; grid-template-columns: 300px 1fr; gap: 30px;
  padding: 28px var(--kst-pad); border-bottom: var(--kst-rule-thin); align-items: start;
}
.kst-list > article:last-child { border-bottom: var(--kst-rule); }
.kst-list-img { border: var(--kst-rule-thin); background: var(--kst-ground); }
.kst-list-img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.kst-list-title { margin-top: 9px; font-size: 24px; font-weight: 700; line-height: 1.18; letter-spacing: -0.018em; text-wrap: pretty; }
.kst-list-ex { margin-top: 10px; font-size: 16.5px; line-height: 1.58; color: var(--kst-soft); max-width: 40em; }
.kst-list-meta { margin-top: 9px; font-size: 13.5px; font-weight: 600; color: var(--kst-faint); }

/* ------------------------------------------------------------------ Artikel */
.kst-titleblock { padding: 38px var(--kst-pad) 32px; border-bottom: var(--kst-rule); }
.kst-title {
  font-family: 'Anton', 'Hanken Grotesk', sans-serif; font-weight: 400;
  font-size: clamp(32px, 3.8vw, 54px); line-height: 1.05; letter-spacing: 0.004em;
  margin-top: 16px; max-width: 19em; text-wrap: pretty;
}
.kst-subtitle { margin-top: 16px; font-size: 19px; line-height: 1.55; color: var(--kst-muted); max-width: 40em; font-weight: 500; }
.kst-title-meta { margin-top: 16px; font-size: 14.5px; font-weight: 600; color: var(--kst-faint); }

.kst-article { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 54px; padding: 40px var(--kst-pad) 46px; }
.kst-body { max-width: 680px; min-width: 0; }
.kst-body p { margin-top: 17px; font-size: 17.5px; line-height: 1.68; color: var(--kst-muted); }
.kst-body > p:first-child { margin-top: 0; }
.kst-stand { font-size: 20px !important; line-height: 1.6 !important; font-weight: 500; color: var(--kst-ink) !important; }
.kst-body h2 {
  margin-top: 34px; font-size: 25px; font-weight: 700; line-height: 1.2;
  letter-spacing: -0.022em; padding-top: 16px; border-top: var(--kst-rule-thin);
}
.kst-body h3 { margin-top: 24px; font-size: 19.5px; font-weight: 700; letter-spacing: -0.015em; }
.kst-body ul, .kst-body ol { margin-top: 14px; padding-left: 22px; }
.kst-body li { margin-top: 8px; font-size: 17.5px; line-height: 1.6; color: var(--kst-muted); }
.kst-body li::marker { color: var(--kst-blue); font-weight: 700; }
.kst-body a { text-decoration: underline; text-underline-offset: 2px; }
.kst-body strong { color: var(--kst-ink); font-weight: 700; }
.kst-body img { border: var(--kst-rule); margin-top: 26px; }

.kst-note {
  margin-top: 28px; border: var(--kst-rule); padding: 22px 26px;
}
.kst-note-head { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 700; color: var(--kst-red); letter-spacing: 0.03em; text-transform: uppercase; }
.kst-note-head img { width: 18px; height: 18px; flex: none; }
.kst-note p { margin-top: 10px; font-size: 17px; line-height: 1.55; color: var(--kst-ink); }

.kst-keyfig { margin-top: 30px; background: var(--kst-blue); color: var(--kst-paper); padding: 28px 30px; }
.kst-keyfig-num { font-family: 'Anton', 'Hanken Grotesk', sans-serif; font-size: clamp(38px, 4vw, 52px); line-height: 1; }
.kst-keyfig p { margin-top: 12px; font-size: 16.5px; line-height: 1.55; color: #C9D2F2; }
.kst-keyfig a { color: #FFF; }

.kst-steps { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); border: var(--kst-rule); }
.kst-step { padding: 22px 22px 24px; border-right: var(--kst-rule); }
.kst-step:last-child { border-right: 0; }
.kst-step-n { font-family: 'Anton', 'Hanken Grotesk', sans-serif; font-size: 34px; line-height: 1; }
.kst-step h3 { margin-top: 10px; font-size: 18px; font-weight: 700; letter-spacing: -0.015em; }
.kst-step p { margin-top: 8px; font-size: 15.5px; line-height: 1.5; color: var(--kst-soft); }

.kst-tablewrap { margin-top: 28px; overflow-x: auto; border: var(--kst-rule); }
.kst-table { width: 100%; border-collapse: collapse; font-size: 16px; min-width: 460px; }
.kst-table th, .kst-table td { padding: 12px 16px; text-align: left; border-bottom: var(--kst-rule-thin); }
.kst-table thead th { background: var(--kst-ink); color: var(--kst-paper); font-weight: 700; font-size: 14.5px; letter-spacing: 0.03em; text-transform: uppercase; border-bottom: 0; }
.kst-table tbody tr:last-child td { border-bottom: 0; }
.kst-table td.num, .kst-table th.num { text-align: right; font-variant-numeric: tabular-nums; }
.kst-table caption { caption-side: bottom; padding: 10px 16px; font-size: 13.5px; line-height: 1.5; color: var(--kst-faint); text-align: left; border-top: var(--kst-rule-thin); }

.kst-checklist { margin-top: 28px; border: var(--kst-rule); }
.kst-checklist-head { background: var(--kst-ink); color: var(--kst-paper); padding: 12px 20px; font-size: 14.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.kst-checklist ol { margin: 0; padding: 6px 0; list-style: none; }
.kst-checklist li { display: grid; grid-template-columns: 34px 1fr; gap: 10px; padding: 11px 20px; margin: 0; border-bottom: var(--kst-rule-thin); color: var(--kst-ink); font-size: 16.5px; line-height: 1.5; }
.kst-checklist li:last-child { border-bottom: 0; }
.kst-checklist li b { font-family: 'Anton', 'Hanken Grotesk', sans-serif; font-weight: 400; font-size: 21px; line-height: 1.3; color: var(--kst-blue); }

.kst-sources { margin-top: 32px; border-top: var(--kst-rule); padding-top: 18px; }
.kst-sources h2 { border: 0; padding: 0; margin: 0 0 12px; font-size: 18px; letter-spacing: 0.04em; text-transform: uppercase; font-family: 'Anton', 'Hanken Grotesk', sans-serif; font-weight: 400; }
.kst-sources ul { list-style: none; padding: 0; margin: 0; }
.kst-sources li { font-size: 15px; line-height: 1.5; color: var(--kst-soft); padding: 9px 0; border-bottom: 1px solid #DCDAD3; margin: 0; }
.kst-sources li:last-child { border-bottom: 0; }

.kst-disclaimer {
  margin-top: 30px; border-left: var(--kst-rule); padding: 4px 0 4px 18px;
  font-size: 14.5px !important; line-height: 1.6 !important; color: var(--kst-faint) !important;
}

/* -------------------------------------------------------------------- Aside */
.kst-aside { min-width: 0; }
.kst-aside-block { border-top: var(--kst-rule); padding-top: 14px; margin-bottom: 28px; }
.kst-aside-title { font-size: 14.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.kst-aside-list { display: flex; flex-direction: column; gap: 13px; margin-top: 14px; }
.kst-aside-list a { display: flex; gap: 11px; align-items: flex-start; }
.kst-aside-list .kst-mark { margin-top: 5px; }
.kst-aside-list span.t { font-size: 16.5px; font-weight: 600; line-height: 1.3; }
.kst-aside-fact { margin-top: 14px; border: var(--kst-rule-thin); padding: 16px 18px; font-size: 15.5px; line-height: 1.55; color: var(--kst-soft); }
.kst-aside-fact b { display: block; color: var(--kst-ink); font-size: 16px; margin-bottom: 6px; }
.kst-aside-pull {
  margin-top: 14px; font-size: 19px; line-height: 1.4; font-weight: 700;
  letter-spacing: -0.015em; border-left: var(--kst-rule); padding-left: 16px;
}

/* --------------------------------------------------------------- Newsletter */
.kst-nl { border-top: var(--kst-rule); display: grid; grid-template-columns: 1fr 480px; }
.kst-nl-text { padding: 40px var(--kst-pad) 44px; border-right: var(--kst-rule); }
.kst-nl-shapes { display: flex; gap: 12px; align-items: flex-end; }
.kst-nl-head {
  margin-top: 20px; font-family: 'Anton', 'Hanken Grotesk', sans-serif; font-weight: 400;
  font-size: clamp(28px, 3vw, 40px); line-height: 1.06; max-width: 15em; text-wrap: pretty;
}
.kst-nl-sub { margin-top: 14px; font-size: 16.5px; line-height: 1.55; color: var(--kst-muted); max-width: 34em; }
.kst-nl-points { margin-top: 16px; list-style: none; }
.kst-nl-points li { font-size: 15.5px; line-height: 1.5; color: var(--kst-soft); padding-left: 20px; position: relative; margin-top: 7px; }
.kst-nl-points li::before { content: ""; position: absolute; left: 0; top: 8px; width: 9px; height: 9px; background: var(--kst-ink); }

.kst-nl-form { background: var(--kst-yellow); padding: 38px var(--kst-pad); display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.kst-nl-form label.f { font-size: 13.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--kst-ink); }
.kst-nl-form input[type="text"], .kst-nl-form input[type="email"] {
  font-family: inherit; font-size: 16px; padding: 14px 16px;
  border: 3px solid var(--kst-ink); background: var(--kst-paper); color: var(--kst-ink); width: 100%;
}
.kst-nl-form input:focus { outline: 3px solid var(--kst-blue); outline-offset: 2px; }
.kst-nl-consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: 13.5px; line-height: 1.45; color: #4A3F0B; margin-top: 4px; }
.kst-nl-consent input { width: 20px; height: 20px; margin-top: 1px; accent-color: var(--kst-ink); }
.kst-nl-consent a { text-decoration: underline; }
.kst-nl-btn {
  font-family: inherit; font-size: 16px; font-weight: 700; padding: 15px;
  border: 3px solid var(--kst-ink); background: var(--kst-ink); color: var(--kst-paper);
  cursor: pointer; margin-top: 6px; width: 100%;
}
.kst-nl-btn:hover { background: var(--kst-blue); border-color: var(--kst-blue); }
.kst-nl-btn span { display: inline-flex; align-items: center; justify-content: center; gap: 9px; }
.kst-nl-btn img { width: 17px; height: 17px; flex: none; }
.kst-nl-fine { font-size: 12.5px; line-height: 1.5; color: var(--kst-yellow-ink); margin-top: 4px; }
.kst-nl-msg { font-size: 14px; font-weight: 700; color: #8E1D12; min-height: 1px; }
.kst-nl-hp { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }

/* CTA-Block im Artikel, fuehrt zum Newsletter auf derselben Seite */
.kst-cta { margin-top: 34px; border: var(--kst-rule); }
.kst-cta-inner { padding: 26px 28px; }
.kst-cta h2 { border: 0; padding: 0; margin: 0; font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.kst-cta p { margin-top: 10px; font-size: 16.5px; line-height: 1.55; color: var(--kst-soft); }
.kst-cta-btn {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 16px;
  background: var(--kst-ink); color: var(--kst-paper) !important; padding: 13px 22px;
  font-weight: 700; font-size: 16px; border: 3px solid var(--kst-ink);
}
.kst-cta-btn:hover { background: var(--kst-blue); border-color: var(--kst-blue); }
.kst-cta-btn img { width: 16px; height: 16px; flex: none; }
.kst-cta-fine { padding: 14px 28px; border-top: var(--kst-rule-thin); font-size: 13.5px; line-height: 1.55; color: var(--kst-faint); background: #F3F2ED; }


/* Icons in Buttons sind keine Inhaltsbilder: kein Rahmen, kein Abstand.
   Ohne diese Regel erben sie ".kst-body img" und rutschen aus dem Button. */
.kst-cta-btn img, .kst-nl-btn img, .kst-nav a img, .kst-footer img {
  border: 0; margin: 0; display: block;
}
/* Buttons werden nicht unterstrichen, sonst lesen sie sich wie ein Download-Link. */
.kst-body a.kst-cta-btn, a.kst-cta-btn { text-decoration: none; }

/* ------------------------------------------------------------------ Footer */
.kst-footer { border-top: var(--kst-rule); padding: 24px var(--kst-pad) 30px; }
.kst-footer-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 14px; }
.kst-footer-brand { display: flex; align-items: center; gap: 10px; }
.kst-footer-brand span.n { font-family: 'Anton', 'Hanken Grotesk', sans-serif; font-size: 17px; letter-spacing: 0.02em; }
.kst-footer-links { display: flex; gap: 20px; font-weight: 600; flex-wrap: wrap; }
.kst-footer-legal { margin-top: 16px; padding-top: 14px; border-top: var(--kst-rule-thin); font-size: 13px; line-height: 1.6; color: var(--kst-faint); max-width: 78em; }

/* -------------------------------------------------------------- Cookiebanner */
.kst-cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none;
  background: var(--kst-paper); border-top: var(--kst-rule);
}
.kst-cookie.show { display: block; }
.kst-cookie-inner {
  max-width: 1340px; margin: 0 auto; padding: 18px var(--kst-pad);
  display: flex; gap: 22px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.kst-cookie-text { font-size: 14.5px; line-height: 1.5; max-width: 62em; color: var(--kst-muted); }
.kst-cookie-text a { text-decoration: underline; }
.kst-cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.kst-cookie-btns button {
  font-family: inherit; font-size: 14.5px; font-weight: 700; padding: 11px 20px; cursor: pointer;
  border: 3px solid var(--kst-ink); background: var(--kst-paper); color: var(--kst-ink);
}
.kst-cookie-btns button.primary { background: var(--kst-ink); color: var(--kst-paper); }
.kst-cookie-btns button:hover { background: var(--kst-blue); border-color: var(--kst-blue); color: var(--kst-paper); }

/* ------------------------------------------------------------ Rechtsseiten */
.kst-legal { padding: 40px var(--kst-pad) 50px; max-width: 860px; }
.kst-legal h1 {
  font-family: 'Anton', 'Hanken Grotesk', sans-serif; font-weight: 400;
  font-size: clamp(32px, 3.6vw, 46px); line-height: 1.05; text-transform: uppercase; letter-spacing: 0.01em;
}
.kst-legal h2 { margin-top: 30px; padding-top: 14px; border-top: var(--kst-rule-thin); font-size: 21px; font-weight: 700; letter-spacing: -0.015em; }
.kst-legal h3 { margin-top: 20px; font-size: 17.5px; font-weight: 700; }
.kst-legal p { margin-top: 12px; font-size: 16.5px; line-height: 1.65; color: var(--kst-muted); }
.kst-legal ul { margin-top: 12px; padding-left: 22px; }
.kst-legal li { margin-top: 7px; font-size: 16.5px; line-height: 1.6; color: var(--kst-muted); }
.kst-legal a { text-decoration: underline; }
.kst-legal-box { margin-top: 14px; border: var(--kst-rule); padding: 18px 22px; font-size: 16.5px; line-height: 1.6; }
.kst-legal-back { display: inline-block; margin-bottom: 22px; font-size: 14.5px; font-weight: 700; }

/* ------------------------------------------------------- Bestaetigungsseite */
.kst-confirm { display: grid; grid-template-columns: 1fr 420px; border-bottom: var(--kst-rule); }
.kst-confirm-text { padding: 46px var(--kst-pad) 50px; border-right: var(--kst-rule); }
.kst-confirm h1 {
  font-family: 'Anton', 'Hanken Grotesk', sans-serif; font-weight: 400; margin-top: 20px;
  font-size: clamp(34px, 3.8vw, 52px); line-height: 1.04; text-transform: uppercase; letter-spacing: 0.01em;
}
.kst-confirm p { margin-top: 16px; font-size: 17.5px; line-height: 1.65; color: var(--kst-muted); max-width: 40em; }
.kst-confirm-mail { display: inline-block; margin-top: 16px; border: var(--kst-rule); padding: 12px 18px; font-size: 17px; font-weight: 700; word-break: break-all; }
.kst-confirm-side { background: var(--kst-yellow); padding: 46px var(--kst-pad); }
.kst-confirm-side h2 { font-family: 'Anton', 'Hanken Grotesk', sans-serif; font-weight: 400; font-size: 24px; text-transform: uppercase; letter-spacing: 0.02em; }
.kst-confirm-side ol { margin-top: 16px; padding-left: 20px; }
.kst-confirm-side li { margin-top: 10px; font-size: 16px; line-height: 1.5; color: #3A310A; }
.kst-error { margin-top: 20px; border: var(--kst-rule); border-color: var(--kst-red); padding: 16px 20px; font-size: 16.5px; line-height: 1.55; color: #8E1D12; font-weight: 600; }

/* ------------------------------------------------------------------ 404-Fall */
.kst-narrow { padding: 60px var(--kst-pad) 70px; max-width: 720px; }

/* ============================================================== Responsive */
@media (max-width: 1180px) {
  :root { --kst-pad: 34px; }
  .kst-article { grid-template-columns: minmax(0, 1fr) 300px; gap: 38px; }
  .kst-split { grid-template-columns: 360px 1fr; }
  .kst-nl { grid-template-columns: 1fr 420px; }
}

@media (max-width: 960px) {
  body { font-size: 17px; }
  .kst-shell { border-left: 0; border-right: 0; }
  .kst-masthead { flex-direction: column; align-items: flex-start; gap: 16px; }
  .kst-nav { flex-wrap: wrap; gap: 16px 20px; width: 100%; }
  .kst-hero { grid-template-columns: 1fr; }
  .kst-hero-text { border-right: 0; border-bottom: var(--kst-rule); padding-bottom: 34px; }
  .kst-hero-img { min-height: 0; width: 100%; aspect-ratio: 16 / 10; }
  .kst-hero-dot { width: 76px; height: 76px; right: 20px; bottom: 20px; }
  .kst-cards { grid-template-columns: 1fr; }
  .kst-card { border-right: 0; border-bottom: var(--kst-rule); }
  .kst-card:last-child { border-bottom: 0; }
  .kst-split { grid-template-columns: 1fr; }
  .kst-figure-panel { border-right: 0; border-bottom: var(--kst-rule); }
  .kst-grid { grid-template-columns: repeat(2, 1fr); }
  .kst-grid > *:nth-child(3n) { border-right: var(--kst-rule); }
  .kst-grid > *:nth-child(2n) { border-right: 0; }
  .kst-pagehead { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .kst-article { grid-template-columns: 1fr; gap: 34px; }
  .kst-aside { max-width: 680px; }
  .kst-nl { grid-template-columns: 1fr; }
  .kst-nl-text { border-right: 0; border-bottom: var(--kst-rule); }
  .kst-confirm { grid-template-columns: 1fr; }
  .kst-confirm-text { border-right: 0; border-bottom: var(--kst-rule); }
  .kst-steps { grid-template-columns: 1fr; }
  .kst-step { border-right: 0; border-bottom: var(--kst-rule); }
  .kst-step:last-child { border-bottom: 0; }
}

@media (max-width: 660px) {
  :root { --kst-pad: 20px; }
  body { font-size: 16.5px; }
  .kst-disclosure-inner { font-size: 12px; gap: 4px; }
  .kst-brand-name { font-size: 24px; }
  .kst-nav { font-size: 15px; gap: 12px 16px; }
  .kst-nav a.kst-nav-pill { width: 100%; justify-content: center; margin-top: 2px; }
  .kst-hero-text { padding-top: 30px; }
  .kst-hero-title { margin-top: 14px; }
  .kst-grid { grid-template-columns: 1fr; }
  .kst-grid > * { border-right: 0 !important; padding: 22px var(--kst-pad); }
  .kst-list > article { grid-template-columns: 1fr; gap: 16px; }
  .kst-body p, .kst-body li { font-size: 17px; }
  .kst-body h2 { font-size: 22px; margin-top: 28px; }
  .kst-note, .kst-cta-inner { padding: 18px 20px; }
  .kst-keyfig { padding: 22px 20px; }
  .kst-table { font-size: 15px; }
  .kst-table th, .kst-table td { padding: 10px 12px; }
  .kst-checklist li { grid-template-columns: 28px 1fr; padding: 10px 16px; font-size: 16px; }
  .kst-footer-top { flex-direction: column; align-items: flex-start; gap: 14px; }
  .kst-cookie-inner { padding: 14px var(--kst-pad); gap: 14px; }
  .kst-cookie-btns { width: 100%; }
  .kst-cookie-btns button { flex: 1; }
}

@media print {
  .kst-cookie, .kst-nl, .kst-nav { display: none !important; }
}
