/* Arztpraxis Baden - Dr. Essig
   Farben stammen aus dem eigenen Signet: Lunge #0A8CAA, Herz #F52D2D.
   Beide sind fuer Text zu hell, deshalb je eine abgedunkelte Textfassung.
   Rot ist auf einer Herz- und Lungenseite kein Schmuck, sondern ein Signal:
   es steht nur im Signet und dort, wo wirklich ein Notfall gemeint ist. */

:root {
  --marke:        #0A8CAA;   /* Flaechen, Signet */
  --marke-text:   #076278;   /* Text und Links auf Weiss */
  --marke-tief:   #054B5D;   /* dunkle Baender */
  --marke-hauch:  #EAF5F8;   /* ganz leichte Tinte */
  --signal:       #D8232A;   /* Notfall, Herz im Signet */
  --signal-hauch: #FDF0F0;

  --papier:     #FFFFFF;
  --sand:       #F8F4EE;     /* warme statt kalte Zwischenflaeche */
  --sand-tief:  #EFE7DA;
  --linie:      #DFD8CD;
  --linie-fein: #ECE6DC;

  --tinte:       #1B2429;
  --tinte-leise: #4C5A61;

  --schrift-text: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --schrift-titel: "Source Serif 4", Georgia, "Times New Roman", serif;

  --breite: 74rem;
  --mass: 64ch;
  --rund: 10px;
  --rund-gross: 16px;
  --schatten: 0 1px 2px rgba(27, 36, 41, .06), 0 8px 24px -12px rgba(27, 36, 41, .18);
  --kopf-hoehe: 60px;
}

@media (min-width: 56rem) { :root { --kopf-hoehe: 76px; } }

/* -------------------------------------------------------------- Schriften */
@font-face {
  font-family: "Source Sans 3";
  src: url("/schriften/sourcesans3-latin.woff2") format("woff2");
  font-weight: 400 700; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
                 U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("/schriften/sourceserif4-latin.woff2") format("woff2");
  font-weight: 600 700; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
                 U+2215, U+FEFF, U+FFFD;
}

/* ----------------------------------------------------------------- Grund */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* klebender Kopf + Notfallband: Sprungziele duerfen nicht darunter liegen */
  scroll-padding-top: calc(var(--kopf-hoehe) + 1.5rem);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--papier);
  color: var(--tinte);
  font-family: var(--schrift-text);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  /* Fachwoerter wie "Ganzkoerper-Lungenfunktionspruefung" sind laenger als
     ein 320-px-Schirm. Ohne diese Zeile schiebt ein einziges Wort die ganze
     Seite waagrecht auf. */
  overflow-wrap: break-word;
}
/* Silbentrennung nur auf schmalen Schirmen: dort verhindert sie Loecher im
   Flattersatz. In breiten Spalten erzeugt sie nur unnoetig viele Trennstriche. */
@media (max-width: 48rem) { body { hyphens: auto; } }
@media (min-width: 48rem) { body { font-size: 1.125rem; } }

img, svg, picture { max-width: 100%; }
img { height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--schrift-titel);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.005em;
  text-wrap: balance;
  overflow-wrap: break-word;
  margin: 0 0 .6em;
  color: var(--tinte);
}
h1 { font-size: clamp(1.95rem, 1.35rem + 2.6vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.1rem); }
h3 { font-size: clamp(1.2rem, 1.06rem + .6vw, 1.4rem); }
h4 { font-size: 1.0625rem; font-family: var(--schrift-text); font-weight: 700; }

p, ul, ol, dl { margin: 0 0 1.1em; }
li { margin-bottom: .35em; }
li:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

a { color: var(--marke-text); text-underline-offset: .18em; text-decoration-thickness: .07em; }
a:hover { color: var(--marke-tief); }

:focus-visible {
  outline: 3px solid var(--marke);
  outline-offset: 2px;
  border-radius: 3px;
}

.wrap { width: min(100% - 2rem, var(--breite)); margin-inline: auto; }
@media (min-width: 48rem) { .wrap { width: min(100% - 4rem, var(--breite)); } }

.mass { max-width: var(--mass); }
.nur-lesbar {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.sprungmarke {
  position: absolute; left: .5rem; top: -4rem; z-index: 100;
  background: var(--marke-tief); color: #fff; padding: .7rem 1.1rem;
  border-radius: var(--rund); text-decoration: none; font-weight: 600;
  transition: top .12s ease;
}
.sprungmarke:focus { top: .5rem; color: #fff; }

/* ------------------------------------------------------------------- Kopf */
.kopf {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--linie-fein);
}
.kopf__zeile {
  display: flex; align-items: center; gap: .75rem;
  min-height: var(--kopf-hoehe);
}
.marke {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none; color: var(--marke);
  /* inline-flex/flex schrumpft sonst nicht und schiebt die Knoepfe hinaus */
  min-width: 0; flex: 0 1 auto;
}
.marke__signet { width: 34px; height: 33px; flex: none; }
@media (min-width: 34rem) { .marke__signet { width: 40px; height: 39px; } }
.marke__text { display: flex; flex-direction: column; min-width: 0; }
.marke__oben {
  font-size: .95rem; line-height: 1.15; color: var(--tinte);
  letter-spacing: .005em; white-space: nowrap;
}
.marke__unten {
  font-family: var(--schrift-titel); font-weight: 700;
  font-size: 1.1rem; line-height: 1.15; color: var(--tinte); white-space: nowrap;
}
@media (max-width: 22rem) { .marke__oben { font-size: .85rem; } .marke__unten { font-size: 1rem; } }

.kopf__rest { margin-left: auto; display: flex; align-items: center; gap: .5rem; flex: none; }

.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .7rem 1.15rem; border-radius: var(--rund);
  font: inherit; font-weight: 600; line-height: 1.2;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  min-height: 44px;
}
.knopf--voll { background: var(--marke-text); color: #fff; }
.knopf--voll:hover { background: var(--marke-tief); color: #fff; }
.knopf--rand { background: #fff; color: var(--marke-text); border-color: var(--marke); }
.knopf--rand:hover { background: var(--marke-hauch); color: var(--marke-tief); }
.knopf--signal { background: var(--signal); color: #fff; }
.knopf--signal:hover { background: #A81A20; color: #fff; }
.knopf--klein { padding: .5rem .85rem; font-size: .95rem; }
.knopf svg { width: 1.15em; height: 1.15em; flex: none; }

.kopf__tel { white-space: nowrap; }
.kopf__tel .knopf__lang { display: none; }
@media (min-width: 30rem) { .kopf__tel .knopf__lang { display: inline; } }

.menueknopf {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex: none;
  background: #fff; border: 1px solid var(--linie); border-radius: var(--rund);
  color: var(--tinte); cursor: pointer;
}
.menueknopf svg { width: 22px; height: 22px; }
.menueknopf__zu { display: none; }
.menueknopf[aria-expanded="true"] .menueknopf__auf { display: none; }
.menueknopf[aria-expanded="true"] .menueknopf__zu { display: inline; }

/* --------------------------------------------------------------- Navigation */
.nav { display: none; }
.nav__liste { list-style: none; margin: 0; padding: 0; display: flex; gap: .15rem; }
.nav__link {
  display: block; padding: .55rem .7rem; border-radius: var(--rund);
  text-decoration: none; color: var(--tinte); font-weight: 600; font-size: 1rem;
  white-space: nowrap;
}
.nav__link:hover { background: var(--sand); color: var(--marke-tief); }
.nav__link[aria-current] { color: var(--marke-text); box-shadow: inset 0 -3px 0 var(--marke); }

@media (min-width: 64rem) {
  .nav { display: block; margin-left: 1rem; }
  .menueknopf { display: none; }
}

/* Off-Canvas fuer schmale Schirme. Sichtbarkeit haengt allein am
   [hidden]-Attribut - eine eigene display-Regel wuerde es aushebeln. */
/* Klasse statt el.style.overflow: Stile, die das Skript als Zeichenkette
   setzt, laufen durch denselben Parser wie ein style-Attribut und koennen
   von der CSP verworfen werden. */
body.menue-offen { overflow: hidden; }

.schublade[hidden] { display: none; }
.schublade {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(15, 22, 26, .45);
}
.schublade__blatt {
  position: absolute; inset: 0 0 0 auto; width: min(21rem, 88vw);
  background: var(--papier); padding: 1rem 1.25rem 2.5rem;
  overflow-y: auto; box-shadow: -8px 0 30px rgba(0, 0, 0, .18);
  display: flex; flex-direction: column; gap: .25rem;
}
.schublade__kopf { display: flex; justify-content: flex-end; margin-bottom: .5rem; }
.schublade__liste { list-style: none; margin: 0 0 1rem; padding: 0; }
.schublade__liste a {
  display: block; padding: .75rem .25rem; text-decoration: none;
  color: var(--tinte); font-weight: 600; border-bottom: 1px solid var(--linie-fein);
}
.schublade__liste a[aria-current] { color: var(--marke-text); }
.schublade__liste .unter a { padding-left: 1.25rem; font-weight: 400; font-size: .98rem; }
@media (min-width: 64rem) { .schublade { display: none; } }

/* ---------------------------------------------------------- Notfallband */
.notfallband {
  background: var(--signal-hauch);
  border-bottom: 1px solid #F3D3D4;
  font-size: .95rem;
}
.notfallband__zeile {
  display: flex; flex-wrap: wrap; align-items: center; gap: .35rem .9rem;
  padding: .5rem 0; color: #8A1418;
}
.notfallband strong { color: #8A1418; }
.notfallband a { color: #8A1418; font-weight: 600; }
.notfallband__tag {
  display: inline-flex; align-items: center; gap: .4rem; font-weight: 700;
}
.notfallband__tag svg { width: 1.05em; height: 1.05em; }

/* ------------------------------------------------------------------ Held */
.held { background: var(--sand); border-bottom: 1px solid var(--linie-fein); }
.held__innen { padding: 2.25rem 0 2.5rem; }
@media (min-width: 48rem) { .held__innen { padding: 3.5rem 0 3.75rem; } }
.held__hut {
  font-size: .85rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--marke-text); margin: 0 0 .75rem;
}
.held h1 { margin-bottom: .45em; }
.held__lead { font-size: 1.15rem; color: var(--tinte-leise); max-width: 60ch; margin-bottom: 1.5rem; }
@media (min-width: 48rem) { .held__lead { font-size: 1.3rem; } }
.held__knoepfe { display: flex; flex-wrap: wrap; gap: .65rem; }

/* --------------------------------------------------------- Schnellfinder */
.schnell { margin-top: -1.75rem; position: relative; z-index: 2; }
.schnell__raster {
  display: grid; gap: .75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 34rem) { .schnell__raster { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64rem) { .schnell__raster { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.kachel {
  background: var(--papier); border: 1px solid var(--linie-fein);
  border-radius: var(--rund-gross); padding: 1.1rem 1.15rem;
  box-shadow: var(--schatten);
  display: flex; flex-direction: column; gap: .3rem;
  min-width: 0;
}
.kachel__titel {
  display: flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .95rem; color: var(--marke-text);
  letter-spacing: .02em; text-transform: uppercase; margin: 0 0 .15rem;
}
.kachel__titel svg { width: 1.2em; height: 1.2em; flex: none; }
.kachel__gross {
  font-family: var(--schrift-titel); font-weight: 600; font-size: 1.25rem;
  line-height: 1.25; color: var(--tinte); text-decoration: none; overflow-wrap: anywhere;
}
a.kachel__gross:hover { color: var(--marke-tief); }
.kachel__klein { font-size: .95rem; color: var(--tinte-leise); margin: 0; }
.kachel--signal { border-color: #F0C9CA; background: var(--signal-hauch); }
.kachel--signal .kachel__titel { color: #8A1418; }
.kachel--signal .kachel__gross { color: #8A1418; }

.jetzt {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .9rem; font-weight: 700; margin-top: .15rem;
}
.jetzt::before {
  content: ""; width: .55rem; height: .55rem; border-radius: 50%;
  background: currentColor; flex: none;
}
.jetzt--offen { color: #1D6B36; }
.jetzt--zu { color: var(--tinte-leise); }

/* -------------------------------------------------------------- Abschnitte */
.band { padding: 3rem 0; }
@media (min-width: 48rem) { .band { padding: 4.25rem 0; } }
.band--sand { background: var(--sand); }
.band--hauch { background: var(--marke-hauch); }
.band--eng { padding: 2.25rem 0; }
.band__kopf { max-width: 60ch; margin-bottom: 2rem; }
.band__kopf p { color: var(--tinte-leise); margin-bottom: 0; }
.band__hut {
  font-size: .85rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--marke-text); margin: 0 0 .6rem;
}

.raster { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 40rem) { .raster--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 52rem) { .raster--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 40rem) and (max-width: 51.99rem) { .raster--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* Karte mit Bild */
.karte {
  background: var(--papier); border: 1px solid var(--linie-fein);
  border-radius: var(--rund-gross); overflow: hidden;
  display: flex; flex-direction: column; min-width: 0;
}
.karte__bild { position: relative; aspect-ratio: 3 / 2; background: var(--sand-tief); }
.karte__bild img { width: 100%; height: 100%; object-fit: cover; }
.karte__text { padding: 1.25rem 1.25rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.karte__text h3 { margin-bottom: .4em; }
.karte__text p { color: var(--tinte-leise); margin-bottom: 1rem; }
.karte__mehr { margin-top: auto; font-weight: 600; text-decoration: none; }
.karte__mehr:hover { text-decoration: underline; }
.karte__mehr::after { content: " \2192"; }

/* Bildblock im Fliesstext */
figure.bild { margin: 0 0 1.75rem; }
figure.bild img {
  width: 100%; border-radius: var(--rund-gross); background: var(--sand-tief);
}
figure.bild figcaption {
  font-size: .92rem; color: var(--tinte-leise); margin-top: .6rem;
  padding-left: .85rem; border-left: 3px solid var(--marke);
}

.zweispalt { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 56rem) {
  .zweispalt { grid-template-columns: 1.15fr .85fr; gap: 3rem; }
  .zweispalt--umgekehrt > :first-child { order: 2; }
}

/* Listen mit Haken */
.haken { list-style: none; padding: 0; }
.haken li { position: relative; padding-left: 1.7rem; margin-bottom: .5rem; }
.haken li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: .95rem; height: .5rem;
  border-left: 2.5px solid var(--marke); border-bottom: 2.5px solid var(--marke);
  transform: rotate(-45deg);
}

.saeulen { columns: 1; }
@media (min-width: 40rem) { .saeulen { columns: 2; column-gap: 2.5rem; } }
.saeulen li { break-inside: avoid; }

/* Faktenkasten */
.fakten {
  background: var(--sand); border: 1px solid var(--linie-fein);
  border-radius: var(--rund-gross); padding: 1.5rem;
}
.fakten h3 { margin-bottom: .7em; }
.fakten dl { margin: 0; display: grid; gap: .1rem .9rem; grid-template-columns: auto 1fr; }
.fakten dt { font-weight: 700; color: var(--tinte-leise); font-size: .95rem; }
.fakten dd { margin: 0 0 .5rem; }
.fakten dd:last-of-type { margin-bottom: 0; }

/* Sprechzeitentabelle */
.zeiten { width: 100%; border-collapse: collapse; }
.zeiten th, .zeiten td { text-align: left; padding: .5rem .3rem; border-bottom: 1px solid var(--linie-fein); }
.zeiten th { font-weight: 600; white-space: nowrap; }
.zeiten td { text-align: right; font-variant-numeric: tabular-nums; }
.zeiten tr:last-child th, .zeiten tr:last-child td { border-bottom: 0; }
.zeiten .heute th, .zeiten .heute td { background: var(--marke-hauch); font-weight: 700; }
.zeiten .zu td { color: var(--tinte-leise); }

/* Dieselbe Tabelle steht auch im dunklen Schlussband. Dort muessen
   Hervorhebung und Graufarbe umgekehrt werden - sonst steht weisse Schrift
   auf hellem Grund (faellt nur an dem einen Wochentag auf, an dem die
   Hervorhebung greift) und Grau auf Petrol. */
.schlussruf .zeiten th,
.schlussruf .zeiten td { color: #fff; border-bottom-color: rgba(255, 255, 255, .22); }
.schlussruf .zeiten .heute th,
.schlussruf .zeiten .heute td { background: rgba(0, 0, 0, .24); color: #fff; }
.schlussruf .zeiten .heute th { box-shadow: inset 3px 0 0 #fff; padding-left: .7rem; }
/* dunkler statt heller hervorheben: eine Aufhellung wuerde den gedaempften
   Ton von "geschlossen" unter 4.5:1 druecken - und zwar nur an dem einen
   Wochentag, an dem die Hervorhebung ueberhaupt greift. */
.schlussruf .zeiten .zu td { color: #C3DCE4; }

/* Aufklappen (Glossar, Fragen) */
details.falte {
  border: 1px solid var(--linie-fein); border-radius: var(--rund);
  background: var(--papier); margin-bottom: .6rem;
}
details.falte > summary {
  cursor: pointer; padding: .85rem 1rem; font-weight: 600;
  list-style: none; display: flex; align-items: flex-start; gap: .75rem;
  min-height: 44px;
}
details.falte > summary::-webkit-details-marker { display: none; }
details.falte > summary::after {
  content: ""; margin-left: auto; margin-top: .45em; flex: none;
  width: .6rem; height: .6rem; border-right: 2.5px solid var(--marke);
  border-bottom: 2.5px solid var(--marke); transform: rotate(45deg);
  transition: transform .15s ease;
}
details.falte[open] > summary::after { transform: rotate(-135deg); }
details.falte > .falte__inhalt { padding: 0 1rem 1.1rem; }
details.falte > .falte__inhalt > :last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) { details.falte > summary::after { transition: none; } }

/* Glossar */
.glossar__suche { margin-bottom: 1.5rem; }
.glossar__suche label { display: block; font-weight: 600; margin-bottom: .4rem; }
.glossar__suche input {
  width: 100%; max-width: 30rem; font: inherit; padding: .7rem .9rem;
  border: 1px solid var(--linie); border-radius: var(--rund); background: #fff;
  color: var(--tinte); min-height: 44px;
}
.glossar__zaehler { font-size: .95rem; color: var(--tinte-leise); margin-top: .5rem; }
.glossar__gruppe { margin-bottom: 2.5rem; }
.glossar__gruppe h2 { margin-bottom: .7em; }
.glossar__leer { color: var(--tinte-leise); }

/* Team */
.person { text-align: left; }
.person__bild {
  aspect-ratio: 4 / 5; border-radius: var(--rund-gross); overflow: hidden;
  background: var(--sand-tief); margin-bottom: .9rem;
}
.person__bild img { width: 100%; height: 100%; object-fit: cover; }
.person h3 { margin-bottom: .15em; }
.person__rolle { color: var(--marke-text); font-weight: 600; font-size: .98rem; margin-bottom: .6rem; }
.person p { color: var(--tinte-leise); }

/* Galerie */
.galerie { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 34rem) { .galerie { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 60rem) { .galerie { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.galerie figure { margin: 0; }
.galerie img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: var(--rund); background: var(--sand-tief);
}
.galerie figcaption { font-size: .92rem; color: var(--tinte-leise); margin-top: .5rem; }

/* Breites Band mit Bild */
.bildband { background: var(--sand-tief); }
.bildband img { width: 100%; aspect-ratio: 1600 / 549; object-fit: cover; display: block; }

/* Lebenslauf */
.lauf { list-style: none; padding: 0; margin: 0 0 2rem; }
.lauf li {
  padding: 0 0 1.1rem 1.35rem; margin: 0;
  border-left: 2px solid var(--linie); position: relative;
}
.lauf li::before {
  content: ""; position: absolute; left: -6px; top: .55em;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--marke); border: 2px solid var(--papier);
}
.lauf li:last-child { padding-bottom: 0; border-left-color: transparent; }
.lauf b { display: block; font-family: var(--schrift-titel); font-size: 1.05rem; }

/* Notfallseite */
.notfall__stufe {
  border-radius: var(--rund-gross); padding: 1.35rem 1.4rem; margin-bottom: 1rem;
  border: 1px solid var(--linie-fein); background: var(--papier);
}
.notfall__stufe--jetzt { background: var(--signal-hauch); border-color: #EEBFC1; }
.notfall__stufe h2 { margin-bottom: .35em; }
.notfall__stufe--jetzt h2 { color: #8A1418; }
.notfall__nummer {
  font-family: var(--schrift-titel); font-weight: 700;
  font-size: clamp(2rem, 1.4rem + 2.6vw, 2.9rem); line-height: 1.05;
  display: inline-block; text-decoration: none; margin: .2rem 0 .5rem;
}
.notfall__stufe--jetzt .notfall__nummer { color: var(--signal); }
.notfall__nummer:hover { text-decoration: underline; }

/* Schlussruf */
.schlussruf { background: var(--marke-tief); color: #fff; }
.schlussruf h2 { color: #fff; }
.schlussruf p { color: #D6ECF2; max-width: 54ch; }
.schlussruf a:not(.knopf) { color: #fff; }
.schlussruf .knopf--rand { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.schlussruf .knopf--rand:hover { background: rgba(255,255,255,.12); color: #fff; }
.schlussruf .knopf--voll { background: #fff; color: var(--marke-tief); }
.schlussruf .knopf--voll:hover { background: #E8F4F8; color: var(--marke-tief); }
.schlussruf .fakten h3 { color: #fff; }
.schlussruf .fakten dt { color: #BBD6DF; }
.schlussruf .fakten, .schlussruf .fakten dd { color: #EAF4F7; }

/* Brotkrumen */
.krumen { font-size: .92rem; padding: .9rem 0 0; }
.krumen ol { list-style: none; display: flex; flex-wrap: wrap; gap: .3rem; margin: 0; padding: 0; }
.krumen li { margin: 0; color: var(--tinte-leise); }
.krumen li + li::before { content: "\203A"; margin-right: .35rem; color: var(--linie); }

/* Nachbarseiten */
.nachbarn { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 46rem) { .nachbarn { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.nachbar {
  display: block; padding: 1.15rem 1.25rem; text-decoration: none;
  border: 1px solid var(--linie-fein); border-radius: var(--rund-gross);
  background: var(--papier);
}
.nachbar:hover { border-color: var(--marke); background: var(--marke-hauch); }
.nachbar b { display: block; font-family: var(--schrift-titel); font-size: 1.15rem; color: var(--tinte); margin-bottom: .25rem; }
.nachbar span { color: var(--tinte-leise); font-size: .98rem; }

/* --------------------------------------------------------------- Fussbereich */
.fuss { background: var(--tinte); color: #C9D3D8; padding: 3rem 0 1.5rem; font-size: 1rem; }
.fuss h2, .fuss h3 { color: #fff; font-size: 1.05rem; font-family: var(--schrift-text); font-weight: 700; margin-bottom: .8em; }
.fuss a { color: #E3EBEE; }
.fuss a:hover { color: #fff; }
.fuss__raster { display: grid; gap: 2.25rem; grid-template-columns: 1fr; }
@media (min-width: 44rem) { .fuss__raster { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64rem) { .fuss__raster { grid-template-columns: 1.3fr 1fr 1fr 1.1fr; } }
.fuss ul { list-style: none; padding: 0; margin: 0; }
.fuss li { margin-bottom: .45rem; }
.fuss__marke { display: flex; align-items: center; gap: .6rem; color: #fff; margin-bottom: 1rem; }
.fuss__marke svg { width: 38px; height: 37px; flex: none; }
.fuss__zeiten { width: 100%; border-collapse: collapse; font-size: .97rem; }
.fuss__zeiten th, .fuss__zeiten td { padding: .18rem 0; text-align: left; font-weight: 400; }
.fuss__zeiten td { text-align: right; font-variant-numeric: tabular-nums; }
.fuss__schluss {
  border-top: 1px solid rgba(255, 255, 255, .14); margin-top: 2.5rem; padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; font-size: .93rem; color: #9FAFB6;
}
.fuss__schluss ul { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
.fuss__schluss li { margin: 0; }

/* ------------------------------------------------------------ Rechtstexte */
.rechtstext h2 { margin-top: 2.25rem; }
.rechtstext h3 { margin-top: 1.6rem; }
.rechtstext > :first-child { margin-top: 0; }
.rechtstext { max-width: 68ch; }

.hinweis {
  border-left: 4px solid var(--marke); background: var(--marke-hauch);
  padding: 1rem 1.2rem; border-radius: 0 var(--rund) var(--rund) 0;
  margin: 0 0 1.5rem;
}
.hinweis > :last-child { margin-bottom: 0; }

@media print {
  .kopf, .schublade, .schlussruf, .menueknopf, .sprungmarke { display: none !important; }
  body { font-size: 11pt; }
}

/* ------------------------------------------------- Hilfsklassen statt style=""
   Die Content-Security-Policy erlaubt nur Stylesheets vom eigenen Server
   (style-src 'self'). Ein style="..."-Attribut wird dadurch stillschweigend
   verworfen: im HTML steht es, gewirkt hat es nie. Deshalb hier Klassen. */
.mt-1  { margin-top: .8rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 1.75rem; }
.mt-5  { margin-top: 2rem; }
.mt-6  { margin-top: 2.5rem; }
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: .3em; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-5  { margin-bottom: 2rem; }
.m-0   { margin: 0; }
.m-0-3 { margin: 0 0 1.5rem; }
.klein { font-size: .95rem; }
.leise { color: var(--tinte-leise); }
.schlicht { text-decoration: none; color: inherit; }
.sprite { position: absolute; }
.raster--eng { gap: 1rem; }
.bildband--gerundet { border-radius: var(--rund-gross); overflow: hidden; }
.fakten--dunkel {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
}
.fuss__name  { display: block; font-size: .95rem; }
.fuss__stark { font-family: var(--schrift-titel); font-size: 1.15rem; }
.fuss__leise { color: #9FAFB6; }
.fuss__hinweis { font-size: .93rem; color: #9FAFB6; margin-top: .6rem; }
.zeiten__hinweis { margin-top: .8rem; font-size: .95rem; color: var(--tinte-leise); }
.schlussruf .zeiten__hinweis { color: #D6ECF2; }
