/*
Theme Name: TTL Basketball Bamberg
Theme URI: https://process-vision.de
Author: Process Vision
Description: Vereins-Website TTL Basketball Bamberg e.V. - Block-Theme aus Konzept A "Matchday". Dynamische Inhalte ueber das Plugin "TTL Vereins-Manager".
Version: 0.1.12
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: ttl-bamberg
*/
/* ============================================================
   TTL Basketball Bamberg – KONZEPT A „Matchday" (überarbeitet)
   HELL & freundlich, Rot/Weiß als Leitfarben, dynamische
   Matchday-Anmutung (dunkler Foto-Hero bleibt als Akzent).
   Überarbeitung nach Kundenfeedback v. 05.06.2026:
   - insgesamt deutlich heller
   - dominantes Dunkelblau/Lila entfernt
   - Rot = TTL-Hausrot (#ae0d03)
   Block-theme-tauglich: klare Sektionen, Google-Fonts, kein Exoten-JS.
   ============================================================ */

:root {
  --rot: #ae0d03;          /* TTL-Hausrot (Kunde, 2026-06-08) */
  --rot-hell: #d4160a;
  --rot-dunkel: #7d0a02;
  --dunkel: #18181d;       /* neutrales Anthrazit (Hero-Overlay & Footer) */
  --dunkel-2: #23232a;
  --weiss: #ffffff;
  --hell: #f4f5f7;         /* helle Wechsel-Sektion */
  --hell-2: #eceef1;
  --linie: #e3e6ec;        /* Rahmen/Trennlinien */
  --text: #1c1d22;         /* Haupttext dunkel */
  --text-grau: #5c616c;    /* gedämpft */
  --maxw: 1180px;
  --radius: 6px;
  --schatten: 0 4px 18px rgba(20,22,30,.07);
  --schatten-stark: 0 10px 30px rgba(20,22,30,.12);
  --font-display: 'Anton', 'Oswald', Impact, sans-serif;
  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--weiss);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Demo-Banner ---------- */
.demohinweis {
  background: var(--rot-dunkel); color: #fff; text-align: center;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 12px; font-family: var(--font-head);
}
.demohinweis a { text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
.site-header.is-scrolled,
.site-header.solid {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 18px rgba(20,22,30,.10);
  padding: 10px 0;
  backdrop-filter: blur(6px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 52px; height: 52px; border-radius: 50%; background: #fff; }
.brand .bt { font-family: var(--font-display); font-size: 1.15rem; line-height: 1; letter-spacing: .04em; text-transform: uppercase; color: #fff; }
.brand .bt span { color: var(--rot-hell); display: block; font-size: .68rem; letter-spacing: .26em; font-family: var(--font-head); }
/* Solid-Header (Innenseiten / gescrollt): dunkle Schrift auf Weiß */
.site-header.is-scrolled .brand .bt,
.site-header.solid .brand .bt { color: var(--text); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em;
  font-size: .92rem; padding: 10px 14px; color: #fff; position: relative;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.site-header.is-scrolled .main-nav a,
.site-header.solid .main-nav a { color: var(--text); text-shadow: none; }
.main-nav a:hover { color: var(--rot); }
.site-header:not(.solid):not(.is-scrolled) .main-nav a:hover { color: #fff; }
.main-nav a.active::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 3px;
  background: var(--rot-hell);
}

/* ---------- Verein-Dropdown (Mannschaften) ---------- */
.nav-item { position: relative; display: flex; align-items: center; }
.drop-caret { font-size: .68em; margin-left: 2px; opacity: .7; }
.nav-drop {
  position: absolute; top: 100%; left: 50%; transform: translateX(-38%);
  display: none; gap: 34px; min-width: 660px; padding: 26px 32px 28px;
  background: var(--weiss); border: 1px solid var(--linie); border-top: 4px solid var(--rot);
  border-radius: var(--radius); box-shadow: var(--schatten-stark); z-index: 60;
}
.nav-drop::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.has-drop:hover .nav-drop, .has-drop:focus-within .nav-drop { display: flex; }
.nav-drop .nd-col { min-width: 130px; }
.nav-drop .nd-col h5 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--rot); margin: 0 0 10px; white-space: nowrap; }
.nav-drop .nd-col a { display: block; padding: 5px 0; font-size: .88rem; color: var(--text); text-shadow: none; letter-spacing: .03em; text-transform: none; white-space: nowrap; }
.nav-drop .nd-col a:hover { color: var(--rot); }
.nav-drop .nd-mehr { border-left: 1px solid var(--linie); padding-left: 30px; }
.site-header:not(.solid):not(.is-scrolled) .nav-drop .nd-col a:hover { color: var(--rot); }
.btn-shop {
  background: var(--rot); color: #fff !important; padding: 11px 20px !important;
  border-radius: var(--radius); letter-spacing: .1em; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; transition: background .2s;
  text-shadow: none !important;
}
.btn-shop:hover { background: var(--rot-hell); color: #fff !important; }
.btn-shop::after { display: none !important; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 40px; height: 40px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px auto; transition: .25s; }
.site-header.is-scrolled .nav-toggle span,
.site-header.solid .nav-toggle span { background: var(--text); }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (Matchday: dunkler Foto-Akzent) ---------- */
.hero {
  position: relative; min-height: 84vh; display: flex; align-items: flex-end;
  margin-top: -90px; padding-bottom: 70px;
  background: #000;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,24,.45) 0%, rgba(20,20,24,.12) 38%, rgba(20,20,24,.90) 100%),
              url('assets/img/foto-startseite.jpg') center 30%/cover no-repeat;
}
.hero::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 46%; height: 10px;
  background: var(--rot);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero .eyebrow {
  display: inline-block; font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .3em; font-size: .82rem; color: #fff; background: var(--rot);
  padding: 6px 14px; margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: .92; color: #fff; letter-spacing: .01em;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.hero h1 em { color: #ff5249; font-style: normal; }
.hero p.lead { font-size: 1.2rem; color: #f3f1ee; margin: 22px 0 30px; max-width: 560px; text-shadow: 0 2px 14px rgba(0,0,0,.4); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em;
  padding: 14px 28px; border-radius: var(--radius); font-size: .98rem; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; transition: .2s; border: 2px solid transparent;
}
.btn-primary { background: var(--rot); color: #fff; }
.btn-primary:hover { background: var(--rot-hell); }
.btn-ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }
/* Ghost-Button auf hellem Grund (Innenseiten) */
.section .btn-ghost, .ctaband.light .btn-ghost { border-color: var(--rot); color: var(--rot); }
.section .btn-ghost:hover { background: rgba(174,13,3,.06); }

/* ---------- Sektionen ---------- */
.section { padding: 84px 0; background: var(--weiss); }
.section.dark { background: var(--hell); }       /* "dark" = helle Wechselsektion */
.section.red { background: var(--rot); }
.section.red .sec-head h2, .section.red .sec-head .kicker { color: #fff; }
.sec-head { margin-bottom: 44px; }
.sec-head .kicker { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .26em; color: var(--rot); font-size: .85rem; }
.sec-head h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1; color: var(--text); margin-top: 8px; }
.sec-head.center { text-align: center; }

/* Spiele-Ticker */
.spiele { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 18px; }
.spiel {
  background: var(--weiss); border: 1px solid var(--linie); border-left: 4px solid var(--rot);
  padding: 22px 24px; border-radius: var(--radius); box-shadow: var(--schatten);
  transition: transform .2s, box-shadow .2s;
}
.spiel:hover { transform: translateY(-4px); box-shadow: var(--schatten-stark); }
.spiel .liga { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .14em; color: var(--rot); font-size: .76rem; }
.spiel .datum { color: var(--text-grau); font-size: .85rem; margin: 6px 0 12px; }
.spiel .teams { font-family: var(--font-head); font-size: 1.18rem; color: var(--text); text-transform: uppercase; }
.spiel .ort { color: var(--text-grau); font-size: .82rem; margin-top: 10px; }

/* Team-Kacheln (Foto + dunkler Verlauf, Matchday-Look bleibt) */
.teamgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 16px; }
.teamcard { position: relative; overflow: hidden; border-radius: var(--radius); min-height: 300px; display: flex; align-items: flex-end; box-shadow: var(--schatten); }
.teamcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.teamcard::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 28%, rgba(18,18,21,.55) 62%, rgba(125,10,2,.92) 100%); }
.teamcard:hover img { transform: scale(1.07); }
.teamcard .tc-text { position: relative; z-index: 2; padding: 24px; }
.teamcard h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.7rem; color: #fff; line-height: 1; }
.teamcard p { color: #f3eded; font-size: .9rem; margin-top: 6px; line-height: 1.4; }
.teamcard .arrow { color: #fff; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; margin-top: 12px; display: inline-block; }

/* News */
.newsgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; }
.newscard { background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--schatten); transition: transform .2s, box-shadow .2s; }
.newscard:hover { transform: translateY(-5px); box-shadow: var(--schatten-stark); }
.newscard .nc-img { aspect-ratio: 16/10; overflow: hidden; }
.newscard .nc-img img { width: 100%; height: 100%; object-fit: cover; }
/* Robuste News-Bilder: kleine/logo-artige Bilder nicht zoomen (wird unscharf/beschnitten),
   sondern in Originalgröße zentriert auf hellem Grund zeigen (.nc-contain setzt das Plugin). */
.newscard .nc-img.nc-contain { background: #f4f5f7; display: flex; align-items: center; justify-content: center; padding: 18px; }
.newscard .nc-img.nc-contain img { width: auto; height: auto; max-width: 85%; max-height: 85%; object-fit: contain; }
.ttl-feat-contain { background: #f4f5f7; border-radius: var(--radius); padding: 28px; text-align: center; }
.ttl-feat-contain img { width: auto !important; height: auto !important; max-width: 70%; max-height: 240px; display: inline-block; }

/* News-Einzelansicht (Konzept-A-Optik) */
.pagehead-news h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); max-width: 900px; line-height: 1.05; }
.news-meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 16px; }
.news-meta .nm-date { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .16em; color: var(--text-grau); font-size: .82rem; }
.news-meta .nm-badge { background: var(--rot); color: #fff; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-size: .74rem; padding: 5px 12px; border-radius: 4px; transition: background .2s; }
.news-meta a.nm-badge:hover { background: var(--rot-hell); }
.news-meta .nm-badge.nm-bereich { background: var(--dunkel-2); }
.artikel { max-width: 820px; }
.artikel .wp-block-post-featured-image { margin: 0 0 30px; }
.artikel .wp-block-post-featured-image img { border-radius: var(--radius); box-shadow: var(--schatten); }
.artikel .prose p:first-child { font-size: 1.14rem; }
.artikel .prose { max-width: none; }
.artikel-zurueck { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--linie); }
.artikel-zurueck .more { color: var(--rot); font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: .84rem; }

/* Blättern zwischen Meldungen (Einzelansicht) */
.news-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.news-nav .nn-box { display: flex; flex-direction: column; gap: 6px; padding: 18px 20px; background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius); box-shadow: var(--schatten); transition: transform .2s, box-shadow .2s; }
.news-nav a.nn-box:hover { transform: translateY(-3px); box-shadow: var(--schatten-stark); }
.news-nav .nn-next { text-align: right; }
.news-nav .nn-label { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; color: var(--rot); }
.news-nav .nn-titel { font-family: var(--font-head); font-size: .98rem; color: var(--text); line-height: 1.25; }
.news-nav .nn-leer { visibility: hidden; }
@media (max-width: 640px) { .news-nav { grid-template-columns: 1fr; } .news-nav .nn-next { text-align: left; } }

/* News-Übersichtsseite */
.pagehead-sub { color: var(--text-grau); margin-top: 12px; max-width: 560px; }
.news-count { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; color: var(--text-grau); margin: 0 0 18px; }
.news-pager .pager-prev, .news-pager .pager-next { width: auto; padding: 0 16px; }
.newscard .nc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.newscard .nc-date { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .14em; color: var(--rot); font-size: .74rem; }
.newscard h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; color: var(--text); margin: 8px 0 10px; line-height: 1.15; text-transform: uppercase; }
.newscard p { color: var(--text-grau); font-size: .92rem; }
.newscard .more { color: var(--rot); font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; margin-top: auto; padding-top: 16px; }

/* Video-Embed (responsiv 16:9) */
.video-wrap { position: relative; width: 100%; max-width: 940px; margin: 0 auto; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--schatten-stark); background: #000; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-intro { max-width: 720px; margin: 0 auto 30px; text-align: center; }
.video-intro p { color: var(--text-grau); font-size: 1.05rem; }

/* Bereichs-Story (Text + Foto, z. B. Rollstuhlbasketball) */
.story { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: center; }
.story.reverse .story-media { order: 2; }
.story-text p { color: var(--text); margin-bottom: 15px; }
.story-text p.intro { font-size: 1.15rem; }
.story-media img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--schatten-stark); }
.story-facts { list-style: none; margin: 20px 0 4px; border-top: 1px solid var(--linie); }
.story-facts li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--linie); font-size: .95rem; }
.story-facts li b { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; color: var(--rot); min-width: 132px; font-weight: 600; }

/* Plan-Karten (Trainingsplan / Spielplan Teaser) */
.plangrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; }
.plancard {
  background: var(--weiss); border: 1px solid var(--linie); border-top: 4px solid var(--rot);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--schatten);
  display: flex; flex-direction: column;
}
.plancard .pc-ico { font-size: 2rem; line-height: 1; }
.plancard h3 { font-family: var(--font-head); text-transform: uppercase; color: var(--text); font-size: 1.4rem; margin: 14px 0 8px; }
.plancard p { color: var(--text-grau); font-size: .95rem; margin-bottom: 18px; }
.plancard .more { margin-top: auto; color: var(--rot); font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; }

/* Sponsoren-Logowand */
.sponsorrow { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: stretch; }
.sponsorrow .sp {
  background: var(--weiss); color: var(--text); border: 1px solid var(--linie); border-radius: var(--radius);
  min-width: 180px; min-height: 120px; flex: 1 1 180px; max-width: 240px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 22px; text-align: center; box-shadow: var(--schatten);
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; font-weight: 600;
  transition: .2s;
}
.sponsorrow .sp:hover { transform: translateY(-3px); box-shadow: var(--schatten-stark); border-color: var(--rot); }
.sponsorrow .sp img { max-height: 64px; max-width: 100%; width: auto; object-fit: contain; }
.sponsorrow .sp small { display: block; color: var(--rot); font-size: .7rem; letter-spacing: .14em; margin-top: 8px; font-weight: 600; }
.sponsorrow .sp.haupt { min-height: 150px; max-width: 320px; flex-basis: 300px; border-top: 4px solid var(--rot); }
.sponsorrow .sp.haupt img { max-height: 90px; }
.sponsorrow .sp.gross img { max-height: 92px; }   /* Edelmann & Physiotherapie größer (Kunde, 13.06.2026) */
.sponsorrow .sp.platzhalter { color: var(--text); }
.sponsorrow .sp.platzhalter .ph-name { font-size: 1.05rem; line-height: 1.1; }
.sponsorrow .sp.werben { border: 2px dashed var(--rot); background: rgba(174,13,3,.03); color: var(--rot); }

/* CTA-Band (Rot) */
.ctaband { background: linear-gradient(125deg, var(--rot) 0%, var(--rot-dunkel) 100%); text-align: center; }
.ctaband h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.8rem,4vw,3rem); color: #fff; line-height: 1; }
.ctaband p { color: #ffe3e1; margin: 14px 0 26px; font-size: 1.1rem; }
.ctaband .btn-primary { background: #fff; color: var(--rot); }
.ctaband .btn-primary:hover { background: var(--dunkel); color: #fff; }

/* ---------- Inhaltsseiten ---------- */
.pagehead { background: var(--hell); padding: 130px 0 50px; border-bottom: 5px solid var(--rot); }
.pagehead .kicker { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .26em; color: var(--rot); font-size: .85rem; }
.pagehead h1 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.4rem,6vw,4.2rem); color: var(--text); line-height: 1; margin-top: 8px; }
.prose { max-width: 760px; }
.prose .intro { font-size: 1.2rem; color: var(--text); }
.prose h2 { font-family: var(--font-head); text-transform: uppercase; color: var(--text); font-size: 1.7rem; margin: 36px 0 14px; }
.prose h3 { font-family: var(--font-head); color: var(--rot); text-transform: uppercase; font-size: 1.15rem; margin: 24px 0 8px; letter-spacing: .04em; }
.prose p { margin-bottom: 16px; color: var(--text); }
.prose ul { margin: 0 0 18px 20px; color: var(--text); }
.prose li { margin-bottom: 8px; }
.muted { color: var(--text-grau); font-size: .88rem; }

.infogrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 22px; }
.infobox { background: var(--weiss); border: 1px solid var(--linie); border-top: 4px solid var(--rot); padding: 28px; border-radius: var(--radius); box-shadow: var(--schatten); }
.infobox h3 { font-family: var(--font-head); text-transform: uppercase; color: var(--text); font-size: 1.2rem; margin-bottom: 12px; }
.infobox p { color: var(--text-grau); font-size: .95rem; }
.infobox ul { list-style: none; margin-top: 8px; }
.infobox ul li { color: var(--text); font-size: .95rem; padding: 5px 0; border-bottom: 1px solid var(--linie); display: flex; justify-content: space-between; gap: 10px; }
.infobox ul li:last-child { border-bottom: 0; }
.infobox ul li span { color: var(--rot); font-family: var(--font-head); font-size: .8rem; letter-spacing: .06em; }
.statrow { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 18px; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: 3rem; color: var(--rot); line-height: 1; }
.stat .lbl { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; color: var(--text-grau); font-size: .82rem; }

/* Tabelle (Trainingszeiten / Spielplan) */
.tbl { width: 100%; border-collapse: collapse; margin: 10px 0 12px; background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius); overflow: hidden; }
.tbl th, .tbl td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--linie); }
.tbl th { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; color: #fff; font-size: .82rem; background: var(--rot); }
.tbl td { color: var(--text); font-size: .94rem; }
.tbl tr:last-child td { border-bottom: 0; }
.tbl tr:hover td { background: rgba(174,13,3,.05); }
.tbl .heim { font-family: var(--font-head); text-transform: uppercase; color: var(--rot); font-size: .74rem; }
.tbl .bus { display: inline-block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; color: var(--rot); font-size: .72rem; border: 1px solid var(--rot); border-radius: 999px; padding: 2px 9px; white-space: nowrap; }

/* Kontakt */
.kontaktgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.kontaktinfo h2 { font-family: var(--font-head); text-transform: uppercase; color: var(--text); font-size: 1.6rem; }
.kontaktinfo p { margin-bottom: 6px; color: var(--text); }
.kontaktinfo .label { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .12em; color: var(--rot); font-size: .78rem; margin-top: 18px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: var(--text-grau); margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 12px 14px; background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius);
  color: var(--text); font-family: var(--font-body); font-size: .95rem;
}
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--rot); border-color: var(--rot); }

/* Orga / Vorstandschaft Karten */
.orgagrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 18px; margin-top: 10px; }
.orgacard { background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius); padding: 22px; box-shadow: var(--schatten); }
.orgacard .rolle { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; color: var(--rot); font-size: .76rem; }
.orgacard .name { font-family: var(--font-head); color: var(--text); font-size: 1.15rem; margin-top: 4px; }

.legalcols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* ---------- Footer (dunkler Anker, neutral) ---------- */
.site-footer { background: var(--dunkel); padding: 64px 0 30px; border-top: 5px solid var(--rot); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.footer-brand img { width: 56px; height: 56px; border-radius: 50%; background: #fff; }
.footer-brand .bt { font-family: var(--font-display); text-transform: uppercase; color: #fff; font-size: 1.2rem; line-height: 1; }
.site-footer p { color: #b7b9c2; font-size: .9rem; }
.site-footer h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; color: #fff; font-size: .95rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a { color: #b7b9c2; font-size: .9rem; }
.site-footer ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #33333c; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom, .footer-bottom a { color: #80828c; font-size: .82rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Header-Social (Instagram / Facebook, Kunde 13.06.2026) ---------- */
.nav-social { display: inline-flex; align-items: center; gap: 4px; margin-left: 10px; }
.nav-social a { display: inline-flex; align-items: center; justify-content: center; color: #fff; padding: 6px; line-height: 0; text-shadow: 0 1px 8px rgba(0,0,0,.35); transition: color .2s, transform .2s; }
.nav-social a:hover { transform: translateY(-2px); color: var(--rot-hell); }
.site-header.is-scrolled .nav-social a,
.site-header.solid .nav-social a { color: var(--text); text-shadow: none; }
.site-header.is-scrolled .nav-social a:hover,
.site-header.solid .nav-social a:hover { color: var(--rot); }

/* ---------- Sportliche Erfolge (Kunde 13.06.2026) ---------- */
.erfolge { margin-top: 42px; }
.erfolge h2 { font-family: var(--font-head); text-transform: uppercase; color: var(--text); font-size: 1.6rem; margin-bottom: 18px; }
.palmares { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 30px; }
.palmares li { display: flex; align-items: baseline; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--linie); }
.palmares .jahr { font-family: var(--font-display); color: var(--rot); font-size: 1.5rem; line-height: 1; min-width: 64px; }
.palmares .titel { font-weight: 500; color: var(--text); }

/* ---------- JLK-Einführungstext (Kunde 14.06.2026) ---------- */
.jlk-intro { max-width: 820px; margin: 0 auto 26px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: 78%; max-width: 320px; flex-direction: column;
    align-items: stretch; background: var(--weiss); padding: 90px 24px 30px; gap: 0;
    transform: translateX(100%); transition: transform .3s ease; box-shadow: -10px 0 40px rgba(0,0,0,.18);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav { overflow-y: auto; }
  .main-nav a { padding: 14px 6px; border-bottom: 1px solid var(--linie); color: var(--text); text-shadow: none; }
  .main-nav a.active::after { display: none; }
  /* Dropdown mobil: als eingerückte, immer sichtbare Liste unter „Verein" */
  .nav-item { flex-direction: column; align-items: stretch; }
  .drop-caret { display: none; }
  .nav-drop {
    display: block; position: static; transform: none; min-width: 0;
    border: 0; border-left: 3px solid var(--hell-2); border-radius: 0; box-shadow: none;
    margin: 0 0 4px 8px; padding: 6px 0 6px 14px;
  }
  .nav-drop::before { display: none; }
  .nav-drop .nd-col { margin-bottom: 12px; }
  .nav-drop .nd-col h5 { margin-bottom: 4px; }
  .nav-drop .nd-col a { border-bottom: 0; padding: 6px 0; white-space: normal; }
  .nav-drop .nd-mehr { border-left: 0; padding-left: 0; }
  .btn-shop { margin-top: 16px; justify-content: center; }
  .main-nav .nav-social { margin: 18px 0 0; justify-content: center; gap: 18px; }
  .main-nav .nav-social a { color: var(--text); text-shadow: none; padding: 8px; }
  .palmares { grid-template-columns: 1fr; }
  .hero { margin-top: -78px; min-height: 78vh; }
  .kontaktgrid, .legalcols, .footer-grid { grid-template-columns: 1fr; }
  .story { grid-template-columns: 1fr; gap: 28px; }
  .story.reverse .story-media { order: 0; }
  .section { padding: 60px 0; }
}

/* ===== Linsner-Feedback 2026-07: Orga-Kontakt · News-Filter · Pager · Mannschaftsseite ===== */
.orgacard .kontakt { margin-top: 6px; font-size: .85rem; color: #666; word-break: break-word; }

.news-filter {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end;
  margin-bottom: 30px; padding: 18px 20px; background: #f6f6f8;
  border: 1px solid #e5e7eb; border-radius: 12px;
}
.news-filter label { display: flex; flex-direction: column; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--text); }
.news-filter select { padding: 8px 12px; border: 1px solid #d1d5db; border-radius: 8px; background: #fff; font-size: .9rem; min-width: 180px; }

.news-pager { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.news-pager .pager-num {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 10px; border: 1px solid #d1d5db;
  border-radius: 8px; text-decoration: none; color: var(--text); font-weight: 600;
}
.news-pager .pager-num:hover { border-color: var(--rot); color: var(--rot); }
.news-pager .pager-num.current { background: var(--rot); border-color: var(--rot); color: #fff; }

.ms-h { font-family: var(--font-head); text-transform: uppercase; color: var(--text); font-size: 1.6rem; margin: 40px 0 18px; }

.mannschaftgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; margin: 0 0 30px; }
.mannschaftcard {
  display: flex; flex-direction: column; gap: 4px; padding: 16px 18px;
  background: #fff; border: 1px solid #e5e7eb; border-left: 4px solid var(--rot);
  border-radius: 10px; text-decoration: none; transition: box-shadow .15s ease, transform .15s ease;
}
.mannschaftcard:hover { box-shadow: 0 8px 24px rgba(0,0,0,.10); transform: translateY(-2px); }
.mannschaftcard .mc-name { font-family: var(--font-head); text-transform: uppercase; font-weight: 700; color: var(--text); font-size: 1.05rem; }
.mannschaftcard .mc-liga { font-size: .82rem; color: #666; }
.mannschaftcard .mc-go { margin-top: 6px; font-size: .8rem; font-weight: 600; color: var(--rot); }

.tbl-filterbar { margin: 0 0 16px; font-size: .9rem; }
.tbl-filterbar label { font-weight: 600; color: var(--text); }
.tbl-filterbar select { margin-left: 8px; padding: 8px 12px; border: 1px solid #d1d5db; border-radius: 8px; background: #fff; font-size: .9rem; min-width: 180px; }
.video-block { margin-top: 30px; }
.video-block:first-child { margin-top: 0; }

.kadertbl .kf { width: 96px; }
.kader-foto { width: 80px; height: 106px; object-fit: cover; border-radius: 8px; display: block; border: 1px solid #e5e7eb; }

