/* ============================================================
   BSC LAUTER – Zentrale Stylesheet
   Gilt für alle Seiten der Website
   ============================================================ */

/* ======================== RESET & BASIS ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rot: #C8102E;
  --rot-dunkel: #9B0C23;
  --rot-hell: #E8213F;
  --gelb: #F9DF2A;
  --weiss: #FFFFFF;
  --grau-hell: #F5F4F2;
  --grau-mitte: #E8E6E2;
  --grau-text: #6B6860;
  --dunkel: #1A1917;
  --dunkel2: #2C2B28;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dunkel);
  background: var(--weiss);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ======================== NAVIGATION ======================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--dunkel);
  border-bottom: 3px solid var(--rot-dunkel);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin-top: 8px;
  margin-bottom: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--weiss); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--weiss); }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dunkel);
  border-top: 2px solid var(--rot);
  border-radius: 0 0 var(--radius) var(--radius);
  list-style: none;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}

.nav-dropdown .dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  border-radius: 0;
}

.nav-dropdown .dropdown-menu li a:hover { background: rgba(255,255,255,0.06); color: var(--weiss); }
.nav-dropdown:hover .dropdown-menu { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--weiss);
  border-radius: 2px;
  transition: 0.3s;
}

/* ======================== TICKER ======================== */
.ticker { background: var(--rot); padding: 10px 0; }

.ticker-static {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 48px;
  padding: 0 24px;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.ticker-dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

/* ======================== LAYOUT GRUNDLAGEN ======================== */
section { padding: 80px 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rot);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--dunkel);
  margin-bottom: 40px;
}

/* ======================== BUTTONS & LINKS ======================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rot);
  color: var(--weiss);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: var(--rot-hell); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--weiss); transform: translateY(-1px); }

.link-more {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rot);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  margin-top: 15px;
}

.link-more:hover { gap: 10px; }

/* ======================== SCROLL ANIMATION ======================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ======================== BILD PLATZHALTER ======================== */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  color: var(--grau-text);
}

.img-placeholder-icon { font-size: 48px; opacity: 0.3; }

.img-placeholder-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.4;
  text-align: center;
  line-height: 1.5;
}

/* ======================== PAGE HERO (alle Unterseiten) ======================== */
.page-hero {
  background: var(--dunkel);
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: var(--rot);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.09;
}

.page-hero-deco {
  position: absolute;
  bottom: -10px;
  right: 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 200px;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }

.breadcrumb a, .breadcrumb span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
}

.breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb span { color: rgba(255,255,255,0.7); }

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 96px);
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--weiss);
  margin-bottom: 20px;
}

.page-hero h1 em { display: block; font-style: normal; color: var(--rot-hell); }

.page-hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 540px;
  line-height: 1.65;
}

/* ======================== INPAGE NAVIGATION ======================== */
.page-nav {
  background: var(--dunkel2);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: sticky;
  top: 90px;
  z-index: 90;
}

.page-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  overflow-x: auto;
}

.page-nav-inner::-webkit-scrollbar { display: none; }

.page-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  padding: 16px 20px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.page-nav a:hover { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.2); }
.page-nav a.active { color: var(--weiss); border-bottom-color: var(--rot); }

/* ======================== FOOTER ======================== */
footer {
  background: var(--dunkel);
  border-top: 3px solid var(--rot);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 220px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--weiss); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--weiss); }

/* ======================== STARTSEITE – HERO ======================== */
.hero {
  min-height: 100vh;
  background: var(--dunkel);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: var(--rot);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.12;
}

.hero-year {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(180px, 25vw, 340px);
  color: rgba(255,255,255,0.03);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.hero-inner { max-width: 1200px; margin: 0 auto; padding: 80px 24px; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,16,46,0.2);
  border: 1px solid rgba(200,16,46,0.5);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--rot-hell);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-badge span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 9vw, 110px);
  line-height: 0.9;
  color: var(--weiss);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.hero h1 em { display: block; font-style: normal; color: var(--rot-hell); }

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin: 24px 0 40px;
  max-width: 480px;
  line-height: 1.6;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 40px;
  color: var(--weiss);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* ======================== STARTSEITE – NEWS ======================== */
.news-section { background: var(--grau-hell); }

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.news-header .section-title { margin-bottom: 0; }

.news-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; }

.news-card {
  background: var(--weiss);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}

.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.news-card-img {
  aspect-ratio: 16/9;
  background: var(--grau-mitte);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.news-card-img img { width: 100%; height: 100%; object-fit: cover; }

.news-card-img-placeholder {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  color: rgba(200,16,46,0.12);
  text-transform: uppercase;
}

.news-card-featured .news-card-img { aspect-ratio: 16/10; }

.news-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.news-card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }

.news-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rot);
  background: rgba(200,16,46,0.08);
  padding: 3px 10px;
  border-radius: 100px;
}

.news-date { font-size: 12px; color: var(--grau-text); }

.news-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--dunkel);
  margin-bottom: 8px;
}

.news-card-featured h3 { font-size: 24px; }
.news-card p { font-size: 14px; color: var(--grau-text); line-height: 1.6; flex: 1; }

/* ======================== STARTSEITE – BFV WIDGETS ======================== */
.fixtures-section { background: var(--dunkel); }
.fixtures-section .section-label { color: rgba(200,16,46,0.8); }
.fixtures-section .section-title { color: var(--weiss); }

.fixtures-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.widget-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.widget-box-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.widget-box-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--weiss);
}

.widget-box-body { padding: 20px; min-height: 200px; }

.bfv-widget-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  gap: 12px;
}

.bfv-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,16,46,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bfv-icon svg { width: 24px; height: 24px; fill: var(--rot-hell); }

.bfv-placeholder-text { font-size: 13px; color: rgba(255,255,255,0.3); text-align: center; line-height: 1.5; }

.bfv-placeholder-text strong {
  display: block;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.bfv-iframe-wrapper iframe { width: 100%; border: none; border-radius: var(--radius); }

/* ======================== STARTSEITE – VEREIN SEKTION ======================== */
.verein-section { background: var(--weiss); }

.verein-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.verein-text p { color: var(--grau-text); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }

.verein-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }

.fact-card {
  background: var(--grau-hell);
  border-radius: var(--radius-lg);
  padding: 20px;
  border-left: 3px solid var(--rot);
}

.fact-card-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--dunkel);
  line-height: 1;
  margin-bottom: 4px;
}

.fact-card-label { font-size: 13px; color: var(--grau-text); text-transform: uppercase; letter-spacing: 1px; }

.verein-image {
  background: var(--grau-mitte);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.verein-image img { width: 100%; height: 100%; object-fit: cover; }
.verein-image-placeholder { font-family: var(--font-display); font-weight: 900; font-size: 80px; color: rgba(200,16,46,0.1); }

/* ======================== STARTSEITE – TEAM KARTEN ======================== */
.teams-section { background: var(--grau-hell); }
.teams-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.team-card {
  background: var(--weiss);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.team-card-header {
  background: var(--dunkel);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.team-card-header::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: var(--rot);
  opacity: 0.08;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.team-badge {
  width: 52px;
  height: 52px;
  background: var(--rot);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.team-badge svg { width: 26px; height: 26px; fill: var(--weiss); }

.team-card-header h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--weiss);
  line-height: 1.1;
  z-index: 1;
}

.team-card-header h3 span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  margin-top: 2px;
}

.team-card-body { padding: 20px 24px; flex: 1; }
.team-card-body p { font-size: 14px; color: var(--grau-text); line-height: 1.6; margin-bottom: 16px; }

.team-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rot);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: gap 0.2s;
}

.team-link:hover { gap: 10px; }

/* ======================== STARTSEITE – FRANKREICH ======================== */
.france-section { 
  background: var(--weiss); 
  position: relative; 
  overflow: hidden; 
}

.france-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }

.france-flag { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; display: flex; align-items: stretch; }
.france-flag-band { flex: 1; }

.france-section .section-label { color: var(--rot); }
.france-section .section-title { color: var(--dunkel); }
.france-section p { color: var(--grau-text); font-size: 16px; line-height: 1.75; margin-bottom: 24px; }

/* ======================== VEREIN SEITE – ABOUT ======================== */
.about-section { background: var(--weiss); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text p { color: var(--grau-text); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }

.about-image {
  background: var(--grau-mitte);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* ======================== VEREIN SEITE – CHRONIK ======================== */
.chronik-section { background: var(--grau-hell); }

.timeline { position: relative; max-width: 800px; }

.timeline::before {
  content: '';
  position: absolute;
  left: 120px; /* exakt am Spaltenende */
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--grau-mitte);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px auto;
  align-items: center;
  gap: 0 32px; /* Abstand rechts vom Punkt */
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-year {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--rot);
  line-height: 1;
  text-align: right;
  white-space: nowrap;
  padding-right: 10px; /* exakt wie gap rechts */
}

.timeline-dot {
  position: absolute;
  left: 120px;
  transform: translateX(-6px) translateY(-50%);
  top: 50%;
  width: 14px;
  height: 14px;
  background: var(--weiss);
  border: 2px solid var(--rot);
  border-radius: 50%;
  z-index: 1;
}


.timeline-content {
  background: var(--weiss);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  margin-left: 12px;
}

.timeline-content h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--dunkel); margin-bottom: 6px; }
.timeline-content p { font-size: 14px; color: var(--grau-text); line-height: 1.65; }

/* ======================== VEREIN SEITE – VORSTAND ======================== */
.vorstand-section { background: var(--weiss); }
.vorstand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.vorstand-card {
  background: var(--grau-hell);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.vorstand-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.vorstand-photo {
  aspect-ratio: 3/2;
  background: var(--grau-mitte);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vorstand-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.vorstand-initials {
  width: 72px;
  height: 72px;
  background: var(--rot);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--weiss);
}

.vorstand-body { padding: 20px; }

.vorstand-role {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rot);
  margin-bottom: 4px;
}

.vorstand-name { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--dunkel); margin-bottom: 12px; }
.vorstand-contact { display: flex; flex-direction: column; gap: 6px; }

.vorstand-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grau-text);
  text-decoration: none;
  transition: color 0.2s;
}

.vorstand-contact a:hover { color: var(--rot); }
.vorstand-contact svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; opacity: 0.6; }

/* ======================== VEREIN SEITE – MITGLIED WERDEN ======================== */
.mitglied-section { background: var(--dunkel); position: relative; overflow: hidden; }

.mitglied-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: var(--rot);
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
  opacity: 0.08;
}

.mitglied-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mitglied-section .section-label { color: rgba(200,16,46,0.7); }
.mitglied-section .section-title { color: var(--weiss); margin-bottom: 20px; }
.mitglied-section p { color: rgba(255,255,255,0.5); font-size: 16px; line-height: 1.75; margin-bottom: 32px; }
.mitglied-vorteile { display: flex; flex-direction: column; gap: 12px; }

.vorteil {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
}

.vorteil-icon {
  width: 36px;
  height: 36px;
  background: rgba(200,16,46,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vorteil-icon svg { width: 18px; height: 18px; fill: var(--rot-hell); }
.vorteil-text h4 { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--weiss); margin-bottom: 2px; }
.vorteil-text p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.5; margin: 0; }

/* ======================== FUSSBALL SEITE – SCHNELLÜBERSICHT ======================== */
.teams-overview { 
    background: var(--grau-hell); 
    padding: 64px 0; 
}

.teams-overview-grid { display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 16px; 
}

.team-pill {
  background: var(--weiss);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  border: 1px solid var(--grau-mitte);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.team-pill:hover { 
    border-color: var(--rot); 
    transform: translateY(-2px); 
    box-shadow: var(--shadow); 
}

.team-pill-badge {
  width: 48px;
  height: 48px;
  background: var(--rot);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-pill-badge svg { 
    width: 22px; 
    height: 22px; 
    fill: var(--weiss); 
}

.team-pill-name { 
    font-family: var(--font-display); 
    font-weight: 800; 
    font-size: 17px; 
    text-transform: uppercase; 
    color: var(--dunkel); line-height: 1.1; 
}

.team-pill-liga { 
    font-size: 12px; 
    color: var(--grau-text); 
    letter-spacing: 0.5px; 
}

/* ======================== FUSSBALL SEITE – HERREN ======================== */
.herren-section { background: var(--weiss); }

.team-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.team-detail:last-child { margin-bottom: 0; }
.team-detail.reverse { direction: rtl; }
.team-detail.reverse > * { direction: ltr; }

.team-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--grau-mitte);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.team-detail-image img { width: 100%; height: 100%; object-fit: cover; }

.team-detail-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 48px;
  background: var(--rot);
  z-index: 1;
}

.team-number {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 80px;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  user-select: none;
}

.team-info-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,16,46,0.08);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.team-info-tag span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rot);
}

.team-detail h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--dunkel);
  margin-bottom: 8px;
}

.team-detail h2 em { display: block; font-style: normal; color: var(--rot); }

.team-liga-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grau-text);
  border: 1px solid var(--grau-mitte);
  border-radius: var(--radius);
  padding: 4px 12px;
  margin-top: 5px;
  margin-bottom: 20px;
}

.team-detail p { color: var(--grau-text); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }

.team-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 28px; }

.team-meta-item { background: var(--grau-hell); border-radius: var(--radius); padding: 12px 16px; }

.team-meta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grau-text);
  margin-bottom: 3px;
}

.team-meta-value { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--dunkel); }
.team-divider { height: 1px; background: var(--grau-mitte); margin: 64px 0; }

#erste-mannschaft {
    scroll-margin-top: 300px; /* Höhe deiner Navbar */
}

/* ======================== FUSSBALL SEITE – JUGEND ======================== */
.jugend-section { background: var(--grau-hell); }

.jugend-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 56px; }
.jugend-intro p { color: var(--grau-text); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }

.jugend-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--grau-mitte);
  display: flex;
  align-items: center;
  justify-content: center;
}

.jugend-image img { width: 100%; height: 100%; object-fit: cover; }
.jugend-teams-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.jugend-card {
  background: var(--weiss);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.jugend-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.jugend-card-header {
  background: var(--dunkel);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.jugend-card-header::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: var(--rot);
  opacity: 0.07;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.jugend-alters-badge {
  width: 48px;
  height: 48px;
  background: var(--rot);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--weiss);
  flex-shrink: 0;
  z-index: 1;
}

.jugend-card-header-text { z-index: 1; }

.jugend-card-header h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--weiss);
  line-height: 1.1;
}

.jugend-card-header h3 span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  margin-top: 2px;
}

.jugend-card-body { padding: 20px 24px; }
.jugend-card-body p { font-size: 14px; color: var(--grau-text); line-height: 1.65; margin-bottom: 16px; }
.jugend-details { display: flex; flex-direction: column; gap: 8px; }

.jugend-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--grau-mitte);
  font-size: 13px;
}

.jugend-detail-row:last-child { border-bottom: none; }
.jugend-detail-label { color: var(--grau-text); font-weight: 500; }
.jugend-detail-value { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--dunkel); }

#a-jugend {
    scroll-margin-top: 650px; /* Höhe deiner Navbar */
}

#b-jugend {
    scroll-margin-top: 650px; /* Höhe deiner Navbar */
}

/* ======================== CTA SEKTION (wiederverwendbar, dunkler Hintergrund) ======================== */
.cta-section { background: var(--dunkel); position: relative; overflow: hidden; }

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: var(--rot);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.09;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.cta-section .section-label { color: rgba(200,16,46,0.7); }
.cta-section .section-title { color: var(--weiss); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.5); font-size: 16px; line-height: 1.7; max-width: 520px; }

/* ======================== ABTEILUNGS-SEITEN (Damengymnastik, Kinderturnen, etc.) ======================== */

/* Intro: Text links, Bild rechts */
.abteilung-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.abteilung-intro-grid p { color: var(--grau-text); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }

.abteilung-bild {
  background: var(--grau-mitte);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abteilung-bild img { 
    width: 100%!important;
    height: 100%!important; 
    object-fit: cover!important;
    object-position: 100% center!important;
}

/* Highlight-Kacheln */
.abteilung-highlights {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 12px;
     margin-top: 32px;
     }

.abteilung-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--grau-hell);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--rot);
}

.abteilung-highlight-icon {
  width: 36px;
  height: 36px;
  background: rgba(200,16,46,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.abteilung-highlight-icon svg { width: 18px; height: 18px; fill: var(--rot); }
.abteilung-highlight-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--dunkel); line-height: 1.2; }
.abteilung-highlight-text { font-size: 13px; color: var(--grau-text); margin-top: 2px; }

/* Trainingszeit-Karten */
.abteilung-training-section { background: var(--grau-hell); }
.abteilung-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.abteilung-card {
  background: var(--weiss);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.abteilung-card-header {
  background: var(--dunkel);
  padding: 16px 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--weiss);
  letter-spacing: 0.5px;
  border-left: 4px solid var(--rot);
}

.abteilung-card-body { padding: 20px 24px; display: flex; flex-direction: column; gap: 12px; }

.abteilung-card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--dunkel);
  font-weight: 500;
}

.abteilung-card-row svg { width: 18px; height: 18px; fill: var(--rot); flex-shrink: 0; }

/* Kontakt */
.abteilung-kontakt-section { background: var(--weiss); }
.abteilung-kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.abteilung-kontakt-grid p { color: var(--grau-text); font-size: 16px; line-height: 1.75; margin-bottom: 24px; }

.abteilung-kontakt-card {
  background: var(--grau-hell);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  border-left: 4px solid var(--rot);
}

.abteilung-kontakt-avatar {
  width: 72px;
  height: 72px;
  background: var(--rot);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--weiss);
  flex-shrink: 0;
}

.abteilung-kontakt-role { font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--rot); margin-bottom: 4px; }
.abteilung-kontakt-name { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--dunkel); margin-bottom: 16px; }
.abteilung-kontakt-links { display: flex; flex-direction: column; gap: 8px; }

.abteilung-kontakt-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--grau-text);
  text-decoration: none;
  transition: color 0.2s;
}

.abteilung-kontakt-links a:hover { color: var(--rot); }
.abteilung-kontakt-links svg { width: 16px; height: 16px; fill: var(--rot); flex-shrink: 0; }

/* ======================== KONTAKT SEITE ======================== */
.kontakt-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--grau-text);
  margin-bottom: 12px;
}

.kontakt-address svg { width: 16px; height: 16px; fill: var(--rot); flex-shrink: 0; opacity: 0.6; }

.kontakt-form { max-width: 640px; display: flex; flex-direction: column; gap: 20px; }
.kontakt-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.kontakt-form .form-group { display: flex; flex-direction: column; gap: 6px; }

.kontakt-form label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dunkel);
}

.kontakt-form input,
.kontakt-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dunkel);
  background: var(--weiss);
  border: 1px solid var(--grau-mitte);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color 0.2s;
}

.kontakt-form input:focus, .kontakt-form textarea:focus { outline: none; border-color: var(--rot); }
.kontakt-form textarea { resize: vertical; min-height: 140px; }

/* ======================== CHRONIK TEXTSEITE ======================== */
.chronik-text p {
  color: var(--grau-text);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 720px;
}

.chronik-text h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--dunkel);
  margin: 40px 0 12px;
  border-left: 3px solid var(--rot);
  padding-left: 14px;
}

.chronik-text hr {
  border: none;
  border-top: 1px solid var(--grau-mitte);
  margin: 40px 0;
  max-width: 720px;
}

/* ======================== NEWS SEITE ======================== */

.news-list-item {
  display: grid !important;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  padding: 32px 0;
  transition: opacity 0.2s;
}

.news-list-item--featured {
  grid-template-columns: 400px 1fr;
  gap: 48px;
}

.news-list-item:hover { opacity: 0.85; }

.news-list-img {
  position: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grau-mitte);
  width: 100%;
  aspect-ratio: 16/9;
}

.news-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-list-img .img-placeholder {
  position: absolute;
  inset: 0;
}

.news-list-img .news-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
}

.news-list-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-list-body .news-date {
  font-size: 13px;
  color: var(--grau-text);
}

.news-list-body h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.5vw, 28px);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--dunkel);
  transition: color 0.2s;
}

.news-list-item--featured .news-list-body h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.news-list-item:hover .news-list-body h2 { color: var(--rot); }

.news-list-body p {
  font-size: 15px;
  color: var(--grau-text);
  line-height: 1.7;
  margin: 0;
}

.news-list-body .news-tag {
  align-self: flex-start;
}

.news-list-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rot);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  transition: gap 0.2s;
}

.news-list-item:hover .news-list-link { gap: 10px; }

.news-list-divider {
  height: 1px;
  background: var(--grau-mitte);
}

@media (max-width: 768px) {
  .news-list-item,
  .news-list-item--featured {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
}

/* ======================== BLOG ARTIKEL ======================== */

/* Hero kompakter als normale Unterseiten */
.artikel-hero { padding: 100px 0 48px; }

.artikel-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.artikel-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 72px);
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--weiss);
  margin-bottom: 0;
}

.artikel-hero h1 em {
  display: block;
  font-style: normal;
  color: var(--rot-hell);
}

/* ======================== TITELBILD ======================== */
/* Liegt zwischen Hero und Content – volle Containerbreite */
.artikel-titelbild-wrapper {
  background: var(--weiss);
  padding: 10px 24px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.artikel-titelbild-wrapper img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.artikel-titelbild {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.artikel-titelbild img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.artikel-bildunterschrift {
  font-size: 13px;
  color: var(--grau-text);
  text-align: left;
  padding: 8px 0 0;
  font-style: italic;
}
/* ======================== LAYOUT ======================== */
/* Grid: Artikel links, Sidebar rechts */
.artikel-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 64px;
  align-items: start;
}
/* ======================== ARTIKELTEXT ======================== */
.artikel-content { min-width: 0; }

.artikel-content p {
  font-size: 16px;
  color: var(--grau-text);
  line-height: 1.85;
  margin-bottom: 20px;
}

.artikel-ai-note {
  font-size: 13px;
  color: var(--grau-text);
  font-style: italic;
  margin-top: 8px;
}

.artikel-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--dunkel);
  margin: 0px 0 12px;
  border-left: 3px solid var(--rot);
  padding-left: 14px;
}

/* Foto im Fließtext */
.artikel-foto {
  margin: 12px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.artikel-foto img { width: 100%; height: auto; display: block; }

.artikel-foto figcaption {
  font-size: 13px;
  color: var(--grau-text);
  padding: 8px 0 0;
  font-style: italic;
}

/* Ergebnis-Highlight für Spielberichte */
.artikel-ergebnis {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--dunkel);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 32px 0;
  border-left: 4px solid var(--rot);
}

.artikel-ergebnis span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.artikel-ergebnis strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  color: var(--weiss);
  letter-spacing: 4px;
}

/* ======================== SIDEBAR ======================== */
.artikel-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-box {
  background: var(--grau-hell);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.sidebar-box-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grau-text);
  margin-bottom: 14px;
}

.sidebar-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--grau-mitte);
  gap: 12px;
}

.sidebar-info-row:last-child { border-bottom: none; }

.sidebar-info-label { font-size: 13px; color: var(--grau-text); }

.sidebar-info-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--dunkel);
}

.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-links a {
  font-size: 14px;
  color: var(--grau-text);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sidebar-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--rot);
  border-radius: 50%;
  flex-shrink: 0;
}

.sidebar-links a:hover { color: var(--rot); }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card-featured { grid-column: 1 / -1; }
  .fixtures-grid { grid-template-columns: 1fr; }
  .teams-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .jugend-teams-grid { grid-template-columns: repeat(2, 1fr); }
  .abteilung-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .vorstand-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 90px; left: 0; right: 0;
    background: var(--dunkel);
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 99;
  }

  .news-grid { grid-template-columns: 1fr; }
  .verein-grid { grid-template-columns: 1fr; }
  .verein-image { display: none; }
  .teams-grid { grid-template-columns: 1fr; }
  .france-grid { grid-template-columns: 1fr; }
  .france-flag { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .mitglied-inner { grid-template-columns: 1fr; }
  .vorstand-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 60px; }
  .timeline-item { grid-template-columns: 60px auto; }
  .timeline-dot { left: 54px; }
  .team-detail { grid-template-columns: 1fr; gap: 32px; }
  .team-detail.reverse { direction: ltr; }
  .team-detail-image { display: none; }
  .jugend-intro { grid-template-columns: 1fr; }
  .jugend-image { display: none; }
  .jugend-teams-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .abteilung-intro-grid { grid-template-columns: 1fr; }
  .abteilung-bild { display: none; }
  .abteilung-kontakt-grid { grid-template-columns: 1fr; }
  .abteilung-cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .kontakt-form .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 24px; }
  .teams-overview-grid { grid-template-columns: 1fr 1fr; }
  .verein-facts { grid-template-columns: 1fr 1fr; }
  .team-meta-grid { grid-template-columns: 1fr 1fr; }
  .abteilung-highlights { grid-template-columns: 1fr; }
  .abteilung-kontakt-card { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Chronik Mobile */
@media (max-width: 600px) {
  .timeline-item {
    grid-template-columns: 110px auto; /* breiter, damit 1946–1947 reinpasst */
  }

  .timeline::before {
    left: 110px; /* Linie an neue Spaltenbreite anpassen */
  }

  .timeline-dot {
    left: 110px; /* Punkt exakt auf die Linie setzen */
    transform: translateX(-6px) translateY(-50%);
  }

  .timeline-year {
    padding-right: 10px; /* gleicher Abstand wie Desktop */
  }
}

@media (max-width: 768px) {
  .artikel-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .artikel-sidebar { position: static; }

  .artikel-ergebnis { gap: 16px; padding: 20px; }
  .artikel-ergebnis strong { font-size: 36px; }
  .artikel-ergebnis span { font-size: 16px; }
}

@media (max-width: 768px) {
  .artikel-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .artikel-sidebar { position: static; }

  .artikel-titelbild img { max-height: 260px; }

  .artikel-ergebnis { gap: 16px; padding: 20px; }
  .artikel-ergebnis strong { font-size: 36px; }
  .artikel-ergebnis span { font-size: 16px; }
}

/* ======================== RECHTSTEXT-SEITEN (Impressum, Datenschutz) ======================== */
.legal-text { max-width: 780px; }

.legal-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--dunkel);
  margin: 48px 0 16px;
}

.legal-text h2:first-child { margin-top: 0; }

.legal-text h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--dunkel);
  margin: 32px 0 12px;
  border-left: 3px solid var(--rot);
  padding-left: 14px;
}

.legal-text p {
  color: var(--grau-text);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-text ul, .legal-text ol {
  color: var(--grau-text);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px 20px;
}

.legal-text a { color: var(--rot); text-decoration: underline; }
.legal-text a:hover { color: var(--rot-hell); }

.legal-text strong { color: var(--dunkel); }

.legal-text hr {
  border: none;
  border-top: 1px solid var(--grau-mitte);
  margin: 40px 0;
}
