/* ── PhantastikCharts – gemeinsamer Kern für alle öffentlichen Seiten ─────────
   Wird per <link> in jeder Seite eingebunden (statt inline dupliziert), damit
   der Browser die Datei über Page-Loads hinweg cachen kann. Seiten-spezifische
   Styles bleiben weiterhin inline in der jeweiligen Datei. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: #f5f5f0;
    color: #1a1a1a;
    min-height: 100vh;
}
a { color: inherit; text-decoration: none; }

/* ── Sticky Header ─────────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 2px solid #1a1a1a; padding: 0.6rem 1rem; }
.site-header-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 1.5rem; justify-content: center; }
.logo { font-size: 1.25rem; font-weight: 800; color: #1a1a1a; letter-spacing: -0.02em; white-space: nowrap; text-decoration: none; }
.logo span { color: #c0392b; }
.site-nav { display: flex; gap: 1.25rem; align-items: center; }
.site-nav a { font-size: 0.88rem; color: #555; text-decoration: none; transition: color 0.15s; }
.site-nav a:hover { color: #c0392b; }
.nav-cta { background: #c0392b; color: #fff !important; padding: 0.45rem 1rem; border-radius: 4px; font-size: 0.82rem; font-weight: 700; }
.nav-cta:hover { background: #a93226 !important; }
.nav-icon { font-size: 1.1rem; line-height: 1; }

/* Hamburger-Toggle — nur auf Mobile sichtbar (siehe Media Query unten). Desktop-Layout bleibt
   unverändert, .site-nav ist dort immer normal inline sichtbar. */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; color: #1a1a1a; flex-shrink: 0; }
.nav-toggle svg { width: 22px; height: 22px; display: block; }

/* ── Zweispalter mit Sticky-Sidebar-Ad ────────────────────────────────────
   Container-Klassen bewusst NEUTRAL benannt (.side-column/.side-stack, nicht .ad-*) --
   Adblocker (Brave Shields, uBlock etc.) blenden per generischer Kosmetik-Regel gern ganze
   Elemente mit "ad-"-Klassen aus, was hier NICHT nur die Anzeige selbst treffen wuerde, sondern
   den kompletten Container inkl. des unbeteiligten Duell-Widgets (siehe Chat 2026-08-12: bei
   Brave verschwand deswegen die komplette rechte Spalte). Die eigentliche Anzeige (Bild/Link,
   in .ad-unit) darf/soll weiterhin blockierbar bleiben -- das ist normales, akzeptables
   Adblocker-Verhalten, nur eben ohne Kollateralschaden am Rest der Spalte.
   align-items: stretch (nicht flex-start!) — sonst hat .side-column keinen
   Scrollraum und ihr position:sticky-Container "klebt" nicht wirklich. */
.page-layout { display: flex; gap: 2rem; max-width: 1420px; margin: 0 auto; padding: 0 1rem; align-items: stretch; }
.layout-main { flex: 1; min-width: 0; }
.side-column { width: 300px; flex-shrink: 0; padding-top: 1.5rem; }
/* sticky bewusst abgeschaltet, seit .duel-widget mit in diesem Container steckt — siehe
   „Bekannte Fallstricke" in CLAUDE.md (Anzeige+Duell-Widget zusammen können höher als der
   Viewport werden, dann sind die unteren Buttons nicht mehr erreichbar). */
.side-stack  { position: static; top: auto; }

@media (max-width: 1000px) {
    /* Anzeige (+ Duell-Widget, beide jetzt in .side-stack) bleiben sichtbar, wandern aber unter
       statt neben den Inhalt (volle Breite, nicht mehr sticky — ergibt über dem Content keinen
       Sinn). flex-direction:column + align-items:center statt text-align/justify-content,
       damit beide Kinder untereinander UND zentriert bleiben, unabhängig vom Display-Typ
       (Link/Bild/Platzhalter-Div + Duell-Karte). */
    .page-layout { flex-direction: column; }
    .side-column { width: 100%; padding-top: 0; margin-top: 1.5rem; }
    .side-stack  { position: static; top: auto; display: flex; flex-direction: column; align-items: center; }
}

/* ── Buch-Duell-Widget (includes/duel_widget.php) ─────────────────────────
   Sitzt als eigenes Element VOR der Anzeige, innerhalb von .side-stack (seit
   2026-08-11 -- vorher nach der Anzeige, siehe CLAUDE.md „Buch-Duelle" fuer den
   Grund der Umstellung) — dadurch stapelt es auf Mobile automatisch ueber der
   Anzeige, ohne eigene flex/sticky-Regeln zu brauchen. max-width:100% statt
   eigener Media Query, damit es auch auf sehr schmalen Viewports nicht uebersteht. */
.duel-widget    { width: 300px; max-width: 100%; box-sizing: border-box; background: #fff; border: 1px solid #1a1a1a; border-radius: 8px; padding: 1rem; margin: 0 auto 1rem; font-size: 0.85rem; box-shadow: 0 10px 32px rgba(0,0,0,0.28); }
.duel-header    { display: flex; align-items: center; justify-content: center; gap: 0.4rem; font-weight: 700; font-size: 0.95rem; color: #1a1a1a; margin-bottom: 0.6rem; }
.duel-header span { font-size: 1.4rem; line-height: 1; }
.duel-tabs      { display: flex; gap: 0; border-bottom: 1px solid #e8e8e0; margin-bottom: 0.75rem; }
.duel-tab       { flex: 1; background: none; border: none; padding: 0.4rem 0; font-size: 0.72rem; font-weight: 700; color: #999; cursor: pointer; border-bottom: 2px solid transparent; }
.duel-tab:hover { color: #444; }
.duel-tab.active { color: #c0392b; border-bottom-color: #c0392b; }
.duel-genre-check { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: #444; margin-bottom: 0.6rem; cursor: pointer; }
.duel-genre-check input { margin: 0; cursor: pointer; }
.duel-prompt    { font-size: 0.78rem; color: #666; margin: 0 0 0.85rem; }
.duel-row       { display: flex; align-items: stretch; justify-content: center; gap: 0.5rem; }
.duel-book      { display: flex; flex-direction: column; align-items: center; text-align: center; width: 104px; flex-shrink: 0; }
/* 92x134 (Ratio 0,687) war spuerbar breiter als der Median echter Cover (0,656 laut
   Stichprobe, Chat 2026-08-29) -- object-fit:cover schnitt dadurch bei schmal-hohen
   Covern (z. B. 0,608) den oberen Rand samt Titelschriftzug ab. 140 statt 134px bringt
   die Box naeher an den Median, ohne die Breite (und damit die Zeilenbreite/Sidebar-
   Passform) anzufassen -- .duel-vs-wrap muss aus demselben Grund mitwachsen, damit "VS"
   weiterhin mittig neben den Covern sitzt. Beseitigt den Beschnitt nicht komplett
   (Cover-Seitenverhaeltnisse streuen, irgendein Rand wird bei object-fit:cover immer
   beschnitten), reduziert ihn aber fuer die meisten Cover deutlich.
.duel-info-link (2026-08-29): NUR das Cover eines Duell-Buchs ist anklickbar (Link zu
   buch.php, from=hype) -- bewusst nicht Titel/Autor mit drin (frueherer Versuch am selben
   Tag): das haette den klickbaren Bereich zu nah an den "Hype ich"-Button herangezogen,
   ein knapper Fehlklick landete dann auf buch.php statt die Stimme abzugeben. Nativer
   title-Tooltip ("Infos zum Buch") reicht hier, kein Custom-Tooltip noetig fuer so kurzen,
   unmissverstaendlichen Text. */
.duel-cover     { width: 92px; height: 140px; border-radius: 4px; object-fit: cover; box-shadow: 0 2px 5px rgba(0,0,0,.15); }
.duel-info-link { display: block; }
.duel-info-link:hover .duel-cover { opacity: 0.85; }
.duel-title     { font-size: 0.75rem; font-weight: 600; color: #1a1a1a; margin: 0.5rem 0 0; line-height: 1.25; min-height: 1.875rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.duel-author    { font-size: 0.68rem; line-height: 1.2; color: #666; margin: 0.15rem 0 0; min-height: 1.65rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.duel-btn       { margin-top: auto; width: 100%; background: #c0392b; color: #fff !important; border: none; border-radius: 4px; padding: 0.45rem 0.25rem; font-size: 0.7rem; font-weight: 700; cursor: pointer; }
.duel-btn:hover { background: #a93226; }
.duel-vs-wrap   { display: flex; align-items: center; justify-content: center; width: 26px; height: 140px; flex-shrink: 0; }
.duel-vs        { font-weight: 800; font-size: 0.8rem; color: #c0392b; }
.duel-skip-wrap { display: flex; justify-content: center; margin-top: 0.85rem; }
.duel-skip-btn  { background: #c0392b; color: #fff; border: none; border-radius: 4px; padding: 0.4rem 1rem; font-size: 0.7rem; font-weight: 700; cursor: pointer; }
.duel-skip-btn:hover { background: #a93226; }
.duel-empty     { font-size: 0.8rem; color: #999; text-align: center; padding: 1rem 0; }
.duel-empty a   { color: #c0392b; text-decoration: underline; }

/* Springt-Button zum Duell-Widget — nur mobil sichtbar (siehe Media Query bei .page-layout),
   auf Desktop steht das Widget bereits sichtbar in der Sidebar. display:none als Basis, damit
   der Button auf Desktop komplett aus dem Layout raus ist statt nur unsichtbar. */
.duel-jump-btn {
    display: none; position: fixed; right: 1rem; bottom: 1rem; z-index: 90;
    width: 52px; height: 52px; border-radius: 50%; border: none;
    background: #c0392b; color: #fff; font-size: 1.3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25); cursor: pointer;
}
.duel-jump-btn:hover { background: #a93226; }
@media (max-width: 1000px) {
    .duel-jump-btn { display: flex; align-items: center; justify-content: center; }
}

@media (max-width: 700px) {
    .site-header-inner { justify-content: space-between; }
    .nav-toggle { display: flex; align-items: center; }
    .site-nav {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0;
        background: #fff; border-bottom: 2px solid #1a1a1a;
        flex-direction: column; align-items: stretch; gap: 0; padding: 0.4rem 0;
    }
    .site-nav.open { display: flex; }
    .site-nav a { padding: 0.75rem 1.25rem; font-size: 0.92rem; }
    .nav-cta { margin: 0.5rem 1.25rem; text-align: center; }
}

/* ── Breadcrumb ────────────────────────────────────────────────────────── */
.breadcrumb { font-size: 0.8rem; color: #aaa; margin-bottom: 1.25rem; }
.breadcrumb a { color: #c0392b; }

/* ── Karten-Sektion ────────────────────────────────────────────────────── */
.section { background: #fff; border: 1px solid #e0e0d8; border-radius: 8px; padding: 1.25rem 1.5rem; margin-bottom: 1.25rem; }
.section-title { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; color: #888; border-bottom: 1px solid #eee; padding-bottom: 0.5rem; margin-bottom: 1rem; }

/* ── Footer ────────────────────────────────────────────────────────────── */
footer { border-top: 1px solid #e0e0d8; padding: 1.5rem; text-align: center; font-size: 0.78rem; color: #aaa; margin-top: 2rem; }
footer a { color: #888; text-decoration: none; }
footer a:hover { color: #c0392b; }

/* ── Cookie-Consent-Banner (includes/cookie_banner.php) ───────────────────
   Klassen bewusst NEUTRAL benannt (.site-notice statt .cookie-banner) -- Brave Shields/uBlock
   haben eigene "Cookie-Consent-Notice"-Blocklisten, die genau auf "cookie-banner"/"cookie-consent"
   abzielen und das Banner sonst per Kosmetik-Regel unsichtbar machen wuerden (siehe Chat
   2026-08-12, gleicher Fallstrick wie bei .ad-sidebar/.ad-sticky oben).
   position:fixed am unteren Rand, z-index ueber dem Sticky-Header (100). */
.site-notice { position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; background: #fff; border-top: 2px solid #1a1a1a; box-shadow: 0 -2px 12px rgba(0,0,0,0.12); }
.site-notice-inner { max-width: 1100px; margin: 0 auto; padding: 1rem 1.25rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.site-notice-inner p { font-size: 0.85rem; color: #444; line-height: 1.5; flex: 1; min-width: 220px; }
.site-notice-inner a { color: #c0392b; text-decoration: underline; }
.site-notice-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.notice-btn { padding: 0.5rem 1.1rem; border-radius: 4px; font-size: 0.82rem; font-weight: 700; border: none; cursor: pointer; background: #c0392b; color: #fff; }
.notice-btn:hover { background: #a93226; }
.notice-btn-secondary { background: #e8e8e0; color: #555; }
.notice-btn-secondary:hover { background: #d8d8d0; }

@media (max-width: 600px) {
    .site-notice-inner { flex-direction: column; align-items: stretch; text-align: center; }
    .site-notice-actions { justify-content: center; }
}

/* ── Aufräumaktion (2026-08-22): erste Etappe — exakte Duplikate aus den
   Page-spezifischen <style>-Blöcken hierher konsolidiert (waren 1:1 kopiert,
   siehe CLAUDE.md-Chat). Näher verwandte Familien mit unterschiedlichen
   Klassennamen (Cover-Thumbnails, Chart-Row-Grids, Pill/Chip-Varianten) sind
   bewusst NICHT Teil dieser Etappe — höheres Risiko, eigene Etappe. ────────── */

/* ── Pagination (duelle.php, rezensionen.php, blogger-charts.php, buchfinder.php) ── */
.pagination { display: flex; gap: 0.4rem; justify-content: center; margin: 1.25rem 0; flex-wrap: wrap; }
.page-btn { padding: 0.35rem 0.75rem; border-radius: 4px; font-size: 0.82rem; text-decoration: none; background: #e8e8e0; color: #555; transition: background 0.1s; }
.page-btn:hover { background: #d8d8d0; }
.page-btn.active { background: #1a1a1a; color: #fff; pointer-events: none; }
.page-btn.disabled { opacity: 0.35; pointer-events: none; }

/* ── Tabs (buch.php Chart-Verlauf, voter.php Top 10/All-Time/Rezensionen) ──
   Rein clientseitiges Umschalten per assets/tabs.js (kein Reload) — Buttons mit
   .chart-tab + data-tab, Panels mit .chart-panel + data-panel, siehe tabs.js.
   Ersetzen die sonst hier stehende .section-title-Zeile, gleiche Optik (klein,
   uppercase, gedeckt) nur klickbar mit rotem Unterstrich fuer die aktive Lasche,
   statt wie Filter-Pills auszusehen. */
.chart-tabs { display: flex; gap: 1.5rem; border-bottom: 1px solid #eee; margin-bottom: 1rem; }
.chart-tab {
    background: none; border: none; cursor: pointer; font-family: inherit;
    font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em;
    color: #aaa; padding: 0 0 0.5rem; border-bottom: 2px solid transparent; margin-bottom: -1px;
    transition: color 0.15s, border-color 0.15s;
}
.chart-tab:hover { color: #555; }
.chart-tab.active { color: #1a1a1a; border-bottom-color: #c0392b; }

/* ── Filter-Pills (duelle.php, rezensionen.php, blogger-charts.php) ──────── */
.filter-pill { padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.78rem; text-decoration: none; background: #e8e8e0; color: #555; transition: background 0.1s; cursor: pointer; }
.filter-pill:hover { background: #d8d8d0; }
.filter-pill.active { background: #1a1a1a; color: #fff; }

/* ── bc-tabs (blogger-charts.php + mitmachen.php, dort Kommentar „gleiche Optik") ── */
.bc-tabs { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.bc-tab { padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 700; background: #e8e8e0; color: #555; text-decoration: none; transition: background 0.1s; }
.bc-tab:hover { background: #d8d8d0; }
.bc-tab.active { background: #1a1a1a; color: #fff; }

/* ── Wochen-Navigation (voter.php + blogger-charts.php „Aktuell"-Tab) ────── */
.week-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; gap: 0.5rem; }
.week-nav-btn { font-size: 0.82rem; color: #c0392b; border: 1px solid #e0d0ce; border-radius: 4px; padding: 0.3rem 0.75rem; white-space: nowrap; transition: background 0.1s; }
.week-nav-btn:hover { background: #fdf0ee; }
.week-nav-disabled { color: #ccc; border-color: #eee; cursor: default; }
.week-nav-label { font-size: 0.85rem; font-weight: 700; color: #333; text-align: center; flex: 1; }

/* ── Rezensions-Zeile (index.php Landingpage-Feed-Vorschau + rezensionen.php) ──
   index.php-Kommentar sagte es schon: „Zeilen-Optik 1:1 aus rezensionen.php
   übernommen". .review-entry/.empty-results bleiben Feed-spezifisch (nur
   rezensionen.php gruppiert mehrere Rezensionen je Buch). */
.review-list { display: flex; flex-direction: column; gap: 0.75rem; }
.review-row { display: flex; gap: 1rem; background: #fff; border: 1px solid #e0e0d8; border-radius: 6px; padding: 0.85rem 1rem; }
.review-cover-wrap { flex-shrink: 0; }
.review-cover { width: 48px; height: 70px; object-fit: cover; border-radius: 3px; display: block; }
.review-cover-empty { width: 48px; height: 70px; background: #ede8e0; border-radius: 3px; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 1.2rem; }
.review-body { flex: 1; min-width: 0; }
.review-book-line { font-size: 0.95rem; }
.review-book-line a { font-weight: 700; color: #1a1a1a; }
.review-book-line a:hover { color: #c0392b; }
.review-book-author { color: #777; font-size: 0.82rem; }
.review-voter-line { font-size: 0.82rem; color: #666; margin-top: 0.15rem; }
.review-voter-line a { color: #c0392b; font-weight: 600; }
.review-quote { font-style: italic; color: #555; font-size: 0.85rem; margin-top: 0.45rem; padding-left: 0.6rem; border-left: 2px solid #e8cece; }
.review-actions { margin-top: 0.5rem; display: flex; align-items: center; gap: 0.6rem; }
.review-link-btn { display: inline-block; background: #c0392b; color: #fff; font-size: 0.78rem; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 4px; text-decoration: none; }
.review-link-btn:hover { background: #a93226; }
.report-link-btn { background: none; border: none; cursor: pointer; color: #aaa; font-size: 0.85rem; opacity: 0.6; }
.report-link-btn:hover { opacity: 1; }
/* ── Auth-Card (login.php, passwort-link-anfordern.php, passwort-setzen.php) ──
   Zentriertes Formular-Layout, per .auth-page auf <main> gescoped -- ein
   bare main{} wuerde sonst mit .legal-page (ebenfalls auf <main>, andere Werte)
   und mit voting/index.php kollidieren. */
.auth-page { max-width: 420px; margin: 4rem auto; padding: 0 1.5rem; }
.auth-page a { color: #c0392b; text-decoration: none; }
.auth-page a:hover { text-decoration: underline; }
.auth-page h1 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.auth-page .subtitle { color: #666; font-size: 0.9rem; margin-bottom: 2rem; line-height: 1.5; }
.auth-page .card { background: #fff; border: 1px solid #e0e0d8; border-radius: 6px; padding: 1.75rem; }
.auth-page .form-group { margin-bottom: 1.25rem; }
.auth-page label { display: block; margin-bottom: 0.4rem; font-size: 0.82rem; color: #666; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.auth-page input[type=email], .auth-page input[type=text], .auth-page input[type=password] {
    width: 100%; padding: 0.65rem 0.9rem; border-radius: 5px;
    border: 1px solid #d0d0c8; background: #fff; color: #1a1a1a;
    font-size: 1rem; font-family: inherit;
}
.auth-page input:focus { outline: 2px solid #c0392b; border-color: #c0392b; }
.auth-page .btn { width: 100%; display: block; padding: 0.75rem 1.5rem; border-radius: 5px; font-size: 0.95rem; font-weight: 700; border: none; cursor: pointer; font-family: inherit; text-align: center; }
.auth-page .btn-primary { background: #c0392b; color: #fff; }
.auth-page .btn-primary:hover { background: #a93226; }
.auth-page .alert { padding: 0.85rem 1rem; border-radius: 5px; margin-bottom: 1rem; font-size: 0.9rem; }
.auth-page .alert-info  { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.auth-page .alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.auth-page .alert-dev   { background: #fef9c3; color: #854d0e; border: 1px solid #fde68a; }
.auth-page .back-link { text-align: center; margin-top: 1.25rem; font-size: 0.85rem; color: #888; }
.auth-page .back-link a { color: #c0392b; }

/* ── Statische Rechts-/Info-Seiten (impressum.php, datenschutz.php, ueber-uns.php) ──
   Nur der gemeinsame Seiten-Rahmen (main-Box + Link-Farbe) ist bei allen drei
   Seiten identisch -- Überschriften/Absätze weichen ab (ueber-uns.php hat
   z.B. eigene h1/h2/p-Werte + Listen), bleiben daher als Overrides in der
   jeweiligen Datei (source order: eigenes <style> lädt nach diesem <link>). */
.legal-page { max-width: 720px; margin: 2.5rem auto; padding: 0 1.5rem 3rem; }
.legal-page a { color: #c0392b; text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }
.legal-page h1 { font-size: 1.75rem; margin-bottom: 1.75rem; color: #1a1a1a; }
.legal-page h2 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #888; margin: 1.75rem 0 0.6rem; }
.legal-page p { font-size: 0.92rem; line-height: 1.7; color: #333; margin-bottom: 0.5rem; }

/* ── Etappe 2 (2026-08-22): Near-Duplikate mit unterschiedlichen Klassennamen,
   jetzt auf gemeinsame Klassen vereinheitlicht (erforderte Umbenennungen im
   Markup, siehe CLAUDE.md-Chat). ─────────────────────────────────────────── */

/* ── Cover-Thumbnail (voter.php, autor.php, buchfinder.php, index.php,
   buch.php „Auch gehyped von"). Zwei Größen (34/40px) + Empty-State-Platzhalter.
   Empty-State hatte schon vorher zwei leicht unterschiedliche Grauwerte
   (#ede8e0 vs #e8e8e0) -- als .cover-thumb-muted erhalten statt vereinheitlicht,
   damit sich am Erscheinungsbild nichts ändert. duelle.php/blogger-charts.php
   behalten ihr eigenes .row-cover (dort mit Zoom-Hover-Feature gekoppelt, kein
   reiner Duplikat-Fall) -- ebenso .review-cover (48×70), .top1-cover
   (Hero, dynamische Höhe), .duel-cover (eigener Schatten) und buch.php's
   .book-cover (150×210-Hero) -- strukturell zu unterschiedlich für echten
   Gewinn durch Vereinheitlichung. */
.cover-thumb { object-fit: cover; display: block; border-radius: 2px; flex-shrink: 0; }
.cover-thumb-empty { display: flex; align-items: center; justify-content: center; color: #ccc; border-radius: 2px; background: #ede8e0; flex-shrink: 0; }
.cover-thumb-empty.cover-thumb-muted { background: #e8e8e0; }

.cover-thumb-34, .cover-thumb-empty.cover-thumb-34 { width: 34px; height: 50px; }
.cover-thumb-empty.cover-thumb-34 { font-size: 0.9rem; }

.cover-thumb-40, .cover-thumb-empty.cover-thumb-40 { width: 40px; height: 58px; }
.cover-thumb-empty.cover-thumb-40 { font-size: 1.1rem; }
.cover-thumb-empty.cover-thumb-muted.cover-thumb-40 { font-size: 1rem; }

/* ── Zeilen-Shell für Grid-Listenzeilen (duelle.php, blogger-charts.php,
   voter.php, buchfinder.php) -- nur die tatsächlich identische "Hülle" (Trenn­linie,
   Hover-Highlight, display:grid+align-items) ist hierher extrahiert. Die
   grid-template-columns-Werte selbst weichen je Seite (leicht) ab (52/52 vs. 44/50
   vs. 48-only) -- KEIN echtes Duplikat, bleiben daher bewusst lokal in
   .chart-row/.book-row. autor.php bleibt außen vor: hat kein Zeilen-Hover-
   Highlight, sondern nur Link-Hover auf dem Titel -- strukturell etwas anderes. */
.list-row { display: grid; align-items: center; border-bottom: 1px solid #f0f0e8; transition: background 0.1s; }
.list-row:last-child { border-bottom: none; }
.list-row:hover { background: #fafaf8; }

/* ── Untertitel in Klammern neben einem fett gerenderten Buchtitel, selbst NICHT fett --
   Titel/Untertitel getrennt gerendert (<span class="title-subtitle">) statt über
   book_display_title() (ein kompletter, gleich fett dargestellter String), damit der
   Untertitel sich optisch unterordnet. Vorher identisch in styles_blogger-charts.css/
   -duelle.css/-voter.css dupliziert, seit 2026-08-27 auch von index.php/rezensionen.php
   gebraucht (.mini-title/.review-book-line) -- hierher konsolidiert. */
.title-subtitle { font-weight: 400; }

/* ── Plattform-Link-Pille (voter.php Hero + blogger-charts.php Voter-Tabelle) ──
   Nur Schriftgröße/Padding weichen ab (kompakterer Kontext in der Tabelle) --
   .platform-link-sm als Modifier statt zweiter eigenständiger Klasse. */
.platform-link { font-size: 0.75rem; color: #c0392b; border: 1px solid #e8cece; border-radius: 3px; padding: 0.15rem 0.5rem; white-space: nowrap; }
.platform-link:hover { background: #fdf0ee; }
.platform-link.platform-link-sm { font-size: 0.68rem; padding: 0.08rem 0.38rem; }
