﻿:root {
  --red: #d22c2c;
  --red-dark: #a7191f;
  --ink: #1f2430;
  --muted: #68707f;
  --line: #e5e7eb;
  --soft: #f7f8fb;
  --white: #ffffff;
  --green: #185b3c;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.quick-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.brand span span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  font-size: 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 800;
  border: 2px solid transparent;
}

.button.primary { background: var(--red); color: var(--white); }
.button.secondary { background: var(--white); color: var(--red-dark); border-color: var(--red); }
.button.dark { background: var(--ink); color: var(--white); }

.hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(31, 36, 48, .86), rgba(31, 36, 48, .46) 48%, rgba(31, 36, 48, .12)),
    url("site/sportanlage-hero-2023.jpg") center / cover no-repeat;
}

.hero-content {
  width: min(850px, 100%);
  padding: 72px 0 56px;
}

.eyebrow {
  display: inline-flex;
  padding: 7px 10px;
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin: 18px 0;
  font-size: clamp(40px, 7vw, 76px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  margin-bottom: 10px;
}

.hero p {
  max-width: 720px;
  font-size: clamp(18px, 2.2vw, 23px);
  color: rgba(255, 255, 255, .92);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

section { padding: 70px 0; }
.soft { background: var(--soft); }

.stats-band { background: var(--red); color: var(--white); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .35);
}

.stat {
  background: var(--red);
  padding: 28px 20px;
}

.stat strong { display: block; font-size: 34px; line-height: 1; }
.stat span { display: block; margin-top: 8px; font-weight: 700; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 720px;
  color: var(--muted);
  margin-bottom: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(31, 36, 48, .05);
}

.card-body { padding: 24px; }
.card h3 { margin-bottom: 8px; font-size: 22px; }
.card p { color: var(--muted); margin-bottom: 18px; }
.image-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.feature-list {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.schedule { display: grid; gap: 10px; }

.schedule-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.schedule-row strong { color: var(--red-dark); }

.sponsor {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(167, 25, 31, .95), rgba(167, 25, 31, .78)),
    url("site/sportgaststaette-terrasse.jpg") center / cover no-repeat;
}

.sponsor .section-head p,
.sponsor .card p { color: rgba(255, 255, 255, .86); }

.sponsor .card {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .28);
  color: var(--white);
}

footer {
  background: var(--ink);
  color: var(--white);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
}

footer p,
footer a { color: rgba(255, 255, 255, .76); }

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  nav ul {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .stats, .grid-3, .grid-4, .split, .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .schedule-row { grid-template-columns: 1fr; }
}

/* ============================================================
   Erweiterte Komponenten und Seitenspezifika
   Zusammengefuehrt aus additions.css am 23.06.2026
   ============================================================ */

/* ------------------------------------------------------------
   Mobile Navigation - Hamburger-Button
   ------------------------------------------------------------ */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid currentColor;
  border-radius: 5px;
  padding: 0;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.nav-toggle-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-menu {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-close {
  display: block;
}

.icon-svg svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

header nav a[aria-current="page"] {
  color: #a7191f;
  position: relative;
}

header nav ul {
  gap: 14px;
  font-size: 14px;
}

header nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 3px;
  border-radius: 999px;
  background: #d22c2c;
}

/* ------------------------------------------------------------
   Stabiler Desktop-Header
   ------------------------------------------------------------ */
header .wrap.nav {
  width: min(1720px, calc(100% - 48px));
  gap: 18px;
}

header .brand {
  min-width: 245px;
  flex-shrink: 0;
}

header nav {
  flex: 1 1 auto;
  min-width: 0;
}

header nav ul {
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(10px, 0.8vw, 16px);
  font-size: clamp(13px, 0.78vw, 15px);
}

header nav a {
  white-space: nowrap;
}

header > .wrap.nav > a.button.primary {
  flex-shrink: 0;
  white-space: nowrap;
  min-height: 50px;
  padding-inline: 18px;
}

.restaurant-owner-note {
  margin: 1.1rem 0 0;
  border-left: 4px solid #d22c2c;
  background: #fff;
  color: #68707f;
  padding: 0.9rem 1rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 12px rgba(31,36,48,.05);
}

.restaurant-owner-note strong {
  color: #1f2430;
}

.sponsor-news-logo {
  display: grid;
  place-items: center;
  border: 1px solid #dde3e8;
  border-radius: 8px;
  background: #fff;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(31,36,48,.07);
}

.sponsor-news-logo img {
  width: min(260px, 100%);
  max-height: 220px;
  object-fit: contain;
}

/* ------------------------------------------------------------
   Sponsoring Kontaktformular
   ------------------------------------------------------------ */
.sponsor-form-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.sponsor-form-copy p {
  color: #68707f;
  max-width: 620px;
}

.sponsor-form-contact {
  margin-top: 1.4rem;
  border: 1px solid #dde3e8;
  border-left: 6px solid #d22c2c;
  border-radius: 8px;
  background: #fff;
  padding: 1.1rem;
  box-shadow: 0 2px 12px rgba(31,36,48,.05);
}

.sponsor-form-contact strong,
.sponsor-form-contact span,
.sponsor-form-contact a {
  display: block;
}

.sponsor-form-contact span {
  color: #68707f;
  margin: .2rem 0 .45rem;
}

.sponsor-form-contact a {
  color: #a7191f;
  font-weight: 800;
  text-decoration: underline;
  overflow-wrap: anywhere;
}

.sponsor-contact-form {
  border: 1px solid #dde3e8;
  border-radius: 8px;
  background: #fff;
  padding: 1.35rem;
  box-shadow: 0 2px 16px rgba(31,36,48,.07);
}

.form-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: .45rem;
  margin-bottom: 1rem;
}

.form-row label,
.form-consent {
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #cfd6df;
  border-radius: 6px;
  background: #fff;
  color: #1f2430;
  font: inherit;
  padding: .78rem .85rem;
}

.form-row textarea {
  resize: vertical;
  min-height: 150px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 3px solid rgba(210,44,44,.18);
  border-color: #d22c2c;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  color: #68707f;
  margin: .4rem 0 1.1rem;
}

.form-consent input {
  flex: 0 0 auto;
  margin-top: .28rem;
}

.form-consent a {
  color: #a7191f;
  text-decoration: underline;
}

.form-note {
  margin: .8rem 0 0;
  color: #68707f;
  font-size: .92rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-result-section {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.form-result-card {
  border: 1px solid #dde3e8;
  border-left: 8px solid #d22c2c;
  border-radius: 8px;
  background: #fff;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(31,36,48,.08);
}

.form-result-card.success {
  border-left-color: #185b3c;
}

.form-result-card h1 {
  color: #1f2430;
}

.form-result-card p {
  color: #68707f;
  max-width: 760px;
}

@media (max-width: 860px) {
  .sponsor-form-layout,
  .form-grid-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header {
    position: relative;
  }

  header .wrap.nav {
    flex-wrap: wrap;
    width: min(1180px, calc(100% - 32px));
  }

  header > .wrap.nav > a.button.primary {
    display: none;
  }

  header nav {
    display: none;
    width: 100%;
    order: 10;
    padding: 0.75rem 0 1rem;
    border-top: 1px solid rgba(0,0,0,0.08);
  }

  header nav.open {
    display: block;
  }

  header nav ul {
    flex-direction: column !important;
    gap: 0 !important;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  header nav ul li a {
    display: block;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  header nav a[aria-current="page"] {
    padding-left: 0.65rem;
    border-left: 4px solid #d22c2c;
  }

  header nav a[aria-current="page"]::after {
    content: none;
  }
}

/* ------------------------------------------------------------
   Footer - 4 Spalten
   ------------------------------------------------------------ */
@media (min-width: 801px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* ------------------------------------------------------------
   Sponsor-Logostrip
   ------------------------------------------------------------ */
.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}

.sponsor-logo-item {
  border: 1px solid #dde3e8;
  border-radius: 8px;
  padding: 0.9rem 1.4rem;
  min-width: 130px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  font-size: 0.85rem;
  color: #6c757d;
  text-align: center;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.sponsor-logo-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.sponsor-logo-item img {
  max-width: 120px;
  max-height: 48px;
  object-fit: contain;
}

/* ------------------------------------------------------------
   Preis-Badge auf Sponsoring-Karten
   ------------------------------------------------------------ */
.price-hint {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: #555;
  background: #f0f4f8;
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  font-weight: 600;
}

/* ------------------------------------------------------------
   Ansprechpartner-Karten
   ------------------------------------------------------------ */
.contact-person-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.contact-person-card {
  border: 1px solid #dde3e8;
  border-radius: 10px;
  padding: 1.25rem;
  background: #fff;
}

.contact-person-card-highlight {
  border-left: 6px solid #9d1f24;
  box-shadow: 0 12px 28px rgba(31, 36, 48, .08);
}

.contact-person-card .role {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin-bottom: 0.25rem;
}

.contact-person-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.contact-person-card .contact-links a {
  display: inline-block;
  font-size: 0.85rem;
  margin-right: 0.75rem;
  color: inherit;
  opacity: 0.75;
  text-decoration: underline;
}

.contact-person-card .contact-links a:hover {
  opacity: 1;
}

/* Platzhalter-Hinweis fuer Redakteure */
.editor-note {
  display: inline-block;
  background: #fff3cd;
  border: 1px dashed #e0a800;
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
  font-size: 0.75rem;
  color: #856404;
  font-style: italic;
}

/* ------------------------------------------------------------
   Feature-Icons
   ------------------------------------------------------------ */
.feature-list .feature .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e9f0f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  font-style: normal;
}

/* ------------------------------------------------------------
   Spielplan-Platzhalter
   ------------------------------------------------------------ */
.widget-placeholder {
  border: 2px dashed #ccd5de;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  background: #f8f9fa;
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.6;
}

.widget-placeholder strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #444;
}

/* ------------------------------------------------------------
   FUSSBALL.DE Vereinsspielplan
   ------------------------------------------------------------ */
.schedule-widget {
  border: 1px solid #dde3e8;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(31, 36, 48, .05);
}

.schedule-widget-copy {
  padding: 1.5rem;
}

.schedule-widget-copy h3 {
  margin: 0 0 0.5rem;
}

.schedule-widget-copy p {
  color: #68707f;
  margin-bottom: 1rem;
}

/* ------------------------------------------------------------
   Auszeichnung Integrationsverein
   ------------------------------------------------------------ */
.award-section {
  padding: 42px 0;
  background: #fff;
}

.award-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px) auto;
  gap: 1.5rem;
  align-items: center;
  border: 1px solid #dde3e8;
  border-left: 8px solid #d22c2c;
  border-radius: 10px;
  background: #fff;
  padding: 1.6rem;
  box-shadow: 0 2px 12px rgba(31, 36, 48, .05);
}

.award-card h2 {
  margin: 0.7rem 0 0.5rem;
}

.award-card p {
  color: #68707f;
  margin: 0;
}

.award-card > strong {
  color: #a7191f;
  text-align: right;
  max-width: 260px;
}

.award-photo-thumb {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 8px;
  border: 1px solid #dde3e8;
  background: #f7f8fa;
}

.award-photo-figure {
  margin: 0;
}

.award-photo-figure figcaption {
  margin-top: 0.55rem;
  color: #68707f;
  font-size: 0.82rem;
  line-height: 1.35;
}

.integration-award-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid #dde3e8;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(31, 36, 48, .11);
}

.integration-award-photo img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center 28%;
}

.integration-award-photo figcaption {
  padding: 0.85rem 1rem;
  color: #68707f;
  font-size: 0.9rem;
}

@media (max-width: 800px) {
  .award-card {
    grid-template-columns: 1fr;
  }

  .award-card > strong {
    text-align: left;
    max-width: none;
  }

  .award-photo-thumb {
    max-height: 360px;
  }
}

/* ------------------------------------------------------------
   DFB-Punktespiel News
   ------------------------------------------------------------ */
.points-card {
  border-radius: 10px;
  background: #002f2f;
  color: #d2fff0;
  padding: 1.6rem;
  box-shadow: 0 2px 12px rgba(31, 36, 48, .12);
}

.dfb-visual-stack {
  display: grid;
  gap: 1rem;
}

.dfb-program-image {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  background: #c9f5df;
  box-shadow: 0 2px 12px rgba(31, 36, 48, .12);
}

.dfb-program-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.dfb-program-image figcaption {
  padding: 0.75rem 0.9rem;
  color: #4f5a69;
  font-size: 0.88rem;
  line-height: 1.45;
  background: #fff;
}

.points-card > span {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7ee8c6;
}

.points-card > strong {
  display: block;
  margin-top: 0.3rem;
  font-size: clamp(4rem, 12vw, 7rem);
  line-height: 0.95;
  color: #fff;
}

.points-card > p {
  margin-bottom: 1.4rem;
  color: #d2fff0;
  font-weight: 800;
}

.level-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
  align-items: stretch;
}

.level-track div {
  border: 1px solid rgba(210, 255, 240, .32);
  border-radius: 8px;
  padding: 0.75rem 0.4rem;
  text-align: center;
  font-weight: 900;
  background: rgba(255, 255, 255, .06);
}

.level-track div.active {
  background: #d22c2c;
  color: #fff;
  border-color: #d22c2c;
}

.level-track small {
  display: block;
  margin-top: 0.2rem;
  font-weight: 700;
}

@media (max-width: 800px) {
  .level-track {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------
   News-Archiv
   ------------------------------------------------------------ */
.news-meta,
.news-detail-meta {
  margin: 0 0 0.75rem;
  color: #9d1f24;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-featured .image-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1fr);
  align-items: stretch;
}

.news-featured .image-card img {
  height: 100%;
  min-height: 260px;
  object-fit: contain;
  background: #f7f8fa;
}

.news-featured .image-card img.news-integration-photo {
  object-fit: cover;
  object-position: center top;
  min-height: 340px;
  padding: 0;
}

.image-card img.news-dfb-photo,
.news-featured .image-card img.news-dfb-photo {
  object-fit: cover;
  object-position: center;
  background: #c9f5df;
}

.image-card img.news-integration-card-photo {
  object-fit: cover;
  object-position: center top;
  background: #f7f8fa;
}

.sportgast-news-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid #dde3e8;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(31, 36, 48, .08);
}

.sportgast-news-photo img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  background: #f7f8fa;
}

.sportgast-news-photo figcaption {
  padding: 0.85rem 1rem;
  color: #68707f;
  font-size: 0.9rem;
  line-height: 1.45;
  background: #fff;
}

.sportgast-history-card img {
  object-position: center 38%;
}

.meeting-summary-figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid #dde3e8;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(31, 36, 48, .08);
}

.meeting-summary-figure img {
  display: block;
  width: 100%;
  object-fit: contain;
  background: #f7f8fa;
}

.meeting-summary-figure figcaption {
  padding: 0.85rem 1rem;
  color: #68707f;
  font-size: 0.9rem;
  line-height: 1.45;
}

.meeting-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.2rem 0;
}

.meeting-fact {
  border: 1px solid #dde3e8;
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
}

.meeting-fact strong {
  display: block;
  color: #b5121b;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}

.meeting-fact span {
  display: block;
  margin-top: 0.45rem;
  color: #5f6876;
  font-weight: 800;
}

.honor-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.honor-gallery figure,
.honor-note {
  overflow: hidden;
  margin: 0;
  border: 1px solid #dde3e8;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(31, 36, 48, .06);
}

.honor-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.honor-gallery figcaption,
.honor-note {
  padding: 1rem;
}

.honor-gallery figcaption {
  color: #202632;
  font-weight: 900;
}

.honor-note h3 {
  margin: 0.65rem 0 0.45rem;
}

.honor-note p {
  color: #68707f;
}

.image-card img.news-meeting-card-photo,
.news-featured .image-card img.news-meeting-photo {
  object-fit: contain;
  object-position: center;
  background: #f7f8fa;
}

.home-events,
.event-list {
  display: grid;
  gap: 0.85rem;
}

.home-events {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border: 1px solid #dde3e8;
  border-radius: 10px;
  background: #fff;
  padding: 0.9rem;
  box-shadow: 0 2px 12px rgba(31, 36, 48, .05);
}

.event-row time {
  display: grid;
  place-items: center;
  min-height: 74px;
  border-radius: 8px;
  background: #b5121b;
  color: #fff;
  text-align: center;
  font-weight: 900;
}

.event-row time span {
  display: block;
  font-size: 1.15rem;
  line-height: 1.05;
}

.event-row time strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.event-row h3 {
  margin: 0 0 0.25rem;
  color: #202632;
  font-size: 1.05rem;
}

.event-row p {
  margin: 0;
  color: #68707f;
  font-weight: 800;
}

.event-empty {
  margin: 1rem 0 0;
  color: #68707f;
  font-weight: 800;
}

.season-info .section-head,
.season-teaser {
  align-items: center;
}

.season-teaser {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem;
  border: 1px solid #dde3e8;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(31, 36, 48, .08);
}

.season-teaser h2 {
  margin-bottom: .5rem;
}

.season-table-card {
  overflow: hidden;
  border: 1px solid #dde3e8;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(31, 36, 48, .08);
}

.season-table-wrap {
  overflow-x: auto;
}

.season-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: .98rem;
}

.season-table th {
  padding: 1rem;
  color: #fff;
  text-align: left;
  background: #a7191f;
}

.season-table td {
  padding: .9rem 1rem;
  border-top: 1px solid #e3e7ec;
  vertical-align: top;
}

.season-table td:first-child {
  color: #a7191f;
  font-weight: 900;
}

.season-table tbody tr:nth-child(even) td {
  background: #f7f8fa;
}

.season-table-card .source-note {
  margin: 0;
  padding: .85rem 1rem 1rem;
  color: #68707f;
  font-size: .9rem;
}

@media (max-width: 760px) {
  .season-teaser {
    flex-direction: column;
    align-items: flex-start;
  }

  .season-teaser .actions {
    width: 100%;
  }

  .season-table {
    min-width: 680px;
  }
}

.event-archive-section {
  border-top: 1px solid #edf0f3;
}

.event-list-archive .event-row {
  box-shadow: none;
  opacity: 0.82;
}

.event-list-archive .event-row time {
  background: #68707f;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.archive-card {
  border: 1px solid #dde3e8;
  border-radius: 10px;
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(31, 36, 48, .05);
}

.archive-card h3 {
  margin: 0 0 0.5rem;
}

.archive-card p:last-of-type {
  color: #68707f;
}

.archive-card a {
  color: #9d1f24;
  font-weight: 800;
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
}

.news-tags span {
  border-radius: 999px;
  background: #f4e7e8;
  color: #9d1f24;
  padding: 0.2rem 0.55rem;
  font-size: 0.76rem;
  font-weight: 900;
}

.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
}

.news-filter button {
  border: 1px solid #dde3e8;
  border-radius: 999px;
  background: #fff;
  color: #202632;
  padding: 0.55rem 0.85rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

.news-filter button.active,
.news-filter button:hover {
  border-color: #9d1f24;
  background: #9d1f24;
  color: #fff;
}

.news-empty {
  margin-top: 1rem;
  color: #68707f;
  font-weight: 800;
}

.news-planning {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 800px) {
  .news-featured .image-card,
  .news-list,
  .news-planning,
  .home-events,
  .meeting-facts-grid,
  .honor-gallery {
    grid-template-columns: 1fr;
  }

  .event-row {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .event-row time {
    min-height: 66px;
  }
}
.award-news-card {
  background: #9d1f24;
  color: #fff4f4;
}

.award-news-card > span,
.award-news-card > p {
  color: #fff4f4;
}
/* ------------------------------------------------------------
   Historie
   ------------------------------------------------------------ */
.history-date-card {
  border-radius: 10px;
  background: #9d1f24;
  color: #fff;
  padding: 1.6rem;
  box-shadow: 0 2px 12px rgba(31, 36, 48, .12);
}

.history-date-card span {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffe1e1;
}

.history-date-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 1;
}

.history-date-card p {
  margin: 1rem 0 0;
  color: #fff4f4;
  font-weight: 800;
}

.history-date-card.compact strong {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.history-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 800px) {
  .history-timeline {
    grid-template-columns: 1fr;
  }
}
.source-note {
  margin-top: 1rem;
  color: #68707f;
  font-size: 0.85rem;
  font-style: italic;
}
/* ------------------------------------------------------------
   Historische Vereinswappen
   ------------------------------------------------------------ */
.crest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.crest-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border: 1px solid #dde3e8;
  border-radius: 10px;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 2px 12px rgba(31, 36, 48, .05);
}

.crest-card img,
.crest-placeholder {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 8px;
  background: #f7f8fa;
}

.crest-placeholder {
  display: grid;
  place-items: center;
  border: 1px dashed #c7cdd5;
  color: #9d1f24;
  font-weight: 900;
  font-size: 1.7rem;
}

.crest-card h3 {
  margin: 0 0 0.4rem;
}

.crest-card p {
  margin: 0;
  color: #68707f;
}

@media (max-width: 900px) {
  .crest-grid {
    grid-template-columns: 1fr;
  }
}
.overview-timeline {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.contribution-grid .archive-card {
  border-top: 4px solid #9d1f24;
}

@media (max-width: 1100px) {
  .overview-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .overview-timeline {
    grid-template-columns: 1fr;
  }
}
/* ------------------------------------------------------------
   Jugend Saisonuebersicht
   ------------------------------------------------------------ */
.youth-season .section-head {
  align-items: end;
}

.youth-season-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.youth-age-group {
  border: 1px solid #dde3e8;
  border-radius: 10px;
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(31, 36, 48, .05);
}

.youth-age-group h3 {
  margin: 0.35rem 0 1rem;
}

.team-type {
  color: #9d1f24;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.youth-team-list {
  display: grid;
  gap: 0.75rem;
}

.youth-team-card {
  display: grid;
  gap: 0.25rem;
  min-height: 112px;
  border-radius: 8px;
  background: #f7f8fa;
  padding: 0.9rem;
}

.youth-team-card strong {
  color: #202632;
  font-size: 1.02rem;
}

.youth-team-card p {
  margin: 0;
  color: #68707f;
  font-size: 0.95rem;
}

.age-badge {
  width: fit-content;
  border-radius: 999px;
  background: #9d1f24;
  color: #fff;
  padding: 0.22rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

@media (max-width: 1000px) {
  .youth-season-grid {
    grid-template-columns: 1fr;
  }

  .youth-team-card {
    min-height: auto;
  }
}
/* ------------------------------------------------------------
   Vorstandsstruktur
   ------------------------------------------------------------ */
.board-structure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.board-structure-card,
.board-resort-card {
  border: 1px solid #dde3e8;
  border-radius: 10px;
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(31, 36, 48, .05);
}

.board-structure-card-highlight {
  border-top: 5px solid #9d1f24;
}

.board-resort-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.board-resort-card h3,
.board-structure-card h3 {
  margin-top: 0.35rem;
}

.clean-list {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
}

.clean-list li + li {
  margin-top: 0.35rem;
}

@media (max-width: 900px) {
  .board-structure-grid,
  .board-resort-grid {
    grid-template-columns: 1fr;
  }
}
/* ------------------------------------------------------------
   Cookie-Hinweis
   ------------------------------------------------------------ */
.cookie-notice[hidden] {
  display: none !important;
}

.cookie-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 1rem;
  background: rgba(32, 38, 50, 0.88);
  color: #fff;
}

.cookie-notice-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  color: #202632;
  padding: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .22);
}

.cookie-notice strong {
  display: block;
  margin-bottom: 0.25rem;
}

.cookie-notice p {
  margin: 0;
  color: #68707f;
  font-size: 0.95rem;
}

.cookie-notice-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  white-space: nowrap;
}

.cookie-notice-actions a {
  color: #9d1f24;
  font-weight: 800;
}

.cookie-notice-actions button {
  border: 0;
  border-radius: 6px;
  background: #9d1f24;
  color: #fff;
  padding: 0.65rem 1rem;
  font-weight: 900;
  cursor: pointer;
}

.cookie-notice-actions button:hover {
  background: #7f171b;
}

@media (max-width: 760px) {
  .cookie-notice-inner {
    grid-template-columns: 1fr;
  }

  .cookie-notice-actions {
    justify-content: space-between;
    white-space: normal;
  }
}
/* ------------------------------------------------------------
   Spenden, Sponsoren und Mannschaftsbilder
   ------------------------------------------------------------ */
.donation-support-section {
  border-top: 1px solid #edf0f3;
  border-bottom: 1px solid #edf0f3;
}

.donation-panel {
  align-items: stretch;
}

.tax-note {
  border-left: 4px solid #9d1f24;
  background: #fff;
  padding: 0.9rem 1rem;
  border-radius: 0 8px 8px 0;
}

.paypal-button {
  background: #003087;
  border-color: #003087;
}

.donation-side-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 8px;
  background: #202632;
  color: #fff;
  padding: 1.5rem;
}

.donation-side-card strong {
  font-size: 1.25rem;
}

.donation-side-card span {
  width: fit-content;
  border-radius: 999px;
  background: #fff;
  color: #9d1f24;
  padding: 0.35rem 0.7rem;
  font-weight: 900;
}

.donation-side-card p {
  margin: 0;
  color: rgba(255,255,255,.82);
}

.project-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.investment-project-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
  gap: 1.4rem;
  align-items: stretch;
  margin: 0 0 1.35rem;
  border: 1px solid #dde3e8;
  border-left: 8px solid #9d1f24;
  border-radius: 8px;
  background: #fff;
  padding: 1.35rem;
  box-shadow: 0 18px 38px rgba(31,36,48,.09);
}

.investment-project-card h3 {
  margin: 0.55rem 0 0.65rem;
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
}

.investment-project-card p {
  color: #68707f;
}

.investment-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.1rem 0 1.25rem;
}

.investment-facts div {
  border: 1px solid #dde3e8;
  border-radius: 8px;
  background: #fff7f7;
  padding: 0.9rem;
}

.investment-facts span,
.investment-facts small {
  display: block;
  color: #68707f;
  font-weight: 800;
}

.investment-facts strong {
  display: block;
  margin: 0.25rem 0;
  color: #9d1f24;
  font-size: 1.35rem;
  line-height: 1.1;
}

.investment-benefits {
  border-radius: 8px;
  background: #202632;
  color: #fff;
  padding: 1.25rem;
}

.investment-benefits h4 {
  margin: 0 0 0.85rem;
  color: #fff;
}

.investment-benefits ul {
  margin: 0;
  padding-left: 1.15rem;
}

.investment-benefits li {
  color: rgba(255,255,255,.86);
  font-weight: 800;
}

.investment-benefits li + li {
  margin-top: 0.55rem;
}

.project-support-card {
  border: 1px solid #dde3e8;
  border-radius: 8px;
  background: #fff;
  padding: 1.15rem;
  box-shadow: 0 2px 12px rgba(31,36,48,.05);
}

.project-support-card span {
  display: inline-block;
  border-radius: 999px;
  background: #f4e7e8;
  color: #9d1f24;
  padding: 0.2rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.project-support-card h3 {
  margin: 0.7rem 0 0.45rem;
}

.project-support-card p {
  color: #68707f;
}

.project-support-card a {
  font-weight: 900;
}

.project-support-card-highlight {
  border-left: 6px solid #9d1f24;
  background: #fff7f7;
}

.project-support-cta {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.sponsor-principle-section {
  border-top: 1px solid #edf0f3;
  border-bottom: 1px solid #edf0f3;
}

.sponsor-principle-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 1.25rem;
  align-items: center;
  border: 1px solid #dde3e8;
  border-radius: 8px;
  background: #fff;
  padding: 1.35rem;
  box-shadow: 0 14px 34px rgba(31,36,48,.07);
}

.sponsor-principle-card h2 {
  margin-bottom: 0.65rem;
}

.sponsor-principle-card p {
  color: #68707f;
}

.sponsor-principle-points {
  display: grid;
  gap: 0.65rem;
}

.sponsor-principle-points strong {
  border-left: 5px solid #9d1f24;
  border-radius: 8px;
  background: #fff7f7;
  color: #202632;
  padding: 0.85rem 0.95rem;
}

.sponsor-table-card {
  overflow: hidden;
  border: 1px solid #dde3e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(31,36,48,.05);
}

.sponsor-table {
  width: 100%;
  border-collapse: collapse;
}

.sponsor-table th {
  background: #9d1f24;
  color: #fff;
  padding: 0.95rem;
  text-align: left;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.sponsor-table td {
  border-top: 1px solid #dde3e8;
  padding: 0.95rem;
  vertical-align: top;
  color: #68707f;
}

.sponsor-table td:first-child {
  color: #202632;
  font-weight: 900;
}

.sponsor-table td:nth-child(2) {
  color: #9d1f24;
  font-weight: 900;
  white-space: nowrap;
}

.partner-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.partner-tier-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid #dde3e8;
  border-radius: 8px;
  background: #fff;
  padding: 1.1rem;
  box-shadow: 0 2px 12px rgba(31,36,48,.05);
}

.partner-tier-card span {
  width: fit-content;
  border-radius: 999px;
  background: #f4e7e8;
  color: #9d1f24;
  padding: 0.2rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.partner-tier-card h3 {
  margin: 0.75rem 0 0.5rem;
}

.partner-tier-card p {
  color: #68707f;
}

.partner-tier-highlight {
  border-left: 6px solid #9d1f24;
}

.partner-tier-main {
  background: #202632;
  color: #fff;
}

.partner-tier-main h3,
.partner-tier-main p {
  color: #fff;
}

.partner-tier-main span {
  background: #fff;
  color: #9d1f24;
}

.sponsor-disclaimer {
  margin-top: 1rem;
  color: #68707f;
  font-size: 0.95rem;
}

.sponsor-activation-section {
  align-items: stretch;
}

.activation-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.activation-list article {
  border: 1px solid #dde3e8;
  border-radius: 8px;
  background: #fff;
  padding: 0.95rem;
}

.activation-list strong,
.activation-list span {
  display: block;
}

.activation-list span {
  margin-top: 0.25rem;
  color: #68707f;
}

.sponsor-proof-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 8px;
  background: #202632;
  color: #fff;
  padding: 1.35rem;
}

.sponsor-proof-panel h3,
.sponsor-proof-panel p {
  color: #fff;
}

.sponsor-proof-panel .button {
  width: fit-content;
  margin-top: 0.75rem;
}

.sponsor-proof-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.sponsor-proof-card {
  display: grid;
  gap: 1rem;
  border: 1px solid #dde3e8;
  border-radius: 8px;
  background: #fff;
  padding: 1.2rem;
  box-shadow: 0 2px 12px rgba(31,36,48,.05);
}

.sponsor-proof-card img {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.sponsor-proof-card-wide img {
  background: #202632;
  padding: 0.75rem;
}

.team-gallery-section {
  background: #fff;
}

.team-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.team-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid #dde3e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(31,36,48,.05);
}

.team-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.team-photo-card figcaption {
  padding: 0.8rem 0.95rem;
  color: #202632;
  font-weight: 900;
}

.active-team-photo {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31, 36, 48, 0.1);
}

.active-team-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.active-team-photo figcaption {
  padding: 0.95rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .project-support-grid,
  .investment-project-card,
  .sponsor-proof-grid,
  .partner-tier-grid,
  .sponsor-principle-card,
  .team-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .project-support-grid,
  .investment-project-card,
  .investment-facts,
  .sponsor-proof-grid,
  .partner-tier-grid,
  .sponsor-principle-card,
  .team-photo-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-table-card {
    overflow: visible;
  }

  .sponsor-table {
    min-width: 0;
  }

  .sponsor-table thead {
    display: none;
  }

  .sponsor-table,
  .sponsor-table tbody,
  .sponsor-table tr,
  .sponsor-table td {
    display: block;
    width: 100%;
  }

  .sponsor-table tr {
    border-bottom: 1px solid #dde3e8;
  }

  .sponsor-table tr:last-child {
    border-bottom: 0;
  }

  .sponsor-table td {
    display: grid;
    grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
    gap: 0.75rem;
    border-top: 0;
    padding: 0.75rem 0.95rem;
    white-space: normal;
  }

  .sponsor-table td::before {
    color: #68707f;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .sponsor-table td:nth-child(1)::before {
    content: "Baustein";
  }

  .sponsor-table td:nth-child(2)::before {
    content: "Preis";
  }

  .sponsor-table td:nth-child(3)::before {
    content: "Einordnung";
  }

  .sponsor-table td:nth-child(2) {
    white-space: normal;
  }
}
/* ------------------------------------------------------------
   Dokumente und Downloads
   ------------------------------------------------------------ */
.documents-section {
  border-top: 1px solid #edf0f3;
  border-bottom: 1px solid #edf0f3;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.document-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #dde3e8;
  border-radius: 8px;
  background: #fff;
  padding: 1.15rem;
  box-shadow: 0 2px 12px rgba(31,36,48,.05);
}

.document-card h3 {
  margin: 0.7rem 0 0.45rem;
}

.document-card p {
  color: #68707f;
}

.document-card .button {
  margin-top: auto;
}

.document-type {
  display: inline-block;
  border-radius: 999px;
  background: #f4e7e8;
  color: #9d1f24;
  padding: 0.2rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .document-grid {
    grid-template-columns: 1fr;
  }
}
.documents-section .document-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
/* ------------------------------------------------------------
   Social Media Buttons
   ------------------------------------------------------------ */
.social-section {
  background: #fff;
}

.social-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.social-channel-card {
  border: 1px solid #dde3e8;
  border-radius: 8px;
  background: #fff;
  padding: 1.2rem;
  box-shadow: 0 2px 12px rgba(31,36,48,.05);
}

.social-channel-card h3 {
  margin: 0.7rem 0 0.45rem;
}

.social-channel-card p {
  color: #68707f;
}

.social-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 6px;
  padding: 0.65rem 0.95rem;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.social-button.instagram {
  background: #9d1f24;
}

.social-button.facebook {
  background: #1f4f91;
}

.social-button.whatsapp {
  background: #128c7e;
}

.social-button:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(31,36,48,.16);
}

@media (max-width: 760px) {
  .social-channel-grid {
    grid-template-columns: 1fr;
  }

  .social-button {
    width: 100%;
  }
}
/* ------------------------------------------------------------
   Footer Social Bar
   ------------------------------------------------------------ */
.footer-social-bar {
  background: #c8102e;
  color: #fff;
  padding: 0.75rem 0;
}

.footer-social-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social-inner > span {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.footer-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.footer-social-links a {
  width: 46px;
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
  transition: transform .15s ease, background .15s ease;
}

.footer-social-links a img {
  width: 18px;
  height: 18px;
  color: #fff;
}

.footer-social-links a small {
  margin-top: 0.16rem;
  font-size: 0.52rem;
  font-weight: 800;
}

.footer-social-links a:hover {
  background: rgba(255,255,255,.14);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 620px) {
  .footer-social-inner {
    gap: 0.9rem;
  }

  .footer-social-links {
    width: 100%;
    gap: 0.45rem;
  }

  .footer-social-links a {
    width: 42px;
    min-height: 42px;
  }

  .footer-social-links a img {
    width: 16px;
    height: 16px;
  }

  .footer-social-links a small {
    font-size: 0.48rem;
  }
}
/* ------------------------------------------------------------
   Hauptsponsor Aktive Herren
   ------------------------------------------------------------ */
.active-main-sponsor-section {
  background: #fff;
}

.active-main-sponsor-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.4rem;
  align-items: center;
  border: 1px solid #dde3e8;
  border-left: 8px solid #9d1f24;
  border-radius: 8px;
  background: #fff;
  padding: 1.35rem;
  box-shadow: 0 2px 12px rgba(31,36,48,.06);
}

.active-main-sponsor-card h2 {
  margin: 0.55rem 0 0.65rem;
}

.active-main-sponsor-card p {
  color: #68707f;
}

.active-main-sponsor-logo {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f7f8fa;
  padding: 1rem;
}

.active-main-sponsor-logo img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.sponsor-proof-card-featured {
  border-left: 8px solid #9d1f24;
}

.sponsor-proof-card-featured img {
  max-height: 240px;
  padding: 0.5rem;
  background: #fff;
}

.sponsor-structure {
  display: grid;
  gap: 1.5rem;
}

.sponsor-main-profile {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.4rem;
  align-items: center;
  border: 1px solid #dde3e8;
  border-left: 8px solid #9d1f24;
  border-radius: 8px;
  background: #fff;
  padding: 1.35rem;
  box-shadow: 0 16px 34px rgba(31, 36, 48, .08);
}

.sponsor-main-profile h3,
.sponsor-category-head h3 {
  margin: 0.5rem 0 0.65rem;
}

.sponsor-main-profile p,
.sponsor-category-head p {
  color: #68707f;
}

.sponsor-main-profile img {
  width: 100%;
  max-height: 245px;
  object-fit: contain;
  border-radius: 8px;
  background: #f7f8fa;
  padding: 0.75rem;
}

.sponsor-main-profile a,
.sponsor-list-grid a,
.sponsor-proof-card a {
  color: #9d1f24;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.sponsor-category-block {
  border: 1px solid #dde3e8;
  border-radius: 8px;
  background: #fff;
  padding: 1.25rem;
}

.sponsor-category-head {
  max-width: 940px;
  margin-bottom: 1rem;
}

.sponsor-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.9rem;
}

.sponsor-list-grid article {
  border: 1px solid #e4e8ed;
  border-radius: 8px;
  background: #f8f9fa;
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
}

.sponsor-list-grid strong {
  color: #202530;
  font-size: 1.02rem;
}

.sponsor-list-grid span {
  color: #68707f;
  line-height: 1.45;
}

.sponsor-pyramid {
  display: grid;
  gap: 0.75rem;
  max-width: 980px;
  margin: 1.5rem auto 0;
}

.sponsor-pyramid-tier {
  position: relative;
  width: min(100%, var(--tier-width, 100%));
  margin-inline: auto;
  border: 1px solid #dde3e8;
  border-radius: 8px;
  background: #fff;
  padding: 1rem 1.15rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(31, 36, 48, .07);
}

.sponsor-pyramid-tier::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  border-radius: 8px 0 0 8px;
  background: var(--tier-color, #d22c2c);
}

.sponsor-pyramid-tier span {
  display: inline-block;
  color: #68707f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sponsor-pyramid-tier h3 {
  margin: 0.28rem 0 0.35rem;
  color: #202530;
}

.sponsor-pyramid-tier p {
  max-width: 760px;
  margin: 0 auto;
  color: #68707f;
}

.sponsor-pyramid-main {
  --tier-width: 58%;
  --tier-color: #8c171c;
  background: #fff5f5;
}

.sponsor-pyramid-gold {
  --tier-width: 66%;
  --tier-color: #b8922b;
}

.sponsor-pyramid-silver {
  --tier-width: 74%;
  --tier-color: #9aa4b2;
}

.sponsor-pyramid-bronze {
  --tier-width: 82%;
  --tier-color: #b66a2c;
}

.sponsor-pyramid-base {
  --tier-width: 90%;
  --tier-color: #d22c2c;
}

.sponsor-pyramid-kind {
  --tier-width: 100%;
  --tier-color: #4f5b6b;
}

.sponsor-partner-pyramid {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.partner-pyramid-row {
  --row-color: #d22c2c;
  display: grid;
  grid-template-columns: minmax(180px, 230px) 1fr;
  gap: 1rem;
  align-items: stretch;
  border: 1px solid #dde3e8;
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 12px 28px rgba(31, 36, 48, .06);
}

.partner-pyramid-row-main {
  --row-color: #8c171c;
  border-left: 8px solid var(--row-color);
}

.partner-pyramid-row-gold {
  --row-color: #b8922b;
  width: 94%;
  margin-inline: auto;
}

.partner-pyramid-row-silver {
  --row-color: #9aa4b2;
  width: 96%;
  margin-inline: auto;
}

.partner-pyramid-row-bronze {
  --row-color: #b66a2c;
  width: 98%;
  margin-inline: auto;
}

.partner-pyramid-row-base {
  --row-color: #d22c2c;
}

.partner-tier-label {
  border-radius: 8px;
  background: #f8f9fa;
  border-left: 6px solid var(--row-color);
  padding: 1rem;
  display: grid;
  align-content: center;
}

.partner-tier-label span {
  color: #68707f;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.partner-tier-label h3 {
  margin: 0.25rem 0 0;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.85rem;
}

.partner-logo-grid-compact {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.7rem;
}

.partner-logo-card,
.partner-name-card,
.partner-placeholder-card {
  min-height: 116px;
  border: 1px solid #e4e8ed;
  border-radius: 8px;
  background: #fff;
  padding: 0.9rem;
  display: grid;
  gap: 0;
  align-content: center;
  justify-items: center;
  text-align: center;
  text-decoration: none;
  color: #202530;
}

.partner-logo-card-main {
  min-height: 190px;
}

.partner-logo-card img {
  width: 100%;
  max-width: 360px;
  max-height: 95px;
  object-fit: contain;
}

.partner-logo-card-main img {
  max-height: 145px;
}

.partner-pyramid-row-bronze .partner-logo-card img {
  max-height: 92px;
}

.partner-pyramid-row-base .partner-logo-card {
  min-height: 96px;
  padding: 0.75rem;
}

.partner-pyramid-row-base .partner-logo-card img {
  max-height: 58px;
}

.partner-pyramid-row-base .partner-logo-card-wide img {
  max-height: 78px;
}

.partner-logo-card strong,
.partner-name-card strong,
.partner-placeholder-card strong {
  color: #202530;
}

.partner-logo-card small,
.partner-placeholder-card small {
  color: #68707f;
}

.partner-name-card {
  background: linear-gradient(180deg, #fff, #f8f9fa);
}

.partner-name-card a {
  color: #9d1f24;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.partner-placeholder-card {
  background: repeating-linear-gradient(135deg, #f8f9fa, #f8f9fa 12px, #fff 12px, #fff 24px);
  color: #68707f;
}

.partner-wordmark-card span {
  color: #202530;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  font-weight: 900;
  letter-spacing: 0.01em;
}

@media (max-width: 860px) {
  .sponsor-main-profile {
    grid-template-columns: 1fr;
  }

  .sponsor-pyramid-tier {
    width: 100%;
    text-align: left;
    padding-left: 1.25rem;
  }

  .sponsor-pyramid-tier p {
    margin: 0;
  }

  .partner-pyramid-row {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

@media (max-width: 860px) {
  .active-main-sponsor-card {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------
   Beitragsordnung
   ------------------------------------------------------------ */
.fee-table-card {
  margin-top: 1.6rem;
  border: 1px solid rgba(210, 44, 44, 0.18);
  border-radius: 8px;
  background: #fff;
  padding: 1.35rem;
  box-shadow: 0 18px 38px rgba(31, 36, 48, 0.09);
  border-top: 5px solid var(--red);
}

.fee-table-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.fee-table-head h3 {
  margin: 0.65rem 0 0.45rem;
  color: var(--ink);
}

.fee-table-head p {
  color: var(--muted);
  margin: 0;
  max-width: 920px;
}

.fee-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  margin-top: 1.15rem;
}

.fee-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  font-size: 0.97rem;
}

.fee-table th {
  background: var(--red);
  color: #fff;
  text-align: left;
  padding: 1rem 1.05rem;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 900;
  line-height: 1.25;
  vertical-align: bottom;
}

.fee-table td {
  padding: 1rem 1.05rem;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--ink);
  vertical-align: middle;
}

.fee-table th:first-child,
.fee-table td:first-child {
  width: 34%;
}

.fee-table th:not(:first-child),
.fee-table td:not(:first-child) {
  width: 22%;
}

.fee-table tbody tr:nth-child(odd) td {
  background: #fff;
}

.fee-table tbody tr:nth-child(even) td {
  background: #fbf3f3;
}

.fee-table tbody tr:hover td {
  background: #fff7f7;
}

.fee-table td:not(:first-child) {
  text-align: right;
  font-weight: 800;
  color: var(--red-dark);
  white-space: nowrap;
}

.fee-table .fee-annual {
  font-size: 1.08rem;
  font-weight: 950;
}

.fee-table td.fee-monthly {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.fee-table td:first-child {
  font-weight: 800;
}

.fee-table-card .source-note {
  margin-top: 1rem;
  border-left: 4px solid var(--red);
  padding: 0.85rem 1rem;
  background: #fff7f7;
  color: var(--ink);
  border-radius: 0 8px 8px 0;
}

@media (max-width: 720px) {
  .fee-table-head {
    flex-direction: column;
  }

  .fee-table-card {
    padding: 1rem;
  }

  .fee-table-wrap {
    border: 0;
    background: transparent;
    overflow: visible;
  }

  .fee-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 0.85rem;
  }

  .fee-table thead {
    display: none;
  }

  .fee-table,
  .fee-table tbody,
  .fee-table tr,
  .fee-table td {
    display: block;
    width: 100% !important;
  }

  .fee-table tr {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 24px rgba(31, 36, 48, 0.07);
  }

  .fee-table td,
  .fee-table tbody tr:nth-child(odd) td,
  .fee-table tbody tr:nth-child(even) td,
  .fee-table tbody tr:hover td {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 1rem;
    align-items: baseline;
    padding: 0.8rem 0.9rem;
    border-top: 1px solid var(--line);
    border-right: 0;
    background: #fff;
    text-align: right;
  }

  .fee-table td:first-child {
    display: block;
    border-top: 0;
    background: var(--red);
    color: #fff;
    font-size: 1.02rem;
    line-height: 1.3;
    text-align: left;
    width: 100% !important;
  }

  .fee-table tbody tr td:first-child,
  .fee-table tbody tr:nth-child(odd) td:first-child,
  .fee-table tbody tr:nth-child(even) td:first-child,
  .fee-table tbody tr:hover td:first-child {
    background: var(--red);
    color: #fff;
  }

  .fee-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-weight: 800;
    text-align: left;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .fee-table td:first-child::before {
    content: none;
  }

  .fee-table td:not(:first-child) {
    white-space: nowrap;
  }

  .fee-table .fee-annual {
    font-size: 1.02rem;
  }

  .fee-table tbody tr td:first-child {
    display: block;
    text-align: left;
  }

  .fee-table td.fee-monthly {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
  }

  .fee-table td.fee-monthly::before {
    font-size: 0.88rem;
    font-weight: 700;
  }
}

/* Vereinswebshop */
.webshop-teaser-section {
  background: #fff;
}

.webshop-teaser,
.webshop-side-panel,
.webshop-sponsor-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(31, 36, 48, 0.08);
}

.webshop-teaser {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.6rem;
}

.webshop-teaser h2,
.webshop-teaser p,
.webshop-side-panel p,
.webshop-sponsor-card p {
  margin-bottom: 0;
}

.webshop-hero .split {
  align-items: stretch;
}

.webshop-side-panel,
.webshop-sponsor-card {
  padding: 1.5rem;
  border-top: 5px solid var(--red);
}

.webshop-side-panel span,
.webshop-sponsor-card strong {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--red-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.webshop-side-panel strong {
  display: block;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.webshop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.webshop-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  gap: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 12px 28px rgba(31, 36, 48, 0.08);
}

.webshop-card-active {
  border-top: 5px solid var(--red);
}

.webshop-card h3 {
  margin-top: 0.55rem;
}

.webshop-sponsor-section .split {
  align-items: center;
}

.webshop-sponsor-card .actions {
  margin-top: 1rem;
}

@media (max-width: 760px) {
  .webshop-teaser {
    flex-direction: column;
    align-items: flex-start;
  }

  .webshop-grid {
    grid-template-columns: 1fr;
  }

  .webshop-card {
    min-height: 0;
  }
}

.image-card img.news-kinderfussball-photo,
.news-featured .image-card img.news-kinderfussball-photo,
.image-card img.news-kinderfussball-card-photo {
  object-fit: cover;
  object-position: center;
  background: #f7f8fa;
}

