/* ============================================================================
   seite-rezensionen  —  aus rezensionen.html des statischen Standes
   Automatisch extrahiert (_work/theme-css-extrakt.mjs), inhaltlich unveraendert.
   Einzige Aenderung: Bildpfade zeigen auf das Theme-Verzeichnis.
   ========================================================================= */


/* pB 64 statt 96 (Review 20/5 B1): einheitliche Hero-Unterkante ueber alle
   Unterseiten. Die Rating-Karte dockt mit `section-sm; padding-top: 0` direkt
   an — Einstieg damit ~113 statt 145 px, Familie "angebunden". */
.page-hero { position: relative; padding: 160px 0 64px; overflow: hidden; isolation: isolate; }
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 60% 50% at 70% 30%, rgba(225,6,0,.22), transparent 60%), linear-gradient(180deg, #050505, var(--bg-base-2));
}
.page-hero h1 { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(64px, 11vw, 168px); line-height: 0.86; letter-spacing: -0.04em; text-transform: uppercase; margin: 24px 0; }
.page-hero h1 .accent { color: var(--red); }
.crumbs { display: flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 16px; }
/* Klickflaeche auf 24px (WCAG 2.2 Zielgroesse) — das negative Margin haelt die
   Zeilenhoehe unveraendert, optisch aendert sich nichts. */
.crumbs a { color: var(--text-secondary); padding: 4px 0; margin: -4px 0; }
.crumbs .sep { color: var(--red-bright); }

/* Rating overview */
.rating-card {
  background: linear-gradient(135deg, var(--surface-1), var(--surface-2));
  border: 1px solid var(--border-1);
  border-radius: var(--r-xl);
  padding: 48px;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
/* Zwei Kinder, zwei Spalten. Die frühere dritte Spalte (auto 1fr auto) blieb leer
   und schob den Google-Button in die Kartenmitte — rechts stand ein Drittel der
   Karte tot. Jetzt: Zahl links, Button rechts, die Karte traegt beide Enden. */
@media (min-width: 768px) { .rating-card { grid-template-columns: auto auto; justify-content: space-between; } }
.rating-num {
  text-align: center;
}
.rating-num .big {
  font-family: var(--font-display); font-style: italic;
  font-size: 120px; line-height: 1; letter-spacing: -0.04em;
  color: var(--red);
  display: block;
  text-shadow: 0 0 32px rgba(225,6,0,.4);
}
/* Farbregel der Seite: GOLD traegt die Google-Gesamtnote (identisch zum
   Hero-Stat auf index.html), ROT die Sterne der einzelnen Stimmen weiter
   unten. Vorher waren beide rot — die Gesamtnote war damit optisch nur eine
   Karte unter vielen. */
.rating-num .stars { font-size: 24px; color: var(--brand-warm); letter-spacing: 6px; margin-top: 8px; }
.rating-num .total { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); margin-top: 12px; }

/* .rating-bars/.rating-bar entfernt — dazu gibt es kein Markup mehr, und die
   Verteilung je Sternestufe ist nicht belegt (nichts erfinden). */
.gauge { display: flex; flex-direction: column; align-items: center; gap: 12px; }

/* Beleg-Band — ein einziges, ruhiges Bild zwischen Zahl und Stimmen.
   Schmal beschnitten (21:9 / mobil 2:1), damit es die Seite erdet, ohne mit den
   Bewertungen um Aufmerksamkeit zu konkurrieren. Kein Kundenfoto, kein Glamour. */
.beleg-band { margin: 32px 0 0; }
.beleg-band .shot {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--r-xl); border: 1px solid var(--border-2);
  box-shadow: var(--shadow-lg);
}
.beleg-band img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 2/1; object-fit: cover; object-position: 50% 45%;
}
@media (min-width: 768px) { .beleg-band img { aspect-ratio: 21/9; } }
.beleg-band .shot::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(5,5,5,.55));
}
.beleg-band figcaption {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 14px;
}
.beleg-band figcaption .accent { color: var(--red-bright); }

/* Reviews grid */
.r-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
/* Vier kurze Stimmen + eine lange. Bei 3 Spalten (frueher ab 1100px) stand in
   Reihe 2 eine Karte allein neben zwei leeren Zellen — deshalb bleibt es auch
   breit bei 2 Spalten: beide Reihen voll, die lange Stimme darunter ueber die
   ganze Breite. Die Zeilenlaenge in den dann breiteren Karten deckelt max-width. */
@media (min-width: 700px)  { .r-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .review .text { max-width: 68ch; } }
.review {
  padding: 32px 28px;
  background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease-spring), border-color .35s, box-shadow .35s;
}
.review:hover { transform: translateY(-4px); border-color: var(--border-red); box-shadow: var(--shadow-red); }
.review::before {
  content: '"';
  position: absolute; top: -8px; right: 28px;
  font-family: var(--font-display); font-style: italic;
  font-size: 96px; line-height: 1;
  color: var(--red); opacity: 0.5;
}
.review .stars { color: var(--red-bright); margin-bottom: 16px; letter-spacing: 4px; font-size: 16px; }
.review .text { color: var(--text-secondary); flex: 1 1 auto; margin-bottom: 24px; }
.review footer { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--border-1); }
.review footer .avatar { width: 40px; height: 40px; border-radius: 999px; background: linear-gradient(135deg, var(--red), var(--red-deep)); display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.review footer .author { color: var(--text-primary); font-weight: 600; font-size: 14px; }
.review footer .when { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; }

.notice {
  margin: 24px 0;
  padding: 14px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  /* 155 Zeichen je Zeile war die laengste Zeile der Site (Review 20/9 §5) —
     und das ausgerechnet im gesperrten Mono. 80ch ist die Obergrenze fuer
     Fliesstext dieser Groesse. */
  max-width: 80ch;
}
/* Der Google-Maps-Verweis ist der einzige Weg von dieser Seite zur Karte und
   war 93x17 px gross (Review 9 M1). Senkrechtes Padding auf einem INLINE-Element
   vergroessert die Trefferflaeche, ohne die Zeilenhoehe anzufassen — die
   Zeilenboxen des Absatzes bleiben, wo sie sind, optisch aendert sich nichts. */
.notice a { padding: 14px 0; }
