/* ════════════════════════════════════════════════════════════════
 * TVR SCHACH · STYLESHEET
 * Stil: warm, klassisch, handwerklich
 * Multi-Page-tauglich, ohne Login-Modal
 * ════════════════════════════════════════════════════════════════ */

/* ─── Reset & Basis ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Farbpalette: warmes Holz, cremige Töne, dezente Akzente */
  --holz-dunkel:   #5C3A1E;
  --holz-mittel:   #8B5A2B;
  --holz-hell:     #D4A574;
  --creme:         #FAF5EC;
  --creme-hell:    #FFFCF5;
  --sand:          #F0E4D0;
  --tinte:         #2D1F11;
  --tinte-grau:    #5A4A3A;
  --akzent:        #8B2E1F;
  --gold:          #B8862F;
  --erfolg:        #4A6741;
  --linie:         #D9C9B0;

  /* Schachbrett-Hintergrund: als CSS-Muster erzeugt, damit die Felder auf
     allen Seiten exakt gleich groß sind — unabhängig von der Höhe des
     Abschnitts. Eine Bildkachel mit `cover` skaliert je Abschnitt anders.
     Bewusst mit linear-gradient statt conic-gradient: deutlich breitere
     Browserunterstützung. */
  --brett-feld: 76px;
  --brett-halb: 38px;
  --brett-hell: #efe0c6;
  --brett-dunkel: #d9bc94;
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Lora', 'Georgia', serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--tinte);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1 0 auto; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--akzent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--holz-dunkel); }

/* ─── Typografie ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  color: var(--tinte);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin-bottom: 0.5em; }
h3 { font-size: 1.4rem; margin-bottom: 0.5em; }
h4 { font-size: 1.1rem; margin-bottom: 0.3em; }

.kicker {
  display: inline-block;
  font-family: 'Lora', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--akzent);
  font-weight: 600;
  margin-bottom: 0.8em;
}

p { margin-bottom: 1em; }

/* ─── Layout ────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: 4rem 0; }
section.alt { background: var(--creme-hell); }
section.dunkel { background: var(--holz-dunkel); color: var(--creme); }
section.dunkel h1, section.dunkel h2, section.dunkel h3, section.dunkel h4 { color: var(--creme); }
section.dunkel .kicker { color: var(--holz-hell); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  color: var(--tinte-grau);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* ─── Header & Navigation ──────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 245, 236, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--linie);
  z-index: 100;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--tinte);
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--holz-dunkel);
  color: var(--creme);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
}
.logo-text .sub {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tinte-grau);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  color: var(--tinte);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a:hover, .main-nav a.aktiv {
  color: var(--akzent);
}

.main-nav a.aktiv::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--akzent);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--linie);
  padding: 0.5rem 0.9rem;
  font-family: inherit;
  font-size: 0.9rem;
  border-radius: 4px;
  color: var(--tinte);
  cursor: pointer;
}

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--akzent);
  color: var(--creme);
}
.btn-primary:hover {
  background: var(--holz-dunkel);
  color: var(--creme);
}

.btn-secondary {
  background: transparent;
  color: var(--tinte);
  border-color: var(--holz-mittel);
}
.btn-secondary:hover {
  background: var(--holz-mittel);
  color: var(--creme);
}

.btn-small { padding: 0.45rem 0.95rem; font-size: 0.85rem; }
.btn-group { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  /* Fallback, falls die Verlaufsebenen nicht unterstützt werden */
  background-color: var(--creme);
  background-image:
    linear-gradient(rgba(250, 245, 236, 0.86), rgba(250, 245, 236, 0.95)),
    linear-gradient(45deg, var(--brett-dunkel) 25%, transparent 25%, transparent 75%, var(--brett-dunkel) 75%),
    linear-gradient(45deg, var(--brett-dunkel) 25%, transparent 25%, transparent 75%, var(--brett-dunkel) 75%),
    linear-gradient(var(--brett-hell), var(--brett-hell));
  background-size:
    auto,
    var(--brett-feld) var(--brett-feld),
    var(--brett-feld) var(--brett-feld),
    auto;
  background-position: 0 0, 0 0, var(--brett-halb) var(--brett-halb), 0 0;
  padding: 5rem 0 6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.2rem;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--akzent);
  font-weight: 500;
}

.hero-text .lead {
  font-size: 1.15rem;
  color: var(--tinte-grau);
  margin-bottom: 0;
}

.hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(45, 31, 17, 0.25);
}
.hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Page-Hero (kleinere Hero-Variante für Unterseiten) */
.page-hero {
  /* Fallback dunkel, damit die helle Schrift auch ohne Verläufe lesbar bleibt */
  background-color: var(--holz-dunkel);
  background-image:
    linear-gradient(rgba(92, 58, 30, 0.80), rgba(92, 58, 30, 0.87)),
    linear-gradient(45deg, var(--brett-dunkel) 25%, transparent 25%, transparent 75%, var(--brett-dunkel) 75%),
    linear-gradient(45deg, var(--brett-dunkel) 25%, transparent 25%, transparent 75%, var(--brett-dunkel) 75%),
    linear-gradient(var(--brett-hell), var(--brett-hell));
  background-size:
    auto,
    var(--brett-feld) var(--brett-feld),
    var(--brett-feld) var(--brett-feld),
    auto;
  background-position: 0 0, 0 0, var(--brett-halb) var(--brett-halb), 0 0;
  color: var(--creme);
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-hero h1, .page-hero .kicker { color: var(--creme); }
.page-hero .kicker { color: var(--holz-hell); }
.page-hero .lead { color: rgba(250, 245, 236, 0.9); max-width: 700px; margin: 0.8rem auto 0; font-size: 1.1rem; }

/* ─── Vorteile-Grid ────────────────────────────────────────── */
.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.vorteil {
  text-align: center;
  padding: 1rem;
}

.vorteil-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.6rem;
  color: var(--holz-mittel);
}

.vorteil h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.vorteil p {
  color: var(--tinte-grau);
  font-size: 0.97rem;
}

/* ─── News ─────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2rem;
}

.news-karte {
  background: var(--creme-hell);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--linie);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.news-karte:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(45, 31, 17, 0.12);
}

.news-bild {
  height: 220px;
  overflow: hidden;
  background: var(--sand);
}
.news-bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.news-karte:hover .news-bild img { transform: scale(1.05); }

.news-inhalt {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-meta {
  display: flex;
  gap: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tinte-grau);
  margin-bottom: 0.7rem;
}

.news-meta .kategorie {
  color: var(--akzent);
  font-weight: 600;
}

.news-karte h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.news-lede {
  color: var(--tinte-grau);
  font-size: 0.97rem;
  margin-bottom: 1rem;
  flex: 1;
}

.news-body {
  font-size: 0.95rem;
  color: var(--tinte);
  border-top: 1px solid var(--linie);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

/* ─── Spiele ───────────────────────────────────────────────── */
.spiele-liste {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spiel {
  background: var(--creme-hell);
  border-left: 4px solid var(--holz-mittel);
  padding: 1.5rem;
  border-radius: 4px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.spiel.heimspiel { border-left-color: var(--erfolg); }
.spiel.auswaerts { border-left-color: var(--gold); }

.spiel-datum {
  text-align: center;
  min-width: 70px;
}
.spiel-datum .tag {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--tinte);
  line-height: 1;
}
.spiel-datum .monat {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tinte-grau);
  margin-top: 4px;
  display: block;
}
.spiel-datum .uhrzeit {
  font-size: 0.85rem;
  color: var(--tinte-grau);
  margin-top: 6px;
  display: block;
}

.spiel-info { line-height: 1.5; }
.spiel-runde {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--akzent);
  font-weight: 600;
}
.spiel-begegnung {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0.2rem 0;
}
.spiel-ort {
  font-size: 0.9rem;
  color: var(--tinte-grau);
}

.spiel-ergebnis {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--tinte);
  text-align: right;
}
.spiel-ergebnis.sieg { color: var(--erfolg); }
.spiel-ergebnis.niederlage { color: var(--akzent); }
.spiel-ergebnis.remis { color: var(--gold); }
.spiel-bemerkung {
  font-size: 0.85rem;
  color: var(--tinte-grau);
  font-style: italic;
  margin-top: 0.3rem;
}

/* Mannschaftsblock */
.mannschaft-block {
  margin-bottom: 4rem;
}
.mannschaft-block:last-child { margin-bottom: 0; }

.mannschaft-titel {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--linie);
}
.mannschaft-titel h2 {
  margin-bottom: 0;
}
.mannschaft-titel .liga-badge {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--akzent);
  background: var(--sand);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
}
.mannschaft-titel .platz {
  font-size: 0.95rem;
  color: var(--tinte-grau);
  font-style: italic;
  margin-left: auto;
}

/* ─── Tabelle & Ergebnisse ─────────────────────────────────── */
.zwei-spalten {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.tabelle-wrapper { overflow-x: auto; }

.liga-tabelle {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.liga-tabelle thead { background: var(--holz-dunkel); color: var(--creme); }
.liga-tabelle th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.liga-tabelle th.punkte { text-align: right; }
.liga-tabelle td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--linie); }
.liga-tabelle tbody tr:nth-child(even) { background: var(--creme); }
.liga-tabelle .punkte { text-align: right; font-variant-numeric: tabular-nums; }
.liga-tabelle tr.tvr {
  background: var(--sand) !important;
  font-weight: 600;
}
.liga-tabelle tr.tvr td:first-child {
  border-left: 3px solid var(--akzent);
}

.ergebnisse {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ergebnis {
  background: var(--creme-hell);
  border: 1px solid var(--linie);
  padding: 1rem 1.2rem;
  border-radius: 4px;
}
.ergebnis-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--tinte-grau);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.ergebnis-begegnung {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
}
.ergebnis-team { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; flex: 1; }
.ergebnis-score { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--akzent); white-space: nowrap; }
.ergebnis-bemerkung {
  font-size: 0.82rem;
  color: var(--tinte-grau);
  font-style: italic;
  margin-top: 0.3rem;
}

/* ─── Spielerliste ─────────────────────────────────────────── */
.tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--linie);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab {
  background: none;
  border: none;
  padding: 0.8rem 1.4rem;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--tinte-grau);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}
.tab:hover { color: var(--tinte); }
.tab.active {
  color: var(--akzent);
  border-bottom-color: var(--akzent);
}

.spieler-liste {
  background: var(--creme-hell);
  border-radius: 6px;
  border: 1px solid var(--linie);
  overflow: hidden;
}

.spieler-liste-header {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1rem;
  padding: 0.8rem 1.5rem;
  background: var(--holz-dunkel);
  color: var(--creme);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.spieler-liste-header div:nth-child(3) { text-align: right; }

.spieler-zeile {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  align-items: baseline;
  border-bottom: 1px solid var(--linie);
}
.spieler-zeile:last-child { border-bottom: none; }
.spieler-zeile:nth-child(odd) { background: var(--creme); }

.spieler-rang,
.spieler-brett {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--akzent);
}
.spieler-name {
  font-weight: 600;
}
.spieler-rolle {
  font-size: 0.85rem;
  color: var(--tinte-grau);
  font-style: italic;
  margin-left: 0.6rem;
}
.spieler-titel {
  display: inline-block;
  background: var(--gold);
  color: var(--creme);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  margin-left: 0.5rem;
  font-weight: 600;
}
.spieler-dwz {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  text-align: right;
}

.spieler-jugend-zeile {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--linie);
}
.spieler-jugend-zeile:last-child { border-bottom: none; }
.spieler-jugend-zeile:nth-child(odd) { background: var(--creme); }
.spieler-jugend-erfolg {
  font-size: 0.9rem;
  color: var(--tinte-grau);
  font-style: italic;
  margin-top: 0.2rem;
}

.spieler-block {
  margin-bottom: 2rem;
}
.spieler-block-titel {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin: 1.5rem 0 0.8rem;
  color: var(--tinte-grau);
  letter-spacing: 0.05em;
}

/* ─── Training-Liste ──────────────────────────────────────── */
.info-block {
  padding: 2rem;
  background: var(--creme-hell);
  border: 1px solid var(--linie);
  border-radius: 6px;
}
.info-block.dunkel {
  background: var(--holz-dunkel);
  color: var(--creme);
  border: none;
}
.info-block.dunkel h3 { color: var(--creme); }
.info-block.dunkel .kicker { color: var(--holz-hell); }

.info-block.akzent {
  background: var(--akzent);
  color: var(--creme);
  border: none;
}
.info-block.akzent h3 { color: var(--creme); }
.info-block.akzent .kicker { color: rgba(250, 245, 236, 0.85); }

.training-liste {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.training-liste li {
  border-left: 3px solid var(--holz-mittel);
  padding-left: 1rem;
}
.training-liste .label {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
}
.training-liste .zeit {
  color: var(--akzent);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0.2rem 0;
}
.training-liste .beschreibung {
  font-size: 0.92rem;
  color: var(--tinte-grau);
}

/* ─── Einblicke (Galerie & Porträts) ──────────────────────── */
.portrait-block {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.portrait-bild {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(45, 31, 17, 0.18);
}
.portrait-bild img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.portrait-text h2 { margin-bottom: 0.3rem; }
.portrait-text .rolle {
  color: var(--akzent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.portrait-text .meta {
  display: flex;
  gap: 1.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tinte-grau);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--linie);
}
.portrait-text .meta strong { color: var(--tinte); }

.portrait-text p { white-space: pre-line; }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.galerie-karte {
  background: var(--creme-hell);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--linie);
  display: flex;
  flex-direction: column;
}
.galerie-karte img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.galerie-karte-text {
  padding: 1.2rem 1.5rem;
}
.galerie-karte h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.galerie-karte p {
  font-size: 0.92rem;
  color: var(--tinte-grau);
  margin: 0;
}

.platzhalter-box {
  background: var(--sand);
  border: 2px dashed var(--holz-mittel);
  padding: 2rem;
  border-radius: 6px;
  text-align: center;
  color: var(--tinte-grau);
}

/* ─── Kontakt ──────────────────────────────────────────────── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.kontakt-info p { margin-bottom: 1rem; }
.kontakt-info strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tinte-grau);
  margin-bottom: 0.2rem;
}

.kontakt-bild {
  border-radius: 6px;
  overflow: hidden;
  background: var(--sand);
}
.kontakt-bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq-liste {
  max-width: 780px;
  margin: 0 auto;
}

.faq-eintrag {
  border-bottom: 1px solid var(--linie);
  padding: 0.8rem 0;
}

.faq-frage {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  cursor: pointer;
  padding: 0.8rem 0;
  color: var(--tinte);
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-frage::-webkit-details-marker { display: none; }
.faq-frage::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--akzent);
  transition: transform 0.2s;
  flex-shrink: 0;
}
details[open] .faq-frage::after {
  transform: rotate(45deg);
}

.faq-antwort {
  padding: 0 0 1rem;
  color: var(--tinte-grau);
}

/* ─── Bilderstreifen ───────────────────────────────────────── */
.bilder-streifen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.bilder-streifen img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* ─── Bauern-Reihe ──────────────────────────────────────────── */
.bauern-reihe {
  background: var(--creme-hell);
  padding: 0;
  position: relative;
}
.bauern-reihe img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  object-position: center;
}

/* ─── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--holz-dunkel);
  color: var(--creme);
  padding: 4rem 0 2rem;
  margin-top: auto;
  flex-shrink: 0;
}

.site-footer h4 {
  color: var(--holz-hell);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Lora', serif;
  margin-bottom: 1rem;
}

.site-footer p, .site-footer a {
  color: rgba(250, 245, 236, 0.85);
  font-size: 0.95rem;
}

.site-footer a:hover { color: var(--creme); text-decoration: underline; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-grid > div a {
  display: block;
  padding: 0.25rem 0;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 245, 236, 0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(250, 245, 236, 0.7);
}

.footer-bottom .links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ─── Loading-Hinweis ──────────────────────────────────────── */
.lade-hinweis {
  text-align: center;
  padding: 2rem;
  color: var(--tinte-grau);
  font-style: italic;
}

.fehler-hinweis {
  background: var(--sand);
  border-left: 4px solid var(--akzent);
  padding: 1.2rem 1.5rem;
  border-radius: 4px;
  color: var(--tinte);
}

/* ─── Pflichtseiten (Impressum/Datenschutz) ──────────────── */
.text-seite {
  max-width: 760px;
  margin: 0 auto;
}
.text-seite h2 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}
.text-seite h3 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}
.text-seite p, .text-seite ul {
  margin-bottom: 1rem;
}
.text-seite ul {
  padding-left: 1.4rem;
}
.text-seite li {
  margin-bottom: 0.4rem;
}

/* ─── Training-Karten (neue Layout-Variante) ───────────────── */
.willkommen-banner {
  background: var(--sand);
  border-left: 3px solid var(--akzent);
  padding: 1rem 1.4rem;
  margin: 1.5rem 0 2.5rem;
  font-style: italic;
  color: var(--tinte);
  border-radius: 4px;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.training-karte {
  background: var(--creme-hell);
  border: 1px solid var(--linie);
  border-top: 4px solid var(--holz-mittel);
  border-radius: 6px;
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.training-karte.jugend     { border-top-color: var(--gold); }
.training-karte.spielabend { border-top-color: var(--akzent); }
.training-karte.training   { border-top-color: var(--holz-mittel); }

.training-karte h3 {
  font-size: 1.25rem;
  margin: 0.4rem 0 0.8rem;
}

.training-tag-uhrzeit {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.6rem;
}
.training-tag-uhrzeit .tag {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--tinte);
}
.training-tag-uhrzeit .uhrzeit {
  color: var(--akzent);
  font-weight: 600;
  font-size: 0.95rem;
}

.training-spielort,
.training-leitung {
  margin: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--tinte-grau);
}
.training-spielort strong,
.training-leitung strong {
  color: var(--tinte);
  font-weight: 600;
}

.training-beschreibung {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ─── Mannschaft-Bilanz-Box ────────────────────────────────── */
.mannschaft-bilanz {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--creme-hell);
  border: 1px solid var(--linie);
  border-radius: 6px;
  padding: 1.2rem 1.4rem;
  margin: 0.8rem 0 1rem;
}
.mannschaft-bilanz > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.mannschaft-bilanz .label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tinte-grau);
}
.mannschaft-bilanz .wert {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--tinte);
}

.mannschaft-fazit {
  font-style: italic;
  color: var(--tinte-grau);
  padding: 0.6rem 0 0.4rem;
}

/* ─── Runden-Liste (Mannschaftsergebnisse) ────────────────── */
.runden-liste {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
.runde-zeile {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.2rem;
  align-items: center;
  background: var(--creme-hell);
  border: 1px solid var(--linie);
  border-radius: 4px;
  padding: 0.85rem 1.2rem;
}
.runde-datum {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid var(--linie);
  padding-right: 1rem;
}
.runde-datum .tag {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--akzent);
  line-height: 1;
}
.runde-datum .monat {
  font-size: 0.78rem;
  color: var(--tinte-grau);
  letter-spacing: 0.05em;
}
.runde-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.runde-nr {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tinte-grau);
}
.runde-ort-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.1rem 0.45rem;
  border-radius: 3px;
  margin-left: 0.4rem;
  text-transform: uppercase;
  font-weight: 600;
}
.runde-ort-tag.heim {
  background: var(--gold);
  color: var(--creme);
}
.runde-ort-tag.auswaerts {
  background: var(--linie);
  color: var(--tinte-grau);
}
.runde-gegner {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
}
.runde-ergebnis {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  background: var(--creme);
}
.runde-ergebnis.sieg         { background: #2a6b3a; color: #fff; }
.runde-ergebnis.niederlage   { background: #8a2a2a; color: #fff; }
.runde-ergebnis.unentschieden{ background: var(--holz-mittel); color: #fff; }

/* ─── News-Stapel (untereinander, ohne Bilder) ─────────────── */
.news-stapel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 760px;
  margin: 0 auto;
}
.news-karte-stapel {
  display: block;
  border-radius: 6px;
  background: var(--creme-hell);
  border: 1px solid var(--linie);
  border-left: 4px solid var(--holz-mittel);
}
.news-karte-stapel .news-bild {
  display: none;
}
.news-karte-stapel .news-inhalt {
  padding: 1.8rem 2rem;
}
.news-karte-stapel .news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
  white-space: nowrap;
}
.news-karte-stapel h3 {
  font-size: 1.5rem;
  margin: 0 0 0.6rem;
  line-height: 1.25;
}
.news-karte-stapel .news-lede {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--tinte);
  margin-bottom: 1rem;
}
.news-karte-stapel .news-body {
  margin-top: 0.4rem;
  color: var(--tinte);
  line-height: 1.7;
}
.news-karte-stapel .news-body p {
  margin-bottom: 0.9rem;
}
.news-karte-stapel .news-body p:last-child {
  margin-bottom: 0;
}

/* ─── Spielorte-Grid (Kontaktseite) ───────────────────────── */
.spielorte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* ─── Hinweis-Liste ───────────────────────────────────────── */
.hinweis-liste {
  list-style: none;
  padding: 0;
}
.hinweis-liste li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--tinte-grau);
}
.hinweis-liste li:before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--akzent);
}

/* ─── Mannschaftsaufstellung ──────────────────────────────── */
.aufstellung-liste {
  background: var(--creme-hell);
  border: 1px solid var(--linie);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 0.8rem;
}
.aufstellung-header {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  padding: 0.7rem 1.5rem;
  background: var(--holz-dunkel);
  color: var(--creme);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.aufstellung-header div:nth-child(3) { text-align: right; }

.aufstellung-zeile {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  padding: 0.7rem 1.5rem;
  align-items: baseline;
  border-bottom: 1px solid var(--linie);
}
.aufstellung-zeile:last-child { border-bottom: none; }
.aufstellung-zeile:nth-child(odd) { background: var(--creme); }

.aufstellung-brett {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--akzent);
}
.aufstellung-name { font-weight: 600; }
.aufstellung-titel {
  display: inline-block;
  background: var(--gold);
  color: var(--creme);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.12rem 0.4rem;
  border-radius: 3px;
  margin-left: 0.5rem;
  font-weight: 600;
}
.aufstellung-dwz {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  text-align: right;
}

/* ─── Spieler ohne DWZ-Wertung ────────────────────────────── */
.ohne-dwz-block {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--linie);
}
.ohne-dwz-liste {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.ohne-dwz-zeile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1.2rem;
  background: var(--creme-hell);
  border: 1px solid var(--linie);
  border-radius: 4px;
}
.ohne-dwz-name {
  font-weight: 500;
  color: var(--tinte);
}
.ohne-dwz-kategorie {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--tinte-grau);
}

/* ─── Kalender ────────────────────────────────────────────── */
.kalender-legende {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 1rem 1.4rem;
  background: var(--creme-hell);
  border: 1px solid var(--linie);
  border-radius: 6px;
  margin-bottom: 2rem;
}
.legende-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--tinte-grau);
}
.legende-item .punkt {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--holz-mittel);
}
.legende-item.kalender-spiel .punkt          { background: var(--linie); border: 1px solid var(--tinte-grau); }
.legende-item.kalender-spiel.kalender-heim .punkt { background: var(--gold); border: none; }
.legende-item.kalender-training .punkt       { background: var(--holz-mittel); }
.legende-item.kalender-veranstaltung .punkt  { background: var(--akzent); }
.legende-item.kalender-einmalig .punkt       { background: #5a6f3d; }

.kalender-block { margin-bottom: 2rem; }

.kalender-monat {
  margin-bottom: 2rem;
}
.kalender-monat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  border-bottom: 2px solid var(--holz-mittel);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
  color: var(--holz-dunkel);
}

.kalender-eintraege {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.kalender-eintrag {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 0.8rem 1.2rem;
  background: var(--creme-hell);
  border: 1px solid var(--linie);
  border-left: 4px solid var(--linie);
  border-radius: 4px;
}
.kalender-eintrag.kalender-spiel {
  border-left-color: var(--tinte-grau);
}
.kalender-eintrag.kalender-spiel.kalender-heim {
  border-left-color: var(--gold);
}
.kalender-eintrag.kalender-training {
  border-left-color: var(--holz-mittel);
  background: var(--creme);
}
.kalender-eintrag.kalender-veranstaltung {
  border-left-color: var(--akzent);
  background: #FFF4EE;
}
.kalender-eintrag.kalender-einmalig {
  border-left-color: #5a6f3d;
  background: #F5F7EE;
}
.kalender-eintrag.kalender-ausfall {
  border-left-color: var(--tinte-grau);
  background: #F4F1ED;
  opacity: 0.75;
}
.kalender-eintrag.kalender-ausfall .kalender-titel {
  text-decoration: line-through;
  color: var(--tinte-grau);
}
.kalender-eintrag.kalender-ausfall .kalender-ort {
  color: var(--akzent);
  font-style: italic;
  font-weight: 600;
  text-decoration: none;
}

/* ─── Mannschaft als Ankündigung (z.B. 3. Mannschaft) ─────── */
.mannschaft-ankuendigung {
  background: linear-gradient(180deg, var(--sand) 0%, var(--creme-hell) 100%);
  border: 1px dashed var(--holz-mittel);
  border-radius: 6px;
  padding: 2rem 2.2rem;
}
.liga-badge-neu {
  background: var(--akzent) !important;
  color: var(--creme) !important;
}
.ankuendigung-stempel {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: var(--holz-dunkel);
  color: var(--creme);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 3px;
}

.kalender-datum {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid var(--linie);
  padding-right: 1rem;
  line-height: 1.1;
}
.kalender-datum .wochentag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--tinte-grau);
  text-transform: uppercase;
}
.kalender-datum .tag {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--akzent);
  margin: 0.1rem 0;
}
.kalender-datum .monat {
  font-size: 0.78rem;
  color: var(--tinte-grau);
}

.kalender-inhalt {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.kalender-titel {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--tinte);
}
.kalender-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--tinte-grau);
}
.kalender-meta .kalender-runde {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.kalender-meta .kalender-uhrzeit {
  font-weight: 600;
  color: var(--akzent);
}

.kalender-ergebnis {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  background: var(--creme);
}
.kalender-ergebnis.sieg         { background: #2a6b3a; color: #fff; }
.kalender-ergebnis.niederlage   { background: #8a2a2a; color: #fff; }
.kalender-ergebnis.unentschieden{ background: var(--holz-mittel); color: #fff; }

/* ─── Responsive Design ───────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .zwei-spalten { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .portrait-block { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .bilder-streifen { grid-template-columns: 1fr; }
  .bilder-streifen img { height: 200px; }

  .mannschaft-bilanz { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--creme-hell);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--linie);
    gap: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--linie);
    width: 100%;
  }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav a.aktiv::after { display: none; }

  .spiel {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .spiel-datum { text-align: left; }
  .spiel-ergebnis { text-align: left; }

  .spieler-liste-header { display: none; }
  .spieler-zeile {
    grid-template-columns: 50px 1fr auto;
    align-items: center;
  }

  .runde-zeile {
    grid-template-columns: 70px 1fr auto;
    gap: 0.8rem;
    padding: 0.7rem 0.9rem;
  }
  .runde-gegner { font-size: 0.95rem; }
  .runde-ergebnis { font-size: 1.05rem; padding: 0.25rem 0.6rem; }

  .kalender-eintrag {
    grid-template-columns: 60px 1fr;
    grid-template-areas:
      "datum inhalt"
      "datum ergebnis";
    gap: 0.8rem;
  }
  .kalender-datum   { grid-area: datum; padding-right: 0.7rem; }
  .kalender-inhalt  { grid-area: inhalt; }
  .kalender-ergebnis{ grid-area: ergebnis; justify-self: start; margin-top: 0.3rem; }

  .news-karte-stapel .news-inhalt { padding: 1.4rem 1.3rem; }
  .news-karte-stapel h3 { font-size: 1.25rem; }
  .news-karte-stapel .news-lede { font-size: 1rem; }
  .news-karte-stapel .news-meta { white-space: normal; }

  .mannschaft-bilanz { grid-template-columns: 1fr 1fr; gap: 0.6rem; padding: 0.9rem 1rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  section { padding: 2.5rem 0; }
  .hero { padding: 3rem 0 4rem; }
  .btn { padding: 0.7rem 1.3rem; font-size: 0.9rem; }
}

/* ─── Print-Stil (für Mannschaftsführer) ─────────────────── */
@media print {
  .site-header, .site-footer, .menu-toggle { display: none; }
  body { background: white; color: black; }
  section { padding: 1rem 0; page-break-inside: avoid; }
}


/* ─── SCHACHRÄTSEL ─────────────────────────────────────────── */
.raetsel-karte {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 2.5rem;
  align-items: center;
}

.raetsel-brett svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(45, 31, 17, 0.18);
}
.raetsel-brett.klein svg { box-shadow: 0 10px 24px rgba(45, 31, 17, 0.14); }

.brett-figur {
  font-size: 34px;
  font-family: "Segoe UI Symbol", "Apple Symbols", "Noto Sans Symbols 2",
               "DejaVu Sans", sans-serif;
}
.brett-koord {
  font-size: 13px;
  fill: #7a5a3a;
  font-family: Georgia, "Times New Roman", serif;
}

.raetsel-text h2 { margin: 0.3rem 0 0.6rem; }

.raetsel-stipulation {
  font-weight: 600;
  color: var(--akzent);
  margin-bottom: 1rem;
}

.raetsel-tipp {
  background: var(--creme-hell);
  border-left: 3px solid var(--holz-mittel);
  padding: 0.8rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.4rem;
}
.raetsel-tipp summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--holz-dunkel);
}
.raetsel-tipp p { margin-top: 0.6rem; }

.raetsel-archiv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}
.raetsel-archiv-karte {
  background: var(--creme);
  padding: 1.2rem;
  border-radius: 6px;
  text-align: center;
}
.raetsel-archiv-karte h3 { font-size: 1.05rem; margin: 0.9rem 0 0.2rem; }
.raetsel-datum { font-size: 0.88rem; color: var(--tinte-grau); margin-bottom: 0.6rem; }
.raetsel-archiv-karte a { font-size: 0.9rem; font-weight: 600; }

.raetsel-hinweis-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.raetsel-bild img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(45, 31, 17, 0.2);
}
.bild-unterschrift {
  font-size: 0.88rem;
  color: var(--tinte-grau);
  margin-top: 0.7rem;
  font-style: italic;
}

/* Lösungsseite */
.loesung-warnung {
  background: var(--sand);
  border-left: 4px solid var(--akzent);
  padding: 1rem 1.2rem;
  border-radius: 4px;
  margin-bottom: 2.5rem;
}
.loesung-karte {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 2rem;
  align-items: start;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--sand);
  scroll-margin-top: 6rem;
}
.loesung-karte:last-child { border-bottom: none; }
.loesung-karte.hervorgehoben {
  background: var(--creme-hell);
  border-radius: 8px;
  padding: 1.8rem;
}
.loesung-text h2 { margin: 0.3rem 0 0.5rem; }
.loesung-zug {
  font-size: 1.08rem;
  background: var(--creme-hell);
  padding: 0.7rem 1rem;
  border-radius: 4px;
  margin-bottom: 0.9rem;
}
.loesung-varianten {
  margin-top: 0.9rem;
  font-size: 0.93rem;
  color: var(--tinte-grau);
  line-height: 1.8;
}

@media (max-width: 780px) {
  .raetsel-karte,
  .raetsel-hinweis-grid,
  .loesung-karte { grid-template-columns: 1fr; gap: 1.6rem; }
  .raetsel-brett { max-width: 420px; margin: 0 auto; }
  .brett-figur { font-size: 33px; }
}
