/* webop-Lektorat — Umsetzung von DESIGN.md (verbindlich) */

@font-face {
  font-family: "Inter";
  src: url("/static/fonts/inter-regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/static/fonts/inter-semibold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("/static/fonts/source-serif-4-semibold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}

:root {
  --wb-teal: #00C0C0;
  --wb-teal-ink: #00A3A3;
  --wb-teal-soft: #B8ECEC;
  --wb-deep: #053238;
  --wb-deep-80: #053238cc;
  --wb-deep-60: #05323899;
  --wb-deep-40: #05323866;
  --wb-deep-ink: #021A1E;
  --wb-mint: #5BAEA4;
  --wb-amber: #FFC03C;
  --wb-amber-ink: #E8A520;
  --wb-brown: #73400D;
  --wb-bg: #FFFFFF;
  --wb-surface: #F1F5F9;
  --wb-surface-2: #E2E8F0;
  --wb-hairline: #CBD5E1;
  --wb-muted: #64748B;
  --wb-faint: #94A3B8;
  --wb-success: #2F9E6A;
  --wb-warning: #E8A520;
  --wb-danger: #C0392B;
  --wb-shadow-xs: 0 1px 2px rgba(5, 50, 56, 0.06);
  --wb-shadow-sm: 0 2px 6px rgba(5, 50, 56, 0.08);
  --wb-shadow-md: 0 6px 20px rgba(5, 50, 56, 0.10);
  --wb-shadow-lg: 0 14px 40px rgba(5, 50, 56, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--wb-surface);
  color: var(--wb-deep-80);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

.wb-display, h1.wb-display, h2.wb-display {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--wb-deep);
  line-height: 1.1;
  margin: 0 0 8px;
}
h1.wb-display { font-size: 30px; }

.wb-eyebrow {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--wb-muted); margin-top: 12px;
}
.wb-muted { color: var(--wb-muted); }
.tnum { font-variant-numeric: tabular-nums; }

/* Topbar */
.wb-topbar {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; padding: 0 20px;
  background: var(--wb-deep); color: #fff;
}
.wb-topbar-brand { display: flex; align-items: center; gap: 8px; }
.wb-logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--wb-teal); color: #fff; font-weight: 700;
}
.wb-logo-word { font-weight: 600; }
.wb-logo-product {
  color: var(--wb-teal);
  font-family: "Source Serif 4", Georgia, serif;
}
.wb-topbar-nav { display: flex; gap: 16px; }
.wb-topbar-nav a { color: #fff; text-decoration: none; opacity: .85; }
.wb-topbar-nav a:hover { opacity: 1; text-decoration: underline; }
.wb-topbar-user { display: flex; align-items: center; gap: 10px; }
.wb-topbar-user form { margin: 0; }
.wb-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 9999px;
  background: var(--wb-mint); color: var(--wb-deep); font-weight: 700;
}

.wb-main { max-width: 860px; margin: 0 auto; padding: 24px 16px 64px; }
.wb-pagehead { margin: 8px 0 20px; }
.wb-pagehead p { margin: 0 0 8px; }

/* Karten */
.wb-card {
  background: var(--wb-bg);
  border: 1px solid var(--wb-hairline);
  border-radius: 12px;
  box-shadow: var(--wb-shadow-xs);
  padding: 16px 20px;
  margin-bottom: 20px;
}
.wb-card-narrow { max-width: 420px; margin: 48px auto; }
.wb-card-title { font-size: 16px; color: var(--wb-deep); margin: 0 0 8px; }
.wb-count { color: var(--wb-muted); font-size: 12px; font-weight: 400; }
.wb-empty { color: var(--wb-muted); text-align: center; padding: 32px 16px; }

/* Listenzeilen */
.wb-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 12px 0; border-top: 1px solid var(--wb-hairline);
  color: inherit; text-decoration: none;
}
.wb-row:hover { background: var(--wb-surface); }
.wb-row-title { font-weight: 600; color: var(--wb-deep); flex: 1 1 240px; }
.wb-row-meta { color: var(--wb-muted); font-size: 13px; }
.wb-row form { margin: 0; }

/* Badges */
.wb-badge {
  display: inline-block; border-radius: 9999px; padding: 2px 8px;
  font-size: 11px; font-weight: 600;
}
.wb-badge-neutral   { background: #F1F5F9; color: #334155; }
.wb-badge-info      { background: #DBEAFE; color: #1E40AF; }
.wb-badge-positive  { background: #DCFCE7; color: #166534; }
.wb-badge-highlight { background: #FEF3C7; color: #92400E; }
.wb-badge-negative  { background: #FEE2E2; color: #B91C1C; }
/* Als eigenständige Meldung (statt als Statuspille) braucht der Badge Luft
   und Umbruch — er trägt dann ganze Sätze, siehe Paritätswarnung. */
div.wb-badge { margin: 8px 0; padding: 6px 12px; line-height: 1.4; }
/* Schaltbarer Badge (EN-Kennung in der Beitragszeile): ohne diese Rücknahme
   trüge er Rahmen und Schrift des Browser-Knopfs statt die Pillen-Optik. */
button.wb-badge {
  border: 0; font-family: inherit; line-height: 1.6; cursor: pointer;
}
button.wb-badge:hover { filter: brightness(0.96); }

/* Buttons */
.wb-btn {
  height: 32px; padding: 0 12px; border-radius: 8px;
  border: 1px solid var(--wb-hairline); background: var(--wb-bg);
  color: var(--wb-deep-80); font: inherit; font-weight: 500; cursor: pointer;
}
.wb-btn:hover { background: var(--wb-surface); }
/* Gesperrt (z. B. Aktionsleiste, solange ein Job läuft). Der Link-Fall trägt
   aria-disabled statt disabled — `a` kennt das Attribut nicht.
   Diese Regeln stehen VOR den Varianten: sie sind gleich spezifisch wie
   `.wb-btn-primary:disabled:hover`, und bei Gleichstand gewinnt die spätere —
   der gesperrte Amber-Knopf soll amber bleiben, nicht weiß werden. */
.wb-btn:disabled, .wb-btn[aria-disabled="true"] { opacity: .5; cursor: not-allowed; }
.wb-btn:disabled:hover, .wb-btn[aria-disabled="true"]:hover { background: var(--wb-bg); }
.wb-btn-primary {
  height: 40px; padding: 0 16px;
  background: var(--wb-amber); border-color: var(--wb-amber);
  color: var(--wb-brown); font-weight: 700;
}
.wb-btn-primary:hover { background: var(--wb-amber-ink); border-color: var(--wb-amber-ink); }
.wb-btn-primary:disabled { opacity: .5; cursor: not-allowed; }
.wb-btn-primary:disabled:hover { background: var(--wb-amber); border-color: var(--wb-amber); }
.wb-btn-ghost {
  background: transparent; border-color: transparent; color: #fff;
}
.wb-btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }
/* Knopf-Optik für Links (Aktionsleiste, „Abbrechen“): ohne inline-flex säße
   die Beschriftung nicht mittig, und die globale Link-Regel unterstriche sie. */
a.wb-btn, a.wb-btn:hover {
  display: inline-flex; align-items: center; text-decoration: none;
  color: var(--wb-deep-80);
}
/* Knopfreihe: ohne sie setzt die globale form-Margin die Formulare
   untereinander statt nebeneinander. */
.wb-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.wb-actions form { margin: 0; }

/* Massenaktionen (Aktionsleiste und Wurzel-Knoten des Baums). Bewusst klein
   und farblos: sie stehen neben den Job-Knöpfen bzw. über der Beitragsliste
   und dürfen dort nicht wie der Auslöser eines Auftrags aussehen. */
.wb-massen { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.wb-massen-gruppe { display: flex; align-items: center; gap: 6px; }
.wb-massen-gruppe form { margin: 0; }
.wb-massen-reihe { margin-top: 12px; padding-top: 12px;
                   border-top: 1px solid var(--wb-hairline); }
/* Am Knoten sitzt die Reihe zwischen Überschrift und erster Beitragszeile. */
details > .wb-massen { margin: 8px 0 4px; }
/* 28 px ist die untere Grenze aus DESIGN.md („klein 28–32 px") — darunter wird
   die Trefferfläche auf dem Touchpad unangenehm. */
.wb-btn-klein { height: 28px; padding: 0 8px; font-size: 12px; }

/* Formulare */
.wb-form label, .wb-card label { display: block; margin: 12px 0 4px; }
input[type="email"], input[type="text"], textarea {
  width: 100%; border: 1px solid var(--wb-hairline); border-radius: 6px;
  background: var(--wb-bg); font: inherit; padding: 8px 10px;
}
input[type="email"], input[type="text"] { height: 40px; }
select {
  border: 1px solid var(--wb-hairline); border-radius: 6px;
  background: var(--wb-bg); font: inherit; height: 40px; padding: 0 10px;
}
textarea { line-height: 1.45; }
fieldset { border: 1px solid var(--wb-hairline); border-radius: 8px; margin: 12px 0; }
legend { padding: 0 4px; }
.wb-check { display: inline-flex; align-items: center; gap: 6px; margin-right: 16px; }
.wb-card label.wb-check { display: inline-flex; }
.wb-check input { width: auto; height: auto; }
form { margin: 8px 0 0; }

/* Links */
a { color: var(--wb-teal-ink); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--wb-deep); }
.wb-row { text-decoration: none; }

/* Segmente */
.wb-article .wb-segment {
  padding: 10px 12px; border-radius: 8px; margin-bottom: 4px;
}
.wb-segment-strittig { background: #FEF3C7; }          /* amber-100: strittig */
.wb-segment-strittig.wb-segment-geprueft { background: #DCFCE7; } /* green-100 */
/* Step-Überschrift im Beitrag: h2 der Skala (20 px, Display-Stil). Der obere
   Abstand trennt sie vom vorigen Step, ohne die erste Karte einzurücken.
   Der Selektor trägt das h2 mit, sonst gewönne die margin-Regel von
   `h2.wb-display` weiter oben. */
h2.wb-segment-titel { font-size: 20px; margin: 16px 0 4px; }
.wb-article .wb-segment:first-child h2.wb-segment-titel { margin-top: 0; }
.wb-segment-target { font-size: 15px; line-height: 1.55; }
.wb-segment-target p:first-child { margin-top: 0; }
.wb-segment-target p:last-child { margin-bottom: 0; }
/* „Alle publizierbaren auswählen" (Plan 36): sitzt links neben dem
   Publizieren-Knopf in der Aktionsleiste. */
.wb-alle-auswaehlen {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--wb-deep-80); cursor: pointer;
  margin-right: 12px;
}

/* Fortschrittsbalken der Job-Karte (Plan 26): Track in Surface-2, Füllung
   in Teal — ruhig, keine Animation (das Fragment lädt sich ohnehin nach). */
.wb-fortschritt-zeile {
  display: flex; align-items: center; gap: 10px; margin: 10px 0 4px;
}
.wb-fortschritt {
  flex: 1; height: 8px; border-radius: 9999px;
  background: var(--wb-surface-2); overflow: hidden;
}
.wb-fortschritt-balken {
  height: 100%; border-radius: 9999px; background: var(--wb-teal);
}

/* Sprachfilter der Übersichtsseiten (Plan 25): Pills unter dem Seitenkopf.
   Aktiv = Teal-Soft-Fläche (wie „aktive Auswahl" laut DESIGN.md), inaktiv
   = Surface-2-Chip. */
.wb-sprachfilter {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px;
}
.wb-pill {
  display: inline-block; border-radius: 9999px; padding: 4px 12px;
  font-size: 12px; font-weight: 600; text-decoration: none;
  background: var(--wb-surface-2); color: var(--wb-deep-80);
}
.wb-pill:hover { color: var(--wb-deep); }
.wb-pill-aktiv { background: var(--wb-teal-soft); color: var(--wb-deep); }

/* Frontend-Gliederung (Plan 23): Kapitelüberschrift über den Steps eines
   Abschnitts — Serifen-Display wie der Seitentitel, Haarlinie darunter als
   ruhiger Abschnittswechsel. */
h2.wb-kapitel {
  font-size: 22px; margin: 32px 0 10px; padding-bottom: 6px;
  border-bottom: 1px solid var(--wb-hairline);
}
.wb-article h2.wb-kapitel:first-of-type { margin-top: 0; }
.wb-legende { color: var(--wb-muted); font-size: 12px; margin: 0 0 12px; }
/* Zweispaltige Segmentkarte (Plan 23): links die deutsche Vorlage (gedämpft,
   durch Haarlinie getrennt), rechts die Übersetzung. Auf schmalen Fenstern
   stapeln die Spalten. */
.wb-seg-zeilen { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.wb-seg-de {
  color: var(--wb-deep-60); font-size: 14px; line-height: 1.55;
  border-right: 1px solid var(--wb-hairline); padding-right: 16px;
}
.wb-seg-de p:first-child { margin-top: 0; }
.wb-seg-de p:last-child { margin-bottom: 0; }
@media (max-width: 800px) {
  .wb-seg-zeilen { grid-template-columns: 1fr; }
  .wb-seg-de {
    border-right: none; border-bottom: 1px dashed var(--wb-hairline);
    padding: 0 0 6px; margin-bottom: 6px;
  }
}
/* Deutsche Vorlage unter einer Step-Überschrift. */
.wb-segment-titel-de { color: var(--wb-muted); font-size: 13px; margin: 0 0 6px; }
/* Medien-Platzhalter: markiert die Stelle von Bild/Video/Tabelle im
   Frontend, ohne die Medien zu laden. */
.wb-medien {
  border: 1px dashed var(--wb-hairline); border-radius: 8px;
  color: var(--wb-faint); font-size: 12px; text-align: center;
  padding: 8px 10px; margin: 8px 0;
}
.wb-segment-detail { border-top: 1px solid var(--wb-hairline); margin-top: 8px; }
.wb-segment-source {
  background: var(--wb-surface); border-radius: 6px; padding: 8px 10px;
  margin: 4px 0 8px;
}
/* Die KI-Hinweise sind eine Liste — knapp gesetzt, damit sie die Karte
   nicht dominieren. */
ul.wb-segment-reasons {
  font-size: 13px; color: var(--wb-muted);
  margin: 4px 0 8px; padding-left: 20px;
}
ul.wb-segment-reasons li { margin: 2px 0; }
/* Nachlektorat: Wort-Diff der geänderten DE-Quelle (siehe diff_html) und
   Vorfassung der Übersetzung — dieselben Semantik-Farben wie die Badges
   (negativ/positiv), aber dezent als Textmarkierung statt als Pille. */
.de-diff {
  background: var(--wb-surface); border-radius: 6px; padding: 8px 10px;
  margin: 4px 0 8px;
}
.de-diff del { background: #FEE2E2; text-decoration: line-through; }
.de-diff ins { background: #DCFCE7; text-decoration: none; }
/* Referenz, kein Eingabefeld: linke Akzentkante statt Rahmen um die ganze
   Fläche, damit sie sich von .wb-segment-source unterscheidet. */
.vorfassung {
  background: var(--wb-surface); border-left: 3px solid var(--wb-hairline);
  border-radius: 0 6px 6px 0; padding: 8px 10px; margin: 4px 0 8px;
}
/* Rechtsläufige Zielsprachen (Arabisch): `direction` allein setzt nur die
   Laufrichtung — ohne `text-align` klebte der Absatz weiter am linken Rand. */
.wb-rtl { direction: rtl; text-align: right; }
.wb-approve { text-align: right; }
.wb-approve .wb-muted { margin: 8px 0 0; }
details > summary { cursor: pointer; margin-top: 6px; }
/* Job-Log: Maschinenausgabe, deshalb monospace. `pre-wrap` statt Scrollen —
   die Zeilen (Tracebacks, Slug-Listen) sind lang und sollen ohne Seitwärts-
   Scrollen lesbar bleiben; `overflow-wrap` fängt Wörter ohne Leerzeichen ab,
   die sonst die Karte breiter zögen als das Fenster. Die Höhe ist gedeckelt,
   sonst schöbe ein langes Log die älteren Jobs außer Sicht. */
pre.wb-job-log {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px; line-height: 1.45;
  white-space: pre-wrap; overflow-wrap: anywhere;
  max-height: 420px; overflow-y: auto;
}
/* Historien-Block (Beitragsseite, Plan 22 §3): Listenzeilen mit Haarlinie
   wie .wb-row, aber gedämpft (Nebenbei-Protokoll, kein Arbeitsinhalt). */
.wb-historie { list-style: none; margin: 8px 0 0; padding: 0; }
.wb-historie li {
  padding: 6px 0; border-top: 1px solid var(--wb-hairline);
  color: var(--wb-muted); font-size: 13px;
}

/* ===== Video-Lektorat (Task 7–9) =====
   Eigene Sektion für die Aufgaben nach Task 6 — keine neuen Farben,
   ausschließlich die --wb-*-Tokens von oben. */

.vl-split {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 16px;
}
@media (max-width: 800px) {
  .vl-split { grid-template-columns: 1fr; }
}

/* Segmentliste (linke Spalte): Zeilen wie .wb-row, aktive Zeile petrolfarben
   mit weißer Schrift statt Hover-Grau. */
.vl-segliste {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--wb-hairline);
  border-radius: 12px;
  overflow: hidden;
  background: var(--wb-bg);
}
.vl-seg {
  display: block;
  padding: 10px 14px;
  border-top: 1px solid var(--wb-hairline);
  color: inherit;
  text-decoration: none;
}
.vl-segliste .vl-seg:first-child { border-top: none; }
.vl-seg:hover { background: var(--wb-surface); }
.vl-seg.aktiv, .vl-seg.aktiv:hover {
  background: var(--wb-deep);
  color: #fff;
}

/* Bühne (rechte Spalte): das Standbild plus absolut positionierte
   Beschriftungen/Fokuspunkte darüber. */
.vl-buehne {
  position: relative;
}
.vl-buehne img { display: block; width: 100%; border-radius: 8px; }

.vl-label {
  position: absolute;
  background: var(--wb-deep-80);
  color: #fff;
  border-left: 3px solid var(--wb-teal);
  font-size: 12px;
  border-radius: 4px;
  padding: 2px 8px;
}

.vl-fokus {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 9999px;
  border: 2px solid var(--wb-amber);
  background: transparent;
  transform: translate(-50%, -50%);
}

/* Warnleiste (z. B. Faktencheck-Hinweis): amber-getönt, abgeleitet aus
   --wb-amber statt eines neuen Farbwerts. */
.vl-warnleiste {
  background: color-mix(in srgb, var(--wb-amber) 18%, white);
  border-left: 3px solid var(--wb-amber);
  border-radius: 0 6px 6px 0;
  padding: 8px 12px;
  margin: 8px 0;
}

/* Quelltext-Referenz (Skript/Faktencheck-Beleg): wie .vorfassung im
   Translator, aber unter eigenem Namen für das Lektorat. */
.vl-quelle {
  background: var(--wb-surface);
  border-left: 3px solid var(--wb-hairline);
  border-radius: 0 6px 6px 0;
  padding: 8px 10px;
  margin: 4px 0 8px;
}

/* Tab-Leiste (z. B. Sprachumschalter am Segment): Pills wie .wb-pill. */
.vl-tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 16px;
  flex-wrap: wrap;
}
.vl-tabs a {
  display: inline-block;
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  background: var(--wb-surface-2);
  color: var(--wb-deep-80);
}
.vl-tabs a:hover { color: var(--wb-deep); }
.vl-tabs a.aktiv { background: var(--wb-teal-soft); color: var(--wb-deep); }

/* Master-Editor (Task 8): breitere Hauptspalte für das Zweispalten-Layout. */
.wb-main:has(.vl-split) { max-width: 1200px; }
.vl-kopf .wb-display { margin: 0; }
.vl-kopf-knoepfe { margin: 8px 0 12px; }
.vl-warnleiste-ok {
  background: var(--wb-surface);
  border-left-color: var(--wb-teal);
}
.vl-seg-symbole { float: right; letter-spacing: 4px; }
.vl-tabs a.vl-tab-aus { opacity: 0.5; cursor: not-allowed; }
.vl-segment audio { width: 100%; margin: 8px 0; }
.vl-textform textarea { margin: 4px 0 8px; }
.vl-fehler { list-style: none; margin: 8px 0; padding: 0; display: grid; gap: 4px; }
.vl-hinweise { list-style: none; margin: 4px 0 8px; padding: 0; }
.vl-hinweise li { padding: 6px 0; border-top: 1px solid var(--wb-hairline); }
.vl-segment-aktionen { margin-top: 16px; justify-content: space-between; }

/* Master-Editor II (Task 9): Bildwerkzeuge, Reiter Vorschau/Shorts. Klicks
   gehen durch Labels und Punkte hindurch aufs Bild (editor.js misst dort). */
.vl-buehne img { cursor: crosshair; }
.vl-buehne .vl-label, .vl-buehne .vl-fokus, .vl-punkt { pointer-events: none; }
.vl-buehne .vl-label { transform: translate(0, -50%); }
.vl-punkt {
  position: absolute; width: 12px; height: 12px; border-radius: 9999px;
  background: var(--wb-teal); border: 2px solid #fff;
  transform: translate(-50%, -50%);
}
.vl-buehne[data-modus="fokus"] .vl-fokus { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.7); }
.vl-buehne-hinweis { position: absolute; top: 8px; left: 8px; z-index: 1; }
.vl-werkzeuge { margin: 12px 0; padding: 12px 0; border-bottom: 1px solid var(--wb-hairline); }
.vl-werkzeuge .wb-actions label, .vl-kamera-form label { margin: 0; }
.vl-modus { margin-bottom: 4px; }
.vl-labelliste { list-style: none; margin: 4px 0; padding: 0; }
.vl-labelliste li { padding: 4px 0; border-top: 1px solid var(--wb-hairline); }
.vl-label-felder { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vl-label-felder select { width: 100%; }
.vl-label-form .wb-actions { margin-top: 8px; }
@media (max-width: 640px) { .vl-label-felder { grid-template-columns: 1fr; } }
.vl-bildtausch { margin-top: 12px; }
.vl-bildtausch summary { cursor: pointer; font-weight: 600; }
.vl-kacheln { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
.vl-kachel {
  display: grid; gap: 4px; padding: 4px; text-align: left; font: inherit; font-size: 12px;
  background: var(--wb-bg); border: 1px solid var(--wb-hairline); border-radius: 8px; cursor: pointer;
}
.vl-kachel img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 4px; }
.vl-kachel:hover { background: var(--wb-surface); }
.vl-kachel.aktiv { border-color: var(--wb-teal); box-shadow: 0 0 0 1px var(--wb-teal); }
.vl-vorschau video { display: block; width: 100%; border-radius: 8px; margin-top: 8px; background: #000; }
.vl-segwahl { display: flex; flex-wrap: wrap; gap: 4px 0; margin: 4px 0 8px; }
