@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@400;500&display=swap');

/*
 * HSC Potsdam – Design System
 * ─────────────────────────────────────────────────────────────
 * Fonts:   Barlow Condensed (Headings/UI) · Barlow (Body)
 *          → Für DSGVO-Konformität: lokal hosten via assets/fonts/
 *            (Anleitung: https://gwfh.mranftl.com/)
 * Farben:  Vereinsfarben Rot #E63329 · Weiß #FFFFFF · Schwarz #1A1A1A
 * ─────────────────────────────────────────────────────────────
 */

:root {
  /* ── Vereinsfarben ── */
  --rot:            #e63329;   /* HSC Rot – Primärfarbe */
  --rot-dark:       #c0392b;   /* Rot Hover/Aktiv */
  --rot-soft:       #fcebeb;   /* Rot Hintergrund (Badges, Tags) */

  /* ── Neutrale Töne ── */
  --schwarz:        #0a0a0a;   /* Footer-Hintergrund */
  --dunkel:         #1a1a1a;   /* CTA-Sektion, Text */
  --dunkel-mid:     #555555;   /* Logo-Subtext */
  --grau:           #f4f3f0;   /* Sektion-Hintergrund */
  --grau-mid:       #e8e6e0;   /* News-Platzhalter */
  --grau-border:    #e5e4e0;   /* Trennlinien, Rahmen */
  --text:           #1a1a1a;   /* Primärer Text */
  --text-muted:     #6b6b6b;   /* Sekundärer Text */
  --text-hint:      #9e9e9e;   /* Tertiärer Text, Metadaten */
  --white:          #ffffff;   /* Weiß */

  /* ── Team-Farben (Jugend / Events / Sieg/Niederlage) ── */
  --blau-soft:      #e6f1fb;   /* Jugend-Badge Hintergrund */
  --blau-text:      #0c447c;   /* Jugend-Badge Text */
  --gold-soft:      #faeeda;   /* Event/Unentschieden Hintergrund */
  --gold-text:      #633806;   /* Event/Unentschieden Text */
  --gruen-soft:     #eaf3de;   /* Sieg/Heim Hintergrund */
  --gruen-text:     #3b6d11;   /* Sieg/Heim Text */

  /* ── Layout ── */
  --radius:         6px;
  --radius-lg:      10px;
  --max:            1248px;

  /* ── Typografie ── */
  --font-display:   'Barlow Condensed', sans-serif;
  --font-body:      'Barlow', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ── CONTAINER ── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}

/* ── NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--rot);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.site-logo img,
.site-logo .custom-logo,
.custom-logo-link .custom-logo,
.custom-logo-link img {
    height: 50px;
    width: auto;
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo .custom-logo-link { display: flex; align-items: center; }
.site-logo svg { width: 46px; height: 46px; }
.site-logo-text { display: flex; flex-direction: column; line-height: 1; }
.site-logo-hsc { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--rot); }
.site-logo-sub { font-family: var(--font-display); font-size: 9px; font-weight: 600; letter-spacing: 0.2em; color: var(--dunkel-mid); margin-top: 1px; }
.main-nav { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-muted); padding: 6px 14px; border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a { color: var(--rot); background: var(--rot-soft); }

/* ── DROPDOWN ── */
.nav-item-wrap { position: relative; display: inline-flex; align-items: center; }
.main-nav .menu-item-has-children { position: relative; }
.main-nav .menu-item-has-children > a::after { content: " ▾"; font-size: 10px; }
.main-nav .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--grau-border);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  z-index: 100;
  padding: 6px 0;
  padding-top: 14px;
  margin-top: -8px;
  flex-direction: column;
}
.main-nav .menu-item-has-children:hover > .sub-menu { display: flex; }
.nav-item-wrap:hover > .sub-menu { display: flex; }
.main-nav .sub-menu a {
  display: block;
  padding: 8px 16px;
  border-radius: 0;
  color: var(--dunkel);
  font-size: 13px;
  white-space: nowrap;
}
.main-nav .sub-menu a:hover { color: var(--rot); background: var(--rot-soft); }
.nav-cta-btn {
  background: var(--rot); color: var(--white) !important;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 18px !important; border-radius: var(--radius);
  transition: background 0.15s;
  background: var(--rot) !important;
}
.nav-cta-btn:hover { background: var(--rot-dark) !important; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.2s; }
.nav-mobile {
  display: none; background: var(--white);
  border-top: 1px solid var(--grau-border); padding: 12px 0;
}
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; padding: 10px 28px; font-family: var(--font-display); font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); }
.nav-mobile a:hover { color: var(--rot); }
.nav-mobile .nav-cta-btn { display: block; margin: 10px 28px 4px; text-align: center; padding: 12px 18px !important; border-radius: var(--radius); }

/* ── HERO (Startseite) ── */
.hero-section { background: var(--rot); position: relative; overflow: hidden; }
.hero-section .wrap { padding-top: 64px; padding-bottom: 56px; position: relative; }
.hero-deco-1 { position: absolute; right: -60px; top: -60px; width: 340px; height: 340px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.08); pointer-events: none; }
.hero-deco-2 { position: absolute; right: 40px; top: 40px; width: 200px; height: 200px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.06); pointer-events: none; }
.hero-ball { position: absolute; right: 48px; bottom: 32px; opacity: 0.07; pointer-events: none; }
.hero-content { max-width: 560px; position: relative; }
.hero-eyebrow { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.hero-section h1 { font-family: var(--font-display); font-size: 56px; font-weight: 800; line-height: 0.95; color: var(--white); text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 20px; }
.hero-section h1 em { font-style: normal; color: rgba(255,255,255,0.45); }
.hero-section p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.65; max-width: 420px; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--rot); font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 10px 22px; border-radius: var(--radius); transition: opacity 0.15s; display: inline-block; }
.btn-white:hover { opacity: 0.9; }
.btn-outline-white { background: transparent; color: var(--white); font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 10px 22px; border-radius: var(--radius); border: 1.5px solid rgba(255,255,255,0.4); transition: border-color 0.15s, background 0.15s; display: inline-block; }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); }
.btn-rot { background: var(--rot); color: var(--white); font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 10px 20px; border-radius: var(--radius); transition: background 0.15s; display: inline-block; border: none; cursor: pointer; }
.btn-rot:hover { background: var(--rot-dark); }
.hero-game-card { background: rgba(0,0,0,0.18); border-radius: var(--radius-lg); padding: 14px 18px; margin-top: 32px; display: flex; align-items: center; justify-content: space-between; gap: 12px; max-width: 520px; }
.hgc-label { font-size: 10px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.hgc-teams { color: var(--white); font-family: var(--font-display); font-size: 17px; font-weight: 700; }
.hgc-badge { background: var(--white); color: var(--rot); font-family: var(--font-display); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px; white-space: nowrap; flex-shrink: 0; }
.hgc-date { color: rgba(255,255,255,0.6); font-size: 11px; margin-top: 3px; }

/* ── HERO SPONSOR ── */
.hero-sponsor {
  position: absolute;
  right: 28px;
  top: 64px;
  width: 220px;
  z-index: 2;
}
.hero-sponsor-label {
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.hero-sponsor-card { display: block; }
.hero-sponsor-card .sponsor-card-body { padding: 12px 14px; }
.hero-sponsor-card .sponsor-card-name { margin-bottom: 0; }

/* ── STOERER ── */
.stoerer-strip { background: var(--dunkel); }
.stoerer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; gap: 14px;
  color: var(--white);
  transition: background 0.15s;
}
.stoerer-inner:hover { background: rgba(255,255,255,0.05); }
.stoerer-badge {
  background: var(--rot); color: var(--white);
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px; flex-shrink: 0;
}
.stoerer-title {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.stoerer-arrow { color: var(--rot); font-size: 18px; flex-shrink: 0; margin-left: -6px; margin-right: auto; }

/* ── STATS BAR ── */
.stats-bar { border-bottom: 1px solid var(--grau-border); }
.stats-bar-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.stat-cell { padding: 20px 16px; text-align: center; border-right: 1px solid var(--grau-border); }
.stat-cell:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--rot); line-height: 1; }
.stat-lbl { font-size: 11px; color: var(--text-muted); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── SECTIONS ── */
.content-section { padding: 36px 0; border-bottom: 1px solid var(--grau-border); }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 8px; }
.section-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; }
.section-link { font-size: 12px; color: var(--rot); font-weight: 500; white-space: nowrap; }
.section-link:hover { text-decoration: underline; }

/* ── FILTER PILLS ── */
.filter-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.pill { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; border: 1px solid var(--grau-border); color: var(--text-muted); cursor: pointer; transition: all 0.15s; }
.pill:hover { border-color: var(--rot); color: var(--rot); }
.pill.active { background: var(--rot); color: var(--white); border-color: var(--rot); }

/* ── TAGS ── */
.tag { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 2px 7px; border-radius: 3px; display: inline-block; }
.tag-frauen { background: var(--rot-soft); color: var(--rot-dark); }
.tag-jugend { background: var(--blau-soft); color: var(--blau-text); }
.tag-event  { background: var(--gold-soft); color: var(--gold-text); }
.tag-verein { background: var(--gruen-soft); color: var(--gruen-text); }

/* ── NEWS GRID ── */
.news-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.news-card { border: 1px solid var(--grau-border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.15s, transform 0.15s; }
.news-card:hover { border-color: var(--rot); transform: translateY(-2px); }
.news-card-img { height: 180px; overflow: hidden; background: var(--grau); }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.3s; }
.news-card:hover .news-card-img img { transform: scale(1.03); }
.news-card-img-placeholder { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: rgba(255,255,255,0.25); font-family: var(--font-display); letter-spacing: 0.05em; text-transform: uppercase; }
.news-card-img-placeholder.red { background: var(--rot); }
.news-card-img-placeholder.dark { background: var(--dunkel); }
.news-card-img-placeholder.soft { background: var(--rot-soft); color: rgba(0,0,0,0.15); }
.news-card-img-placeholder.gray { background: var(--grau-mid); color: rgba(0,0,0,0.15); }
.news-card-body { padding: 16px 18px; }
.news-card-date { font-size: 11px; color: var(--text-hint); margin-top: 6px; }
.news-card-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; line-height: 1.3; margin-top: 4px; }
.news-card-excerpt { font-size: 13px; color: var(--text-muted); margin-top: 8px; line-height: 1.5; }
.news-list { display: flex; flex-direction: column; gap: 8px; }
.news-list-row { border: 1px solid var(--grau-border); border-radius: var(--radius); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; transition: border-color 0.15s; gap: 12px; }
.news-list-row:hover { border-color: var(--rot); }
.nlr-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; }
.nlr-date { font-size: 11px; color: var(--text-hint); margin-top: 2px; }
.arrow-icon { color: var(--text-hint); flex-shrink: 0; font-size: 18px; }

/* ── SPIELPLAN ── */
.spiel-list { display: flex; flex-direction: column; gap: 8px; }
.spiel-row { border: 1px solid var(--grau-border); border-radius: var(--radius); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; -webkit-tap-highlight-color: transparent; }
.spiel-row:focus, .spiel-row:focus-visible, .spiel-row:active, .spiel-row:focus-within {
  outline: none; box-shadow: none; border-color: var(--grau-border);
}
.spiel-row-left { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.spiel-badge { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 2px 7px; border-radius: 3px; white-space: nowrap; flex-shrink: 0; }
.spiel-badge-frauen { background: var(--rot-soft); color: var(--rot-dark); }
.spiel-badge-jugend { background: var(--blau-soft); color: var(--blau-text); }
.spiel-teams { font-family: var(--font-display); font-size: 15px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.spiel-meta { text-align: right; flex-shrink: 0; }
.spiel-date-zeit { display: inline; }
.spiel-date-ort { display: inline; }
.spiel-date-ort::before { content: ' · '; }
.spiel-date { font-size: 12px; color: var(--text-muted); }

.spiel-type { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.04em; padding: 2px 6px; border-radius: 3px; margin-top: 3px; display: inline-block; text-transform: uppercase; }
.spiel-type-heim { background: var(--gruen-soft); color: var(--gruen-text); }
.spiel-type-ausw { background: var(--grau); color: var(--text-muted); }
.result-badge { display: inline-block; font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; margin-top: 6px; }
.result-badge-draw { background: var(--gold-soft); color: var(--gold-text); }
.result-badge-win  { background: var(--gruen-soft); color: var(--gruen-text); }
.result-badge-loss { background: var(--rot-soft); color: var(--rot-dark); }

/* ── TEAMS GRID ── */
.teams-block { margin-bottom: 24px; }
.teams-block:last-child { margin-bottom: 0; }
.teams-block-label { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-hint); margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--grau-border); }
.teams-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.team-card { border: 1px solid var(--grau-border); border-radius: var(--radius); padding: 12px 10px; display: flex; align-items: center; gap: 10px; transition: all 0.15s; }
.team-card:hover { border-color: var(--rot); background: var(--rot-soft); }
.team-icon { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 11px; font-weight: 800; }
.team-icon-frauen { background: var(--rot-soft); color: var(--rot-dark); }
.team-icon-jugend { background: var(--blau-soft); color: var(--blau-text); }
.team-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; }
.team-liga { font-size: 10px; color: var(--text-hint); }

/* ── TEAM HERO ── */
.team-hero-section { background: var(--rot); position: relative; overflow: hidden; }

/* ── FOOTER SOCIAL ── */
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); transition: background 0.15s, color 0.15s; }
.footer-social a:hover { background: var(--rot); color: var(--white); }

/* ── SPONSOREN ── */
.sponsoren-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.sponsor-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--grau-border); transition: box-shadow 0.2s; text-decoration: none; display: flex; flex-direction: column; }
.sponsor-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.sponsor-card-img { aspect-ratio: 1/1; overflow: hidden; background: var(--grau); display: flex; align-items: center; justify-content: center; padding: 20px; }
.sponsor-card-img img { width: 100%; height: 100%; object-fit: contain; }
.sponsor-card-img-placeholder { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--text-muted); }
.sponsor-card-body { padding: 16px; }
.sponsor-card-headline { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--dunkel); text-transform: uppercase; margin-bottom: 4px; }
.sponsor-card-name { font-size: 12px; color: var(--rot); font-weight: 600; margin-bottom: 6px; }
.sponsor-card-text { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.teams-grid-archive { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; display: grid; }
.team-card-archive { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--grau-border); transition: box-shadow 0.2s; text-decoration: none; display: flex; flex-direction: column; }
.team-card-archive:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.tca-img { height: 180px; overflow: hidden; background: var(--grau); }
.tca-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.3s; }
.team-card-archive:hover .tca-img img { transform: scale(1.03); }
.tca-body { padding: 14px 16px; }
.tca-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--dunkel); text-transform: uppercase; }
.tca-liga { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.news-card-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 6px; }
.team-foto { margin: 0; }
.team-foto img { width: 100%; height: auto; border-radius: var(--radius); display: block; }
.team-foto-caption { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-top: 10px; padding: 0 4px; }
.team-hero-inner { max-width: var(--max); margin: 0 auto; padding: 36px 28px 32px; position: relative; }
.th-ring-1 { position: absolute; right: -40px; top: -40px; width: 240px; height: 240px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.08); pointer-events: none; }
.th-ring-2 { position: absolute; right: 30px; top: 30px; width: 140px; height: 140px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.06); pointer-events: none; }
.th-top { display: flex; align-items: flex-start; justify-content: space-between; position: relative; gap: 20px; flex-wrap: wrap; }
.th-liga-badge { display: inline-block; background: rgba(255,255,255,0.15); color: var(--white); font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 3px; margin-bottom: 10px; }
.th-name { font-family: var(--font-display); font-size: 42px; font-weight: 800; text-transform: uppercase; color: var(--white); line-height: 1; }
.th-jahrgang { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-top: 6px; }
.th-season { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 3px; }
.th-bilanz { display: flex; gap: 28px; flex-shrink: 0; }
.th-bilanz-item { text-align: center; }
.th-bilanz-n { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--white); }
.th-bilanz-l { font-size: 10px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 1px; }
.th-info-row { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.th-trainer-card { background: rgba(0,0,0,0.18); border-radius: var(--radius); padding: 12px 16px; flex: 1; min-width: 200px; display: flex; align-items: center; gap: 12px; }
.th-trainer-av { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 13px; font-weight: 800; color: var(--white); flex-shrink: 0; }
.th-trainer-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--white); }
.th-trainer-tel { font-size: 11px; color: rgba(255,255,255,0.75); margin-top: 2px; }
.th-trainer-role { font-size: 10px; color: rgba(255,255,255,0.55); margin-top: 1px; }
.th-trainer-email { font-size: 11px; color: rgba(255,255,255,0.75); margin-top: 3px; }
.th-training-card { background: rgba(0,0,0,0.18); border-radius: var(--radius); padding: 12px 16px; }
.th-training-l { font-size: 10px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.th-training-v { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--white); }
.th-training-ort { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.th-training-slot { margin-top: 8px; }
.th-training-slot:first-of-type { margin-top: 0; }

.th-cta { margin-top: 20px; }
.th-cta .btn-white { font-size: 14px; padding: 12px 26px; }

/* ── TEAM SWITCHER ── */
.team-switcher-bar { border-bottom: 1px solid var(--grau-border); background: var(--grau); overflow-x: auto; }
.team-switcher-inner { max-width: var(--max); margin: 0 auto; padding: 12px 28px; display: flex; gap: 6px; flex-wrap: wrap; }

/* ── TABS ── */
.tabs-bar { border-bottom: 1px solid var(--grau-border); background: var(--white); overflow-x: auto; }
.tabs-inner { max-width: var(--max); margin: 0 auto; padding: 0 28px; display: flex; }
.tab-btn { padding: 14px 16px; font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); border-bottom: 2px solid transparent; cursor: pointer; transition: all 0.15s; white-space: nowrap; background: none; border-top: none; border-left: none; border-right: none; }
.tab-btn:hover { color: var(--rot); }
.tab-btn.active { color: var(--rot); border-bottom-color: var(--rot); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── KADER ── */
.kader-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; }
.player-card { border: 1px solid var(--grau-border); border-radius: var(--radius); padding: 14px 8px; text-align: center; transition: border-color 0.15s; }
.player-av { width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 8px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 14px; font-weight: 800; color: var(--rot-dark); background: var(--rot-soft); overflow: hidden; }
.player-av img { width: 100%; height: 100%; object-fit: cover; }
.player-num { font-size: 10px; color: var(--text-hint); margin-bottom: 2px; }
.player-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; line-height: 1.2; }
.pos-badge { display: inline-block; font-family: var(--font-display); font-size: 9px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 2px 6px; border-radius: 3px; margin-top: 4px; }
.pos-badge-tor  { background: var(--gold-soft); color: var(--gold-text); }
.pos-badge-feld { background: var(--blau-soft); color: var(--blau-text); }
.pos-badge-ruck { background: var(--rot-soft); color: var(--rot-dark); }
.pos-badge-aus  { background: var(--gruen-soft); color: var(--gruen-text); }

/* ── TABELLE ── */
.table-wrap { overflow-x: auto; }
table.liga-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 500px; }
table.liga-table th { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-hint); padding: 8px 10px; border-bottom: 2px solid var(--grau-border); text-align: right; }
table.liga-table th:first-child { text-align: left; }
table.liga-table td { padding: 10px; border-bottom: 1px solid var(--grau-border); text-align: right; color: var(--text-muted); }
table.liga-table td:first-child { text-align: left; font-family: var(--font-display); font-weight: 700; color: var(--text); }
table.liga-table tr.hsc-row td { background: var(--rot-soft); }
table.liga-table tr.hsc-row td:first-child { color: var(--rot-dark); }
.rank-num { color: var(--text-hint); font-weight: 400; font-size: 11px; margin-right: 8px; }

/* ── GALERIE ── */
.galerie-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.gal-img { height: 180px; border-radius: var(--radius); overflow: hidden; position: relative; }
.gal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gal-img:hover img { transform: scale(1.05); }

/* ── LETZTES ERGEBNIS ── */
.last-result { background: var(--grau); border-radius: var(--radius-lg); padding: 16px 20px; margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.lr-label { font-size: 10px; color: var(--text-hint); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px; }
.lr-opp { font-family: var(--font-display); font-size: 17px; font-weight: 700; }
.lr-score { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--rot); line-height: 1; flex-shrink: 0; text-align: center; }
.lr-score-l { font-size: 10px; color: var(--text-hint); text-align: center; margin-top: 2px; }

.bc-cur { color: var(--text); }

/* ── SHOP STRIP ── */
.shop-strip { background: var(--grau); border-bottom: 1px solid var(--grau-border); }
.shop-strip-inner { max-width: var(--max); margin: 0 auto; padding: 18px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.shop-left { display: flex; align-items: center; gap: 14px; }
.hummel-tag { background: var(--rot); color: var(--white); font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; padding: 4px 10px; border-radius: 3px; flex-shrink: 0; }
.shop-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.shop-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }

/* ── CTA SECTION ── */
.cta-section { background: var(--dunkel); }
.cta-section-inner { max-width: var(--max); margin: 0 auto; padding: 40px 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cta-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 24px; }
.cta-title { font-family: var(--font-display); font-size: 20px; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.cta-text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 16px; }

/* ── CONTACT STRIP ── */
.contact-strip { background: var(--grau); border-top: 1px solid var(--grau-border); }
.contact-strip-inner { max-width: var(--max); margin: 0 auto; padding: 20px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.contact-title { font-family: var(--font-display); font-size: 18px; font-weight: 800; text-transform: uppercase; }
.contact-sub { font-size: 12px; color: var(--text-muted); margin-top: 3px; }

/* ── PAGE HERO (Verein, Kontakt, etc.) ── */
.page-hero { background: var(--rot); padding: 48px 0 40px; }
.page-hero h1 { font-family: var(--font-display); font-size: 48px; font-weight: 800; text-transform: uppercase; color: var(--white); line-height: 1; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 15px; margin-top: 10px; max-width: 560px; }

/* ── VEREIN PAGE ── */
.vorstand-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.vorstand-card { border: 1px solid var(--grau-border); border-radius: var(--radius-lg); padding: 20px; text-align: center; }
.vorstand-av { width: 56px; height: 56px; border-radius: 50%; background: var(--rot-soft); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--rot-dark); margin: 0 auto 12px; overflow: hidden; }
.vorstand-av img { width: 100%; height: 100%; object-fit: cover; }
.vorstand-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.vorstand-rolle { font-size: 12px; color: var(--text-muted); margin-top: 3px; }

/* ── KALENDER ── */
.kal-filter { margin-bottom: 20px; }
.kal-filter .filter-row { margin-bottom: 8px; }
.kal-filter .filter-row:last-child { margin-bottom: 0; }

.kal-nav { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.kal-nav-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: var(--radius);
  border: 1px solid var(--grau-border); color: var(--text-muted);
  font-size: 16px; transition: all 0.15s;
}
.kal-nav-btn:hover { border-color: var(--rot); color: var(--rot); }
.kal-nav-btn.is-disabled { opacity: 0.3; pointer-events: none; }
.kal-nav-titel { font-family: var(--font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; }
.kal-heute {
  margin-left: auto; font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--rot);
  border: 1px solid var(--grau-border); border-radius: var(--radius); padding: 7px 14px;
  transition: all 0.15s;
}
.kal-heute:hover { border-color: var(--rot); background: var(--rot-soft); }

.kal-wrap { border: 1px solid var(--grau-border); border-radius: var(--radius-lg); overflow: hidden; }
.kal-kopf { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); background: var(--grau); }
.kal-kopf-zelle {
  padding: 8px 6px; text-align: center;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
  border-right: 1px solid var(--grau-border);
}
.kal-kopf-zelle:last-child { border-right: none; }

.kal-zeilen { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); border-top: 1px solid var(--grau-border); }
.kal-tag {
  /* Mindesthoehe fuer 5 Eintraege plus Tagesnummer; waechst bei mehr Terminen */
  min-height: 150px; padding: 6px 5px;
  border-right: 1px solid var(--grau-border);
  display: flex; flex-direction: column; gap: 3px;
  min-width: 0; overflow: hidden;
}
.kal-tag:last-child { border-right: none; }
.kal-tag.is-fremd { background: #fbfaf8; }
.kal-tag.is-fremd .kal-tag-nr { color: var(--text-hint); }
.kal-tag.is-heute { background: var(--rot-soft); }
.kal-tag-nr { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-muted); margin-bottom: 2px; }
.kal-tag.is-heute .kal-tag-nr { color: var(--rot); }

.kal-eintrag {
  /* Maximal zwei Zeilen, danach Kuerzung. Voller Titel im Detailpanel. */
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  width: 100%; max-width: 100%; min-width: 0; overflow: hidden;
  text-align: left; overflow-wrap: anywhere;
  background: none; border: none; border-left: 3px solid transparent;
  border-radius: 3px; padding: 3px 5px; cursor: pointer;
  font-family: var(--font-body); font-size: 11px; line-height: 1.3;
  transition: background 0.15s;
}
/* hidden muss die display-Regel oben ueberschreiben */
.kal-eintrag[hidden] { display: none !important; }
.kal-eintrag:hover { filter: brightness(0.95); }
.kal-eintrag.is-open { outline: 2px solid var(--rot); outline-offset: -2px; }
.kal-zeit { font-weight: 600; margin-right: 4px; white-space: nowrap; }

.kal-typ-training { background: var(--blau-soft); border-left-color: var(--blau-text); color: var(--blau-text); }
.kal-typ-spiel    { background: var(--rot-soft);  border-left-color: var(--rot);       color: var(--rot-dark); }
.kal-typ-event    { background: var(--gold-soft); border-left-color: var(--gold-text); color: var(--gold-text); }
.kal-typ-verein   { background: var(--gruen-soft);border-left-color: var(--gruen-text);color: var(--gruen-text); }

.kal-panel { border-top: 1px solid var(--grau-border); }
.kal-panel-inner { position: relative; padding: 18px 24px; background: var(--grau); border-left: 4px solid var(--grau-border); }
.kal-panel-inner.kal-typ-training { border-left-color: var(--blau-text); }
.kal-panel-inner.kal-typ-spiel    { border-left-color: var(--rot); }
.kal-panel-inner.kal-typ-event    { border-left-color: var(--gold-text); }
.kal-panel-inner.kal-typ-verein   { border-left-color: var(--gruen-text); }
.kal-panel-close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: none; cursor: pointer;
  font-size: 22px; line-height: 1; color: var(--text-muted); padding: 0 4px;
}
.kal-panel-close:hover { color: var(--rot); }
.kal-panel-datum { font-size: 11px; color: var(--text-hint); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.kal-panel-titel { font-family: var(--font-display); font-size: 20px; font-weight: 800; text-transform: uppercase; margin-bottom: 4px; }
.kal-panel-meta  { font-size: 13px; color: var(--text-muted); }
.kal-panel-text  { font-size: 14px; line-height: 1.7; margin-top: 10px; }
.kal-panel-link  { display: inline-block; margin-top: 12px; font-size: 13px; color: var(--rot); font-weight: 600; }
.kal-panel-link:hover { text-decoration: underline; }

.kal-legende { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.kal-legende-item { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); }
.kal-punkt { width: 12px; height: 12px; border-radius: 3px; display: inline-block; border-left-width: 3px; border-left-style: solid; }

/* ── VORSTAND KACHELN ── */
.vorstand-bereich { margin-bottom: 32px; }
.vorstand-bereich:last-of-type { margin-bottom: 0; }
.vorstand-grid-kacheln { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.vorstand-kachel {
  background: var(--white);
  border: 1px solid var(--grau-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.15s;
}
.vorstand-kachel:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.vorstand-kachel.is-open { border-color: var(--rot); }
.vk-img { aspect-ratio: 1/1; overflow: hidden; background: var(--grau); }
.vk-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.vk-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 34px; font-weight: 800;
  color: var(--rot-dark); background: var(--rot-soft);
}
.vk-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 2px; }
.vk-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--dunkel); text-transform: uppercase; }
.vk-position { font-size: 12px; color: var(--rot); font-weight: 600; }
.vk-email { font-size: 11px; color: var(--text-muted); word-break: break-word; margin-top: 4px; }
.vk-toggle {
  margin-top: 12px; align-self: flex-start;
  background: none; border: 1px solid var(--grau-border); border-radius: var(--radius);
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted); padding: 6px 12px; cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.vk-toggle:hover { border-color: var(--rot); color: var(--rot); }
.vk-toggle[aria-expanded="true"] { background: var(--rot); border-color: var(--rot); color: var(--white); }

.vk-panel { margin-top: 20px; }
.vk-panel-inner {
  background: var(--grau);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.vk-panel-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--grau-border); }
.vk-panel-name { font-family: var(--font-display); font-size: 20px; font-weight: 800; text-transform: uppercase; }
.vk-panel-pos { font-size: 12px; color: var(--rot); font-weight: 600; }
.vk-close {
  margin-left: auto; background: none; border: none; cursor: pointer;
  font-size: 24px; line-height: 1; color: var(--text-muted); padding: 0 4px;
  transition: color 0.15s;
}
.vk-close:hover { color: var(--rot); }
.vk-qa { margin-bottom: 16px; }
.vk-qa:last-child { margin-bottom: 0; }
.vk-frage { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--rot); margin-bottom: 4px; }
.vk-antwort { font-size: 14px; line-height: 1.7; color: var(--text); }

/* ── MITGLIEDSCHAFT / FORMULARE ── */
.form-section { max-width: 680px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--grau-border); border-radius: var(--radius); font-family: var(--font-body); font-size: 14px; color: var(--text); background: var(--white); transition: border-color 0.15s; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--rot); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── FOOTER ── */
.site-footer { background: var(--schwarz); }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 40px 28px 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand .site-logo svg { width: 50px; height: 50px; }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 12px; line-height: 1.7; max-width: 240px; }
.footer-col-title { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 7px; transition: color 0.15s; }
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.2); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ── SINGLE POST ── */
.single-post-header { background: var(--rot); padding: 40px 0; }
.single-post-header .tag { margin-bottom: 12px; }
.single-post-header h1 { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--white); line-height: 1.1; text-transform: uppercase; }
.single-post-header .post-meta { color: rgba(255,255,255,0.6); font-size: 12px; margin-top: 10px; }
.post-content { max-width: 760px; margin: 40px auto; padding: 0 28px; }
.post-content p { margin-bottom: 16px; line-height: 1.75; color: var(--text); }
.post-content h2 { font-family: var(--font-display); font-size: 26px; font-weight: 800; text-transform: uppercase; margin: 28px 0 12px; }
.post-content a { color: var(--rot); text-decoration: underline; text-underline-offset: 3px; }
.post-content a:hover { color: var(--rot-dark); }
.post-featured-img { width: 100%; height: auto; border-radius: var(--radius-lg); margin-bottom: 28px; display: block; }

/* ── NEWS ARCHIV LINK ── */
.news-archiv-link { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 8px; }
.news-archiv-link a { color: var(--rot); text-decoration: underline; text-underline-offset: 3px; }
.news-archiv-link a:hover { color: var(--rot-dark); }

/* ── BUTTON FUER FLIESSTEXT ──
   Im Beitrag/Seite verwendbar: <a href="..." class="hsc-btn">Text</a>
   Variante: hsc-btn hsc-btn-outline
   Unabhaengig von der Navigation, bleibt auch mobil sichtbar. */
.post-content a.hsc-btn,
a.hsc-btn {
  display: inline-block;
  background: var(--rot);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 11px 22px;
  border-radius: var(--radius);
  border: 1.5px solid var(--rot);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.post-content a.hsc-btn:hover,
a.hsc-btn:hover {
  background: var(--rot-dark);
  border-color: var(--rot-dark);
  color: var(--white);
  text-decoration: none;
}
.post-content a.hsc-btn-outline,
a.hsc-btn-outline {
  background: transparent;
  color: var(--rot);
}
.post-content a.hsc-btn-outline:hover,
a.hsc-btn-outline:hover {
  background: var(--rot);
  color: var(--white);
}

/* ── PAGINATION ── */
.pagination { display: flex; gap: 6px; justify-content: center; padding: 32px 0; }
.pagination a, .pagination span { font-family: var(--font-display); font-size: 13px; font-weight: 700; padding: 6px 12px; border: 1px solid var(--grau-border); border-radius: var(--radius); color: var(--text-muted); transition: all 0.15s; }
.pagination a:hover, .pagination .current { background: var(--rot); color: var(--white); border-color: var(--rot); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-sponsor { position: static; width: 100%; max-width: 220px; margin-top: 32px; }
  .main-nav, .nav-cta-btn { display: none; }
  .nav-burger { display: flex; }
  .hero-section h1 { font-size: 44px; }
  .hero-ball { display: none; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-right: 1px solid var(--grau-border); }
  .teams-grid { grid-template-columns: repeat(2,1fr); }
  .kader-grid { grid-template-columns: repeat(3,1fr); }
  .th-top { flex-direction: column; }
  .th-bilanz { justify-content: flex-start; }
  .cta-section-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vorstand-grid { grid-template-columns: repeat(2,1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .sponsoren-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .sponsor-card-img { padding: 12px; }
  .sponsor-card-body { padding: 12px; }
  .sponsor-card-headline { font-size: 13px; }
  .sponsor-card-text { font-size: 11px; }
  .wrap { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .nav-mobile a { padding: 10px 16px; }
  .nav-mobile .nav-cta-btn { margin: 10px 16px 4px; }
  .hero-section .wrap { padding: 40px 16px 36px; }
  .hero-section h1 { font-size: 36px; }
  .hero-game-card { flex-direction: column; align-items: flex-start; }
  .hgc-badge { align-self: flex-start; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-right: 1px solid var(--grau-border); }
  .stoerer-inner { padding: 12px 16px; gap: 10px; flex-wrap: wrap; }
  .stoerer-title { font-size: 15px; white-space: normal; }
  .content-section { padding: 24px 0; }
  .news-grid { grid-template-columns: 1fr; }
  .teams-grid { grid-template-columns: 1fr 1fr; }
  .kader-grid { grid-template-columns: repeat(2,1fr); }
  .galerie-grid { grid-template-columns: repeat(2,1fr); }
  /* Spielkachel gestapelt: Badge, Paarung (volle Zeile), Datum, Ort */
  .spiel-row { flex-wrap: wrap; align-items: flex-start; row-gap: 6px; }
  .spiel-row-left { flex-direction: column; align-items: flex-start; gap: 6px; flex: 0 0 100%; width: 100%; }
  .spiel-badge { align-self: flex-start; }
  .spiel-teams { white-space: normal; overflow: visible; text-overflow: clip; font-size: 15px; line-height: 1.3; width: 100%; }
  .spiel-meta { text-align: left; flex: 0 0 100%; width: 100%; }
  .spiel-date-zeit { display: block; }
  .spiel-date-ort { display: block; }
  .spiel-date-ort::before { content: ''; }
  .shop-strip-inner { flex-direction: column; align-items: flex-start; }
  .contact-strip-inner { flex-direction: column; align-items: flex-start; }
  .team-hero-inner { padding: 24px 16px 20px; }
  .th-bilanz { gap: 16px; }
  .th-bilanz-n { font-size: 22px; }
  .th-info-row { flex-direction: column; }
  .th-trainer-card { min-width: 0; }
  .team-switcher-inner, .tabs-inner,
  .footer-inner, .shop-strip-inner, .cta-section-inner,
  .contact-strip-inner, .team-hero-inner { padding-left: 16px; padding-right: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .vorstand-grid { grid-template-columns: 1fr; }
  .vorstand-grid-kacheln { grid-template-columns: 1fr 1fr; gap: 12px; }
  .kal-wrap { overflow-x: auto; }
  .kal-kopf, .kal-zeilen { min-width: 640px; }
  .kal-tag { min-height: 112px; }
  .kal-eintrag { font-size: 10px; }
  .kal-nav-titel { font-size: 18px; }
  .kal-panel-inner { padding: 16px; }
  .vk-panel-inner { padding: 18px 16px; }
  .vk-panel-head { flex-wrap: wrap; gap: 6px; }
  .cta-section-inner { padding-top: 24px; padding-bottom: 24px; }
}

@media (max-width: 380px) {
  .hero-section h1 { font-size: 30px; }
  .teams-grid { grid-template-columns: 1fr; }
  .kader-grid { grid-template-columns: repeat(2,1fr); }
  .th-bilanz { gap: 12px; }
}

/* ── NULIGA INTEGRATION ── */
.hsc-nuliga-live { position: relative; }
.nuliga-source { font-size: 10px; color: var(--text-hint); margin-top: 8px; text-align: right; }
.nuliga-source a { color: var(--text-hint); }
.nuliga-source a:hover { color: var(--rot); }
.nuliga-error { color: var(--rot-dark); font-size: 13px; padding: 12px; background: var(--rot-soft); border-radius: var(--radius); }
.nuliga-hint { font-size: 13px; color: var(--text-muted); padding: 12px; background: var(--grau); border-radius: var(--radius); }
.nuliga-hint a { color: var(--rot); }
.hsc-nuliga-widget iframe { width: 100%; border: none; border-radius: var(--radius); }