/* ============================================================================
 * Bubbly Spacey — Zusatz-Stile für die Ratgeber-Seiten
 * ============================================================================
 * Wird NACH styles.css geladen und erweitert nur .legal-wrap. Alle Farben
 * kommen aus den Variablen in styles.css — hier steht kein eigener Farbwert,
 * damit ein Theme-Wechsel dort automatisch durchschlägt.
 * ==========================================================================*/

/* ---- Kopfbereich einer Inhaltsseite ------------------------------------- */
.legal-wrap h3 { font-size: 15px; margin: 20px 0 6px; color: #fff; }
.legal-wrap .updated { margin-bottom: 18px; }
.legal-wrap ol { padding-left: 20px; }
.legal-wrap ol li { font-size: 14px; line-height: 1.65; color: var(--ink); }
.legal-wrap strong { color: #fff; }

/* ---- Brotkrumen (entspricht der BreadcrumbList im JSON-LD) --------------- */
.crumbs { font-size: 12px; color: var(--muted); margin: 0 0 10px; line-height: 1.6; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent); text-decoration: underline; }
.crumbs span { color: var(--muted); }

/* ---- Antwortblock „Das Wichtigste in Kürze" ----------------------------- */
.tldr {
  background: var(--panel); border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 12px; padding: 14px 18px 14px 20px; margin: 10px 0 6px;
}
.tldr ul { margin: 0; padding-left: 18px; }
.tldr li { margin: 6px 0; }

/* ---- Tabellen ----------------------------------------------------------- */
.c-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 12px 0 6px; }
.c-table th {
  text-align: left; color: var(--accent); font-size: 12px; letter-spacing: .05em;
  text-transform: uppercase; padding: 6px 10px; border-bottom: 1px solid var(--accent);
}
.c-table td { padding: 9px 10px; border-bottom: 1px solid var(--line); line-height: 1.55; vertical-align: top; }
.c-table td:first-child { white-space: nowrap; }
/* Schmale Anzeigen: die Tabelle darf scrollen, die Seite nicht */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

kbd {
  font: 700 12px/1 ui-monospace, Menlo, monospace; color: var(--ink);
  background: var(--panel); border: 1px solid var(--line); border-bottom-width: 2px;
  border-radius: 6px; padding: 3px 7px; white-space: nowrap;
}

/* ---- Bilder ------------------------------------------------------------- */
.shot { margin: 16px 0 6px; }
.shot img {
  width: 100%; height: auto; display: block; border-radius: 14px;
  border: 1px solid var(--line); box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
  background: var(--bg0);
}
.shot figcaption { font-size: 12px; color: var(--muted); margin-top: 8px; text-align: center; line-height: 1.5; }

/* ---- Handlungsaufruf ---------------------------------------------------- */
.cta { display: flex; justify-content: center; margin: 30px 0 6px; }
.cta-note { text-align: center; font-size: 12px; color: var(--muted); margin: 8px 0 0; }

/* ---- Häufige Fragen ----------------------------------------------------- */
.faq dt { font-weight: 700; font-size: 14px; color: #fff; margin-top: 16px; }
.faq dd { margin: 4px 0 0; font-size: 14px; line-height: 1.65; color: var(--ink); }

/* ---- Verwandte Themen --------------------------------------------------- */
.related { margin-top: 30px; padding-top: 16px; border-top: 1px solid var(--line); }
.related h2 { margin-top: 0; }
.related ul { list-style: none; padding: 0; }
.related li { margin: 8px 0; font-size: 14px; line-height: 1.55; }
.related li a { font-weight: 700; }
.related li span { color: var(--muted); display: block; font-size: 13px; }
