:root {
  color-scheme: light dark;
  --grund: #f5f7f1;
  --karte: #fff;
  --text: #173e35;
  --weich: #5d6e69;
  --linie: #dbe4de;
  --akzent: #24765e;
  --hinweis: #fff3d8;
  --hinweis-text: #684915;
}
@media (prefers-color-scheme: dark) {
  :root {
    --grund: #101b1b;
    --karte: #172727;
    --text: #e8f2ed;
    --weich: #b2c2bc;
    --linie: #344746;
    --akzent: #8bd4b1;
    --hinweis: #3a3020;
    --hinweis-text: #f6dda4;
  }
}
* { box-sizing: border-box; }
html { background: var(--grund); scroll-behavior: smooth; }
body {
  max-width: 880px;
  margin: 0 auto;
  padding: max(24px, env(safe-area-inset-top)) 22px max(32px, env(safe-area-inset-bottom));
  color: var(--text);
  background: var(--grund);
  font: 17px/1.68 Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: var(--akzent); text-decoration-thickness: .08em; text-underline-offset: .16em; }
a:focus-visible { outline: 3px solid var(--akzent); outline-offset: 4px; border-radius: 3px; }
.kopfleiste, .fuss { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.kopfleiste { padding: 5px 0 22px; border-bottom: 1px solid var(--linie); }
.marke { color: var(--text); font-size: 20px; font-weight: 800; letter-spacing: -.04em; text-decoration: none; }
.sprung { font-size: 14px; }
main { padding: 34px 0 48px; }
h1, h2, h3 { line-height: 1.25; letter-spacing: -.025em; }
h1 { margin: 0 0 8px; font-size: clamp(34px, 7vw, 48px); }
h2 { margin: 36px 0 10px; font-size: 24px; }
h3 { margin: 22px 0 6px; font-size: 18px; }
p { margin: 10px 0 14px; }
ul, ol { padding-left: 1.35em; }
li + li { margin-top: 6px; }
.untertitel { margin-top: 0; color: var(--weich); }
.entwurf {
  margin: 24px 0;
  padding: 14px 17px;
  border: 1px solid color-mix(in srgb, var(--hinweis-text) 22%, transparent);
  border-radius: 14px;
  color: var(--hinweis-text);
  background: var(--hinweis);
  font-size: 15px;
}
.karte { margin: 18px 0; padding: 20px 22px; border: 1px solid var(--linie); border-radius: 18px; background: var(--karte); }
.karte h2:first-child, .karte h3:first-child { margin-top: 0; }
.daten { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
.daten th, .daten td { padding: 11px 10px; border-bottom: 1px solid var(--linie); text-align: left; vertical-align: top; }
.daten th { width: 28%; color: var(--text); }
.klein { color: var(--weich); font-size: 14px; }
.fuss { flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--linie); color: var(--weich); font-size: 14px; }
.fuss nav { display: flex; flex-wrap: wrap; gap: 16px; }
@media (max-width: 600px) {
  body { padding-right: 17px; padding-left: 17px; font-size: 16px; }
  .karte { padding: 17px; }
  .daten, .daten tbody, .daten tr, .daten th, .daten td { display: block; width: 100%; }
  .daten tr { padding: 8px 0; }
  .daten th { padding-bottom: 2px; border-bottom: 0; }
  .daten td { padding-top: 3px; }
}
