/* =========================================================================
   mycar.net – Stylesheet
   Farbwelt: Logo-Grau/Blau, dunkler Kopf, warmer Akzent fuer Rechner.
   ========================================================================= */

:root {
  --blau: #0b84d6;
  --blau-hell: #50b4f3;
  --blau-dunkel: #0a5fa0;
  --akzent: #f97316;
  --akzent-dunkel: #c2410c;
  --navy: #0f172a;
  --navy-2: #1e293b;
  --text: #1f2937;
  --text-2: #4b5563;
  --text-3: #6b7280;
  --grau: #9ca3af;
  --linie: #e5e7eb;
  --flaeche: #ffffff;
  --flaeche-2: #f5f6f8;
  --flaeche-3: #eceef2;
  --erfolg: #15803d;
  --warnung: #b45309;
  --schatten: 0 1px 2px rgba(15, 23, 42, .06), 0 8px 24px -12px rgba(15, 23, 42, .18);
  --radius: 12px;
  --schrift: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --breite: 1200px;
  --breite-schmal: 780px;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --blau: #4aa8ee;
    --blau-dunkel: #7cc4f5;
    --navy: #0b1220;
    --navy-2: #111a2c;
    --text: #e5e7eb;
    --text-2: #c3c7ce;
    --text-3: #9aa1ab;
    --grau: #6b7280;
    --linie: #2a3444;
    --flaeche: #111827;
    --flaeche-2: #172033;
    --flaeche-3: #1f2a40;
    --erfolg: #4ade80;
    --warnung: #fbbf24;
    --schatten: 0 1px 2px rgba(0,0,0,.4), 0 8px 24px -12px rgba(0,0,0,.6);
    color-scheme: dark;
  }
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--schrift);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--flaeche);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blau); text-decoration: none; }
a:hover { color: var(--blau-dunkel); text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
small, .klein { font-size: .875rem; color: var(--text-2); }
code { font-family: ui-monospace, Consolas, monospace; background: var(--flaeche-3); padding: .1em .35em; border-radius: 4px; font-size: .9em; }
hr { border: 0; border-top: 1px solid var(--linie); margin: 2rem 0; }
button { font: inherit; }
.skip { position: absolute; left: -999px; top: 0; background: var(--akzent); color: #fff; padding: .5rem 1rem; z-index: 100; }
.skip:focus { left: 8px; top: 8px; }

.innen { max-width: var(--breite); margin: 0 auto; padding: 0 16px; }
.innen-schmal { max-width: var(--breite-schmal); margin: 0 auto; padding: 0 16px; }
.ueberzeile { text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; font-weight: 700; color: var(--akzent); margin-bottom: .4rem; }

/* ---------- Kopf ---------- */
.kopf { background: var(--navy); color: #fff; position: sticky; top: 0; z-index: 50; box-shadow: 0 2px 12px rgba(0,0,0,.25); }
.kopf-innen { max-width: var(--breite); margin: 0 auto; padding: 0 16px; display: flex; align-items: center; gap: 24px; min-height: 64px; }
.logo { font-weight: 800; font-size: 1.7rem; letter-spacing: -.03em; text-decoration: none !important; display: inline-flex; align-items: baseline; line-height: 1; }
.logo-my { color: #b8bec8; }
.logo-car { color: var(--blau-hell); }
.logo-net { color: #b8bec8; font-size: .55em; font-weight: 600; margin-left: 2px; }
.logo-klein { font-size: 1.3rem; }
.nav { display: flex; align-items: center; gap: 20px; flex: 1; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.nav a { color: #e2e8f0; padding: .5rem .75rem; border-radius: 8px; font-weight: 600; font-size: .95rem; display: block; }
.nav a:hover, .nav a.aktiv { background: rgba(255,255,255,.1); color: #fff; text-decoration: none; }
.nav a.nav-rechner { color: #fed7aa; }
.nav a.nav-rechner:hover, .nav a.nav-rechner.aktiv { background: rgba(249,115,22,.25); color: #fff; }
.suche-form { margin-left: auto; display: flex; align-items: center; background: rgba(255,255,255,.1); border-radius: 999px; padding: 2px 4px 2px 14px; }
.suche-form input { background: transparent; border: 0; color: #fff; width: 150px; outline: none; font: inherit; font-size: .9rem; }
.suche-form input::placeholder { color: #94a3b8; }
.suche-form button { background: var(--blau); border: 0; color: #fff; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; }
.nav-schalter { display: none; margin-left: auto; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.nav-schalter span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: transform .2s; }
@media (max-width: 900px) {
  .nav-schalter { display: block; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 64px; background: var(--navy-2); flex-direction: column; align-items: stretch; padding: 12px 16px 16px; gap: 12px; box-shadow: 0 12px 24px rgba(0,0,0,.3); }
  .nav.offen { display: flex; }
  .nav ul { flex-direction: column; }
  .suche-form { margin: 0; }
  .suche-form input { width: 100%; }
}

/* ---------- Fuss ---------- */
.fuss { background: var(--navy); color: #cbd5e1; margin-top: 4rem; padding: 3rem 0 1.5rem; font-size: .92rem; }
.fuss-innen { max-width: var(--breite); margin: 0 auto; padding: 0 16px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.fuss h3 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .8rem; }
.fuss ul { list-style: none; margin: 0; padding: 0; }
.fuss li { margin: .3rem 0; }
.fuss a { color: #cbd5e1; }
.fuss a:hover { color: #fff; }
.fuss-zeile { max-width: var(--breite); margin: 2rem auto 0; padding: 1rem 16px 0; border-top: 1px solid rgba(255,255,255,.12); color: #94a3b8; font-size: .85rem; }
@media (max-width: 800px) { .fuss-innen { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .fuss-innen { grid-template-columns: 1fr; } }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, var(--flaeche-2), var(--flaeche)); padding: 28px 0 8px; }
.hero-innen { max-width: var(--breite); margin: 0 auto; padding: 0 16px; display: grid; grid-template-columns: 3fr 2fr; gap: 24px; }
.hero-haupt { display: flex; flex-direction: column; gap: 16px; }
.hero-bild img { border-radius: var(--radius); aspect-ratio: 16/9; object-fit: cover; width: 100%; box-shadow: var(--schatten); }
.hero-text h1 { font-size: clamp(1.5rem, 1rem + 1.8vw, 2.2rem); }
.hero-text h1 a { color: var(--text); }
.hero-neben { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-content: start; }
@media (max-width: 900px) { .hero-innen { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .hero-neben { grid-template-columns: 1fr; } }

/* ---------- Karten ---------- */
.karten-raster { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.karten-raster.karten-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .karten-raster, .karten-raster.karten-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .karten-raster, .karten-raster.karten-4 { grid-template-columns: 1fr; } }
.karte { display: flex; flex-direction: column; background: var(--flaeche); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--linie); transition: transform .15s, box-shadow .15s; }
.karte:hover { transform: translateY(-2px); box-shadow: var(--schatten); }
.karte-bild img { aspect-ratio: 16/10; object-fit: cover; width: 100%; background: var(--flaeche-3); }
.karte-text { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; }
.karte-titel { font-size: 1.05rem; margin: 0; }
.karte-titel a { color: var(--text); }
.karte-teaser { margin: 0; color: var(--text-2); font-size: .92rem; line-height: 1.5; }
.karte-meta { margin: auto 0 0; font-size: .8rem; color: var(--text-3); padding-top: 4px; }
.karte-klein .karte-bild img { aspect-ratio: 16/10; }
.karte-klein .karte-text { padding: 10px 12px 12px; }
.karte-klein .karte-titel { font-size: .95rem; }
.marke-tag { color: var(--akzent-dunkel); font-weight: 600; }

/* ---------- Rubriken ---------- */
.rubrik { padding: 28px 0 8px; }
.rubrik-kopf { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 16px; border-bottom: 3px solid var(--blau-hell); padding-bottom: 6px; }
.rubrik-kopf h2 { margin: 0; }
.rubrik-kopf p { margin: 0; color: var(--text-3); }
.rubrik-kopf a { font-weight: 600; white-space: nowrap; }

/* ---------- Rechner-Leiste ---------- */
.rechner-leiste { background: var(--navy-2); color: #fff; padding: 28px 0; margin-top: 28px; }
.rechner-leiste-kopf { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.rechner-leiste-kopf h2 { margin: 0; color: #fff; }
.rechner-leiste-kopf a { color: #fed7aa; font-weight: 600; }
.rechner-kacheln { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; }
.rechner-kacheln a { display: block; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 12px 14px; color: #fff; height: 100%; transition: background .15s; }
.rechner-kacheln a:hover { background: rgba(249,115,22,.22); text-decoration: none; border-color: rgba(249,115,22,.5); }
.rechner-kacheln strong { display: block; font-size: .98rem; margin-bottom: 2px; }
.rechner-kacheln span { display: block; font-size: .8rem; color: #cbd5e1; line-height: 1.35; }
.rechner-uebersicht .rechner-kacheln a, .rechner-verwandte .rechner-kacheln a, .suche-rechner .rechner-kacheln a { background: var(--flaeche-2); border-color: var(--linie); color: var(--text); }
.rechner-uebersicht .rechner-kacheln a:hover, .rechner-verwandte .rechner-kacheln a:hover, .suche-rechner .rechner-kacheln a:hover { background: var(--flaeche-3); border-color: var(--akzent); }
.rechner-uebersicht .rechner-kacheln span, .rechner-verwandte .rechner-kacheln span, .suche-rechner .rechner-kacheln span { color: var(--text-2); }
.rechner-kacheln-gross { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.rechner-gruppe { margin: 24px 0; scroll-margin-top: 80px; }
.sprungleiste { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.sprungleiste a { background: var(--flaeche-2); border: 1px solid var(--linie); border-radius: 999px; padding: 4px 12px; font-size: .85rem; font-weight: 600; color: var(--text-2); }
.sprungleiste a:hover { border-color: var(--blau); color: var(--blau); text-decoration: none; }

/* ---------- Listen ---------- */
.listenseite, .markenseite, .rechnerseite, .rechner-uebersicht { padding-top: 24px; }
.listen-kopf { margin-bottom: 24px; }
.listen-titel { display: flex; align-items: center; gap: 16px; }
.listen-logo { width: 80px; height: 80px; object-fit: contain; border-radius: 10px; background: #fff; padding: 6px; border: 1px solid var(--linie); }
.listen-anzahl { color: var(--text-3); margin: 0; font-size: .9rem; }
.listen-einleitung { max-width: var(--breite-schmal); color: var(--text-2); }
.brotkrumen { font-size: .85rem; color: var(--text-3); margin-bottom: 10px; }
.brotkrumen a { color: var(--text-3); }
.chip { display: inline-block; background: var(--flaeche-2); border: 1px solid var(--linie); border-radius: 999px; padding: 3px 12px; font-size: .85rem; font-weight: 600; color: var(--text-2); margin: 2px 2px 2px 0; }
.chip:hover { border-color: var(--blau); color: var(--blau); text-decoration: none; }
.chip small { color: var(--text-3); font-weight: 400; }
.chip-leise { background: transparent; font-weight: 400; }
.unterkategorien { margin: 12px 0 0; }
.leer { color: var(--text-3); padding: 40px 0; text-align: center; }
.paginierung { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin: 32px 0; }
.paginierung a, .paginierung span { min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; padding: 0 12px; border-radius: 8px; border: 1px solid var(--linie); font-weight: 600; }
.paginierung a:hover { border-color: var(--blau); text-decoration: none; }
.paginierung .pag-aktiv { background: var(--blau); color: #fff; border-color: var(--blau); }
.paginierung .pag-punkte { border: 0; }

.marken-raster { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.marken-raster a { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 16px 10px; border: 1px solid var(--linie); border-radius: var(--radius); color: var(--text); background: var(--flaeche); transition: box-shadow .15s, transform .15s; height: 100%; }
.marken-raster a:hover { box-shadow: var(--schatten); transform: translateY(-2px); text-decoration: none; }
.marke-logo { width: 96px; height: 72px; display: grid; place-items: center; background: #fff; border-radius: 8px; overflow: hidden; }
.marke-logo img { max-height: 64px; width: auto; object-fit: contain; }
.marke-initial { font-size: 2rem; font-weight: 800; color: var(--grau); }
.marke-name { font-weight: 700; }
.marke-anzahl { font-size: .8rem; color: var(--text-3); }

/* ---------- Artikel ---------- */
.artikel-kopf { padding-top: 28px; max-width: var(--breite-schmal); }
.artikel-meta { color: var(--text-3); font-size: .9rem; }
.artikel-aufmacher { margin: 8px auto 28px; max-width: var(--breite); }
.artikel-aufmacher img { border-radius: var(--radius); width: 100%; max-height: 640px; object-fit: cover; }
.artikel-inhalt { font-size: 1.08rem; line-height: 1.7; }
.artikel-inhalt p { margin: 0 0 1.2em; }
.artikel-inhalt h2 { margin-top: 1.8em; font-size: 1.5rem; }
.artikel-inhalt h3 { margin-top: 1.5em; }
.artikel-inhalt img { border-radius: 8px; }
.artikel-inhalt a img { transition: opacity .15s; }
.artikel-inhalt a img:hover { opacity: .9; }
.artikel-inhalt .alignleft, .artikel-inhalt figure.alignleft { float: left; margin: .3em 1.4em 1em 0; max-width: 46%; }
.artikel-inhalt .alignright, .artikel-inhalt figure.alignright { float: right; margin: .3em 0 1em 1.4em; max-width: 46%; }
.artikel-inhalt .aligncenter, .artikel-inhalt figure.aligncenter { margin: 1em auto; }
.artikel-inhalt figure { margin: 1.2em 0; }
.artikel-inhalt figure.bild { display: table; }
.artikel-inhalt figcaption { display: table-caption; caption-side: bottom; font-size: .85rem; color: var(--text-3); padding-top: 6px; }
.artikel-inhalt .size-full, .artikel-inhalt .size-large { max-width: 100%; }
.artikel-inhalt ul, .artikel-inhalt ol { padding-left: 1.4em; }
.artikel-inhalt blockquote { border-left: 4px solid var(--blau-hell); margin: 1.5em 0; padding: .5em 1.2em; color: var(--text-2); background: var(--flaeche-2); border-radius: 0 8px 8px 0; }
.artikel-inhalt::after, .artikel-fuss::before { content: ""; display: table; clear: both; }
.artikel-inhalt .video { position: relative; aspect-ratio: 16/9; margin: 1.5em 0; }
.artikel-inhalt .video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: 8px; }
.galerie { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 8px; margin: 1.5em 0; clear: both; }
.galerie-bild img { aspect-ratio: 4/3; object-fit: cover; width: 100%; border-radius: 8px; }
.hinweis { border-radius: 10px; padding: 14px 18px; margin: 1.5em 0; border-left: 4px solid var(--blau); background: var(--flaeche-2); }
.hinweis-warning { border-left-color: var(--warnung); }
.hinweis-erfolg { border-left-color: var(--erfolg); }
.tabelle-scroll { overflow-x: auto; margin: 1.5em 0; -webkit-overflow-scrolling: touch; }
.tabelle { border-collapse: collapse; width: 100%; font-size: .95rem; }
.tabelle th, .tabelle td { padding: 8px 12px; border-bottom: 1px solid var(--linie); text-align: left; vertical-align: top; }
.tabelle th { background: var(--flaeche-2); font-weight: 700; }
.tabelle tr:first-child td strong { font-weight: 700; }
.tabelle img { max-width: 120px; }
.tabelle-titel { font-weight: 700; margin-bottom: 6px; }
.tabelle-rechner td:not(:first-child), .tabelle-rechner th:not(:first-child) { text-align: right; font-variant-numeric: tabular-nums; }
.tabelle-rechner tr.hervor td { background: rgba(11,132,214,.08); font-weight: 700; }
.artikel-fuss { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--linie); font-size: .9rem; color: var(--text-3); }
.seite-kopf { padding-top: 28px; }

/* ---------- Steckbrief ---------- */
.steckbrief { background: var(--flaeche-2); border: 1px solid var(--linie); border-radius: var(--radius); padding: 24px; margin: 2.5rem 0; clear: both; }
.steckbrief-titel { border-bottom: 3px solid var(--blau-hell); padding-bottom: 8px; margin-bottom: 20px; }
.steckbrief-titel small { display: block; font-size: .95rem; color: var(--text-2); font-weight: 500; margin-top: 4px; }
.steckbrief-raster { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.steckbrief-block h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-2); margin-bottom: 8px; }
.steckbrief-block h3 small { text-transform: none; letter-spacing: 0; font-weight: 400; }
.steckbrief-tabelle { width: 100%; border-collapse: collapse; font-size: .92rem; }
.steckbrief-tabelle th { text-align: left; font-weight: 500; color: var(--text-2); padding: 6px 8px 6px 0; border-bottom: 1px solid var(--linie); width: 50%; vertical-align: top; }
.steckbrief-tabelle td { padding: 6px 0; border-bottom: 1px solid var(--linie); font-weight: 600; vertical-align: top; }
.steckbrief-plusminus { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.pm-spalte h3 { font-size: .95rem; margin-bottom: 6px; }
.pm-spalte ul { list-style: none; padding: 0; margin: 0; }
.pm-spalte li { padding: 4px 0 4px 26px; position: relative; font-size: .95rem; }
.pm-spalte li::before { position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%; color: #fff; font-weight: 800; font-size: .8rem; display: grid; place-items: center; line-height: 1; }
.pm-plus li::before { content: "+"; background: var(--erfolg); }
.pm-minus li::before { content: "–"; background: #dc2626; }
@media (max-width: 560px) { .steckbrief-plusminus { grid-template-columns: 1fr; } }
.effizienz { display: flex; gap: 3px; margin: 8px 0 10px; }
.eff-stufe { flex: 1; text-align: center; padding: 6px 0; color: #fff; font-weight: 800; font-size: .85rem; border-radius: 4px; opacity: .45; }
.eff-stufe.eff-aktiv { opacity: 1; outline: 3px solid var(--text); outline-offset: 1px; transform: scale(1.1); }
.eff-0 { background: #00863f; } .eff-1 { background: #23a13b; } .eff-2 { background: #8dc63f; } .eff-3 { background: #ffd200; }
.eff-4 { background: #f7a600; } .eff-5 { background: #ec6608; } .eff-6 { background: #e30613; } .eff-7 { background: #b3000f; }

/* ---------- Rechner ---------- */
.rechner-kopf { margin-bottom: 20px; max-width: var(--breite-schmal); }
.rechner-kurz { color: var(--text-2); font-size: 1.05rem; }
.rechner { display: grid; grid-template-columns: minmax(300px, 2fr) 3fr; gap: 28px; align-items: start; }
@media (max-width: 860px) { .rechner { grid-template-columns: 1fr; } }
.rechner-form { background: var(--flaeche-2); border: 1px solid var(--linie); border-radius: var(--radius); padding: 20px; position: sticky; top: 80px; }
@media (max-width: 860px) { .rechner-form { position: static; } }
.rechner-gruppe-felder { border: 0; padding: 0; margin: 0 0 12px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 14px; min-width: 0; }
@media (max-width: 480px) { .rechner-gruppe-felder { grid-template-columns: minmax(0, 1fr); } }
.rechner-gruppe-felder legend { font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-2); margin-bottom: 6px; padding: 0; grid-column: 1 / -1; }
.feld { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.feld input, .feld select, .feld textarea { min-width: 0; }
.feld-breit { grid-column: 1 / -1; }
.feld label { font-size: .85rem; font-weight: 600; color: var(--text-2); }
.feld input[type="number"], .feld input[type="text"], .feld input[type="email"], .feld select, .feld textarea {
  width: 100%; font: inherit; padding: 8px 10px; border: 1px solid var(--grau); border-radius: 8px; background: var(--flaeche); color: var(--text); min-height: 42px;
}
.feld input:focus, .feld select:focus, .feld textarea:focus { outline: 2px solid var(--blau); outline-offset: 0; border-color: var(--blau); }
.feld input[aria-invalid="true"], .feld textarea[aria-invalid="true"] { border-color: #dc2626; }
.eingabe-einheit { display: flex; align-items: stretch; }
.eingabe-einheit input { border-radius: 8px 0 0 8px; flex: 1 1 0; min-width: 0; }
.eingabe-einheit .einheit { display: flex; align-items: center; padding: 0 10px; border: 1px solid var(--grau); border-left: 0; border-radius: 0 8px 8px 0; background: var(--flaeche-3); font-size: .85rem; color: var(--text-2); white-space: nowrap; }
.regler { width: 100%; accent-color: var(--blau); margin: 2px 0 0; }
.feld-hilfe { margin: 0; font-size: .78rem; color: var(--text-3); line-height: 1.4; }
.feld-schalter { justify-content: center; }
.schalter { display: flex; align-items: center; gap: 8px; cursor: pointer; font-weight: 600; font-size: .9rem; }
.schalter input { width: 20px; height: 20px; accent-color: var(--blau); }
.feld-versteckt { position: absolute; left: -9999px; }
.feld-fehler { color: #dc2626; font-size: .85rem; margin: 0; }
.rechner-aktionen { display: flex; gap: 10px; align-items: center; margin-top: 8px; flex-wrap: wrap; }
.rechner-status { font-size: .8rem; color: var(--text-3); }
.knopf { background: var(--akzent); color: #fff; border: 0; border-radius: 8px; padding: 10px 18px; font-weight: 700; cursor: pointer; transition: background .15s; }
.knopf:hover { background: var(--akzent-dunkel); }
.knopf-leise { background: transparent; color: var(--text-2); border: 1px solid var(--linie); }
.knopf-leise:hover { background: var(--flaeche-3); }
.js .rechner-aktionen .knopf[type="submit"] { display: none; }
.rechner-ergebnis { min-width: 0; }
.rechner > * { min-width: 0; }
.kennzahl { min-width: 0; }
.kennzahl-label { hyphens: auto; }
.kennzahl-wert { overflow-wrap: break-word; hyphens: auto; }
.kennzahl-wert.kennzahl-text { font-size: 1.15rem; line-height: 1.3; }
.kennzahlen { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-bottom: 20px; }
.kennzahl { background: var(--flaeche); border: 1px solid var(--linie); border-radius: 10px; padding: 12px 14px; display: flex; flex-direction: column; gap: 2px; }
.kennzahl-haupt { background: var(--navy-2); color: #fff; border-color: var(--navy-2); grid-column: span 2; }
.kennzahl-label { font-size: .78rem; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.kennzahl-haupt .kennzahl-label { color: #cbd5e1; }
.kennzahl-wert { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; font-variant-numeric: tabular-nums; line-height: 1.2; }
.kennzahl-haupt .kennzahl-wert { font-size: 2rem; }
.kennzahl-wert small { font-size: .8rem; font-weight: 600; color: var(--text-3); }
.kennzahl-haupt .kennzahl-wert small { color: #cbd5e1; }
.kennzahl-hinweis { font-size: .78rem; color: var(--text-3); }
.kennzahl-haupt .kennzahl-hinweis { color: #cbd5e1; }
@media (max-width: 400px) { .kennzahl-haupt { grid-column: span 1; } }
.rechner-hinweis { font-size: .9rem; color: var(--text-2); background: var(--flaeche-2); border-radius: 10px; padding: 12px 16px; margin-bottom: 20px; }
.rechner-hinweis p:last-child { margin-bottom: 0; }
.rechner-erklaerung, .rechner-artikel, .rechner-verwandte { margin-top: 40px; max-width: var(--breite-schmal); }
.rechner-erklaerung h2, .rechner-artikel h2, .rechner-verwandte h2 { font-size: 1.3rem; border-bottom: 3px solid var(--blau-hell); padding-bottom: 6px; }
.rechner-verwandte { max-width: none; }
.rechner-einbettung { background: var(--flaeche-2); border: 1px solid var(--linie); border-radius: var(--radius); padding: 24px; margin: 8px 0 32px; }
.rechner-einbettung-kopf h2 { margin-bottom: 4px; }
.rechner-einbettung-kopf p { color: var(--text-2); }
.rechner-einbettung .rechner-form { background: var(--flaeche); position: static; }
.formel { font-family: ui-monospace, Consolas, monospace; background: var(--flaeche-2); padding: 8px 12px; border-radius: 8px; display: inline-block; margin: .3em 0; }

/* ---------- Diagramm ---------- */
.diagramm { margin: 0 0 20px; position: relative; }
.diagramm figcaption { font-weight: 700; font-size: .9rem; margin-bottom: 4px; }
.diagramm-svg { width: 100%; height: auto; display: block; }
.dg-raster { stroke: var(--linie); stroke-width: 1; }
.dg-basis { stroke: var(--grau); stroke-width: 1; }
.dg-achse { font-size: 11px; fill: var(--text-3); font-family: var(--schrift); }
.dg-direkt { font-size: 11px; font-weight: 700; fill: var(--text-2); font-family: var(--schrift); }
.dg-punkt { opacity: 0; transition: opacity .1s; }
.dg-punkt.aktiv, .diagramm:hover .dg-punkt { opacity: 1; }
.dg-punkt.aktiv { stroke: var(--flaeche); stroke-width: 2; r: 6; }
.dg-balken { cursor: pointer; }
.dg-balken:hover { opacity: .8; }
.dg-legende { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 16px; padding: 0; margin: 6px 0 0; font-size: .82rem; color: var(--text-2); }
.dg-farbe { display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: 6px; vertical-align: -1px; }
.dg-tooltip { position: absolute; pointer-events: none; background: var(--navy); color: #fff; font-size: .8rem; padding: 6px 10px; border-radius: 6px; white-space: nowrap; z-index: 5; transform: translate(-50%, -110%); }

/* ---------- Suche / Formulare ---------- */
.suche-gross { display: flex; gap: 8px; max-width: 600px; margin: 12px 0; }
.suche-gross input { flex: 1; font: inherit; padding: 10px 14px; border: 1px solid var(--grau); border-radius: 8px; background: var(--flaeche); color: var(--text); }
.suche-gross button { background: var(--blau); color: #fff; border: 0; border-radius: 8px; padding: 0 18px; font-weight: 700; cursor: pointer; }
.suche-rechner { margin-bottom: 28px; }
.suche-rechner h2 { font-size: 1.1rem; }
.formular { display: grid; gap: 14px; max-width: 600px; margin-top: 12px; }
.formular textarea { resize: vertical; }
.fehlerseite { padding-top: 60px; padding-bottom: 60px; }

/* ---------- Lightbox ---------- */
.lightbox-ebene { position: fixed; inset: 0; background: rgba(5, 10, 20, .92); z-index: 200; display: flex; align-items: center; justify-content: center; }
.lightbox-ebene[hidden] { display: none; }
.lightbox-ebene figure { margin: 0; max-width: 94vw; max-height: 94vh; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.lightbox-ebene img { max-width: 94vw; max-height: 86vh; width: auto; height: auto; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-ebene figcaption { color: #e2e8f0; font-size: .9rem; }
.lightbox-ebene button { position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; font-size: 2rem; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; line-height: 1; }
.lightbox-ebene button:hover { background: rgba(255,255,255,.25); }
.lightbox-schliessen { top: 16px; right: 16px; }
.lightbox-zurueck { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-weiter { right: 16px; top: 50%; transform: translateY(-50%); }

@media print {
  .kopf, .fuss, .rechner-form, .lightbox-ebene, .rechner-verwandte { display: none !important; }
  body { font-size: 12pt; }
}
.dg-achse-klein { font-size: 8.5px; }

/* ---------- Artikel: Neugestaltung ---------- */
.kicker { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blau); margin: 0 0 .5rem; }
.kicker a { color: var(--blau); }
.kicker span { color: var(--grau); margin: 0 .2em; }
.kicker-antrieb { color: var(--akzent-dunkel) !important; }
.artikel-kopf h1 { max-width: 20ch; font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3rem); letter-spacing: -.02em; }
.artikel-meta { color: var(--text-3); font-size: .9rem; display: flex; flex-wrap: wrap; gap: .35em; }
.artikel-aufmacher { margin: 12px auto 0; }
.artikel-aufmacher img { border-radius: var(--radius); width: 100%; max-height: 680px; object-fit: cover; }
.kernfakten { list-style: none; margin: 0 0 32px; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1px; background: var(--linie); border: 1px solid var(--linie); border-radius: 0 0 var(--radius) var(--radius); overflow: hidden; }
.kernfakten li { background: var(--flaeche); padding: 12px 14px; display: flex; flex-direction: column; }
.kf-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-3); font-weight: 700; }
.kf-wert { font-size: 1.45rem; font-weight: 800; letter-spacing: -.02em; color: var(--text); line-height: 1.2; font-variant-numeric: tabular-nums; }
.kf-wert small { font-size: .8rem; font-weight: 600; color: var(--text-2); }
.kf-zusatz { font-size: .78rem; color: var(--text-3); }
.artikel-inhalt { font-size: 1.1rem; line-height: 1.75; }
.artikel-inhalt .einleitung { font-size: 1.28rem; line-height: 1.6; color: var(--text); font-weight: 500; margin-bottom: 1.4em; }
.artikel-inhalt .einleitung::first-letter { font-size: 2.6em; font-weight: 800; float: left; line-height: .9; margin: .08em .12em 0 0; color: var(--blau); }
.artikel-inhalt .alignleft, .artikel-inhalt figure.alignleft { float: left; margin: .4em 1.6em 1em 0; max-width: 42%; }
.artikel-inhalt .alignright, .artikel-inhalt figure.alignright { float: right; margin: .4em 0 1em 1.6em; max-width: 42%; }
.artikel-inhalt .alignleft img, .artikel-inhalt .alignright img { box-shadow: var(--schatten); }
.artikel-inhalt .galerie { margin: 2em 0; }
@media (max-width: 600px) {
  .artikel-inhalt .alignleft, .artikel-inhalt .alignright, .artikel-inhalt figure.alignleft, .artikel-inhalt figure.alignright { float: none; max-width: 100%; margin: 1em 0; }
}
.fazit { clear: both; background: var(--navy-2); color: #f1f5f9; border-radius: var(--radius); padding: 24px 28px; margin: 2.5em 0 1.5em; }
.fazit h2 { color: #fff; margin: 0 0 .6em; font-size: 1.3rem; text-transform: uppercase; letter-spacing: .1em; }
.fazit h2::before { content: ""; display: inline-block; width: 28px; height: 4px; background: var(--akzent); vertical-align: middle; margin-right: 12px; border-radius: 2px; }
.fazit p { color: #e2e8f0; font-size: 1.08rem; }
.fazit p:last-child { margin-bottom: 0; }
.fazit a { color: #fed7aa; }
.fazit img, .fazit .galerie { display: none; }
.nach-fazit { clear: both; margin: 1.5em 0; }
.nach-fazit .alignleft, .nach-fazit .alignright { float: none; max-width: 100%; margin: 1em 0; }

/* Steckbrief-Karten */
.steckbrief { background: var(--flaeche-2); border: 1px solid var(--linie); border-radius: var(--radius); padding: 28px; margin: 2.5rem 0; clear: both; scroll-margin-top: 80px; }
.steckbrief-kopf { margin-bottom: 20px; }
.steckbrief-kopf h2 { margin: 0; font-size: 1.6rem; }
.steckbrief-plusminus { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; background: var(--flaeche); border-radius: 10px; padding: 16px 20px; border: 1px solid var(--linie); }
.sb-raster { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.sb-karte { background: var(--flaeche); border: 1px solid var(--linie); border-radius: 10px; padding: 16px 18px; }
.sb-karte h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-2); margin: 0 0 10px; display: flex; align-items: center; gap: 8px; padding-bottom: 8px; border-bottom: 2px solid var(--blau-hell); }
.sb-icon { width: 20px; height: 20px; color: var(--blau); flex: none; }
.sb-karte dl { margin: 0; }
.sb-zeile { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4px 12px; padding: 7px 0; border-bottom: 1px solid var(--linie); align-items: baseline; }
.sb-zeile:last-child { border-bottom: 0; }
.sb-zeile dt { color: var(--text-2); font-size: .9rem; }
.sb-zeile dd { margin: 0; font-weight: 600; text-align: right; font-size: .95rem; font-variant-numeric: tabular-nums; }
.sb-zeile dd small { font-weight: 400; color: var(--text-3); }
.sb-balken { display: block; height: 5px; background: var(--flaeche-3); border-radius: 3px; margin-top: 5px; width: 120px; margin-left: auto; overflow: hidden; }
.sb-balken span { display: block; height: 100%; background: linear-gradient(90deg, var(--blau), var(--blau-hell)); border-radius: 3px; }
.sb-link { font-weight: 600; }
.sb-karte-eff .effizienz { margin-top: 4px; }
.sb-fuss { margin: 16px 0 0; }
@media (max-width: 560px) { .steckbrief { padding: 18px; } .steckbrief-plusminus { grid-template-columns: 1fr; } }

/* =========================================================================
   Artikel-Layout: breitere Lesespalte + gebuendelte Bildergalerie (2026-09)
   ========================================================================= */
:root { --breite-artikel: 880px; }

/* Nur der Artikel-Textbereich wird breiter – andere .innen-schmal bleiben. */
.artikel-kopf { max-width: var(--breite-artikel); }
.artikel-inhalt.innen-schmal,
.artikel-fuss.innen-schmal { max-width: var(--breite-artikel); }
.artikel-inhalt { font-size: 1.12rem; line-height: 1.78; }

/* Bilder werden zu einer Galerie am Ende gebuendelt: kein Float mehr im Text. */
.artikel-inhalt img.alignleft,  .artikel-inhalt img.alignright,
.artikel-inhalt figure.alignleft, .artikel-inhalt figure.alignright { float: none; }

/* Horizontal scrollbare Galerie – in der Textmitte, mit Snap. */
.galerie.galerie-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding: 4px 0 12px;
  margin: 2.2em 0;
  scroll-padding-left: 2px;
}
.galerie-scroll .galerie-bild {
  flex: 0 0 auto;
  width: min(78%, 360px);
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
}
.galerie-scroll .galerie-bild img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: var(--schatten);
  transition: filter .18s ease;
}
.galerie-scroll .galerie-bild:hover img { filter: brightness(1.05); }
.galerie-scroll::-webkit-scrollbar { height: 8px; }
.galerie-scroll::-webkit-scrollbar-thumb { background: var(--linie); border-radius: 8px; }

/* Einzelnes Foto: mittig, gross, ruhig. */
.artikel-foto-solo { margin: 2.4em auto; max-width: 720px; }
.artikel-foto-solo img { width: 100%; border-radius: 12px; box-shadow: var(--schatten); }

@media (max-width: 680px) {
  .galerie-scroll .galerie-bild { width: 82%; }
}

/* Aufmacher als schlanker Cinematic-Banner statt hohem Bildblock. */
.artikel-aufmacher { max-width: var(--breite-artikel); margin: 10px auto 0; }
.artikel-aufmacher img { width: 100%; aspect-ratio: 16 / 7; height: auto; object-fit: cover; object-position: center 58%; border-radius: var(--radius); }
@media (max-width: 680px) { .artikel-aufmacher img { aspect-ratio: 16 / 9; } }

/* =========================================================================
   Artikel mit Sidebar rechts – nutzt den Platz links/rechts (2026-09)
   ========================================================================= */
.artikel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  column-gap: 44px;
  align-items: start;
}
/* Titel-Header eigene Zeile (Spalte 1); Artikel + Sidebar darunter -> die
   Sidebar beginnt buendig mit dem Aufmacher-Bild, nicht schon beim Titel. */
.artikel-layout > .artikel-kopf  { grid-column: 1; grid-row: 1; }
.artikel-layout > .artikel       { grid-column: 1; grid-row: 2; min-width: 0; }
.artikel-layout > .artikel-seite { grid-column: 2; grid-row: 2; }

/* Innere Breiten-/Zentrier-Helfer aufheben – die Spalte gibt die Breite vor. */
.artikel-layout .innen,
.artikel-layout .innen-schmal,
.artikel-layout .artikel-kopf,
.artikel-layout .artikel-inhalt.innen-schmal,
.artikel-layout .artikel-fuss.innen-schmal,
.artikel-layout .artikel-aufmacher {
  max-width: none; margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0;
}

/* Aufmacher ohne oberen Rand, damit Bildoberkante und Sidebar exakt buendig sind. */
.artikel-layout .artikel > .artikel-aufmacher:first-child { margin-top: 0; }

.artikel-seite { position: sticky; top: 84px; align-self: start; }
.seite-block { background: var(--flaeche-2); border: 1px solid var(--linie); border-radius: var(--radius); padding: 18px 18px 10px; }
.seite-titel { font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-2); margin: 0 0 14px; }
.seite-liste { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.seite-liste a { display: grid; grid-template-columns: 96px 1fr; gap: 12px; align-items: center; color: var(--text); }
.seite-liste a:hover { text-decoration: none; }
.seite-liste a:hover span { color: var(--blau); }
.seite-liste img { width: 96px; aspect-ratio: 3/2; object-fit: cover; border-radius: 8px; }
.seite-liste span { font-size: .9rem; font-weight: 600; line-height: 1.32; }

@media (max-width: 980px) {
  .artikel-layout { grid-template-columns: 1fr; column-gap: 0; }
  .artikel-layout > .artikel-kopf,
  .artikel-layout > .artikel,
  .artikel-layout > .artikel-seite { grid-column: 1; grid-row: auto; }
  .artikel-seite { position: static; margin-top: 2.4rem; }
  .artikel-layout .artikel-inhalt.innen-schmal { max-width: var(--breite-artikel); margin: 0 auto; }
}

/* Sidebar-Block "Rechner für Autofahrer" mit Qwen-Symbolen. */
.seite-rechner { margin-top: 22px; }
.rechner-liste { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.rechner-liste a {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 8px; border-radius: 10px; color: var(--text);
  transition: background .14s;
}
.rechner-liste a:hover { background: var(--flaeche); text-decoration: none; }
.rechner-liste a:hover .r-name { color: var(--blau); }
.r-icon {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 9px;
  background: var(--flaeche); border: 1px solid var(--linie);
  display: grid; place-items: center;
}
.r-icon img { width: 28px; height: 28px; }
.r-name { font-size: .92rem; font-weight: 600; line-height: 1.25; }
.seite-mehr { display: inline-block; margin: 12px 0 2px; font-weight: 700; font-size: .9rem; }
/* Icons im Dark Mode sichtbar halten (blau auf weiss -> Kachel bleibt hell). */

/* =========================================================================
   Spritpreis-Ticker (2026-09)
   ========================================================================= */
.sprit { padding-top: 24px; }
.sprit-kopf h1 { margin-bottom: .2em; }
.sprit-unter { color: var(--text-2); margin-bottom: 1rem; }
.ort-form { display: flex; flex-wrap: wrap; gap: 12px; align-items: end; background: var(--flaeche-2); border: 1px solid var(--linie); border-radius: var(--radius); padding: 14px 16px; }
.ort-form label { display: flex; flex-direction: column; gap: 4px; font-size: .85rem; font-weight: 600; color: var(--text-2); }
.ort-form select, .ort-form input { font: inherit; padding: 8px 10px; border: 1px solid var(--linie); border-radius: 8px; background: var(--flaeche); color: var(--text); min-width: 150px; }
.ort-form button { font: inherit; font-weight: 700; padding: 9px 18px; border: 0; border-radius: 8px; background: var(--blau); color: #fff; cursor: pointer; }
.ort-form button:hover { background: var(--blau-dunkel); }
.ort-hinweis { font-size: .82rem; color: var(--text-3); margin: 8px 0 1.6rem; }
.sprit-leer { background: var(--flaeche-2); border: 1px solid var(--linie); border-radius: var(--radius); padding: 20px; margin: 1rem 0 2rem; }

/* Sorten-Kacheln (anklickbar) */
.sprit-ticker { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-bottom: 2rem; }
.ticker-karte { display: flex; flex-direction: column; gap: 2px; padding: 16px 18px; border: 1px solid var(--linie); border-radius: var(--radius); background: var(--flaeche); color: var(--text); }
.ticker-karte:hover { text-decoration: none; border-color: var(--blau); }
.ticker-karte.aktiv { border-color: var(--blau); box-shadow: inset 0 0 0 1px var(--blau); }
.tk-name { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-2); font-weight: 700; }
.tk-preis { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; }
.tk-info { font-size: .82rem; color: var(--text-3); }

.sprit-spalten { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 2.4rem; }
@media (max-width: 900px) { .sprit-spalten { grid-template-columns: 1fr; } }

.stationen { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.stationen li { display: grid; grid-template-columns: 34px 1fr auto; gap: 12px; align-items: center; padding: 10px 12px; border: 1px solid var(--linie); border-radius: 10px; background: var(--flaeche); }
.st-platz { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--flaeche-3); font-weight: 800; font-size: .85rem; }
.stationen li:nth-child(1) .st-platz { background: #f6e3a8; }
.stationen li:nth-child(2) .st-platz { background: #e3e5ea; }
.stationen li:nth-child(3) .st-platz { background: #eccfb4; }
.st-haupt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.st-haupt small { color: var(--text-3); }
.st-preis { font-weight: 800; font-size: 1.1rem; white-space: nowrap; }
.st-med { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.med { display: inline-block; width: 11px; height: 11px; border-radius: 50%; margin-right: 2px; }
.med.gold { background: #d4a017; } .med.silber { background: #9aa0aa; } .med.bronze { background: #b06b2c; }
.med.leer { width: auto; color: var(--text-3); }

.sprit-karte { height: 420px; border-radius: var(--radius); border: 1px solid var(--linie); z-index: 0; }
.karten-hinweis { font-size: .82rem; color: var(--text-3); margin-top: 8px; }

.sprit-raenge { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; }
.rang-tabelle { width: 100%; border-collapse: collapse; font-size: .9rem; }
.rang-tabelle th { text-align: left; font-weight: 600; color: var(--text-2); border-bottom: 2px solid var(--linie); padding: 6px 6px 8px; }
.rang-tabelle td { border-bottom: 1px solid var(--linie); padding: 8px 6px; vertical-align: top; }
.rang-tabelle small { color: var(--text-3); }
.med-zelle { white-space: nowrap; }
.sprit-quelle { margin-top: 2rem; font-size: .82rem; color: var(--text-3); }

/* Spritpreis-Ticker in der Seitenspalte */
.sprit-widget { margin-bottom: 22px; }
.sw-liste { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.sw-liste a { display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 0 10px; align-items: baseline; padding: 9px 10px; border-radius: 10px; background: var(--flaeche); border: 1px solid var(--linie); color: var(--text); }
.sw-liste a:hover { text-decoration: none; border-color: var(--blau); }
.sw-sorte { font-size: .86rem; font-weight: 600; color: var(--text-2); }
.sw-preis { font-size: 1.15rem; font-weight: 800; letter-spacing: -.02em; grid-row: 1 / span 2; align-self: center; }
.sw-schnitt { font-size: .76rem; color: var(--text-3); }
.nav a.nav-sprit { color: #bbf7d0; }
.nav a.nav-sprit:hover, .nav a.nav-sprit.aktiv { background: rgba(34,197,94,.22); color: #fff; }

/* Tankstellen-Detail (Kursverlauf) */
.sprit-station .brotkrumen { margin-bottom: .6rem; }
.sprit-tipp { background: var(--flaeche-2); border-left: 4px solid var(--blau); border-radius: 0 8px 8px 0; padding: 10px 14px; margin: 0 0 1rem; }
.sprit-station .ticker-karte .st-med { margin-top: 6px; }

/* Spritpreis-Band (Startseite) */
.sprit-band { background: var(--navy-2); color: #e2e8f0; border-bottom: 1px solid rgba(255,255,255,.08); }
.sb-innen { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; padding-top: 10px; padding-bottom: 10px; }
.sb-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; color: #93c5fd; }
.sb-wert { display: inline-flex; align-items: baseline; gap: 7px; color: #fff; }
.sb-wert:hover { text-decoration: none; color: var(--blau-hell); }
.sb-sorte { font-size: .84rem; color: #cbd5e1; }
.sb-wert strong { font-size: 1.12rem; font-weight: 800; letter-spacing: -.02em; }
.sb-wert small { font-size: .76rem; color: #94a3b8; }
.sb-mehr { margin-left: auto; font-size: .85rem; font-weight: 700; color: #bbf7d0; }
@media (max-width: 640px) { .sb-mehr { margin-left: 0; } }

/* PLZ-Eingabe im Spritpreis-Band */
.sb-form { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.sb-sr { position: absolute; left: -9999px; }
.sb-form select, .sb-form input {
  font: inherit; font-size: .85rem; padding: 5px 8px; border-radius: 7px;
  border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.1); color: #fff;
}
.sb-form select { padding-right: 4px; }
.sb-form input { width: 86px; }
.sb-form input::placeholder { color: #94a3b8; }
.sb-form select option { color: #111; }
.sb-form button {
  font: inherit; font-size: .85rem; font-weight: 700; padding: 6px 12px; border: 0;
  border-radius: 7px; background: var(--blau); color: #fff; cursor: pointer; white-space: nowrap;
}
.sb-form button:hover { background: var(--blau-hell); color: #08203a; }
@media (max-width: 720px) { .sb-form { margin-left: 0; width: 100%; } .sb-form input { flex: 1; width: auto; } }
