/* ============================================================
   SV Hohenmölsen 1919 e.V. – Vereins-Stylesheet
   Datei: sv1919.css
   Einbindung in HTML: /css-file/1771922654-sv1919.css
   ============================================================ */

/* ── Vereinsfarben (CSS-Variablen) ─────────────────────────── */
:root {
  --svh-black:    #0d0d0d;
  --svh-yellow:   #F5C800;
  --svh-yellow2:  #E0B300;
  --svh-gray:     #1a1a1a;
  --svh-gray2:    #2a2a2a;
  --svh-gray3:    #404040;
  --svh-gray-lt:  #c8c8c8;   /* ↑ war #888888 – WCAG AA auf #2a2a2a: 4.0→6.6:1 */
  --svh-text:     #f0f0f0;
  --svh-white:    #ffffff;
  --svh-font-hd:  'Oswald', Arial Black, sans-serif;
  --svh-font-bd:  'Outfit', Arial, sans-serif;
}

/* ── Google Fonts ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Oswald:wght@500;600;700&display=swap');

/* ── Reset & Basis ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--svh-black);
  color: var(--svh-text);
  font-family: var(--svh-font-bd);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typografie ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--svh-font-hd);
  font-weight: 700;
  color: var(--svh-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
h2 { font-size: clamp(22px, 3vw, 32px); margin-bottom: 12px; }
h3 { font-size: clamp(18px, 2.5vw, 24px); margin-bottom: 10px; }
h4 { font-size: 18px; margin-bottom: 8px; }

p { margin-bottom: 14px; color: var(--svh-text); }

a { color: var(--svh-yellow); text-decoration: none; transition: color .2s; }
a:hover { color: var(--svh-yellow2); text-decoration: underline; }

strong, b { color: var(--svh-white); font-weight: 700; }

/* ── Trennlinie ─────────────────────────────────────────────── */
hr {
  border: none;
  border-top: 2px solid var(--svh-gray3);
  margin: 32px 0;
}

/* ── HEADER / TOPBAR ────────────────────────────────────────── */
.svh-topbar {
  background: var(--svh-yellow);
  color: var(--svh-black);
  font-family: var(--svh-font-hd);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.svh-topbar > span:first-child {
  flex: 1;
  text-align: center;
}
.svh-topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.svh-topbar-social a {
  display: flex;
  align-items: center;
  color: var(--svh-black);
  opacity: .7;
  transition: opacity .2s;
  text-decoration: none;
}
.svh-topbar-social a:hover { opacity: 1; }
@media (max-width: 700px) {
  .svh-topbar > span:first-child { font-size: 10px; letter-spacing: .04em; }
  .svh-topbar-social { display: none; }
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.svh-nav {
  background: var(--svh-gray);
  border-bottom: 1px solid var(--svh-gray3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 200;
}

.svh-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.svh-nav-logo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--svh-yellow);
}

.svh-nav-clubname {
  font-family: var(--svh-font-hd);
  font-weight: 700;
  font-size: 18px;
  color: var(--svh-white);
  line-height: 1.2;
}

.svh-nav-clubname span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--svh-yellow);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.svh-nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
}

.svh-nav-links a {
  color: #c8c8c8;
  font-family: var(--svh-font-bd);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color .2s, background .2s;
  text-decoration: none;
}

.svh-nav-links a:hover { color: var(--svh-yellow); background: rgba(245,200,0,.08); }
.svh-nav-links a.aktiv { color: var(--svh-yellow); }

/* ── SEITENHEADER (Page Hero) ───────────────────────────────── */
.svh-page-hero {
  background: var(--svh-gray);
  border-bottom: 3px solid var(--svh-yellow);
  padding: 40px 32px 32px;
  position: relative;
  overflow: hidden;
}

.svh-page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 5px;
  height: 100%;
  background: var(--svh-yellow);
}

.svh-page-hero .svh-breadcrumb {
  font-size: 13px;
  color: #c8c8c8;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.svh-page-hero h1 { margin-bottom: 4px; border-bottom: none; padding-bottom: 0; }

.svh-page-hero .svh-sub {
  color: #c8c8c8;
  font-size: 15px;
  margin-bottom: 0;
}

/* ── HAUPTLAYOUT ────────────────────────────────────────────── */
.svh-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.svh-main {
  padding: 40px 0 60px;
}

/* ── CONTENT-BEREICH (%CONTENT%) ────────────────────────────── */
.svh-content {
  background: var(--svh-gray2);
  border: 1px solid var(--svh-gray3);
  border-radius: 8px;
  padding: 32px 36px;
}

.svh-content h1,
.svh-content h2,
.svh-content h3 {
  color: var(--svh-yellow);
  border-bottom: 1px solid var(--svh-gray3);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.svh-content p { color: var(--svh-text); line-height: 1.8; }

.svh-content ul, .svh-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.svh-content li { color: var(--svh-text); margin-bottom: 6px; }

.svh-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.svh-content table th {
  background: var(--svh-gray3);
  color: var(--svh-yellow);
  padding: 10px 14px;
  text-align: left;
  font-family: var(--svh-font-hd);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.svh-content table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--svh-gray3);
  color: var(--svh-text);
}

.svh-content table tr:hover td { background: rgba(255,255,255,.03); }

.svh-content img { max-width: 100%; border-radius: 6px; height: auto; }

/* ── CARDS / KACHELN ────────────────────────────────────────── */
.svh-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.svh-card {
  background: var(--svh-gray2);
  border: 1px solid var(--svh-gray3);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}

.svh-card:hover {
  transform: translateY(-3px);
  border-color: var(--svh-yellow);
}

.svh-card-img {
  background: var(--svh-gray3);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.svh-card-body { padding: 18px 20px; }
.svh-card-cat {
  font-size: 12px; /* ↑ war 11px */
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--svh-yellow);
  margin-bottom: 6px;
}
.svh-card-title {
  font-family: var(--svh-font-hd);
  font-size: 17px;
  font-weight: 700;
  color: var(--svh-white);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.svh-card-text { font-size: 15px; /* ↑ war 14px */ color: #c8c8c8; margin-bottom: 12px; }
.svh-card-date { font-size: 13px; /* ↑ war 12px */ color: #c8c8c8; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.svh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--svh-yellow);
  color: var(--svh-black);
  font-family: var(--svh-font-bd);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}

.svh-btn:hover {
  background: var(--svh-yellow2);
  color: var(--svh-black);
  text-decoration: none;
  transform: translateY(-1px);
}

.svh-btn-outline {
  background: transparent;
  color: var(--svh-yellow);
  border: 2px solid var(--svh-yellow);
}

.svh-btn-outline:hover {
  background: var(--svh-yellow);
  color: var(--svh-black);
}

/* ── BADGE / LABEL ──────────────────────────────────────────── */
.svh-badge {
  display: inline-block;
  background: rgba(245,200,0,.15);
  border: 1px solid rgba(245,200,0,.35);
  color: var(--svh-yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ── SECTION-HEADER ─────────────────────────────────────────── */
.svh-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--svh-yellow);
  margin-bottom: 8px;
}

.svh-section-title {
  font-family: var(--svh-font-hd);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--svh-white);
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--svh-yellow);
  display: inline-block;
}

/* ── ABTEILUNGS-GRID ────────────────────────────────────────── */
.svh-abt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.svh-abt-card {
  background: var(--svh-gray2);
  border: 1px solid var(--svh-gray3);
  border-radius: 8px;
  padding: 20px 12px;
  text-align: center;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.svh-abt-card:hover {
  border-color: var(--svh-yellow);
  background: rgba(245,200,0,.06);
  text-decoration: none;
}

.svh-abt-icon { font-size: 32px; display: block; margin-bottom: 8px; }
.svh-abt-name {
  font-family: var(--svh-font-hd);
  font-size: 13px;
  font-weight: 700;
  color: var(--svh-white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ── VORSTAND-TABELLE ───────────────────────────────────────── */
.svh-vorstand-table { width: 100%; border-collapse: collapse; }
.svh-vorstand-table th {
  background: var(--svh-gray3);
  color: var(--svh-yellow);
  padding: 10px 16px;
  text-align: left;
  font-family: var(--svh-font-hd);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.svh-vorstand-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--svh-gray3);
  color: var(--svh-text);
  font-size: 15px;
}
.svh-vorstand-table tr:hover td { background: rgba(255,255,255,.03); }
.svh-vorstand-table .rolle { color: #c8c8c8; font-size: 14px; /* ↑ war 13px */ }

/* ── FOOTER ─────────────────────────────────────────────────── */
.svh-footer {
  background: var(--svh-gray);
  border-top: 3px solid var(--svh-yellow);
  padding: 48px 0 0;
}

.svh-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.svh-footer-logo { width: 60px; border-radius: 50%; border: 2px solid var(--svh-yellow); margin-bottom: 14px; }
.svh-footer-club { font-family: var(--svh-font-hd); font-size: 18px; color: var(--svh-white); margin-bottom: 6px; }
.svh-footer-tagline { font-size: 13px; color: #c8c8c8; }

.svh-footer-col-title {
  font-family: var(--svh-font-hd);
  font-size: 13px;
  font-weight: 700;
  color: var(--svh-yellow);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.svh-footer ul { list-style: none; }
.svh-footer ul li { margin-bottom: 8px; }
.svh-footer ul a { color: #c8c8c8; font-size: 14px; text-decoration: none; transition: color .2s; }
.svh-footer ul a:hover { color: var(--svh-yellow); }

.svh-footer-bottom {
  border-top: 1px solid var(--svh-gray3);
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.svh-footer-bottom span { font-size: 13px; color: #c8c8c8; }
.svh-footer-bottom a { color: #c8c8c8; text-decoration: none; }
.svh-footer-bottom a:hover { color: var(--svh-yellow); }
.svh-powered { font-size: 12px; color: #c8c8c8; }
.svh-powered strong { color: var(--svh-yellow); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .svh-footer-inner { grid-template-columns: 1fr 1fr; }
  .svh-nav { padding: 0 16px; }
  .svh-nav-links a { font-size: 12px; padding: 6px 8px; }
}

@media (max-width: 600px) {
  .svh-footer-inner { grid-template-columns: 1fr; }
  .svh-nav-links { display: none; } /* Mobile: Hamburger-Menü ggf. per zContent einbauen */
  .svh-content { padding: 20px; }
  .svh-page-hero { padding: 24px 16px; }
  .svh-wrapper { padding: 0 16px; }
}

/* ── KONTAKTSEITE ───────────────────────────────────────────── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 32px;
  align-items: start;
}

.kontakt-info {
  background: var(--svh-gray2);
  border: 1px solid var(--svh-gray3);
  border-radius: 8px;
  padding: 28px;
}

.kontakt-info h3 {
  font-family: var(--svh-font-hd);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--svh-yellow);
  margin: 20px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--svh-gray3);
}

.kontakt-info h3:first-child { margin-top: 0; }

.kontakt-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--svh-text);
  line-height: 1.6;
}

.kontakt-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }

.kontakt-form-wrap {
  background: var(--svh-gray2);
  border: 1px solid var(--svh-gray3);
  border-radius: 8px;
  padding: 28px;
}

.kontakt-form-wrap h3 {
  font-family: var(--svh-font-hd);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--svh-yellow);
  margin: 0 0 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--svh-gray3);
}

/* ── Formularfelder (zContent-Output) ───────────────────────── */
.kontakt-form-wrap form,
.kontakt-form-wrap .csscontent form { width: 100%; }

/* Labels */
.kontakt-form-wrap label,
.kontakt-form-wrap form label {
  display: block;
  font-family: var(--svh-font-bd);
  font-size: 14px; /* ↑ war 13px */
  font-weight: 600;
  color: #c8c8c8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  margin-top: 18px;
}

.kontakt-form-wrap label:first-of-type { margin-top: 0; }

/* Pflichtfeld-Stern */
.kontakt-form-wrap label .required,
.kontakt-form-wrap form label span.req,
.kontakt-form-wrap form label abbr {
  color: var(--svh-yellow);
  margin-left: 3px;
}

/* Input & Textarea */
.kontakt-form-wrap input[type="text"],
.kontakt-form-wrap input[type="email"],
.kontakt-form-wrap input[type="tel"],
.kontakt-form-wrap textarea,
.kontakt-form-wrap select {
  width: 100%;
  background: var(--svh-gray);
  border: 1px solid var(--svh-gray3);
  border-radius: 5px;
  color: var(--svh-text);
  font-family: var(--svh-font-bd);
  font-size: 15px;
  padding: 11px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.kontakt-form-wrap input[type="text"]:focus,
.kontakt-form-wrap input[type="email"]:focus,
.kontakt-form-wrap input[type="tel"]:focus,
.kontakt-form-wrap textarea:focus,
.kontakt-form-wrap select:focus {
  border-color: var(--svh-yellow);
  box-shadow: 0 0 0 3px rgba(245,200,0,.12);
}

.kontakt-form-wrap input::placeholder,
.kontakt-form-wrap textarea::placeholder {
  color: #aaa;  /* ↑ war #404040 (1.7:1) → 3.0:1 = WCAG-Minimum für Placeholder */
}

.kontakt-form-wrap textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

/* ── reCAPTCHA Submit-Button ────────────────────────────────── */
/* zContent liefert: <div id="buttons259" class="normal" align="center">
                       <button class="g-recaptcha" ...>Senden</button>
                     </div>                                          */

div[id^="buttons"] {
  margin-top: 24px !important;
  text-align: left !important;
}

button.g-recaptcha {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: var(--svh-yellow) !important;
  color: var(--svh-black) !important;
  font-family: var(--svh-font-bd) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  padding: 13px 32px !important;
  border: none !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: background .2s, transform .15s !important;
  min-width: 180px !important;
  justify-content: center !important;
}

button.g-recaptcha::before {
  content: "✉ ";
}

button.g-recaptcha:hover {
  background: var(--svh-yellow2) !important;
  transform: translateY(-2px) !important;
}

button.g-recaptcha:active {
  transform: translateY(0) !important;
}

/* reCAPTCHA-Badge schön positionieren */
.grecaptcha-badge {
  opacity: 0.6;
  transition: opacity .3s;
}
.grecaptcha-badge:hover { opacity: 1; }

/* Fehlermeldungen / Erfolgsmeldungen aus zContent */
.kontakt-form-wrap .error,
.kontakt-form-wrap .formerror {
  color: #ff6b6b;
  font-size: 13px;
  margin-top: 4px;
}

.kontakt-form-wrap .success,
.kontakt-form-wrap .formsuccess {
  background: rgba(245,200,0,.1);
  border: 1px solid rgba(245,200,0,.3);
  color: var(--svh-yellow);
  border-radius: 4px;
  padding: 14px 18px;
  font-size: 15px;
  margin-top: 16px;
}

@media (max-width: 700px) {
  .kontakt-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTENT-LAYOUT-KLASSEN
   Gemeinsam genutzt von Vorstand, Abteilungen, Übersichtsseiten
   ============================================================ */

/* ── Abschnitt-Wrapper ───────────────────────────────────── */
.abschnitt     { margin-bottom: 36px; }

/* ── Intro-Text ──────────────────────────────────────────── */
.intro         { font-size: 16px; line-height: 1.85; color: #e0e0e0; margin: 0 0 24px; }

/* ── Zweispaltiges Info-Grid ─────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 0 24px;
}

/* ── Info-Box (Karte mit gelbem Akzent) ──────────────────── */
.info-box {
  background: #202020;
  border: 1px solid #383838;
  border-left: 3px solid #F5C800;
  border-radius: 0 6px 6px 0;
  padding: 18px 20px;
}

/* ── Info-Zeile (Icon + Text) ────────────────────────────── */
.info-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 9px;
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.55;
}
.info-row:last-child { margin-bottom: 0; }

/* ── Vorstandstabelle ────────────────────────────────────── */
.tabelle-vorstand { width: 100%; border-collapse: collapse; margin-bottom: 8px; }
.tabelle-vorstand td { padding: 13px 16px; border-bottom: 1px solid #333; font-size: 16px; vertical-align: top; }
.tabelle-vorstand td:first-child { color: #b0b0b0; font-size: 15px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; width: 42%; padding-right: 20px; }
.tabelle-vorstand td:last-child  { color: #e8e8e8; }
.tabelle-vorstand tr:last-child td { border-bottom: none; }
.tabelle-vorstand tr:hover td   { background: rgba(255,255,255,.04); }

/* ── News-Link Button ────────────────────────────────────── */
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,0,.12);
  border: 1px solid rgba(245,200,0,.4);
  color: #F5C800;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s;
  margin-top: 8px;
}
.news-link:hover { background: rgba(245,200,0,.22); color: #F5C800; text-decoration: none; }

/* ── Hinweis-Box (Redaktionsnotiz) ──────────────────────── */
.hinweis {
  font-size: 14px;
  font-style: italic;
  color: #b0b0b0;
  line-height: 1.6;
  padding: 12px 16px;
  background: rgba(245,200,0,.05);
  border-left: 3px solid #F5C800;
  border-radius: 0 4px 4px 0;
  margin-bottom: 20px;
}

/* ── Kontakt-Hinweis am Seitenende ──────────────────────── */
.kontakt-hinweis {
  margin-top: 28px;
  padding: 14px 18px;
  background: rgba(245,200,0,.07);
  border-left: 3px solid #F5C800;
  border-radius: 0 4px 4px 0;
  font-size: 15px;
  color: #b0b0b0;
  line-height: 1.6;
}
.kontakt-hinweis a { color: #F5C800; font-weight: 600; }
.kontakt-hinweis a:hover { text-decoration: underline; }

/* ── Abteilungs-Kacheln ──────────────────────────────────── */
.abt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin: 0 0 32px;
}

.abt-kachel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #202020;
  border: 1px solid #383838;
  border-bottom: 3px solid #F5C800;
  border-radius: 6px;
  padding: 28px 16px 22px;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .18s;
}
.abt-kachel:hover { background: rgba(245,200,0,.08); border-color: #F5C800; transform: translateY(-3px); text-decoration: none; }

.abt-kachel-icon  { font-size: 40px; line-height: 1; }

.abt-kachel-name  { font-family: 'Oswald', Arial Black, sans-serif; font-size: 15px; font-weight: 700; color: #ffffff; text-transform: uppercase; letter-spacing: 0.04em; text-align: center; line-height: 1.2; }
.abt-kachel:hover .abt-kachel-name { color: #F5C800; }

.abt-kachel-arrow { font-size: 12px; color: #F5C800; opacity: 0; transition: opacity .2s; font-weight: 700; text-transform: uppercase; }
.abt-kachel:hover .abt-kachel-arrow { opacity: 1; }

/* ── Responsive Ergänzungen ──────────────────────────────── */
@media (max-width: 640px) {
  .info-grid  { grid-template-columns: 1fr; }
  .abt-grid   { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SIDEBAR-LAYOUT – Abteilungsseiten mit Navigation
   Verwendet in: index-fussball, index-volleyball, index-abteilung
   ============================================================ */

/* ── Zweispalter: Content + Sidebar ─────────────────────── */
.svh-layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
  align-items: start;
}

/* ── Sidebar-Box ─────────────────────────────────────────── */
.svh-sidebar {
  position: sticky;
  top: 80px; /* unterhalb der sticky Nav */
}

.svh-sidebar-box {
  background: #1a1a1a;
  border: 1px solid #383838;
  border-top: 3px solid #F5C800;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  margin-bottom: 20px;
}

.svh-sidebar-title {
  font-family: 'Oswald', Arial Black, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #F5C800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  background: #202020;
  border-bottom: 1px solid #333;
  margin: 0;
  display: block;
}

/* ── Sidebar-Navigation ──────────────────────────────────── */
.svh-sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.svh-sidebar-nav li {
  border-bottom: 1px solid #2a2a2a;
  margin: 0;
}

.svh-sidebar-nav li:last-child {
  border-bottom: none;
}

.svh-sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: #b0b0b0;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, color .15s;
  line-height: 1.3;
}

.svh-sidebar-nav a:hover {
  background: rgba(245,200,0,.07);
  color: #F5C800;
  text-decoration: none;
}

.svh-sidebar-nav a.aktiv {
  background: rgba(245,200,0,.10);
  color: #F5C800;
  font-weight: 700;
  border-left: 3px solid #F5C800;
  padding-left: 13px;
}

.svh-sidebar-nav .nav-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.svh-sidebar-nav .nav-sub {
  font-size: 11px;
  color: #aaa;
  display: block;
  margin-top: 1px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.svh-sidebar-nav a:hover .nav-sub {
  color: rgba(245,200,0,.6);
}

/* ── Sidebar Trennlinie zwischen Gruppen ─────────────────── */
.svh-sidebar-nav .nav-group-label {
  font-size: 11px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 10px 16px 4px;
  pointer-events: none;
}

/* ── Responsive: Sidebar unter Content ──────────────────── */
@media (max-width: 860px) {
  .svh-layout-sidebar {
    grid-template-columns: 1fr;
  }
  .svh-sidebar {
    position: static;
  }
}

/* ============================================================
   ABT_NAV – Abteilungs-Schnellnavigation
   Horizontale Icon-Leiste unter dem Page-Hero
   ============================================================ */

.svh-abt-nav {
  background: #111;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  margin-bottom: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.svh-abt-nav::-webkit-scrollbar { display: none; }

.svh-abt-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  min-width: max-content;
}

.svh-abt-nav-list li { flex-shrink: 0; }

.svh-abt-nav-list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  color: #999;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-right: 1px solid #222;
  transition: background .15s, color .15s;
  white-space: nowrap;
}

.svh-abt-nav-list a span {
  font-size: 20px;
  line-height: 1;
}

.svh-abt-nav-list a:hover {
  background: rgba(245,200,0,.07);
  color: #F5C800;
  text-decoration: none;
}

.svh-abt-nav-list a.aktiv {
  color: #F5C800;
  background: rgba(245,200,0,.10);
  border-bottom: 2px solid #F5C800;
}

/* ── Responsive: ab 600px 2-zeilig schiebbar ─────────────── */
@media (max-width: 600px) {
  .svh-abt-nav-list a {
    padding: 8px 12px;
    font-size: 10px;
  }
  .svh-abt-nav-list a span { font-size: 18px; }
}


/* ============================================================
   SIDEBAR-ERWEITERUNGEN: Sponsor + Galerie
   ============================================================ */

/* ── Sponsorlogo ─────────────────────────────────────────── */
.svh-sidebar-sponsor {
  padding: 16px;
  text-align: center;
}
.sidebar-sponsor-logo {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: .85;
  transition: opacity .2s, filter .2s;
  border-radius: 4px;
}
.svh-sidebar-sponsor a:hover .sidebar-sponsor-logo {
  opacity: 1;
  filter: grayscale(0%);
}

/* ── Bildgalerie ─────────────────────────────────────────── */
.svh-sidebar-galerie {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 8px;
}
.sidebar-galerie-bild {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 3px;
  opacity: .85;
  transition: opacity .2s;
}
.sidebar-galerie-bild:hover { opacity: 1; }
.sidebar-galerie-bild:first-child:nth-last-child(odd):last-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}

/* ============================================================
   SIDEBAR-AKKORDEON – Spielbetrieb Navigation
   Verwendet <details>/<summary> – kein JavaScript
   ============================================================ */

.svh-sidebar-akkordeon {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── Gruppe (details) ────────────────────────────────────── */
.svh-sidebar-akkordeon details {
  border-bottom: 1px solid #2a2a2a;
}
.svh-sidebar-akkordeon details:last-child {
  border-bottom: none;
}

/* ── Mannschafts-Kopfzeile (summary) ─────────────────────── */
.svh-sidebar-akkordeon summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  cursor: pointer;
  color: #e0e0e0;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
  user-select: none;
  transition: background .15s, color .15s;
}
.svh-sidebar-akkordeon summary::-webkit-details-marker { display: none; }

.svh-sidebar-akkordeon summary:hover {
  background: rgba(245,200,0,.07);
  color: #F5C800;
}

/* Pfeil-Icon */
.svh-sidebar-akkordeon summary::after {
  content: '›';
  margin-left: auto;
  font-size: 16px;
  color: #999;
  transition: transform .2s;
  line-height: 1;
}
.svh-sidebar-akkordeon details[open] summary::after {
  transform: rotate(90deg);
  color: #F5C800;
}
.svh-sidebar-akkordeon details[open] summary {
  color: #F5C800;
  background: rgba(245,200,0,.06);
}

/* ── Sub-Links ───────────────────────────────────────────── */
.svh-sidebar-akkordeon .nav-sub-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #141414;
  border-top: 1px solid #222;
}
.svh-sidebar-akkordeon .nav-sub-list li {
  border-bottom: 1px solid #1e1e1e;
}
.svh-sidebar-akkordeon .nav-sub-list li:last-child {
  border-bottom: none;
}
.svh-sidebar-akkordeon .nav-sub-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 16px 2px 28px;
  color: #999;
  font-size: 16px;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.svh-sidebar-akkordeon .nav-sub-list a:hover {
  color: #F5C800;
  background: rgba(245,200,0,.05);
  text-decoration: none;
}
.svh-sidebar-akkordeon .nav-sub-list .nav-icon {
  font-size: 13px;
  opacity: .7;
}


/* ============================================================
   G-JUGEND KINDERFESTIVAL – Terminübersicht
   Verwendet in: %CONTENT%-Block G-Jugend / Fußball
   ============================================================ */

/* ── Wrapper ─────────────────────────────────────────────── */
.gjugend-wrap {
  margin-bottom: 16px;
}

/* ── Gruppen-Header (dunkle Balken mit gelbem Akzent) ─────── */
.gjugend-gruppe-header {
  font-family: var(--svh-font-hd);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--svh-yellow);
  background: var(--svh-black);
  border-left: 4px solid var(--svh-yellow);
  padding: 10px 16px;
  margin: 28px 0 0 0;
}

/* ── Untertitel unter dem Gruppen-Header ─────────────────── */
.gjugend-gruppe-sub {
  font-family: var(--svh-font-bd);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--svh-gray-lt);
  background: var(--svh-gray2);
  border-left: 4px solid var(--svh-yellow);
  padding: 6px 16px 10px;
  margin: 0 0 4px 0;
  line-height: 1.5;
}

/* ── Tabelle ─────────────────────────────────────────────── */
.gjugend-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-bottom: 0;
}

.gjugend-table thead tr {
  background: var(--svh-gray3);
}

.gjugend-table thead th {
  padding: 9px 12px;
  text-align: left;
  font-family: var(--svh-font-hd);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--svh-yellow);
  border: none;
}

.gjugend-table tbody tr {
  border-bottom: 1px solid var(--svh-gray3);
  transition: background 0.15s;
}

.gjugend-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.gjugend-table tbody td {
  padding: 10px 12px;
  vertical-align: top;
  border: none;
  color: var(--svh-text);
}

/* ── Heimspiel-Zeile (SV Hohenmölsen als Ausrichter) ──────── */
.gjugend-table tbody tr.gjugend-heim {
  background: rgba(245, 200, 0, 0.07) !important;
  border-left: 3px solid var(--svh-yellow);
}

.gjugend-table tbody tr.gjugend-heim td {
  color: var(--svh-white);
}

/* ── Spieltag-Nummer ─────────────────────────────────────── */
.gjugend-table td.gjugend-spieltag {
  font-family: var(--svh-font-hd);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--svh-gray3);
  text-align: center;
  width: 36px;
  padding-right: 4px;
}

.gjugend-table tr.gjugend-heim td.gjugend-spieltag {
  color: var(--svh-yellow);
}

/* ── Datum-Zelle ─────────────────────────────────────────── */
.gjugend-date-main {
  display: block;
  font-family: var(--svh-font-hd);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--svh-white);
}

.gjugend-date-time {
  display: block;
  font-size: 0.78rem;
  color: var(--svh-gray-lt);
  margin-top: 2px;
}

/* ── Veranstalter / Spielstätte ──────────────────────────── */
.gjugend-cell-main {
  display: block;
  font-weight: 600;
  color: var(--svh-white);
  line-height: 1.35;
}

.gjugend-cell-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--svh-gray-lt);
  margin-top: 2px;
  line-height: 1.4;
}

/* ── Teilnehmer-Zelle ────────────────────────────────────── */
.gjugend-teams {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--svh-text);
}

/* ── Badge SV Hohenmölsen ────────────────────────────────── */
.gjugend-badge-svh {
  display: inline-block;
  background: var(--svh-yellow);
  color: var(--svh-black);
  font-family: var(--svh-font-bd);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 1px 6px;
  border-radius: 2px;
  line-height: 1.55;
  white-space: nowrap;
}

/* ── Legende ─────────────────────────────────────────────── */
.gjugend-legende {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--svh-gray-lt);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 8px 0 0 0;
  border-top: 1px solid var(--svh-gray3);
}

.gjugend-legende-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gjugend-legende-stripe {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: rgba(245, 200, 0, 0.15);
  border-left: 3px solid var(--svh-yellow);
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 700px) {
  .gjugend-table thead th:nth-child(4),
  .gjugend-table tbody td:nth-child(4) {
    display: none; /* Spielstätte auf Mobilgeräten ausblenden */
  }

  .gjugend-table {
    font-size: 0.82rem;
  }

  .gjugend-table tbody td {
    padding: 8px 8px;
  }
}

/* ============================================================
   RESPONSIVE VIDEO – YouTube / iFrame Einbettung
   ============================================================ */

.svh-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  margin: 0 0 24px 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--svh-black);
}

.svh-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 6px;
}

/* ============================================================
   NATIVE VIDEO – selbst gehostete MP4-Dateien (kein iFrame)
   Platzhalter im %CONTENT%-Block: %VIDEO_xx%
   ============================================================ */

.svh-video-mp4 {
  position: relative;
  width: 100%;
  margin: 0 0 24px 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--svh-black);
}

.svh-video-mp4 video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  outline: none;
}
