/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
/* =====================================================
   SV Bad Bentheim · Design System
   Vereinsfarben: rot-weiß (laut Satzung) + Anthrazit als ruhige Bühne
   ===================================================== */

:root {
  /* Farben */
  --c-charcoal-deep: #111827;
  --c-charcoal:      #1F2937;
  --c-graphite:      #4B5563;
  --c-red:           #E30613;
  --c-red-deep:      #B40510;
  --c-cream:         #F6F4EE;
  --c-paper:         #FFFFFF;
  --c-grey-50:       #F5F6F8;
  --c-grey-100:      #ECEEF2;
  --c-grey-300:      #C9CDD6;
  --c-grey-500:      #6B7280;
  --c-grey-700:      #2A2F3A;
  --c-ink:           #0B1220;

  /* Schriften */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Radien */
  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;

  /* Schatten */
  --shadow-sm: 0 2px 6px rgba(11, 18, 32, .06);
  --shadow:    0 12px 32px -12px rgba(11, 18, 32, .18);
  --shadow-lg: 0 30px 60px -20px rgba(11, 18, 32, .35);

  /* Layout */
  --container: 1240px;
  --header-h: 80px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.4rem); letter-spacing: .04em; }
h4 { font-size: 1rem; letter-spacing: .12em; }

p { font-size: 1rem; }
.lead { font-size: 1.15rem; color: var(--c-graphite); }

.container { width: min(var(--container), 92vw); margin: 0 auto; }

/* =====================================================
   TOPBAR & HEADER
   ===================================================== */
.topbar {
  background: var(--c-charcoal-deep);
  color: rgba(255, 255, 255, .8);
  font-size: .8rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.topbar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.topbar a { color: rgba(255, 255, 255, .65); transition: color .2s; }
.topbar a:hover { color: var(--c-paper); }
.topbar .links { display: flex; gap: 22px; }
.topbar .badge {
  background: var(--c-red);
  color: white;
  padding: 3px 12px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .68rem;
}

.site-header {
  background: var(--c-charcoal);
  color: white;
  border-bottom: 4px solid var(--c-red);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  grid-gap: 32px;
  gap: 32px;
  padding: 16px 0;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-header .crest {
  width: 48px; height: 60px;
  background: url('/svbb-wappen.svg') center/contain no-repeat;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .25));
  /* Wappen ist rot/weiß; auf dem dunklen Header funktioniert das direkt */
}
.site-header .wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: .04em;
  line-height: 1.05;
}
.site-header .wordmark small {
  display: block;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .5);
  margin-top: 2px;
}
.main-nav {
  display: flex;
  gap: 28px;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.main-nav a {
  position: relative;
  padding: 6px 0;
  color: rgba(255, 255, 255, .85);
  transition: color .2s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.main-nav a:hover, .main-nav a.active {
  color: white;
}
.main-nav a:hover::after, .main-nav a.active::after {
  transform: scaleX(1);
}
.btn-cta,
a.btn-cta,
.article-body a.btn-cta {
  display: inline-block;
  background: var(--c-red);
  color: white !important;
  text-decoration: none !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  box-shadow: 0 8px 20px -8px rgba(227, 6, 19, .6);
  transition: transform .2s, background .2s;
  border: none;
  cursor: pointer;
}
.btn-cta:hover,
a.btn-cta:hover { transform: translateY(-2px); background: var(--c-red-deep); color: white !important; }

.btn-ghost {
  display: inline-block;
  border: 2px solid currentColor;
  padding: 9px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: background .2s, color .2s;
}
.btn-ghost:hover { background: var(--c-charcoal); color: white; border-color: var(--c-charcoal); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: white;
  margin: 5px 0;
  transition: transform .25s;
}

/* =====================================================
   HERO (Startseite)
   ===================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--c-charcoal-deep), var(--c-charcoal));
  color: white;
  padding: 80px 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(227, 6, 19, .25), transparent 60%),
    radial-gradient(600px 300px at 10% 90%, rgba(227, 6, 19, .15), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: 'SV BAD BENTHEIM';
  position: absolute;
  bottom: -50px; left: -20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16rem;
  line-height: 1;
  letter-spacing: -.04em;
  color: rgba(255, 255, 255, .03);
  pointer-events: none;
  white-space: nowrap;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-gap: 48px;
  gap: 48px;
  align-items: end;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-red);
  color: white;
  padding: 6px 14px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: white;
}
.hero h1 {
  max-width: 16ch;
  margin-bottom: 20px;
}
.hero p.lead {
  max-width: 55ch;
  color: rgba(255, 255, 255, .8);
}
.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  font-family: var(--font-mono);
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero-meta strong { color: white; font-weight: 600; }

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-side h4 {
  color: rgba(255, 255, 255, .5);
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .15em;
  margin-bottom: 6px;
  border-top: 2px solid var(--c-red);
  padding-top: 14px;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
.hero-mini {
  background: rgba(255, 255, 255, .05);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-left: 3px solid var(--c-red);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  transition: transform .25s, background .25s;
}
.hero-mini:hover { background: rgba(255, 255, 255, .1); transform: translateX(4px); }
.hero-mini .cat {
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-red);
  font-weight: 600;
}
.hero-mini .ttl {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  margin-top: 4px;
  line-height: 1.2;
}
.hero-mini .date {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 6px;
}

/* =====================================================
   SECTION-HEADER
   ===================================================== */
.section {
  padding: 80px 0;
}
.section.alt { background: var(--c-paper); }
.section.dark { background: var(--c-ink); color: white; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head h2 {
  color: var(--c-charcoal-deep);
  position: relative;
}
.section-head h2 .accent { color: var(--c-red); }
.section-head h2::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--c-red);
  margin-bottom: 16px;
}
.section.dark .section-head h2 { color: white; }
.section-head .more {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-graphite);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.section-head .more:hover { color: var(--c-red); border-color: var(--c-red); }

/* =====================================================
   NEWS GRID
   ===================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  gap: 24px;
}
.news-card {
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.news-card .thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--c-graphite), var(--c-charcoal-deep));
  position: relative;
  overflow: hidden;
}
.news-card .thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 60%, rgba(227, 6, 19, .35), transparent 60%);
}
.news-card .thumb.t-fussball { background: linear-gradient(135deg, var(--c-red), var(--c-charcoal-deep)); }
.news-card .thumb.t-handball { background: linear-gradient(135deg, var(--c-charcoal), var(--c-charcoal-deep)); }
.news-card .thumb.t-turnen   { background: linear-gradient(135deg, var(--c-graphite), var(--c-charcoal)); }
.news-card .thumb.t-karate   { background: linear-gradient(135deg, var(--c-red-deep), var(--c-charcoal)); }
.news-card .thumb.t-wandern  { background: linear-gradient(135deg, #5a6068, var(--c-charcoal-deep)); }
.news-card .thumb.t-verein   { background: linear-gradient(135deg, var(--c-charcoal-deep), #2a3441); }

.news-card .body {
  padding: 18px 20px 22px;
  flex: 1 1;
  display: flex;
  flex-direction: column;
}
.news-card .cat {
  font-family: var(--font-display);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--c-red);
  font-weight: 700;
  margin-bottom: 8px;
}
.news-card h3 {
  color: var(--c-charcoal-deep);
  font-size: 1.1rem;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-weight: 600;
}
.news-card .excerpt {
  color: var(--c-graphite);
  font-size: .92rem;
  line-height: 1.5;
  flex: 1 1;
}
.news-card .meta {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--c-grey-500);
  display: flex;
  gap: 12px;
}

/* =====================================================
   ABTEILUNGS-RASTER
   ===================================================== */
.abt-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 14px;
  gap: 14px;
}
.abt-tile {
  aspect-ratio: 1;
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.abt-tile::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: var(--c-red);
  transition: height .3s;
  z-index: 0;
}
.abt-tile > * { position: relative; z-index: 1; }
.abt-tile:hover {
  background: var(--c-charcoal);
  color: white;
  border-color: var(--c-charcoal);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.abt-tile:hover::before { height: 4px; }
.abt-tile .icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
  filter: grayscale(.3);
  transition: filter .3s;
}
.abt-tile:hover .icon { filter: grayscale(0); }
.abt-tile .label {
  font-family: var(--font-display);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
  line-height: 1.1;
}

/* =====================================================
   TERMINE
   ===================================================== */
.termine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 16px;
  gap: 16px;
}
.termin-card {
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-left: 3px solid var(--c-red);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 20px 22px;
  transition: transform .3s, box-shadow .3s;
}
.termin-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.termin-card .date {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--c-red);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.termin-card h4 {
  color: var(--c-charcoal-deep);
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.termin-card .place {
  font-size: .85rem;
  color: var(--c-grey-500);
}

/* =====================================================
   SVB AKTUELL TEASER
   ===================================================== */
.magazin-teaser {
  background: var(--c-charcoal-deep);
  color: white;
  border-radius: var(--r-lg);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1fr 280px;
  grid-gap: 48px;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.magazin-teaser::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 80% 20%, rgba(227, 6, 19, .2), transparent 60%);
  pointer-events: none;
}
.magazin-teaser .info {
  position: relative;
}
.magazin-teaser .label {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 12px;
}
.magazin-teaser h2 { color: white; margin-bottom: 14px; }
.magazin-teaser h2::before { display: none; }
.magazin-teaser p { color: rgba(255, 255, 255, .75); margin-bottom: 24px; max-width: 50ch; }
.magazin-teaser .cover {
  aspect-ratio: 210/297;
  background: linear-gradient(135deg, var(--c-grey-300), var(--c-charcoal));
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  color: rgba(255, 255, 255, .4);
  font-size: 1rem;
  letter-spacing: .2em;
  position: relative;
  transform: rotate(-2deg);
  transition: transform .3s;
}
.magazin-teaser .cover:hover { transform: rotate(0); }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--c-ink);
  color: rgba(255, 255, 255, .65);
  padding: 64px 0 24px;
}
.site-footer .row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  grid-gap: 40px;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.site-footer h4 {
  color: white;
  font-size: .8rem;
  letter-spacing: .15em;
  margin-bottom: 16px;
  font-weight: 600;
}
.site-footer ul { list-style: none; }
.site-footer ul li { padding: 4px 0; font-size: .9rem; }
.site-footer a:hover { color: white; }
.site-footer .brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.site-footer .brand .crest {
  width: 48px; height: 60px;
  background: url('/svbb-wappen.svg') center/contain no-repeat;
  flex-shrink: 0;
}
.site-footer .brand .name {
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.site-footer .brand .name small {
  display: block;
  font-size: .7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .05em;
}
.site-footer .address {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.site-footer .socials {
  display: flex;
  gap: 10px;
}
.site-footer .socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: grid; place-items: center;
  font-size: .9rem;
  transition: border-color .2s, color .2s;
}
.site-footer .socials a:hover {
  border-color: var(--c-red);
  color: var(--c-red);
}
.site-footer .legal {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  font-family: var(--font-mono);
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer .legal .links { display: flex; gap: 16px; }

/* =====================================================
   PAGE-HEADER (für Unterseiten)
   ===================================================== */
.page-header {
  background: var(--c-charcoal-deep);
  color: white;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--c-red);
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 100% 50%, rgba(227, 6, 19, .15), transparent 70%);
}
.page-header .container { position: relative; }
.page-header .breadcrumb {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.page-header .breadcrumb a:hover { color: var(--c-red); }
.page-header .breadcrumb span { margin: 0 8px; opacity: .4; }
.page-header h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.page-header .subtitle {
  margin-top: 14px;
  color: rgba(255, 255, 255, .7);
  font-size: 1.1rem;
  max-width: 60ch;
}

/* =====================================================
   ARTIKEL (News-Detail)
   ===================================================== */
.article {
  max-width: 760px;
  margin: 0 auto;
}
.article .meta-row {
  display: flex;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--c-grey-500);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.article .meta-row .cat {
  background: var(--c-red);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.article .lead-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--c-red), var(--c-charcoal-deep));
  border-radius: var(--r);
  margin: 32px 0;
}
.article h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--c-charcoal-deep);
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0;
}
.article .excerpt {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--c-graphite);
  font-weight: 500;
  margin-bottom: 20px;
}
.article p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.article h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.6rem;
  color: var(--c-charcoal-deep);
  text-transform: none;
  letter-spacing: 0;
}
.article blockquote {
  border-left: 4px solid var(--c-red);
  padding: 12px 24px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--c-charcoal-deep);
  font-style: italic;
}
.article .author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--c-grey-100);
}
.article .author .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-graphite), var(--c-charcoal));
}
.article .author .info {
  font-size: .9rem;
}
.article .author .info strong {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--c-charcoal-deep);
}
.article .author .info span { color: var(--c-grey-500); }

/* =====================================================
   FILTER (News Übersicht)
   ===================================================== */
.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-chip {
  padding: 8px 16px;
  background: var(--c-paper);
  border: 1px solid var(--c-grey-300);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: all .2s;
}
.filter-chip:hover { border-color: var(--c-charcoal); }
.filter-chip.active {
  background: var(--c-charcoal);
  color: white;
  border-color: var(--c-charcoal);
}

/* =====================================================
   ABTEILUNGS-DETAIL
   ===================================================== */
.abt-meta-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 0;
  gap: 0;
  background: var(--c-paper);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: -40px 0 0;
  position: relative;
  z-index: 2;
  border: 1px solid var(--c-grey-100);
}
.abt-meta-bar > div {
  padding: 22px 24px;
  border-right: 1px solid var(--c-grey-100);
}
.abt-meta-bar > div:last-child { border-right: none; }
.abt-meta-bar .label {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-grey-500);
  margin-bottom: 6px;
}
.abt-meta-bar .value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-charcoal-deep);
  text-transform: uppercase;
}

.training-list {
  list-style: none;
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}
.training-list li {
  background: var(--c-paper);
  padding: 18px 22px;
  border-radius: var(--r);
  border-left: 3px solid var(--c-red);
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  grid-gap: 16px;
  gap: 16px;
  align-items: center;
  font-size: .95rem;
}
.training-list .day {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-red);
}
.training-list .time {
  font-family: var(--font-mono);
  color: var(--c-charcoal-deep);
}
.training-list .place {
  color: var(--c-grey-500);
  font-size: .9rem;
}

.person-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 20px;
  gap: 20px;
}
.person-card {
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.person-card .avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-graphite), var(--c-charcoal));
  flex-shrink: 0;
}
.person-card .info { flex: 1 1; }
.person-card .name {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--c-charcoal-deep);
  letter-spacing: .03em;
}
.person-card .role {
  font-size: .85rem;
  color: var(--c-grey-500);
  margin-top: 2px;
}
.person-card .contact {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--c-charcoal-deep);
  margin-top: 6px;
}

/* =====================================================
   MOBILE RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--c-charcoal);
    flex-direction: column;
    padding: 20px;
    border-bottom: 4px solid var(--c-red);
  }
  .mobile-toggle { display: block; }
  .topbar .links { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 56px 0; }
  .hero::after { font-size: 7rem; }
  .news-grid { grid-template-columns: 1fr; }
  .abt-grid { grid-template-columns: repeat(3, 1fr); }
  .magazin-teaser { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .magazin-teaser .cover { max-width: 200px; }
  .site-footer .row { grid-template-columns: 1fr 1fr; }
  .abt-meta-bar { grid-template-columns: 1fr 1fr; margin-top: 0; }
  .abt-meta-bar > div { border-right: none; border-bottom: 1px solid var(--c-grey-100); }
  .training-list li { grid-template-columns: 1fr; gap: 4px; }
  .section { padding: 56px 0; }
  .site-header .row { gap: 12px; padding: 12px 0; }
  .btn-cta { padding: 8px 16px; font-size: .75rem; }
}

/* =====================================================
   FANSHOP-TEASER
   ----------------------------------------------------
   Eigenständiger Block, ähnlich SVBaktuell-Teaser –
   aber heller (cremig) und mit drei Produkt-Kacheln.
   ===================================================== */
.fanshop-teaser {
  background: var(--c-paper);
  border-radius: var(--r-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  grid-gap: 56px;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-grey-100);
  box-shadow: var(--shadow-sm);
}
.fanshop-teaser::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--c-red);
}
.fanshop-teaser .info { position: relative; }
.fanshop-teaser .label {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fanshop-teaser .label::after {
  content: '↗';
  font-family: var(--font-body);
  letter-spacing: 0;
  font-size: .9rem;
  color: var(--c-grey-500);
}
.fanshop-teaser h2 {
  color: var(--c-charcoal-deep);
  margin-bottom: 14px;
}
.fanshop-teaser h2::before { display: none; }
.fanshop-teaser p {
  color: var(--c-graphite);
  margin-bottom: 28px;
  max-width: 50ch;
}
.fanshop-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 14px;
  gap: 14px;
  position: relative;
}
.fanshop-product {
  aspect-ratio: 3/4;
  background: var(--c-grey-50);
  border-radius: var(--r);
  border: 1px solid var(--c-grey-100);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.fanshop-product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.fanshop-product .visual {
  width: 60%;
  height: 60%;
  display: grid;
  place-items: center;
  color: var(--c-red);
}
.fanshop-product .label-bottom {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .08em;
  color: var(--c-charcoal-deep);
  text-align: center;
}
.fanshop-product.featured {
  background: var(--c-charcoal-deep);
  border-color: var(--c-charcoal-deep);
}
.fanshop-product.featured .visual { color: white; }
.fanshop-product.featured .label-bottom { color: white; }

/* =====================================================
   AD-SLOT (Werbe-Anzeige)
   ----------------------------------------------------
   Dezent, klar gekennzeichnet, nicht aufdringlich.
   Maximalbreite begrenzt, mit „Anzeige"-Label oben.
   ===================================================== */
.ad-slot {
  margin: 0 auto;
  max-width: 800px;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.ad-slot::before {
  content: 'Anzeige';
  display: block;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-grey-500);
  margin-bottom: 8px;
  padding-left: 4px;
}
.ad-slot a {
  display: block;
  position: relative;
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--c-paper);
  transition: box-shadow .25s, transform .25s;
}
.ad-slot a:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.ad-slot .ad-image {
  width: 100%;
  aspect-ratio: 728/120;
  background: linear-gradient(135deg, #d8d4c9, #efeae0);
  position: relative;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: .12em;
  color: var(--c-grey-500);
}
/* Optionaler Demo-Inhalt für Banner-Platzhalter */
.ad-slot .ad-image .demo {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f7f3ea, #e8dfc8);
}
.ad-slot .ad-image .demo .brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-charcoal-deep);
  text-transform: uppercase;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.ad-slot .ad-image .demo .text {
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--c-graphite);
  font-weight: 500;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
  flex: 1 1;
}
.ad-slot .ad-image .demo .text strong { color: var(--c-charcoal-deep); }
.ad-slot .ad-image .demo .arrow {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--c-red);
  flex-shrink: 0;
}

/* Variante: schmaler Inline-Slot innerhalb von Artikeln */
.ad-slot.inline {
  max-width: 100%;
  margin: 32px 0;
}
.ad-slot.inline .ad-image { aspect-ratio: 5/1; }

/* =====================================================
   SPONSOREN-LAUFBAND
   ----------------------------------------------------
   Greyscale-Logos, Endlos-Scroll, Hover stoppt.
   Logos werden bei Hover farbig.
   ===================================================== */
.sponsoren {
  background: var(--c-paper);
  padding: 56px 0 64px;
  border-top: 1px solid var(--c-grey-100);
  position: relative;
  overflow: hidden;
}
.sponsoren .head {
  text-align: center;
  margin-bottom: 36px;
}
.sponsoren .head .label {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-grey-500);
  margin-bottom: 8px;
}
.sponsoren .head h2 {
  color: var(--c-charcoal-deep);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}
.sponsoren .head h2::before { display: none; }
.sponsoren .head p {
  color: var(--c-graphite);
  margin-top: 8px;
  font-size: .95rem;
}

.sponsoren-band {
  position: relative;
  overflow: hidden;
  /* Sanfte Fade-Maske an den Seiten */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
}
.sponsoren-track {
  display: flex;
  gap: 64px;
  align-items: center;
  width: max-content;
  animation: scroll-sponsors 40s linear infinite;
}
.sponsoren-band:hover .sponsoren-track { animation-play-state: paused; }

@keyframes scroll-sponsors {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* halbe Strecke, weil Logos doppelt vorhanden */
}

.sponsor-logo {
  height: 48px;
  width: auto;
  display: grid;
  place-items: center;
  filter: grayscale(1);
  opacity: .55;
  transition: filter .35s, opacity .35s, transform .35s;
  flex-shrink: 0;
  text-decoration: none;
}
.sponsor-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}
.sponsor-logo .placeholder {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--c-charcoal-deep);
  font-size: 1.25rem;
  white-space: nowrap;
  padding: 0 8px;
}
.sponsor-logo .placeholder span.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--c-red);
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 2px;
}
.sponsor-logo .placeholder.style-2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: italic;
  text-transform: none;
  font-size: 1.4rem;
  letter-spacing: -.02em;
}
.sponsor-logo .placeholder.style-3 {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: .2em;
  border: 2px solid var(--c-charcoal-deep);
  padding: 6px 14px;
}
.sponsor-logo .placeholder.style-4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  position: relative;
}
.sponsor-logo .placeholder.style-4::before {
  content: '◆';
  margin-right: 8px;
  color: var(--c-red);
  font-size: 1rem;
}

/* =====================================================
   MOBILE-Anpassungen (ergänzend)
   ===================================================== */
@media (max-width: 900px) {
  .fanshop-teaser { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .fanshop-products { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .ad-slot .ad-image .demo { padding: 14px 18px; gap: 10px; flex-wrap: wrap; }
  .ad-slot .ad-image .demo .brand { font-size: 1.1rem; }
  .ad-slot .ad-image .demo .text { font-size: .82rem; }
  .sponsoren { padding: 40px 0; }
  .sponsoren-track { gap: 40px; }
  .sponsor-logo { height: 36px; }
  .sponsor-logo .placeholder { font-size: 1rem; }
}

/* =====================================================
   PRE-FOOTER ADS
   ----------------------------------------------------
   Weißer Streifen direkt vor dem Footer, in dem die
   Werbeanzeige(n) erscheinen. Schließt nahtlos an die
   Sponsoren-Sektion an.
   ===================================================== */
.pre-footer-ads {
  background: var(--c-paper);
  padding: 32px 0 56px;
}

@media (max-width: 900px) {
  .pre-footer-ads { padding: 24px 0 40px; }
}

/* =====================================================
   ABTEILUNGS-LISTE (Übersichtsseite)
   ----------------------------------------------------
   Dreispaltiges Raster mit Abteilungs-Kacheln.
   Jede Karte hat einen roten Akzentstrich oben,
   das Icon links, den Namen rechts daneben,
   die Beschreibung darunter und eine Meta-Zeile am Fuß.
   ===================================================== */
.abt-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 18px;
  gap: 18px;
}
.abt-list-card {
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r);
  padding: 24px 26px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 3px solid var(--c-red);
  text-decoration: none;
}
.abt-list-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--c-grey-300);
  border-top-color: var(--c-red);
}
.abt-list-card .icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.abt-list-card .ic { font-size: 1.8rem; }
.abt-list-card h3 {
  color: var(--c-charcoal-deep);
  font-size: 1.15rem;
  margin: 0;
  flex: 1 1;
}
.abt-list-card .desc {
  font-size: .9rem;
  color: var(--c-graphite);
  line-height: 1.5;
  flex: 1 1;
}
.abt-list-card .sub {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--c-grey-500);
  border-top: 1px solid var(--c-grey-100);
  padding-top: 10px;
}
@media (max-width: 900px) {
  .abt-list-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   Aus abteilung-fussball-senioren.html extrahiert
   ===================================================== */
  /* Stat-Block für Hero */
  .abt-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-gap: 0;
    gap: 0;
    background: var(--c-paper);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin: -40px 0 60px;
    position: relative;
    z-index: 2;
    border: 1px solid var(--c-grey-100);
  }
  .abt-stats > div {
    padding: 24px 28px;
    border-right: 1px solid var(--c-grey-100);
  }
  .abt-stats > div:last-child { border-right: none; }
  .abt-stats .num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--c-charcoal-deep);
    line-height: 1;
    margin-bottom: 6px;
  }
  .abt-stats .num small {
    font-size: 1rem;
    color: var(--c-red);
    font-weight: 600;
    margin-left: 4px;
  }
  .abt-stats .label {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--c-grey-500);
  }

  /* Mannschaftskarten */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
    gap: 24px;
  }
  .team-card {
    background: var(--c-paper);
    border: 1px solid var(--c-grey-100);
    border-radius: var(--r);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    display: grid;
    grid-template-columns: 180px 1fr;
    text-decoration: none;
  }
  .team-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--c-grey-300);
  }
  .team-card .visual {
    background: linear-gradient(135deg, var(--c-charcoal), var(--c-charcoal-deep));
    color: white;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 28px 16px;
    position: relative;
    overflow: hidden;
  }
  .team-card .visual::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 80px; height: 80px;
    background: radial-gradient(circle at 100% 100%, rgba(227, 6, 19, .35), transparent 60%);
  }
  .team-card .visual .number {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    color: white;
    position: relative;
  }
  .team-card .visual .label {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-top: 8px;
    position: relative;
  }
  .team-card .visual.special .number {
    font-size: 2rem;
    line-height: 1.1;
  }
  .team-card .visual.featured {
    background: linear-gradient(135deg, var(--c-red), var(--c-red-deep));
  }
  .team-card .info {
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
  }
  .team-card .info h3 {
    color: var(--c-charcoal-deep);
    font-size: 1.3rem;
    margin-bottom: 6px;
  }
  .team-card .info .liga {
    font-family: var(--font-mono);
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-red);
    font-weight: 600;
    margin-bottom: 10px;
  }
  .team-card .info p {
    font-size: .9rem;
    color: var(--c-graphite);
    line-height: 1.5;
    flex: 1 1;
  }
  .team-card .info .meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--c-grey-100);
    font-family: var(--font-mono);
    font-size: .75rem;
    color: var(--c-grey-500);
  }
  .team-card .info .meta strong { color: var(--c-charcoal-deep); }

  /* Stadionzeitung-Modul */
  .stadion-promo {
    background: var(--c-cream);
    border-radius: var(--r-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 32px;
    gap: 32px;
    align-items: center;
    border: 1px solid var(--c-grey-100);
  }
  .stadion-promo h3 {
    color: var(--c-charcoal-deep);
    margin-bottom: 8px;
  }
  .stadion-promo p {
    color: var(--c-graphite);
    margin-bottom: 16px;
    max-width: 50ch;
  }
  .stadion-promo .label {
    font-family: var(--font-mono);
    font-size: .75rem;
    color: var(--c-red);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .stadion-promo .pdf-icon {
    width: 100px;
    height: 130px;
    background: white;
    border-radius: 6px;
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
    color: var(--c-red);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.1;
    border: 1px solid var(--c-grey-100);
    transform: rotate(-3deg);
    transition: transform .3s;
  }
  .stadion-promo .pdf-icon:hover { transform: rotate(0); }
  .stadion-promo .pdf-icon small {
    display: block;
    font-size: .6rem;
    color: var(--c-grey-500);
    letter-spacing: .15em;
    margin-top: 4px;
    font-weight: 400;
  }

  @media (max-width: 900px) {
    .team-grid { grid-template-columns: 1fr; }
    .team-card { grid-template-columns: 100px 1fr; }
    .team-card .visual { padding: 18px 12px; }
    .team-card .visual .number { font-size: 2.4rem; }
    .stadion-promo { grid-template-columns: 1fr; padding: 28px; text-align: center; }
    .stadion-promo .pdf-icon { margin: 0 auto; }
  }

/* =====================================================
   Aus mannschaft-1.html extrahiert
   ===================================================== */
  /* =====================================================
     MANNSCHAFTS-HERO
     ===================================================== */
  .team-hero {
    background: linear-gradient(135deg, var(--c-charcoal-deep), var(--c-charcoal));
    color: white;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--c-red);
  }
  .team-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(800px 400px at 90% 50%, rgba(227, 6, 19, .25), transparent 60%),
      radial-gradient(500px 300px at 10% 100%, rgba(227, 6, 19, .15), transparent 60%);
    pointer-events: none;
  }
  .team-hero::after {
    content: 'SVB';
    position: absolute;
    bottom: -40px; right: -20px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14rem;
    line-height: 1;
    letter-spacing: -.04em;
    color: rgba(255, 255, 255, .04);
    pointer-events: none;
  }
  .team-hero .container {
    position: relative;
    padding: 60px 0 80px;
  }
  .team-hero .breadcrumb {
    font-family: var(--font-mono);
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 24px;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .team-hero .breadcrumb a:hover { color: var(--c-red); }
  .team-hero .breadcrumb span { margin: 0 8px; opacity: .4; }

  .team-hero-grid {
    display: grid;
    grid-template-columns: 140px 1fr;
    grid-gap: 32px;
    gap: 32px;
    align-items: center;
  }
  .team-hero-num {
    width: 140px;
    height: 140px;
    background: var(--c-red);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 5rem;
    line-height: 1;
    box-shadow: 0 20px 40px -10px rgba(227, 6, 19, .5);
  }
  .team-hero-text .liga-tag {
    display: inline-block;
    background: rgba(255, 255, 255, .1);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, .15);
  }
  .team-hero-text h1 {
    color: white;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    margin-bottom: 12px;
  }
  .team-hero-text p {
    color: rgba(255, 255, 255, .8);
    max-width: 60ch;
    font-size: 1.05rem;
  }

  /* Quick-Stats unter Hero */
  .team-meta-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-gap: 0;
    gap: 0;
    background: var(--c-paper);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin: -40px 0 0;
    position: relative;
    z-index: 2;
    border: 1px solid var(--c-grey-100);
  }
  .team-meta-bar > div {
    padding: 20px 24px;
    border-right: 1px solid var(--c-grey-100);
  }
  .team-meta-bar > div:last-child { border-right: none; }
  .team-meta-bar .label {
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--c-grey-500);
    margin-bottom: 6px;
  }
  .team-meta-bar .value {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--c-charcoal-deep);
    text-transform: uppercase;
    letter-spacing: .03em;
  }

  /* =====================================================
     MANNSCHAFTSFOTO
     ----------------------------------------------------
     Großer, atmosphärischer Bildbanner direkt unter der
     Meta-Bar. Im CMS pflegbar (Feld: mannschaftsfoto).
     Solange kein Bild hochgeladen ist, erscheint ein
     stilisierter Platzhalter statt eines leeren Blocks.
     ===================================================== */
  .team-photo {
    margin: 28px 0 0;
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
  }
  .team-photo .frame {
    aspect-ratio: 21 / 9;
    background:
      linear-gradient(135deg, #1a2333 0%, #0d1218 60%, #1c0608 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  .team-photo .frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(45deg,
        rgba(255, 255, 255, .015) 0,
        rgba(255, 255, 255, .015) 8px,
        transparent 8px,
        transparent 16px),
      radial-gradient(800px 400px at 80% 40%, rgba(227, 6, 19, .15), transparent 70%);
    pointer-events: none;
  }
  .team-photo .frame::after {
    content: 'TEAM 2025/26';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .07);
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    pointer-events: none;
    line-height: 1;
  }
  .team-photo .frame:has(img)::before,
  .team-photo .frame:has(img)::after { display: none; }
  .team-photo .frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .team-photo figcaption {
    position: absolute;
    bottom: 16px;
    left: 20px;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 8px 14px;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, .1);
  }
  .team-photo figcaption .accent { color: var(--c-red); }

  /* =====================================================
     WIDGET-BEREICHE (Tabelle / Spiele)
     ===================================================== */
  .widget-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 28px;
    gap: 28px;
  }
  .widget-card {
    background: var(--c-paper);
    border: 1px solid var(--c-grey-100);
    border-radius: var(--r);
    overflow: hidden;
  }
  .widget-card .head {
    padding: 20px 24px;
    border-bottom: 1px solid var(--c-grey-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--c-grey-50);
  }
  .widget-card .head h3 {
    color: var(--c-charcoal-deep);
    font-size: 1.05rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .widget-card .head h3::before {
    content: '';
    width: 4px;
    height: 18px;
    background: var(--c-red);
    border-radius: 2px;
  }
  .widget-card .head .source {
    font-family: var(--font-mono);
    font-size: .68rem;
    color: var(--c-grey-500);
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .widget-card .body {
    padding: 0;
    height: 420px;
    overflow-y: auto;
    position: relative;
  }
  /* Loading-Placeholder solange das Widget noch nicht gerendert hat */
  .widget-card .body::before {
    content: 'Spieldaten werden von fussball.de geladen …';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--c-grey-500);
    font-family: var(--font-mono);
    font-size: .85rem;
    letter-spacing: .05em;
    background: repeating-linear-gradient(
      45deg,
      var(--c-grey-50),
      var(--c-grey-50) 12px,
      var(--c-paper) 12px,
      var(--c-paper) 24px
    );
  }
  /* Sobald das Widget Inhalt rendert, verschwindet der Placeholder */
  .widget-card .body:has(.fussballde_widget > *)::before {
    display: none;
  }
  .widget-card .body .fussballde_widget {
    padding: 18px 24px;
    position: relative;
    z-index: 1;
  }
  .widget-card .footnote {
    padding: 12px 24px;
    border-top: 1px solid var(--c-grey-100);
    font-family: var(--font-mono);
    font-size: .7rem;
    color: var(--c-grey-500);
    letter-spacing: .08em;
  }

  /* =====================================================
     TRAINER-KARTE
     ===================================================== */
  .trainer-card {
    background: var(--c-paper);
    border: 1px solid var(--c-grey-100);
    border-radius: var(--r);
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .trainer-card .avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-graphite), var(--c-charcoal));
    flex-shrink: 0;
  }
  .trainer-card .info { flex: 1 1; }
  .trainer-card .role {
    font-family: var(--font-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--c-red);
    font-weight: 600;
    margin-bottom: 4px;
  }
  .trainer-card .name {
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.3rem;
    color: var(--c-charcoal-deep);
    letter-spacing: .03em;
    margin-bottom: 8px;
  }
  .trainer-card .bio {
    font-size: .9rem;
    color: var(--c-graphite);
    line-height: 1.55;
  }

  /* =====================================================
     MOBILE
     ===================================================== */
  @media (max-width: 900px) {
    .team-hero-grid { grid-template-columns: 100px 1fr; gap: 20px; }
    .team-hero-num { width: 100px; height: 100px; font-size: 3.4rem; }
    .team-hero .container { padding: 40px 0 56px; }
    .widget-grid { grid-template-columns: 1fr; gap: 20px; }
    .team-meta-bar { grid-template-columns: 1fr 1fr; }
    .team-meta-bar > div { border-right: none; border-bottom: 1px solid var(--c-grey-100); }
    .trainer-card { flex-direction: column; text-align: center; }
  }

/* =====================================================
   ARTIKEL-HERO (News-Detail)
   ===================================================== */
.article-hero {
  background: linear-gradient(180deg, var(--c-charcoal-deep) 0%, var(--c-charcoal) 100%);
  color: white;
  padding: 60px 0;
  border-bottom: 4px solid var(--c-red);
}
.article-hero .container { max-width: 880px; }
.article-hero .breadcrumb {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.article-hero .breadcrumb a:hover { color: var(--c-red); }
.article-hero .breadcrumb span { margin: 0 8px; opacity: .4; }
.article-hero .cat-tag {
  display: inline-block;
  background: var(--c-red);
  color: white;
  padding: 4px 12px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 600;
  margin-bottom: 16px;
}
.article-hero h1 {
  color: white;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 16px;
}
.article-hero .lead {
  color: rgba(255, 255, 255, .85);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 60ch;
}
.article-hero .article-meta {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .05em;
}
.article-hero .article-meta span { margin-right: 8px; }

/* Article-Body (Lesefluss-Inhalt) */
.article-body {
  max-width: 720px;
}
.article-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--c-charcoal);
  margin-bottom: 1.4em;
}
.article-body h2 {
  margin-top: 1.8em;
  margin-bottom: .6em;
  color: var(--c-charcoal-deep);
}
.article-body ul, .article-body ol {
  margin-bottom: 1.4em;
  padding-left: 1.4em;
}
.article-body ul li, .article-body ol li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: .4em;
}

/* =====================================================
   QUICKFACTS-Bar (Abteilungsdetail)
   ===================================================== */
.abt-quickfacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 0;
  gap: 0;
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r);
  overflow: hidden;
  margin: -40px 0 0;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.abt-quickfacts > div {
  padding: 20px 26px;
  border-right: 1px solid var(--c-grey-100);
}
.abt-quickfacts > div:last-child { border-right: none; }
.abt-quickfacts .label {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-grey-500);
  margin-bottom: 6px;
}
.abt-quickfacts .value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--c-charcoal-deep);
}

@media (max-width: 900px) {
  .abt-quickfacts { grid-template-columns: 1fr; }
  .abt-quickfacts > div { border-right: none; border-bottom: 1px solid var(--c-grey-100); }
  .abt-quickfacts > div:last-child { border-bottom: none; }
}

/* =====================================================
   VORSTAND-, GESCHÄFTSSTELLEN-, SPORTSTÄTTEN-SEITEN
   ===================================================== */
.vorstand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  gap: 24px;
}
.vorstand-card {
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.vorstand-card .photo {
  aspect-ratio: 1 / 1;
  background: var(--c-grey-100);
  position: relative;
  overflow: hidden;
}
.vorstand-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vorstand-card .photo .placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--c-grey-100), var(--c-grey-300));
}
.vorstand-card .info {
  padding: 18px 22px 22px;
}
.vorstand-card .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--c-charcoal-deep);
}
.vorstand-card .role {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-top: 4px;
}
.vorstand-card .addr {
  font-size: .85rem;
  color: var(--c-graphite);
  margin-top: 10px;
  line-height: 1.5;
}
.vorstand-card .contact {
  font-size: .85rem;
  color: var(--c-graphite);
  margin-top: 4px;
}

@media (max-width: 900px) { .vorstand-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .vorstand-grid { grid-template-columns: 1fr; } }

/* Geschäftsstelle: Kontakt + Öffnungszeiten */
.kontakt-card {
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r);
  padding: 28px 32px;
  border-top: 3px solid var(--c-red);
}
.kontakt-card h2 {
  margin: 0 0 18px;
  color: var(--c-charcoal-deep);
}
.kontakt-block .addr {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-charcoal);
  margin-bottom: 16px;
}
.kontakt-block .contact-row {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--c-grey-100);
  font-size: .95rem;
}
.kontakt-block .contact-row .label {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-grey-500);
  min-width: 70px;
}
.kontakt-block .contact-row a { color: var(--c-charcoal-deep); font-weight: 500; }
.kontakt-block .contact-row a:hover { color: var(--c-red); }

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hours-list li {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  grid-gap: 12px;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-grey-100);
  font-size: .95rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day {
  font-weight: 600;
  color: var(--c-charcoal-deep);
}
.hours-list .time {
  font-family: var(--font-mono);
  color: var(--c-charcoal);
}
.hours-list .info {
  font-size: .82rem;
  color: var(--c-grey-500);
}

@media (max-width: 900px) {
  .kontakt-card + .kontakt-card { margin-top: 28px; }
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* Sportstätten-Karten */
.sportstaetten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
  gap: 24px;
}
.sportstaette-card {
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r);
  border-left: 3px solid var(--c-red);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sportstaette-card .sportstaette-bild {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--c-charcoal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sportstaette-card .sportstaette-bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.sportstaette-card:hover .sportstaette-bild img {
  transform: scale(1.04);
}
.sportstaette-card .sportstaette-bild--placeholder {
  color: rgba(255, 255, 255, .25);
}
.sportstaette-card .head {
  padding: 22px 26px 0;
}
.sportstaette-card .head h3 {
  margin: 0 0 14px;
  color: var(--c-charcoal-deep);
}
.sportstaette-card .body {
  padding: 0 26px 24px;
}
.sportstaette-card .body .addr {
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--c-graphite);
  line-height: 1.6;
  margin-bottom: 12px;
}
.sportstaette-card .body p {
  font-size: .95rem;
  color: var(--c-charcoal);
  line-height: 1.6;
}

@media (max-width: 900px) { .sportstaetten-grid { grid-template-columns: 1fr; } }

/* =====================================================
   VEREINSBUS – Intro, Kalender-Embed, Formular
   ===================================================== */
.vereinsbus-intro {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 40px;
  gap: 40px;
  align-items: start;
}
.vb-text p { line-height: 1.7; }
.vb-text details {
  margin-top: 16px;
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r);
  padding: 14px 20px;
}
.vb-text details summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--c-charcoal-deep);
}
.vb-text .regeln-text {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--c-grey-100);
}
.vb-text .regeln-text p {
  font-size: .92rem;
  margin-bottom: 12px;
}

.vb-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-tile {
  background: var(--c-charcoal-deep);
  color: white;
  padding: 18px 22px;
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}
.info-tile strong {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-red);
  font-weight: 600;
}
.info-tile span, .info-tile a {
  color: white;
  font-size: .95rem;
}
.info-tile.link:hover span { color: var(--c-red); }

.calendar-embed {
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r);
  overflow: hidden;
}

@media (max-width: 900px) {
  .vereinsbus-intro { grid-template-columns: 1fr; }
}

/* Buchungsformular */
.vereinsbus-form {
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.vereinsbus-form .form-row {
  display: grid;
  grid-gap: 20px;
  gap: 20px;
}
.vereinsbus-form .form-row.two {
  grid-template-columns: 1fr 1fr;
}
.vereinsbus-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vereinsbus-form label > span {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-grey-500);
  font-weight: 600;
}
.vereinsbus-form input,
.vereinsbus-form select,
.vereinsbus-form textarea {
  border: 1px solid var(--c-grey-300);
  border-radius: 6px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--c-charcoal-deep);
  background: white;
}
.vereinsbus-form input:focus,
.vereinsbus-form select:focus,
.vereinsbus-form textarea:focus {
  outline: 2px solid var(--c-red);
  outline-offset: 1px;
  border-color: var(--c-red);
}
.vereinsbus-form .checkbox-row {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--c-charcoal);
}
.vereinsbus-form .checkbox-row input { margin-top: 4px; }
.vereinsbus-form .checkbox-row span { text-transform: none; letter-spacing: normal; font-family: var(--font-body); font-size: .9rem; color: var(--c-charcoal); }
.vereinsbus-form .form-actions { margin-top: 8px; }
.vereinsbus-form button[type="submit"] { padding: 14px 32px; font-size: 1rem; }
.vereinsbus-form button[disabled] { opacity: .5; cursor: not-allowed; }

.form-error {
  background: rgba(227, 6, 19, .08);
  border: 1px solid rgba(227, 6, 19, .25);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: .9rem;
  color: var(--c-charcoal-deep);
}
.form-success {
  background: var(--c-charcoal-deep);
  color: white;
  padding: 32px 36px;
  border-radius: var(--r);
  text-align: center;
}
.form-success h3 {
  color: var(--c-red);
  margin: 0 0 12px;
  font-size: 1.4rem;
}
.form-success p { color: rgba(255,255,255,.85); margin-bottom: 20px; }

@media (max-width: 700px) {
  .vereinsbus-form .form-row.two { grid-template-columns: 1fr; }
}

/* =====================================================
   SVBAKTUELL – Magazin-Archiv
   ===================================================== */
.svbaktuell-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 18px;
  gap: 18px;
}
.magazin-card {
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.magazin-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.magazin-card .cover {
  aspect-ratio: 297/420;
  background: linear-gradient(135deg, var(--c-charcoal), var(--c-charcoal-deep));
  position: relative;
  overflow: hidden;
}
.magazin-card .cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.magazin-card .cover .placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: .1em;
}
.magazin-card .info {
  padding: 12px 16px 14px;
}
.magazin-card .titel {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--c-charcoal-deep);
  font-size: .95rem;
}
.magazin-card .datum {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--c-grey-500);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

@media (max-width: 900px) { .svbaktuell-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .svbaktuell-grid { grid-template-columns: repeat(2, 1fr); } }

/* =====================================================
   TRAININGSZEITEN-ÜBERSICHT (Termine-Seite)
   ===================================================== */
.day-block { margin-bottom: 36px; }
.day-block:last-child { margin-bottom: 0; }
.day-heading {
  font-size: 1.35rem;
  color: var(--c-charcoal-deep);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--c-red);
  display: inline-block;
}
.termine-liste {
  list-style: none;
  margin: 0;
  padding: 0;
}
.termine-liste li {
  display: grid;
  grid-template-columns: 130px 1fr auto auto;
  grid-gap: 16px;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--c-grey-100);
  align-items: center;
  background: var(--c-paper);
}
.termine-liste li:first-child { border-top: 1px solid var(--c-grey-100); border-radius: 6px 6px 0 0; }
.termine-liste li:last-child { border-radius: 0 0 6px 6px; }
.termine-liste .time {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--c-red);
  font-size: .9rem;
}
.termine-liste .who { font-size: .95rem; color: var(--c-charcoal-deep); }
.termine-liste .who a { color: var(--c-charcoal-deep); font-weight: 500; }
.termine-liste .who a:hover { color: var(--c-red); }
.termine-liste .who em { color: var(--c-grey-500); font-style: italic; }
.termine-liste .place {
  font-size: .85rem;
  color: var(--c-graphite);
}
.termine-liste .leiter {
  font-size: .82rem;
  color: var(--c-grey-500);
  font-family: var(--font-mono);
}

@media (max-width: 700px) {
  .termine-liste li {
    grid-template-columns: 100px 1fr;
    grid-row-gap: 4px;
  }
  .termine-liste .place,
  .termine-liste .leiter { grid-column: 2; }
}

/* =====================================================
   KURSANGEBOTE – Übersichts-Karten innerhalb einer Abteilung
   (analog zur Mannschafts-Übersicht bei Fußball)
   ===================================================== */
.kurs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 22px;
  gap: 22px;
}
.kurs-card {
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r);
  overflow: hidden;
  display: grid;
  grid-template-columns: 140px 1fr;
  grid-gap: 0;
  gap: 0;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  border-left: 3px solid var(--c-red);
}
.kurs-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--c-grey-300);
  border-left-color: var(--c-red);
}
.kurs-card .visual {
  background: linear-gradient(135deg, var(--c-charcoal-deep), var(--c-charcoal));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.kurs-card .visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.kurs-card .visual .ic {
  font-size: 3rem;
  background-color: rgba(227, 6, 19, .85) !important;
}
.kurs-card .info {
  padding: 18px 22px 20px;
}
.kurs-card .info h3 {
  margin: 0 0 6px;
  color: var(--c-charcoal-deep);
  font-size: 1.1rem;
}
.kurs-card .info .zielgruppe {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 8px;
}
.kurs-card .info p {
  margin: 0 0 10px;
  font-size: .9rem;
  color: var(--c-graphite);
  line-height: 1.5;
}
.kurs-card .info .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  padding-top: 10px;
  border-top: 1px solid var(--c-grey-100);
  font-size: .78rem;
  color: var(--c-grey-500);
}
.kurs-card .info .meta strong { color: var(--c-charcoal-deep); }

@media (max-width: 900px) {
  .kurs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .kurs-card { grid-template-columns: 100px 1fr; }
  .kurs-card .visual .ic { font-size: 2rem; }
}

/* Kurs-Bild auf Detailseite */
.kurs-bild {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--c-grey-100);
}
.kurs-bild img { width: 100%; height: auto; display: block; }

/* =====================================================
   JUGEND-GRID – 4 Spalten für viele Mannschaften
   ===================================================== */
.team-grid.jugend {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.team-grid.jugend .team-card {
  grid-template-columns: 90px 1fr;
}
.team-grid.jugend .team-card .visual {
  padding: 14px;
}
.team-grid.jugend .team-card .visual .number {
  font-size: 1.6rem;
}
.team-grid.jugend .team-card .visual .label {
  font-size: .6rem;
}
.team-grid.jugend .team-card .info {
  padding: 14px 16px;
}
.team-grid.jugend .team-card .info h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.team-grid.jugend .team-card .info .liga {
  font-size: .7rem;
  margin-bottom: 6px;
}
.team-grid.jugend .team-card .info p {
  font-size: .82rem;
  margin: 0 0 8px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.team-grid.jugend .team-card .info .meta {
  font-size: .72rem;
  padding-top: 8px;
  gap: 2px 10px;
}

@media (max-width: 1100px) { .team-grid.jugend { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .team-grid.jugend { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .team-grid.jugend { grid-template-columns: 1fr; } }

/* Trainer-Card: zusätzliche Kontakt-Zeilen */
.trainer-card .info .contact {
  font-size: .82rem;
  color: var(--c-graphite);
  margin-top: 4px;
  font-family: var(--font-mono);
}

/* =====================================================
   KURS- / ABTEILUNGS-DETAIL: Layout (breit, einheitlich)
   ===================================================== */
.kurs-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 48px;
  gap: 48px;
}
@media (max-width: 900px) {
  .kurs-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Mitmachen-Card als CSS-Klasse statt Inline-Styles */
.kurs-mitmachen-card {
  background: var(--c-charcoal-deep);
  color: white;
  padding: 28px;
  border-radius: var(--r);
  position: -webkit-sticky;
  position: sticky;
  top: 24px;
  align-self: start;
}
/* Aside-Container selbst soll oben beginnen, nicht stretchen */
.kurs-detail-grid > aside {
  align-self: start;
}
.kurs-mitmachen-card .kurs-mitmachen-label {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .15em;
  color: var(--c-red);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.kurs-mitmachen-card h3 {
  color: white;
  font-size: 1.25rem;
  margin: 0 0 12px;
}
.kurs-mitmachen-card p {
  color: rgba(255,255,255,.75);
  font-size: .92rem;
  margin: 0 0 18px;
}
.kurs-mitmachen-card .kurs-mitmachen-row {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .85rem;
}
.kurs-mitmachen-card .kurs-mitmachen-row .label {
  color: rgba(255,255,255,.55);
  margin-bottom: 4px;
}
.kurs-mitmachen-card .kurs-mitmachen-row .value {
  color: white;
}

/* =====================================================
   KURS VOLL BELEGT - Hinweis-Banner
   ===================================================== */
.kurs-belegt-hinweis {
  margin-top: 24px;
  margin-bottom: 0;
  padding: 18px 22px;
  background: rgba(227, 6, 19, 0.07);
  border-left: 3px solid var(--c-red);
  border-radius: var(--r);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.kurs-belegt-icon {
  color: var(--c-red);
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 2px;
}
.kurs-belegt-text {
  font-size: .95rem;
  color: var(--c-charcoal-deep);
}
.kurs-belegt-text strong {
  display: block;
  margin-bottom: 4px;
  color: var(--c-charcoal-deep);
  font-weight: 700;
}

/* =====================================================
   KURS-/ABTEILUNGS-GALERIE
   ===================================================== */
.kurs-galerie {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  gap: 24px;
}
@media (max-width: 900px) { .kurs-galerie { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .kurs-galerie { grid-template-columns: 1fr; } }

.kurs-galerie figure {
  margin: 0;
  background: white;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(17, 24, 39, .04);
  transition: transform .25s, box-shadow .25s;
}
.kurs-galerie figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(17, 24, 39, .1);
}
.kurs-galerie .frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-grey-100);
}
.kurs-galerie .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kurs-galerie figcaption {
  padding: 14px 18px 18px;
  font-size: .88rem;
  color: var(--c-graphite);
  line-height: 1.45;
}

/* =====================================================
   ARTICLE-BODY: fett/strong sichtbar machen
   ===================================================== */
.article-body strong { font-weight: 700; color: inherit; }
.article-body em { font-style: italic; }
.article-body a { color: var(--c-red); text-decoration: underline; text-underline-offset: 2px; }
.article-body h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: .02em;
  color: var(--c-charcoal-deep);
}
.article-body ul, .article-body ol {
  margin: 0 0 16px 1.5em;
  padding: 0;
}
.article-body li {
  margin-bottom: 6px;
  line-height: 1.6;
}

/* News-Detail: fett im Artikel */
.article p strong { font-weight: 700; }
.article p em { font-style: italic; }
.article p a { color: var(--c-red); text-decoration: underline; text-underline-offset: 2px; }

/* =====================================================
   MITGLIEDSCHAFT: Beitragstabelle
   ===================================================== */
.beitrag-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 0;
  font-size: .95rem;
}
.beitrag-table tr {
  border-bottom: 1px solid var(--c-grey-100);
}
.beitrag-table tr:last-child {
  border-bottom: 2px solid var(--c-charcoal-deep);
}
.beitrag-table td {
  padding: 12px 8px;
  vertical-align: middle;
  color: var(--c-charcoal);
}
.beitrag-table td:first-child {
  width: 60%;
}
.beitrag-table td.num {
  text-align: right;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  white-space: nowrap;
}
.beitrag-table td.num:last-child {
  font-weight: 700;
  color: var(--c-charcoal-deep);
}
.beitrag-table td em {
  font-style: italic;
  color: var(--c-graphite);
}
.beitrag-table td .hint {
  display: block;
  font-size: .82rem;
  color: var(--c-grey-500);
  margin-top: 2px;
}

/* =====================================================
   FIX: Aside ohne Bild – kein riesiger Whitespace
   Wenn die Mitmachen-Card alleine in der Aside steht, soll
   sie direkt unter der Quick-Info-Bar starten und nicht durch
   sticky-Position erst nach dem Header erscheinen.
   ===================================================== */
.kurs-detail-grid {
  align-items: start;
}
.kurs-detail-grid > aside {
  align-self: start;
  position: relative;
  min-height: 1px;
}

/* =====================================================
   FIX: Sections rücken zusammen wenn Quick-Info-Bar
   direkt vor dem Hauptinhalt steht. Wir reduzieren
   gezielt den Abstand zwischen den beiden Sections.
   ===================================================== */
section.section--quickinfo {
  padding-top: 0 !important;
  padding-bottom: 8px !important;
}
section.section--quickinfo + section.section,
section.section--quickinfo + section.section.alt {
  padding-top: 32px;
}

/* Variante der Mitmachen-Card für voll-belegte Kurse: dezenter, ohne CTA */
.kurs-mitmachen-card.kurs-mitmachen-card--info {
  padding: 22px;
}
.kurs-mitmachen-card.kurs-mitmachen-card--info p {
  margin-bottom: 0;
}

/* =====================================================
   MITGLIEDSCHAFT: Block-Layout responsive
   ===================================================== */
@media (max-width: 800px) {
  .mitglied-blocks {
    grid-template-columns: 1fr !important;
  }
}

/* link-list (für Satzungs-Downloads) */
.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.link-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--c-grey-100);
}
.link-list li:last-child { border-bottom: none; }
.link-list a {
  color: var(--c-charcoal-deep);
  font-weight: 500;
  text-decoration: none;
  display: block;
  transition: color .2s;
}
.link-list a:hover {
  color: var(--c-red);
}

/* =====================================================
   TRAINER-LISTE (Pill-Tags, ähnlich svbadbentheim.de)
   ===================================================== */
.trainer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trainer-list li {
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-left: 3px solid var(--c-red);
  padding: 10px 16px;
  border-radius: var(--r);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--c-charcoal-deep);
  font-size: .92rem;
  box-shadow: var(--shadow-sm);
}

/* =====================================================
   KURS-CARD: voll-belegt-Flag
   ===================================================== */
.kurs-card-flags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.kurs-card-flags .flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.kurs-card-flags .flag--voll {
  background: var(--c-charcoal-deep);
  color: white;
  border: 1px solid var(--c-red);
}
.kurs-card-flags .flag--voll::before {
  content: '●';
  color: var(--c-red);
  font-size: 1rem;
  line-height: 0;
}

/* =====================================================
   KURS-MITMACHEN-CARD: alignment wenn kein Bild oben drüber
   Padding-top kompensiert den fehlenden Bild-Block, sodass
   die Card-Top-Kante mit dem ersten H2 ("Über den Kurs")
   im linken Grid-Item auf gleicher Höhe liegt.
   ===================================================== */
.kurs-mitmachen-card.kurs-mitmachen-card--align-content {
  margin-top: 56px;
}
@media (max-width: 900px) {
  .kurs-mitmachen-card.kurs-mitmachen-card--align-content {
    margin-top: 0;
  }
}

/* =====================================================
   JOBS / STELLEN - Kachel-Layout
   ===================================================== */
.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  grid-gap: 24px;
  gap: 24px;
}
.job-card {
  position: relative;
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r);
  padding: 28px 26px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -16px rgba(17, 24, 39, .25);
}
.job-card-flag {
  position: absolute;
  top: 18px;
  right: -6px;
  background: var(--c-red);
  color: white;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 4px 12px -4px rgba(227, 6, 19, .55);
}
.job-card-flag::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -6px;
  border-style: solid;
  border-width: 0 6px 6px 0;
  border-color: transparent var(--c-red-deep, #b8050f) transparent transparent;
}
.job-card-cat {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-red);
  font-weight: 700;
  margin-bottom: 10px;
}
.job-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--c-charcoal-deep);
  margin: 0 0 12px;
  line-height: 1.2;
}
.job-card-intro {
  color: var(--c-graphite);
  font-size: .95rem;
  line-height: 1.55;
  margin: 0 0 20px;
}
.job-card-meta {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-gap: 6px 16px;
  gap: 6px 16px;
  margin: 0 0 20px;
  padding: 14px 0;
  border-top: 1px solid var(--c-grey-100);
  border-bottom: 1px solid var(--c-grey-100);
}
.job-card-meta dt {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-grey-500);
  align-self: center;
}
.job-card-meta dd {
  margin: 0;
  font-size: .9rem;
  color: var(--c-charcoal-deep);
  font-weight: 500;
}
.job-card-meta dd a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed var(--c-grey-200, #d1d5db);
}
.job-card-meta dd a:hover { color: var(--c-red); }
.job-card-vorauss {
  margin: 0 0 20px;
  padding: 14px 16px;
  background: var(--c-cream, #f6f4ee);
  border-left: 3px solid var(--c-red);
  border-radius: 4px;
  font-size: .88rem;
  line-height: 1.5;
}
.job-card-vorauss strong {
  display: block;
  font-family: var(--font-display);
  font-size: .82rem;
  color: var(--c-charcoal-deep);
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.job-card-vorauss p {
  margin: 0;
  color: var(--c-graphite);
}
.job-card-actions {
  margin-top: auto;
}
.job-card-kontakt {
  margin-top: 14px;
  font-size: .82rem;
  color: var(--c-grey-500);
  text-align: right;
}
.job-card-kontakt a {
  color: var(--c-charcoal-deep);
  text-decoration: none;
  border-bottom: 1px dashed var(--c-grey-200, #d1d5db);
}
.job-card-kontakt a:hover { color: var(--c-red); }

@media (max-width: 600px) {
  .job-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   TERMINE-SEITE: Block-Optik mit Datum-Badge + Info
   ===================================================== */
.termine-monat {
  margin-bottom: 56px;
}
.termine-monat:last-child { margin-bottom: 0; }
.termine-monat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 2px solid var(--c-charcoal-deep);
  padding-bottom: 10px;
  margin-bottom: 24px;
}
.termine-monat-head h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--c-charcoal-deep);
  margin: 0;
}
.termine-monat-head span {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-grey-500);
}
.termine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  grid-gap: 20px;
  gap: 20px;
}
.termin-block {
  display: grid;
  grid-template-columns: 92px 1fr;
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.termin-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -16px rgba(17, 24, 39, .25);
}
.termin-datum {
  background: var(--c-charcoal-deep);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 8px;
  text-align: center;
  position: relative;
}
.termin-datum .tag {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.termin-datum .monat {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-red);
  font-weight: 700;
  margin-bottom: 6px;
}
.termin-datum .wochentag {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}
.termin-info {
  padding: 18px 22px 18px 22px;
}
.termin-info h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--c-charcoal-deep);
  margin: 0 0 10px;
  line-height: 1.25;
}
.termin-info p {
  color: var(--c-graphite);
  font-size: .88rem;
  line-height: 1.5;
  margin: 0 0 12px;
}
.termin-kat {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  background: var(--c-charcoal-deep);
  color: white;
}
.termin-meta {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-gap: 4px 14px;
  gap: 4px 14px;
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid var(--c-grey-100);
}
.termin-meta dt {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-grey-500);
  align-self: center;
}
.termin-meta dd {
  margin: 0;
  font-size: .85rem;
  color: var(--c-charcoal-deep);
  font-weight: 500;
}

/* Kategorien-Akzentfarben am linken Datum-Block */
.termin-block.kat-heim .termin-datum { background: linear-gradient(135deg, #14532d, #1F2937); }
.termin-block.kat-heim .termin-datum .monat { color: #4ade80; }
.termin-block.kat-heim .termin-kat { background: #14532d; }

.termin-block.kat-auswaerts .termin-datum { background: linear-gradient(135deg, #7c2d12, #1F2937); }
.termin-block.kat-auswaerts .termin-datum .monat { color: #fb923c; }
.termin-block.kat-auswaerts .termin-kat { background: #7c2d12; }

.termin-block.kat-event .termin-datum { background: linear-gradient(135deg, var(--c-red), var(--c-charcoal-deep)); }
.termin-block.kat-event .termin-kat { background: var(--c-red); }

.termin-block.kat-versammlung .termin-datum { background: linear-gradient(135deg, #1e3a8a, var(--c-charcoal-deep)); }
.termin-block.kat-versammlung .termin-datum .monat { color: #93c5fd; }
.termin-block.kat-versammlung .termin-kat { background: #1e3a8a; }

.termin-block.kat-turnier .termin-datum { background: linear-gradient(135deg, #831843, var(--c-charcoal-deep)); }
.termin-block.kat-turnier .termin-datum .monat { color: #f9a8d4; }
.termin-block.kat-turnier .termin-kat { background: #831843; }

.termin-block.kat-training .termin-kat { background: var(--c-grey-700, #4b5563); }

@media (max-width: 700px) {
  .termine-grid { grid-template-columns: 1fr; }
  .termin-block { grid-template-columns: 80px 1fr; }
}

/* Filter-Chip mit Anzahl-Badge */
.filter-chip .filter-count {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 8px;
  border-radius: 999px;
  background: var(--c-grey-100);
  color: var(--c-grey-500);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 600;
  vertical-align: middle;
  transition: background .2s, color .2s;
}
.filter-chip.active .filter-count {
  background: rgba(255, 255, 255, .25);
  color: white;
}

/* =====================================================
   FANSHOP-BANNER: Bild rechts (statt 3 SVG-Produkten)
   ===================================================== */
.fanshop-teaser .fanshop-image {
  border-radius: var(--r);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,0));
}
.fanshop-teaser .fanshop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r);
  display: block;
  min-height: 280px;
}
.fanshop-teaser .fanshop-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .35);
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 60px 20px;
  border: 2px dashed rgba(255, 255, 255, .15);
  border-radius: var(--r);
  width: 100%;
  text-align: center;
}

/* =====================================================
   KONTAKT-FORMULAR (Geschäftsstelle, optional andere)
   ===================================================== */
.kontakt-formular {
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r);
  padding: 32px 32px 28px;
  box-shadow: var(--shadow-sm);
}
.kontakt-row {
  margin-bottom: 18px;
}
.kontakt-row label {
  display: block;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-charcoal-deep);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.kontakt-row label .req { color: var(--c-red); }
.kontakt-row input,
.kontakt-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-grey-200, #d1d5db);
  border-radius: 6px;
  font-family: var(--font-body, var(--font-display));
  font-size: .95rem;
  background: white;
  color: var(--c-charcoal-deep);
  transition: border-color .2s, box-shadow .2s;
}
.kontakt-row input:focus,
.kontakt-row textarea:focus {
  outline: none;
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, .12);
}
.kontakt-row textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.kontakt-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.kontakt-actions button {
  border: none;
  cursor: pointer;
}
.kontakt-hint {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .04em;
}
.kontakt-hint--ok { color: #15803d; }
.kontakt-hint--err { color: var(--c-red); }
.kontakt-info {
  margin: 16px 0 0;
  font-size: .8rem;
  color: var(--c-grey-500);
}
.kontakt-info a {
  color: var(--c-charcoal-deep);
  border-bottom: 1px dashed currentColor;
  text-decoration: none;
}
.kontakt-info a:hover { color: var(--c-red); border-color: var(--c-red); }

/* =====================================================
   MOBILE-DRAWER (Burgermenü)
   ===================================================== */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: white;
  position: relative;
  z-index: 110;
}
.mobile-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: white;
  margin: 5px 0;
  transition: transform .25s, opacity .2s;
  transform-origin: center;
}
.mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}
.mobile-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, .55);
  opacity: 0;
  transition: opacity .3s;
}
.mobile-drawer.is-open .mobile-drawer-backdrop { opacity: 1; }

.mobile-drawer-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: min(86vw, 360px);
  height: 100%;
  background: var(--c-charcoal-deep);
  color: white;
  transform: translateX(-100%);
  transition: transform .3s ease-out;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: 10px 0 30px rgba(0, 0, 0, .2);
}
.mobile-drawer.is-open .mobile-drawer-nav { transform: translateX(0); }

.mobile-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.mobile-drawer-head .logo {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-drawer-head .crest {
  width: 36px;
  height: 36px;
  background-image: url('/svbb-wappen.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.mobile-drawer-head .wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.mobile-drawer-head .wordmark small {
  display: block;
  font-size: .58rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .12em;
  margin-top: 2px;
}
.mobile-close {
  background: none;
  border: 1px solid rgba(255, 255, 255, .15);
  color: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-drawer-list {
  list-style: none;
  margin: 0;
  padding: 12px 0;
}
.mobile-drawer-list li a {
  display: block;
  padding: 14px 24px;
  color: white;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .03em;
  border-left: 3px solid transparent;
  transition: background .15s, border-color .15s;
}
.mobile-drawer-list li a:hover {
  background: rgba(255, 255, 255, .04);
  border-left-color: var(--c-red);
}
.mobile-drawer-cta {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.mobile-drawer-cta .btn-cta {
  display: block;
  text-align: center;
  width: 100%;
}
.mobile-drawer-sublist {
  list-style: none;
  margin: 0;
  padding: 18px 0 30px;
}
.mobile-drawer-sublist li a {
  display: block;
  padding: 9px 24px;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: .85rem;
  font-family: var(--font-mono);
  letter-spacing: .04em;
}
.mobile-drawer-sublist li a:hover { color: white; }

/* Mobile-Header-Anpassungen */
@media (max-width: 900px) {
  .mobile-toggle { display: block; }
  .main-nav { display: none; }
  .header-cta { display: none !important; }
  .topbar { display: none; }
}
/* Auf Desktop ist der Drawer immer aus */
@media (min-width: 901px) {
  .mobile-drawer { display: none; }
}

/* =====================================================
   MOBILE: Quick-Info-Bar nach oben in den Header ragen
   (Abteilungs-/Kurs-/Mannschafts-/Termine-/Mitglied-/Jobs-Seiten)
   ===================================================== */
@media (max-width: 700px) {
  .abt-meta-bar {
    margin-top: -32px;
  }
  /* Auch Quick-Info-Sections die selbst margin definieren */
  section.section--quickinfo {
    padding-top: 0 !important;
  }
}

/* =====================================================
   MOBILE: Magazin- und Fanshop-Banner ohne Bild
   ===================================================== */
@media (max-width: 800px) {
  .magazin-teaser .cover { display: none; }
  .fanshop-teaser .fanshop-image { display: none; }
  .magazin-teaser, .fanshop-teaser {
    grid-template-columns: 1fr !important;
  }
}

/* =====================================================
   MOBILE: Geschäftsstelle Kontakt-Grid 1-spaltig
   ===================================================== */
@media (max-width: 800px) {
  .kontakt-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

/* =====================================================
   SVBaktuell-Cover als anklickbares Bild (Startseite)
   ===================================================== */
.magazin-teaser .cover.cover--has-image {
  padding: 0;
  overflow: hidden;
  display: block;
  text-decoration: none;
  border-radius: var(--r);
  background: rgba(255, 255, 255, .04);
  transition: transform .2s;
}
.magazin-teaser .cover.cover--has-image:hover {
  transform: translateY(-3px);
}
.magazin-teaser .cover.cover--has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--r);
  min-height: 280px;
}

/* =====================================================
   MOBILE-HEADER-LAYOUT: Burger links vor Logo
   - Auf Desktop: Burger ist hidden, Grid bleibt 3-spaltig (Logo | Nav | CTA)
   - Auf Mobile: 2 sichtbare Elemente (Burger | Logo), Nav + CTA hidden
   ===================================================== */
@media (max-width: 900px) {
  .site-header .row {
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
  }
  .site-header .logo {
    justify-self: start;
  }
}

/* =====================================================
   VIDEO-SECTION
   ===================================================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  grid-gap: 28px;
  gap: 28px;
}
.video-card {
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(17, 24, 39, .25);
}
.video-card:hover .video-thumb img {
  transform: scale(1.04);
}
.video-card:hover .video-play {
  background: var(--c-red);
  transform: translate(-50%, -50%) scale(1.05);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--c-charcoal-deep);
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.video-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-charcoal-deep), var(--c-charcoal));
  color: rgba(255, 255, 255, .15);
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(227, 6, 19, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
  transition: transform .25s, background .2s;
  pointer-events: none;
}
.video-play svg { margin-left: 4px; filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .3)); }
.video-duration {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(17, 24, 39, .82);
  color: white;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 3px;
  letter-spacing: .04em;
}
.video-source {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(255, 255, 255, .92);
  color: var(--c-charcoal-deep);
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 3px;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.video-source.is-youtube {
  background: rgba(227, 6, 19, .92);
  color: white;
}

.video-card .body {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1 1;
}
.video-card .cat {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-red);
  font-weight: 700;
  margin-bottom: 10px;
}
.video-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--c-charcoal-deep);
  margin: 0 0 10px;
  line-height: 1.25;
}
.video-card .excerpt {
  color: var(--c-graphite);
  font-size: .9rem;
  line-height: 1.5;
  margin: 0 0 14px;
  flex: 1 1;
}
.video-card .meta {
  display: flex;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--c-grey-500);
  letter-spacing: .03em;
  padding-top: 12px;
  border-top: 1px solid var(--c-grey-100);
}

/* Featured */
.video-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-gap: 0;
  gap: 0;
  background: var(--c-paper);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 48px;
  border: 1px solid var(--c-grey-100);
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s;
}
.video-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(17, 24, 39, .25);
}
.video-featured .video-thumb {
  aspect-ratio: auto;
  height: 100%;
  min-height: 360px;
}
.video-featured .body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-featured h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--c-charcoal-deep);
  line-height: 1.15;
  margin: 12px 0 18px;
}
.video-featured .excerpt {
  font-size: 1.02rem;
  color: var(--c-graphite);
  line-height: 1.55;
  margin-bottom: 24px;
}
.video-featured .meta {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--c-grey-500);
  letter-spacing: .04em;
}

/* Video-Detailseite */
.video-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-gap: 48px;
  gap: 48px;
  align-items: start;
}
.video-player-wrap {
  position: relative;
  background: var(--c-charcoal-deep);
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.video-player-wrap video,
.video-player-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* Two-Click-Lösung für YouTube/Vimeo (DSGVO) */
.video-consent {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-charcoal-deep), var(--c-charcoal));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  border: none;
  color: white;
  width: 100%;
}
.video-consent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, .82);
}
.video-consent > * {
  position: relative;
  z-index: 1;
  color: white;
}
.video-consent .icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 12px 32px rgba(227, 6, 19, .4);
  transition: transform .2s, background .2s;
}
.video-consent:hover .icon {
  transform: scale(1.06);
}
.video-consent .source {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 10px;
}
.video-consent h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 12px;
  color: white;
}
.video-consent p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .8);
  max-width: 420px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.video-consent-button {
  background: var(--c-red);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background .2s;
  display: inline-block;
}
.video-consent:hover .video-consent-button {
  background: var(--c-red-deep, #b8050f);
}

.video-detail-meta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--c-grey-100);
}
.video-detail-meta .pill {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}
.video-detail-meta .pill--cat {
  background: var(--c-red);
  color: white;
}
.video-detail-meta .pill--abt {
  background: var(--c-charcoal-deep);
  color: white;
}
.video-detail-meta .info {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--c-grey-500);
  letter-spacing: .04em;
}
.video-detail-text {
  margin-top: 28px;
}
.video-detail-text h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--c-charcoal-deep);
  line-height: 1.15;
  margin: 0 0 20px;
}
.video-detail-text .lead {
  font-size: 1.1rem;
  color: var(--c-graphite);
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 500;
}
.video-detail-text p {
  font-size: 1rem;
  color: var(--c-charcoal);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Sidebar */
.video-sidebar h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--c-charcoal-deep);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-charcoal-deep);
}
.video-related-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.video-related {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-gap: 12px;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  background: var(--c-paper);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.video-related:hover {
  transform: translateX(2px);
  border-color: var(--c-red);
}
.video-related .thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--c-charcoal-deep);
}
.video-related .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-related .thumb .duration {
  position: absolute;
  right: 5px;
  bottom: 5px;
  background: rgba(17, 24, 39, .85);
  color: white;
  font-family: var(--font-mono);
  font-size: .65rem;
  padding: 2px 6px;
  border-radius: 2px;
}
.video-related .info {
  padding: 10px 12px 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-related .cat {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-red);
  font-weight: 700;
  margin-bottom: 4px;
}
.video-related h4 {
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--c-charcoal-deep);
  margin: 0;
  line-height: 1.25;
}

@media (max-width: 1000px) {
  .video-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .video-featured { grid-template-columns: 1fr; }
  .video-featured .video-thumb { aspect-ratio: 16 / 9; min-height: auto; }
  .video-featured .body { padding: 26px 24px 30px; }
  .video-featured h2 { font-size: 1.5rem; }
}
@media (max-width: 700px) {
  .video-detail-text h1 { font-size: 1.6rem; }
}

/*!***********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./app/icons.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************/
/* =====================================================
   SVB Sport-Icons · linienbasiert
   ----------------------------------------------------
   Ein einheitliches Set an SVG-Icons für alle 18
   Abteilungen. Alle nutzen denselben Stroke-Weight,
   denselben viewBox-Bereich (24×24 Standard) und
   die Vereinsfarbe Rot per currentColor.
   ----------------------------------------------------
   Verwendung im HTML:
     <span class="ic" data-ic="badminton"></span>
   Das CSS injiziert das passende SVG per
   background-image oder mask-image.
   ===================================================== */

.ic {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: currentColor;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  color: var(--c-red);
  transition: color .25s, background-color .25s;
  flex-shrink: 0;
}

/* ICONS – inline SVG via data-URI, mit currentColor stroke */

.ic.ic-badminton {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M14 4 a6 6 0 0 1 6 6 a6 6 0 0 1 -6 6 a6 6 0 0 1 -6 -6 a6 6 0 0 1 6 -6 z'/><line x1='9.5' y1='14.5' x2='3' y2='21'/><path d='M10.5 5 L18 12.5 M9.5 7.5 L16.5 14.5 M14 4.5 L19.5 10' stroke-width='0.7'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M14 4 a6 6 0 0 1 6 6 a6 6 0 0 1 -6 6 a6 6 0 0 1 -6 -6 a6 6 0 0 1 6 -6 z'/><line x1='9.5' y1='14.5' x2='3' y2='21'/><path d='M10.5 5 L18 12.5 M9.5 7.5 L16.5 14.5 M14 4.5 L19.5 10' stroke-width='0.7'/></svg>");
}

.ic.ic-boule {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='6.5' cy='15' r='4' fill='black'/><circle cx='5' cy='13.5' r='1' fill='white'/><circle cx='15.5' cy='14' r='5' fill='black'/><circle cx='13.5' cy='12' r='1.3' fill='white'/><circle cx='12' cy='6' r='1.5' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='6.5' cy='15' r='4' fill='black'/><circle cx='5' cy='13.5' r='1' fill='white'/><circle cx='15.5' cy='14' r='5' fill='black'/><circle cx='13.5' cy='12' r='1.3' fill='white'/><circle cx='12' cy='6' r='1.5' fill='black'/></svg>");
}

.ic.ic-er-und-sie {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='8' cy='6' r='2.5'/><path d='M4 20 L4 14 a4 4 0 0 1 8 0 L12 20'/><circle cx='16' cy='6' r='2.5'/><path d='M14 20 L14 14 L13.5 11 L18.5 11 L18 14 L18 20 M16 14 L16 20'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='8' cy='6' r='2.5'/><path d='M4 20 L4 14 a4 4 0 0 1 8 0 L12 20'/><circle cx='16' cy='6' r='2.5'/><path d='M14 20 L14 14 L13.5 11 L18.5 11 L18 14 L18 20 M16 14 L16 20'/></svg>");
}

.ic.ic-fitness {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M3 9 L3 15 M5 7 L5 17 M7 5 L7 19 M17 5 L17 19 M19 7 L19 17 M21 9 L21 15 M7 12 L17 12'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M3 9 L3 15 M5 7 L5 17 M7 5 L7 19 M17 5 L17 19 M19 7 L19 17 M21 9 L21 15 M7 12 L17 12'/></svg>");
}

.ic.ic-fussball {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><polygon points='12,8 8.5,10.5 10,14.5 14,14.5 15.5,10.5'/><line x1='12' y1='8' x2='12' y2='3'/><line x1='15.5' y1='10.5' x2='20.5' y2='9'/><line x1='14' y1='14.5' x2='17' y2='19'/><line x1='10' y1='14.5' x2='7' y2='19'/><line x1='8.5' y1='10.5' x2='3.5' y2='9'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><polygon points='12,8 8.5,10.5 10,14.5 14,14.5 15.5,10.5'/><line x1='12' y1='8' x2='12' y2='3'/><line x1='15.5' y1='10.5' x2='20.5' y2='9'/><line x1='14' y1='14.5' x2='17' y2='19'/><line x1='10' y1='14.5' x2='7' y2='19'/><line x1='8.5' y1='10.5' x2='3.5' y2='9'/></svg>");
}

.ic.ic-gesundheit {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M12 21 C 12 21 3 14.5 3 8.5 a 5 5 0 0 1 9 -3 a 5 5 0 0 1 9 3 c 0 6 -9 12.5 -9 12.5 Z'/><path d='M3 12 L8 12 L10 9 L13 15 L15 12 L21 12'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M12 21 C 12 21 3 14.5 3 8.5 a 5 5 0 0 1 9 -3 a 5 5 0 0 1 9 3 c 0 6 -9 12.5 -9 12.5 Z'/><path d='M3 12 L8 12 L10 9 L13 15 L15 12 L21 12'/></svg>");
}

.ic.ic-handball {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><path d='M12 3 L12 21 M3 12 L21 12 M5.6 5.6 L18.4 18.4 M18.4 5.6 L5.6 18.4'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><path d='M12 3 L12 21 M3 12 L21 12 M5.6 5.6 L18.4 18.4 M18.4 5.6 L5.6 18.4'/></svg>");
}

.ic.ic-karate {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='6' cy='5' r='1.5'/><path d='M6 6.5 L6 12 M6 9 L11 9 M6 12 L4 17 M6 12 L8 17'/><circle cx='18' cy='5' r='1.5'/><path d='M18 6.5 L18 12 M18 9 L13 9 M18 12 L16 17 M18 12 L20 17'/><line x1='11' y1='9' x2='13' y2='9' stroke-width='2.5'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='6' cy='5' r='1.5'/><path d='M6 6.5 L6 12 M6 9 L11 9 M6 12 L4 17 M6 12 L8 17'/><circle cx='18' cy='5' r='1.5'/><path d='M18 6.5 L18 12 M18 9 L13 9 M18 12 L16 17 M18 12 L20 17'/><line x1='11' y1='9' x2='13' y2='9' stroke-width='2.5'/></svg>");
}

.ic.ic-schach {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M9 3 L13 3 C 17 3 19 6 19 11 L 19 17 L 7 17 L 7 14 C 7 12 8 11 9 11 L 11 11 L 8 8 L 6 10 L 5 8 L 8 5 Z'/><path d='M5 17 L19 17 L20 21 L4 21 Z'/><circle cx='10.5' cy='7' r='0.6' fill='black' stroke='none'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M9 3 L13 3 C 17 3 19 6 19 11 L 19 17 L 7 17 L 7 14 C 7 12 8 11 9 11 L 11 11 L 8 8 L 6 10 L 5 8 L 8 5 Z'/><path d='M5 17 L19 17 L20 21 L4 21 Z'/><circle cx='10.5' cy='7' r='0.6' fill='black' stroke='none'/></svg>");
}

.ic.ic-schwimmen {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='17' cy='7' r='2'/><path d='M3 14 q 3 -2 6 0 t 6 0 t 6 0 M3 18 q 3 -2 6 0 t 6 0 t 6 0 M5 11 L11 7 L15 11'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='17' cy='7' r='2'/><path d='M3 14 q 3 -2 6 0 t 6 0 t 6 0 M3 18 q 3 -2 6 0 t 6 0 t 6 0 M5 11 L11 7 L15 11'/></svg>");
}

.ic.ic-tanzen {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='8' cy='4' r='1.8'/><path d='M8 6 L8 11 L5 13 M8 11 L11 13 L11 17 M11 17 L8 22 M11 17 L13 21'/><circle cx='17' cy='5' r='1.5'/><path d='M17 6.5 L17 11 L13 12 M17 11 L19 14 L17 18 L19 22'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='8' cy='4' r='1.8'/><path d='M8 6 L8 11 L5 13 M8 11 L11 13 L11 17 M11 17 L8 22 M11 17 L13 21'/><circle cx='17' cy='5' r='1.5'/><path d='M17 6.5 L17 11 L13 12 M17 11 L19 14 L17 18 L19 22'/></svg>");
}

.ic.ic-tischtennis {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><ellipse cx='10' cy='10' rx='5.5' ry='5.5'/><path d='M11.5 13.5 L20 22 a 1.5 1.5 0 0 1 -2 0 L11 14.5 Z' fill='black' stroke='none'/><line x1='11.5' y1='13.5' x2='20' y2='22'/><circle cx='17.5' cy='5.5' r='1.6' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><ellipse cx='10' cy='10' rx='5.5' ry='5.5'/><path d='M11.5 13.5 L20 22 a 1.5 1.5 0 0 1 -2 0 L11 14.5 Z' fill='black' stroke='none'/><line x1='11.5' y1='13.5' x2='20' y2='22'/><circle cx='17.5' cy='5.5' r='1.6' fill='black'/></svg>");
}

.ic.ic-turnen {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='4' r='2'/><path d='M5 9 L12 6 L19 9 M12 6 L12 14 M12 14 L8 21 M12 14 L16 21'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='4' r='2'/><path d='M5 9 L12 6 L19 9 M12 6 L12 14 M12 14 L8 21 M12 14 L16 21'/></svg>");
}

.ic.ic-volleyball {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><path d='M12 3 a 14 14 0 0 1 8 16 M12 3 a 14 14 0 0 0 -8 16 M3 12 a 14 14 0 0 1 18 0'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><path d='M12 3 a 14 14 0 0 1 8 16 M12 3 a 14 14 0 0 0 -8 16 M3 12 a 14 14 0 0 1 18 0'/></svg>");
}

.ic.ic-wandern {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M3 21 L8 13 L11 17 L14 9 L21 21 Z M14 9 L17 4 L19 7'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M3 21 L8 13 L11 17 L14 9 L21 21 Z M14 9 L17 4 L19 7'/></svg>");
}

.ic.ic-yoga {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='5' r='2'/><path d='M12 7 L12 13 M5 11 L12 9 L19 11 M8 19 L12 13 L16 19 M5 19 L19 19'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='5' r='2'/><path d='M12 7 L12 13 M5 11 L12 9 L19 11 M8 19 L12 13 L16 19 M5 19 L19 19'/></svg>");
}

/* Variante für Abteilungs-Kacheln (etwas größer) */
.abt-tile .ic {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.abt-tile:hover .ic {
  color: white; /* Hover-State: Icon weiß auf Anthrazit-Hintergrund */
}

/* Für Abteilungslisten-Karten */
.abt-list-card .ic {
  width: 32px;
  height: 32px;
}

