/* CASCADOS Auslieferungs-Tool: Oberfläche.
 *
 * Farben nach CI-Leitfaden. Orange #f18711 ist die einzige Signalfarbe und bleibt
 * den Hauptaktionen vorbehalten. Kein Grün und kein Türkis, auch nicht für
 * Erfolgsmeldungen: der Normalfall wird neutral dargestellt, Farbe bekommt nur,
 * was Aufmerksamkeit braucht.
 *
 * Schrift: bewusst der Systemschriftsatz statt Inter von Google Fonts. Eine
 * externe Schriftquelle wäre ein Datenschutzproblem und die Inhaltsregel
 * (Content-Security-Policy) verbietet Fremdhosts ohnehin. Unter Windows ist das
 * Segoe UI, das der humanistischen Anmutung von Inter sehr nahe kommt.
 */

:root {
  --orange:      #f18711;
  --orange-d:    #e9600e;
  --gold:        #f6a910;
  --charcoal:    #3a3a3a;
  --charcoal-2:  #5a5a5a;
  --dark:        #1a1a1a;
  --grau:        #7b7b7a;
  --linie:       #e0e0de;
  --hell:        #f5f5f3;
  --weiss:       #ffffff;
  --gefahr:      #d63b1e;
  --gefahr-hell: #fdece8;
  --warn-hell:   #fdf3e0;

  --schrift: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: Consolas, "SF Mono", Menlo, "Courier New", monospace;

  --radius: 6px;
  --radius-gross: 8px;
  --schatten: 0 1px 3px rgba(58, 58, 58, 0.08), 0 1px 2px rgba(58, 58, 58, 0.06);
  --schatten-hoch: 0 8px 24px rgba(58, 58, 58, 0.14);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--schrift);
  font-size: 15px;
  line-height: 1.55;
  color: var(--charcoal);
  background: var(--hell);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0 0 12px 0; font-weight: 600; line-height: 1.25; color: var(--charcoal); }
h1 { font-size: 24px; }
h2 { font-size: 20px; }
h3 { font-size: 16px; }
h4 { font-size: 14px; }
p { margin: 0 0 12px 0; }
a { color: var(--orange-d); }
a:hover { color: var(--orange); }
code, .mono { font-family: var(--mono); font-size: 13px; }

[hidden] { display: none !important; }

/* ---------- Anmeldung ---------- */

.anmeldung {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, var(--hell) 100%),
    repeating-linear-gradient(0deg, rgba(58, 58, 58, 0.05) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(58, 58, 58, 0.05) 0 1px, transparent 1px 40px),
    var(--weiss);
}

.anmeldung__karte {
  width: 100%;
  max-width: 420px;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-gross);
  box-shadow: var(--schatten-hoch);
  padding: 32px;
}

.anmeldung__logo { height: 34px; display: block; margin-bottom: 4px; }
.anmeldung__sub {
  font-size: 13px;
  color: var(--grau);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ---------- Kopf ---------- */

.kopf {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  background: var(--weiss);
  border-bottom: 1px solid var(--linie);
  position: sticky;
  top: 0;
  z-index: 40;
  flex-wrap: wrap;
}

.kopf__marke { display: flex; align-items: center; gap: 10px; }
.kopf__logo { height: 24px; display: block; }
.kopf__logo--arcon { height: 20px; }
.kopf__sub {
  font-size: 11px;
  color: var(--grau);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-left: 1px solid var(--linie);
  padding-left: 10px;
}

.kopf__rechts { margin-left: auto; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* Markenumschalter */
.markenwahl { display: flex; border: 1px solid var(--linie); border-radius: var(--radius); overflow: hidden; }
.markenwahl button {
  border: 0;
  background: var(--weiss);
  color: var(--charcoal-2);
  padding: 6px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.markenwahl button + button { border-left: 1px solid var(--linie); }
.markenwahl button:hover { background: var(--hell); }
.markenwahl button.aktiv { background: var(--charcoal); color: var(--weiss); }

/* Zustandschips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--linie);
  background: var(--hell);
  color: var(--charcoal-2);
  cursor: default;
}
.chip--knopf { cursor: pointer; }
.chip--knopf:hover { border-color: var(--charcoal-2); }
.chip--test { background: var(--warn-hell); border-color: var(--gold); color: var(--charcoal); }
.chip--echt { background: var(--gefahr-hell); border-color: var(--gefahr); color: var(--gefahr); }
.chip--gesperrt { background: var(--hell); border-color: var(--linie); color: var(--grau); }
.chip__punkt { width: 8px; height: 8px; border-radius: 50%; background: currentColor; flex: 0 0 auto; }

/* ---------- Reiter ---------- */

.reiter {
  display: flex;
  gap: 2px;
  padding: 0 20px;
  background: var(--weiss);
  border-bottom: 1px solid var(--linie);
  overflow-x: auto;
  position: sticky;
  top: 49px;
  z-index: 30;
}

.reiter button {
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  font: inherit;
  font-size: 14px;
  color: var(--charcoal-2);
  padding: 12px 14px;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
}
.reiter button:hover { color: var(--charcoal); background: var(--hell); }
.reiter button.aktiv { color: var(--charcoal); border-bottom-color: var(--orange); font-weight: 600; }
.reiter__zahl {
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--orange);
  color: var(--weiss);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.reiter__zahl--still { background: var(--linie); color: var(--charcoal-2); }

/* ---------- Flächen ---------- */

main { padding: 24px 20px 80px 20px; max-width: 1500px; margin: 0 auto; }
.tafel { display: none; }
.tafel.aktiv { display: block; }

.karte {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-gross);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--schatten);
}
.karte--flach { box-shadow: none; }
.karte--warn { border-left: 3px solid var(--gold); background: var(--warn-hell); }
.karte--gefahr { border-left: 3px solid var(--gefahr); background: var(--gefahr-hell); }
.karte--dunkel { background: var(--dark); color: var(--weiss); border-color: var(--dark); }
.karte--dunkel h2, .karte--dunkel h3 { color: var(--weiss); }
.karte__kopf { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.karte__kopf h2, .karte__kopf h3 { margin: 0; }
.karte__kopf-rechts { margin-left: auto; display: flex; gap: 8px; align-items: center; }

.hinweis { font-size: 13px; color: var(--grau); margin: 0 0 14px 0; }
.hinweis--stark { color: var(--charcoal-2); }
.trenner { height: 1px; background: var(--linie); border: 0; margin: 20px 0; }

/* Kennzahlen */
.zahlen { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: var(--linie); border: 1px solid var(--linie); border-radius: var(--radius); overflow: hidden; }
.zahl { background: var(--weiss); padding: 14px 16px; }
.zahl__wert { font-size: 24px; font-weight: 700; line-height: 1.1; color: var(--charcoal); font-variant-numeric: tabular-nums; }
.zahl__wert--orange { color: var(--orange-d); }
.zahl__wert--gefahr { color: var(--gefahr); }
.zahl__label { font-size: 12px; color: var(--grau); margin-top: 3px; }

/* ---------- Knöpfe ---------- */

.knopf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  min-height: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--linie);
  background: var(--weiss);
  color: var(--charcoal);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.knopf:hover { background: var(--hell); border-color: var(--charcoal-2); color: var(--charcoal); }
.knopf:disabled, .knopf[aria-disabled="true"] { opacity: 0.45; cursor: not-allowed; }
.knopf:disabled:hover { background: var(--weiss); border-color: var(--linie); }

.knopf--haupt { background: var(--orange); border-color: var(--orange); color: var(--weiss); font-weight: 600; }
.knopf--haupt:hover { background: var(--orange-d); border-color: var(--orange-d); color: var(--weiss); }
.knopf--dunkel { background: var(--charcoal); border-color: var(--charcoal); color: var(--weiss); }
.knopf--dunkel:hover { background: var(--dark); border-color: var(--dark); color: var(--weiss); }
.knopf--gefahr { border-color: var(--gefahr); color: var(--gefahr); }
.knopf--gefahr:hover { background: var(--gefahr); border-color: var(--gefahr); color: var(--weiss); }
.knopf--still { border-color: transparent; color: var(--charcoal-2); }
.knopf--still:hover { border-color: var(--linie); }
.knopf--klein { font-size: 13px; padding: 5px 10px; min-height: 30px; }
.knopf--gross { font-size: 15px; padding: 11px 26px; min-height: 44px; }
.knopf--breit { width: 100%; }

.aktionen { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin: 14px 0 0 0; }
.aktionen--rechts { justify-content: flex-end; }
.aktionen__luecke { margin-left: auto; }

/* ---------- Felder ---------- */

.feld { display: block; margin-bottom: 14px; }
.feld > span { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: var(--charcoal); }
.feld > span em { font-weight: 400; font-style: normal; color: var(--grau); }
.feld input[type="text"], .feld input[type="email"], .feld input[type="password"],
.feld input[type="url"], .feld input[type="number"], .feld input[type="search"],
.feld select, .feld textarea, input.eingabe, select.eingabe {
  width: 100%;
  font: inherit;
  font-size: 14px;
  padding: 8px 11px;
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  background: var(--weiss);
  color: var(--charcoal);
}
.feld input:focus, .feld select:focus, .feld textarea:focus, input.eingabe:focus {
  outline: 2px solid rgba(241, 135, 17, 0.35);
  outline-offset: 0;
  border-color: var(--orange);
}
.feld textarea { resize: vertical; min-height: 72px; }
.feld textarea.gross { min-height: 420px; font-family: var(--mono); font-size: 12.5px; line-height: 1.5; }
.feld--eng { max-width: 340px; }
.feld__fehler { font-size: 12.5px; color: var(--gefahr); margin-top: 4px; }

.raster { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0 16px; }
.raster--zwei { grid-template-columns: 1fr 1fr; gap: 0 16px; }

.ankreuz { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; margin-bottom: 8px; cursor: pointer; }
.ankreuz input { margin: 3px 0 0 0; flex: 0 0 auto; width: 15px; height: 15px; accent-color: var(--orange); }
.ankreuz__text strong { display: block; font-weight: 600; }
.ankreuz__text span { display: block; font-size: 12.5px; color: var(--grau); }

.werkzeugleiste { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 14px; }
.werkzeugleiste input[type="search"] { max-width: 320px; }
.zaehler { font-size: 13px; color: var(--grau); margin-left: auto; }

/* Filterzeile */
.filter { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.filter button {
  font: inherit;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--linie);
  background: var(--weiss);
  color: var(--charcoal-2);
  cursor: pointer;
}
.filter button:hover { border-color: var(--charcoal-2); }
.filter button.aktiv { background: var(--charcoal); border-color: var(--charcoal); color: var(--weiss); }

/* ---------- Tabellen ---------- */

.tabelle-rahmen { overflow-x: auto; border: 1px solid var(--linie); border-radius: var(--radius); background: var(--weiss); }
table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
thead th {
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--grau);
  padding: 9px 12px;
  border-bottom: 1px solid var(--linie);
  background: var(--hell);
  white-space: nowrap;
  position: sticky;
  top: 0;
}
thead th[data-sort] { cursor: pointer; user-select: none; }
thead th[data-sort]:hover { color: var(--charcoal); }
tbody td { padding: 9px 12px; border-bottom: 1px solid var(--linie); vertical-align: top; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: var(--hell); }
tbody tr.anklickbar { cursor: pointer; }
tbody tr.beliefert { color: var(--grau); }
tbody tr.gesperrt { background: var(--gefahr-hell); }
tbody tr.gesperrt:hover { background: #fbe2dc; }
td.zahl-rechts, th.zahl-rechts { text-align: right; font-variant-numeric: tabular-nums; }
td.eng, th.eng { width: 1%; white-space: nowrap; }
.tabelle-leer { padding: 28px 16px; text-align: center; color: var(--grau); font-size: 14px; }

/* Zustandsmarken. Bewusst ohne Grün: der Normalfall bleibt neutral. */
.marke {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid var(--linie);
  background: var(--hell);
  color: var(--charcoal-2);
  white-space: nowrap;
}
.marke--offen { border-color: var(--orange); background: var(--warn-hell); color: var(--orange-d); }
.marke--gefahr { border-color: var(--gefahr); background: var(--gefahr-hell); color: var(--gefahr); }
.marke--weich { border-color: var(--gold); background: var(--warn-hell); color: #8a5a00; }
.marke--still { border-color: var(--linie); background: var(--weiss); color: var(--grau); }
.marke--test { border-color: var(--gold); background: var(--warn-hell); color: #8a5a00; }

/* ---------- Vorlage: zweispaltig ---------- */

.zweispalt { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; align-items: start; }
@media (max-width: 1200px) { .zweispalt { grid-template-columns: 1fr; } }

.vorschau { position: sticky; top: 110px; }
.vorschau__kopf { display: flex; gap: 10px; align-items: flex-end; margin-bottom: 12px; flex-wrap: wrap; }
.vorschau__betreff {
  font-size: 13.5px;
  padding: 9px 12px;
  background: var(--hell);
  border: 1px solid var(--linie);
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom: 0;
  word-break: break-word;
}
.vorschau__betreff strong { color: var(--grau); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.03em; display: block; }
.vorschau iframe {
  width: 100%;
  height: 680px;
  border: 1px solid var(--linie);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--weiss);
  display: block;
}

/* Platzhalterliste */
.platzhalter { list-style: none; margin: 0; padding: 0; }
.platzhalter li { padding: 7px 0; border-bottom: 1px solid var(--linie); font-size: 13px; }
.platzhalter li:last-child { border-bottom: 0; }
.platzhalter code { background: var(--hell); padding: 2px 6px; border-radius: 4px; color: var(--orange-d); font-weight: 600; }
.platzhalter span { color: var(--grau); }

/* ---------- Fortschritt ---------- */

.fortschritt { margin: 16px 0; }
.fortschritt__balken { height: 8px; background: var(--linie); border-radius: 99px; overflow: hidden; }
.fortschritt__fuellung { height: 100%; background: var(--orange); width: 0; transition: width 0.3s ease; border-radius: 99px; }
.fortschritt__text { font-size: 13px; color: var(--charcoal-2); margin-top: 8px; font-variant-numeric: tabular-nums; }

/* ---------- Meldungen ---------- */

.meldung {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13.5px;
  margin-bottom: 14px;
  border-left: 3px solid var(--linie);
  background: var(--hell);
}
.meldung--gefahr { border-left-color: var(--gefahr); background: var(--gefahr-hell); color: #8c2413; }
.meldung--warn { border-left-color: var(--gold); background: var(--warn-hell); }
.meldung--info { border-left-color: var(--charcoal-2); background: var(--hell); }
.meldung--gut { border-left-color: var(--orange); background: var(--warn-hell); }
.meldung strong { display: block; margin-bottom: 3px; }
.meldung ul { margin: 6px 0 0 0; padding-left: 20px; }
.meldung li { margin-bottom: 3px; }

.brot {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: 420px;
  padding: 13px 18px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--weiss);
  font-size: 14px;
  box-shadow: var(--schatten-hoch);
}
.brot--gefahr { background: var(--gefahr); }
.brot--gut { background: var(--charcoal); border-left: 3px solid var(--orange); }

/* ---------- Ebene (Dialog) ---------- */

.ebene {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow: auto;
  z-index: 100;
}
.ebene__karte {
  background: var(--weiss);
  border-radius: var(--radius-gross);
  box-shadow: var(--schatten-hoch);
  width: 100%;
  max-width: 720px;
  padding: 26px;
  position: relative;
}
.ebene__karte--breit { max-width: 1050px; }
.ebene__zu {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: none;
  font-size: 24px;
  line-height: 1;
  color: var(--grau);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius);
}
.ebene__zu:hover { background: var(--hell); color: var(--charcoal); }

/* Lizenzzeilen im Erfassungsdialog */
.lizenzzeilen { display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px; }
.lizenzzeile {
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--hell);
}
.lizenzzeile .raster { gap: 0 12px; }
.lizenzzeile__kopf { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.lizenzzeile__kopf strong { font-size: 12px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--grau); }
.lizenzzeile__kopf .knopf { margin-left: auto; }

/* Erweiterungen: Aufklappliste mit Häkchen statt Freitext.
   Position relativ, damit das Feld über der nächsten Zeile liegt und die
   Lizenzzeile nicht auseinanderreißt. */
.mehrfachwahl { position: relative; }

.mehrfachwahl__knopf {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  font: inherit;
  font-size: 14px;
  text-align: left;
  padding: 8px 11px;
  min-height: 38px;
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  background: var(--weiss);
  color: var(--charcoal);
  cursor: pointer;
}
.mehrfachwahl__knopf:hover { border-color: var(--charcoal-2); }
.mehrfachwahl__knopf[aria-expanded="true"] { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(241, 135, 17, 0.25); }
.mehrfachwahl__text { flex: 1 1 auto; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mehrfachwahl__pfeil { flex: 0 0 auto; color: var(--grau); font-size: 12px; }

.mehrfachwahl__feld {
  position: absolute;
  z-index: 60;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  min-width: 320px;
  max-height: 340px;
  overflow-y: auto;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  box-shadow: var(--schatten-hoch);
  padding: 12px 14px;
}
.mehrfachwahl__feld .ankreuz { margin-bottom: 10px; }
.mehrfachwahl__feld .ankreuz:last-of-type { margin-bottom: 0; }
.mehrfachwahl__weitere {
  margin: 12px 0 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--linie);
}

/* Ablagefläche für Dateien */
.ablage {
  border: 2px dashed var(--linie);
  border-radius: var(--radius-gross);
  padding: 44px 20px;
  text-align: center;
  background: var(--weiss);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.ablage:hover, .ablage.bereit { border-color: var(--orange); background: var(--warn-hell); }
.ablage strong { display: block; font-size: 16px; margin-bottom: 4px; }
.ablage span { color: var(--grau); font-size: 13.5px; }

/* Zuordnungsraster beim Import */
.zuordnung { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px 18px; }

/* ---------- Statistik ---------- */

.balken { display: flex; flex-direction: column; gap: 9px; }
.balken__zeile { display: grid; grid-template-columns: minmax(120px, 190px) 1fr auto; gap: 12px; align-items: center; font-size: 13px; }
.balken__spur { height: 18px; background: var(--hell); border-radius: 4px; overflow: hidden; border: 1px solid var(--linie); }
.balken__fuellung { height: 100%; background: var(--charcoal-2); }
.balken__fuellung--orange { background: var(--orange); }
.balken__fuellung--gefahr { background: var(--gefahr); }
.balken__fuellung--gold { background: var(--gold); }
.balken__wert { font-variant-numeric: tabular-nums; color: var(--charcoal-2); min-width: 74px; text-align: right; }

.verlauf { width: 100%; height: 190px; display: block; }
.verlauf text { font-size: 10px; fill: var(--grau); font-family: var(--schrift); }

/* ---------- Kleinteile ---------- */

.schluessel {
  font-family: var(--mono);
  font-size: 12.5px;
  background: var(--hell);
  border: 1px solid var(--linie);
  border-radius: 4px;
  padding: 2px 7px;
  display: inline-block;
  word-break: break-all;
}
.leise { color: var(--grau); }
.klein { font-size: 12.5px; }
.nowrap { white-space: nowrap; }
.rechts { text-align: right; }
.abstand-oben { margin-top: 18px; }

.paar { display: grid; grid-template-columns: 190px 1fr; gap: 4px 14px; font-size: 13.5px; }
.paar dt { color: var(--grau); }
.paar dd { margin: 0; word-break: break-word; }

@media (max-width: 760px) {
  main { padding: 16px 12px 60px 12px; }
  .kopf { padding: 8px 12px; }
  .reiter { padding: 0 8px; top: 0; position: static; }
  .karte { padding: 15px; }
  .raster--zwei { grid-template-columns: 1fr; }
  .paar { grid-template-columns: 1fr; }
  .paar dt { margin-top: 8px; }
}
