:root {
  --ink: #0a0b0f;
  --muted: #62666f;
  --paper: #f5f5f5;
  --surface: #ffffff;
  --black: #000000;
  --black-2: #1c1c1c;
  --line: rgba(10, 11, 15, 0.08);
  --line-strong: rgba(10, 11, 15, 0.14);
  --red: #e10600;
  --red-dark: #a90000;
  --red-soft: rgba(225, 6, 0, 0.10);
  --gold: #d4af37;
  --gold-soft: #f4ecd0;
  --off-white: #f5f5f5;
  --steel: #e6e8ec;
  --glass: rgba(255, 255, 255, 0.62);
  --glass-dark: rgba(255, 255, 255, 0.08);
  --shadow: 0 28px 80px rgba(10, 11, 15, 0.14), 0 4px 12px rgba(10, 11, 15, 0.05);
  --shadow-soft: 0 18px 46px rgba(10, 11, 15, 0.08);
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1200px;
  --font-headline: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(225, 6, 0, 0.035) 0 1px, transparent 1px 80px),
    radial-gradient(900px 600px at 85% -10%, rgba(225, 6, 0, 0.09), transparent 60%),
    radial-gradient(700px 500px at -5% 30%, rgba(10, 11, 15, 0.055), transparent 60%),
    var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 1.4rem;
  line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.08;
}

body::before {
  content: "";
  position: fixed;
  right: max(-120px, -7vw);
  bottom: max(-120px, -9vw);
  z-index: 8;
  width: min(54vw, 620px);
  aspect-ratio: 853 / 863;
  pointer-events: none;
  background: url("Bilder/Logo/VCOLogoNeu.png") center / contain no-repeat;
  filter: grayscale(1) contrast(1.15);
  opacity: 0.045;
  mix-blend-mode: multiply;
}

body::after {
  content: "";
  position: fixed;
  left: max(-42px, 3vw);
  top: -18px;
  z-index: 8;
  width: min(48vw, 560px);
  aspect-ratio: 1 / 1;
  pointer-events: none;
  background: url("Bilder/Logo/DVV_BSP_Logo_Berlin.png") center / contain no-repeat;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.038;
  mix-blend-mode: multiply;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

:where(a, button, summary, input, select, textarea):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--black);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Header */
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 32px), var(--max));
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 11, 15, 0.55);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

.site-header.is-scrolled {
  background: rgba(10, 11, 15, 0.82);
  border-color: rgba(255, 255, 255, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.05;
  white-space: nowrap;
}

.brand small {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-search {
  position: relative;
  width: 174px;
  margin-right: 4px;
}

.nav-search input {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
  outline: 0;
}

.nav-search input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.nav-search input:focus {
  border-color: rgba(212, 175, 55, 0.70);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.nav-search .search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 70;
  width: min(310px, 78vw);
  display: none;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  background: rgba(8, 9, 13, 0.96);
  box-shadow: var(--shadow);
}

.nav-search:focus-within .search-results {
  display: grid;
}

.nav-search .search-results a,
.nav-search .search-empty {
  display: flex;
  align-items: center;
  cursor: pointer;
  pointer-events: auto;
  padding: 11px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 850;
}

.nav-search .search-results a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.site-nav a,
.nav-group summary {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.nav-group summary:hover,
.nav-group[open] summary,
.nav-group.has-current summary,
.site-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--red);
}

.nav-group {
  position: relative;
}

.nav-group summary {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.72;
  transition: transform 180ms ease;
}

.nav-group[open] summary::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 60;
  width: 286px;
  display: none;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  background: rgba(8, 9, 13, 0.96);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.nav-group:hover .nav-dropdown,
.nav-group[open] .nav-dropdown {
  display: grid;
}

.nav-dropdown a {
  display: grid;
  gap: 2px;
  padding: 13px 14px;
  border-radius: 12px;
}

.nav-dropdown a strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.1;
}

.nav-dropdown a span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
  background: rgba(225, 6, 0, 0.16);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

/* Shared */
.section {
  position: relative;
  padding: 120px 0;
}

.section-compact-bottom {
  padding-bottom: 0;
}

.section-head p,
.cta-content p,
.hero-content p,
.story-strip p,
.content-card p,
.match-meta dd,
.match-meta dt,
.contact-form label {
  line-height: 1.75;
}

.section-head p {
  color: var(--muted);
}

.section-inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.section-head {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-head.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head h2,
.cta-content h2,
.hero-content h1 {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-head h2 {
  max-width: 880px;
  font-size: clamp(38px, 6vw, 76px);
}

.section-head p,
.cta-content p,
.hero-content p {
  color: var(--muted);
  font-size: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 7px 12px 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(225, 6, 0, 0.16);
}

.eyebrow.dark {
  color: var(--red);
  border-color: var(--line-strong);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.section-head .eyebrow-gold,
.eyebrow-gold {
  color: var(--gold);
}

.eyebrow-gold::before {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.18);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--gold-soft);
  border-color: rgba(212, 175, 55, 0.34);
}

.button-light {
  color: var(--ink);
  background: #fff;
}

.button-beach {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.92), rgba(10, 11, 15, 0.72)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(225, 6, 0, 0.22);
}

.button-beach::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.16);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.05);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--red);
  font-weight: 900;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 150px 0 64px;
  overflow: hidden;
  color: #fff;
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0;
  filter: saturate(1.08) contrast(1.12);
  transition: opacity 1600ms ease-in-out, transform 9000ms ease-out;
  transform: scale(1.04);
}

.hero-media img.is-active {
  opacity: 0.86;
  transform: scale(1.10);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.92), rgba(5, 6, 9, 0.46) 48%, rgba(5, 6, 9, 0.82)),
    linear-gradient(0deg, rgba(5, 6, 9, 0.95), rgba(5, 6, 9, 0.08) 55%, rgba(5, 6, 9, 0.50));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding-bottom: 132px;
}

.hero-content h1 {
  max-width: 820px;
  font-size: clamp(54px, 7.4vw, 106px);
}

.hero-content p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-gallery {
  position: absolute;
  right: max(16px, calc((100vw - var(--max)) / 2));
  bottom: 152px;
  z-index: 2;
  width: min(34vw, 420px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
}

.hero-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.hero-gallery img:first-child {
  grid-row: span 2;
  height: 310px;
}

/* Matchcenter */
.matchcenter {
  position: relative;
  background:
    radial-gradient(circle at 12% 0%, rgba(225, 6, 0, 0.10), transparent 38%),
    radial-gradient(circle at 92% 100%, rgba(10, 11, 15, 0.06), transparent 42%),
    linear-gradient(180deg, #ffffff, var(--off-white));
}

.match-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
}

.match-main,
.match-side {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: var(--shadow);
}

.match-main {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 46px);
}

.match-main::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(var(--red), var(--red-dark));
}

.match-label {
  margin: 0 0 20px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.match-teams {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: clamp(34px, 5.2vw, 64px);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.match-teams b {
  color: var(--red);
  font-size: 24px;
  letter-spacing: 0;
}

.match-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0;
}

.match-meta div {
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.match-meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.match-meta dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.match-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.match-side {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.match-side a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 18px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.match-side a::after {
  content: "↗";
  color: var(--red);
  font-size: 18px;
}

.match-side a:hover {
  border-color: rgba(225, 6, 0, 0.28);
  color: var(--red);
  background: #fff;
}

/* Servicehub */
.service-hub {
  background:
    linear-gradient(135deg, rgba(10, 11, 15, 0.04), transparent 38%),
    linear-gradient(180deg, var(--off-white), #fff);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 20px;
  align-items: start;
}

.service-layout-single {
  display: block;
}

.site-search,
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.site-search {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 30px);
  position: sticky;
  top: 118px;
}

.site-search h3 {
  margin: 2px 0 0;
  font-family: var(--font-headline);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.site-search input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 0 16px;
  background: var(--off-white);
  color: var(--ink);
  font-weight: 750;
}

.search-results {
  display: grid;
  gap: 8px;
}

.search-results a,
.search-empty {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.search-results a::after {
  content: "→";
  color: var(--red);
}

.search-empty {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 212px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 6, 0, 0.28);
  box-shadow: var(--shadow);
}

.service-card span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 24px 0 8px;
  font-size: 1.18rem;
  line-height: 1.12;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

/* Zentrale Einstiege */
.entry-section {
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.10), transparent 32%),
    linear-gradient(180deg, var(--off-white), #fff);
}

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

.entry-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--black-2);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.entry-card::before,
.entry-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.entry-card::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.88)),
    linear-gradient(135deg, rgba(225, 6, 0, 0.50), transparent 48%);
}

.entry-card::after {
  right: -64px;
  top: -64px;
  z-index: 2;
  width: 170px;
  height: 170px;
  border: 20px solid rgba(212, 175, 55, 0.22);
  border-radius: 50%;
}

.entry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
}

.entry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.10);
  transition: transform 520ms ease;
}

.entry-card:hover img {
  transform: scale(1.04);
}

.entry-card span,
.entry-card h3,
.entry-card p {
  position: relative;
  z-index: 3;
}

.entry-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.entry-card h3 {
  margin: 10px 0;
  font-family: var(--font-headline);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 0.98;
  text-transform: uppercase;
}

.entry-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

/* Vorteile */
.advantages {
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(212, 175, 55, 0.12) 0 1px, transparent 1px 96px),
    radial-gradient(circle at 8% 12%, rgba(225, 6, 0, 0.34), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(212, 175, 55, 0.18), transparent 34%),
    var(--black-2);
  color: #fff;
}

.advantages::before {
  content: "VCO";
  position: absolute;
  right: 5vw;
  top: 40px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-headline);
  font-size: clamp(140px, 24vw, 330px);
  line-height: 0.8;
}

.advantages .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.split-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.advantage-list {
  display: grid;
  gap: 14px;
}

.advantage-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
}

.advantage-list article:hover {
  border-color: rgba(212, 175, 55, 0.52);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.advantage-list span {
  grid-row: 1 / span 2;
  color: var(--gold);
  font-size: 24px;
  font-weight: 900;
}

.advantage-list h3 {
  grid-column: 2;
  margin: 0 0 6px;
  font-family: var(--font-headline);
  font-size: 22px;
  text-transform: uppercase;
}

.advantage-list p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.feature-tiles {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
  margin-top: 56px;
}

.feature-tiles a {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
}

.feature-tiles a:first-child {
  min-height: 240px;
}

.feature-tiles img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease;
}

.feature-tiles a:hover img {
  transform: scale(1.04);
}

.feature-tiles a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 6, 9, 0.88));
}

.feature-tiles div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}

.feature-tiles span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-tiles h3 {
  max-width: 360px;
  margin: 6px 0 0;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 0.98;
  text-transform: uppercase;
}

/* Team */
.team-section {
  background: var(--paper);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.person-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e8e4db;
  box-shadow: var(--shadow);
}

.person-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 480ms ease;
}

.person-card:hover img {
  transform: scale(1.035);
}

.person-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(5, 6, 9, 0.92));
}

.person-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
}

.person-card p,
.person-card h3 {
  margin: 0;
}

.person-card p {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.person-card h3 {
  font-size: 32px;
  line-height: 1;
}

.person-card span {
  color: rgba(255, 255, 255, 0.76);
}

.story-strip {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 60px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: var(--shadow);
}

.story-strip img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

.story-strip h3 {
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story-strip p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.roster-head {
  margin-top: 54px;
}

.player-page .roster-head {
  margin-top: 46px;
}

.roster-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.roster-summary div,
.roster-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.roster-summary div {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 22px;
}

.roster-summary strong {
  font-family: var(--font-headline);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.95;
  color: var(--red);
  text-transform: uppercase;
}

.roster-summary span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roster-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.roster-jump a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.roster-jump a:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 6, 0, 0.36);
  color: var(--red);
}

.position-group {
  margin-top: 48px;
  scroll-margin-top: 120px;
}

.position-group:first-of-type {
  margin-top: 0;
}

.position-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  font-family: var(--font-headline);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-transform: uppercase;
}

.position-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}

.position-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(225, 6, 0, 0.30);
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 56px;
}

.player,
.trainer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.42)),
    url("Bilder/Logo/VCOLogoNeu.png") -28px calc(100% - 12px) / 62% no-repeat,
    linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
  box-shadow: 0 18px 46px rgba(10, 11, 15, 0.10), 0 2px 6px rgba(10, 11, 15, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

a.player:hover,
a.trainer:hover {
  border-color: rgba(225, 6, 0, 0.30);
  box-shadow: var(--shadow);
}

.player {
  aspect-ratio: 4 / 5;
  min-height: 300px;
}

.player-media,
.trainer-media {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 72%, rgba(0, 0, 0, 0.55) 86%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 72%, rgba(0, 0, 0, 0.55) 86%, rgba(0, 0, 0, 0) 100%);
}

.player-media img,
.trainer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transform: scale(1.05);
  transform-origin: center top;
  transition: transform 540ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 320ms ease;
  filter: saturate(1.06) contrast(1.03);
}

a.player:hover .player-media img,
a.trainer:hover .trainer-media img {
  transform: scale(1.1);
  filter: saturate(1.18) contrast(1.07);
}

.player-pos {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  min-width: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  box-shadow: 0 10px 22px rgba(225, 6, 0, 0.42);
}

.player-num {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 1;
  max-width: calc(100% - 24px);
  font-family: var(--font-headline);
  font-size: clamp(58px, 8vw, 100px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.04em;
  white-space: nowrap;
  text-align: right;
  background: linear-gradient(155deg, rgba(201, 161, 74, 0.78) 0%, rgba(201, 161, 74, 0.32) 55%, rgba(201, 161, 74, 0.10) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184, 146, 58, 0.38);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 4px 18px rgba(201, 161, 74, 0.22));
  pointer-events: none;
  transition: transform 560ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 320ms ease, letter-spacing 360ms ease;
}

a.player:hover .player-num {
  transform: translate(-4px, 4px) rotate(-1.5deg) scale(1.03);
  letter-spacing: -0.045em;
  filter: drop-shadow(0 8px 26px rgba(201, 161, 74, 0.34));
}

.player-info,
.trainer-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 14px 18px 16px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.player-info::before,
.trainer-info::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

a.player:hover .player-info::before,
a.trainer:hover .trainer-info::before {
  width: 100%;
}

.player-info .name,
.trainer-info .name {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.player-info .meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.player-info .gold {
  color: var(--red);
}

.roster-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 58px;
  padding: 24px;
}

.roster-note p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.player.is-placeholder,
.trainer.is-placeholder {
  border-style: dashed;
  border-color: var(--line-strong);
  background:
    linear-gradient(rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.42)),
    url("Bilder/Logo/VCOLogoNeu.png") -28px calc(100% - 12px) / 62% no-repeat,
    linear-gradient(160deg, #f7f8fa, #eceef2);
  box-shadow: none;
}

.player.is-placeholder .player-media,
.trainer.is-placeholder .trainer-media {
  background: transparent;
}

.player.is-placeholder .player-media::before,
.trainer.is-placeholder .trainer-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.75) 100%);
  pointer-events: none;
}

.player.is-placeholder .player-pos,
.trainer.is-placeholder .trainer-info .role {
  background: var(--gold-soft);
  color: var(--muted);
  box-shadow: none;
}

.player.is-placeholder .player-num {
  background: linear-gradient(155deg, rgba(10, 11, 15, 0.12) 0%, rgba(10, 11, 15, 0.03) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(10, 11, 15, 0.08);
  filter: none;
}

.player.is-placeholder .player-info,
.trainer.is-placeholder .trainer-info {
  background: rgba(255, 255, 255, 0.96);
}

.player.is-placeholder .player-info .name,
.trainer.is-placeholder .trainer-info .name {
  color: var(--muted);
  font-weight: 800;
}

.player.is-placeholder .player-info .gold {
  color: var(--muted);
}

.trainer-block {
  margin-top: 62px;
}

.trainer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 22px;
  row-gap: 28px;
}

.trainer {
  aspect-ratio: 4 / 5;
  min-height: 360px;
}

.trainer-info .role {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--red);
  background: var(--red-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.trainer-info .name {
  font-size: clamp(17px, 1.6vw, 20px);
}

/* Sponsoren */
.sponsors {
  background: #fff;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.sponsor-grid img {
  width: 100%;
  height: 108px;
  object-fit: contain;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.sponsor-grid img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

/* CTA */
.cta-section {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--black);
}

.cta-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.64;
}

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.94), rgba(5, 6, 9, 0.28)),
    linear-gradient(0deg, rgba(5, 6, 9, 0.72), transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max));
  max-width: 850px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(42px, 6vw, 82px);
}

.cta-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.80);
  font-weight: 650;
}

/* Kontakt */
.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
 
.contact-form label {
  color: var(--ink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  text-transform: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.form-note a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Unterseiten */
.subpage-main {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(225, 6, 0, 0.045) 0 1px, transparent 1px 92px),
    linear-gradient(180deg, #ffffff 0%, var(--off-white) 42%, #ffffff 100%);
}

.subpage-main::before {
  content: "VCO";
  position: absolute;
  right: -2vw;
  top: 540px;
  color: rgba(10, 11, 15, 0.035);
  font-family: var(--font-headline);
  font-size: clamp(180px, 26vw, 380px);
  line-height: 0.8;
  pointer-events: none;
}

.subpage-main > .section {
  position: relative;
  z-index: 1;
  padding: 78px 0;
}

.subpage-main > .section + .section {
  padding-top: 22px;
}

.subpage-main > .section::before {
  content: "";
  position: absolute;
  inset: 20px max(16px, calc((100vw - var(--max)) / 2)) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.28), transparent);
  pointer-events: none;
}

.page-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--black);
  padding: 138px 0 58px;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(1.06) contrast(1.04);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.94), rgba(5, 6, 9, 0.36)),
    linear-gradient(0deg, rgba(5, 6, 9, 0.90), transparent 58%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 650;
}

.player-hero {
  min-height: 620px;
  align-items: end;
  padding: 150px 0 70px;
}

.player-hero .player-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  opacity: 0.82;
  filter: saturate(1.08) contrast(1.06);
  transform: none;
}

.player-hero::after {
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.92), rgba(5, 6, 9, 0.48) 48%, rgba(5, 6, 9, 0.20)),
    linear-gradient(0deg, rgba(5, 6, 9, 0.86), rgba(5, 6, 9, 0.06) 62%);
}

.player-hero .page-hero-content {
  padding-right: min(28vw, 340px);
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.7fr);
  gap: 30px;
  align-items: start;
}

.page-intro .section-head {
  margin-bottom: 0;
}

.quick-links {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.62)),
    linear-gradient(0deg, rgba(5, 6, 9, 0.52), rgba(5, 6, 9, 0.08)),
    url("Bilder/Hero/ActionBild.jpeg") center / cover;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: var(--shadow-soft);
}

.quick-links a,
.quick-links span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 900;
  transition: border-color 180ms ease, transform 180ms ease;
}

.quick-links a:hover {
  border-color: rgba(225, 6, 0, 0.45);
  transform: translateX(3px);
}

.quick-links a::after {
  content: "→";
  color: var(--red);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.content-card {
  --card-image: url("Bilder/Hero/ActionBild.jpeg");
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(5, 6, 9, 0.04) 0%, rgba(5, 6, 9, 0.36) 38%, rgba(5, 6, 9, 0.92) 100%),
    linear-gradient(120deg, rgba(225, 6, 0, 0.42), rgba(5, 6, 9, 0.10) 45%),
    var(--card-image) center / cover;
  box-shadow: var(--shadow);
}

.content-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 45%, rgba(255, 255, 255, 0.12) 50%, transparent 58%),
    radial-gradient(circle at 12% 10%, rgba(225, 6, 0, 0.35), transparent 34%);
  opacity: 0.78;
  pointer-events: none;
}

.content-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border: 18px solid rgba(10, 11, 15, 0.035);
  border-radius: 50%;
}

.content-card > * {
  position: relative;
  z-index: 1;
}

.content-card strong {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 8px 20px rgba(225, 6, 0, 0.34);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-card h3 {
  margin: 12px 0 10px;
  color: #fff;
  font-family: var(--font-headline);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.02;
  text-transform: uppercase;
}

.content-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 650;
}

.content-grid > .content-card:nth-child(1) {
  --card-image: url("Bilder/Hero/ActionBild.jpeg");
}

.content-grid > .content-card:nth-child(2) {
  --card-image: url("Bilder/Hero/CoachRys.jpeg");
}

.content-grid > .content-card:nth-child(3) {
  --card-image: url("Bilder/Hero/TeamBild.jpeg");
}

.content-grid > .content-card:nth-child(4) {
  --card-image: url("Bilder/Hero/6U7A6724.jpg");
}

.content-grid > .content-card:nth-child(5) {
  --card-image: url("Bilder/Hero/Win.jpeg");
}

.content-grid > .content-card:nth-child(6) {
  --card-image: url("Bilder/Hero/MannschaftsbildAbschluss.jpeg");
}

.content-grid > .content-card:nth-child(7) {
  --card-image: url("Bilder/Hero/6U7A6482.jpg");
}

.content-grid > .content-card:nth-child(8) {
  --card-image: url("Bilder/Hero/6U7A6258.jpg");
}

.content-grid > .content-card:nth-child(9) {
  --card-image: url("Bilder/Hero/ActionBild.jpeg");
}

a.content-card {
  display: block;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

a.content-card:hover {
  border-color: rgba(255, 255, 255, 0.30);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.vbl-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.vbl-service-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(5, 6, 9, 0.95), rgba(24, 27, 33, 0.84)),
    radial-gradient(circle at 85% 10%, rgba(225, 6, 0, 0.55), transparent 36%);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.vbl-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 45%, rgba(255, 255, 255, 0.13) 50%, transparent 57%),
    linear-gradient(0deg, rgba(5, 6, 9, 0.86), transparent 70%);
  pointer-events: none;
}

.vbl-service-card::after {
  content: "VBL";
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-headline);
  font-size: 78px;
  line-height: 0.85;
}

.vbl-service-card.dvv-card::after {
  content: "DVV";
}

.vbl-service-card.dyn-card::after {
  content: "DYN";
}

.vbl-service-card.youtube-card::after {
  content: "YT";
}

.vbl-service-card:hover {
  box-shadow: 0 34px 90px rgba(10, 11, 15, 0.22);
  transform: translateY(-4px);
}

.vbl-service-card > * {
  position: relative;
  z-index: 1;
}

.service-logo {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.vbl-service-card strong {
  display: block;
  max-width: 100%;
  font-size: clamp(25px, 2.2vw, 32px);
  line-height: 0.95;
}

.vbl-service-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

.service-kicker {
  width: max-content;
  margin-bottom: 18px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 8px 20px rgba(225, 6, 0, 0.34);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dyn-card {
  grid-column: span 3;
  background:
    linear-gradient(145deg, rgba(225, 6, 0, 0.94), rgba(5, 6, 9, 0.88)),
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.24), transparent 34%);
}

.ticker-card {
  background:
    linear-gradient(145deg, rgba(5, 6, 9, 0.94), rgba(225, 6, 0, 0.48)),
    radial-gradient(circle at 90% 8%, rgba(255, 255, 255, 0.22), transparent 34%);
}

.ticker-card::after {
  content: "LIVE";
}

.dyn-card::after {
  content: "DYN";
}

.news-list {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 20px;
}

.news-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.05));
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 6, 0, 0.32);
  box-shadow: var(--shadow);
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.08);
  transition: transform 420ms ease, filter 420ms ease;
}

.news-card:first-child img {
  height: 240px;
}

.news-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.10) contrast(1.12);
}

.news-card div {
  padding: 20px;
}

.news-card time,
.news-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 10px 0 8px;
  font-family: var(--font-headline);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  text-transform: uppercase;
}

.news-card p {
  margin: 0;
  color: var(--muted);
}

.image-band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.20);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.92), rgba(28, 28, 28, 0.86)),
    radial-gradient(circle at 15% 0%, rgba(225, 6, 0, 0.32), transparent 38%);
  box-shadow: var(--shadow);
}

.image-band img {
  width: 100%;
  height: clamp(260px, 32vw, 420px);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  filter: saturate(1.04) contrast(1.10);
}

.page-cta {
  position: relative;
  overflow: hidden;
  padding: 56px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 0% 0%, rgba(225, 6, 0, 0.55), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(212, 175, 55, 0.18), transparent 50%),
    linear-gradient(135deg, #14161c, #050609);
  box-shadow: var(--shadow);
}

.page-cta h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
  text-transform: uppercase;
}

.page-cta p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.media-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 0 0, rgba(212, 175, 55, 0.22), transparent 40%),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.media-strip h2 {
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.96;
  text-transform: uppercase;
}

.media-strip p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.legal-text {
  max-width: 860px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: var(--shadow-soft);
}

.legal-text h2 {
  margin-top: 34px;
  font-family: var(--font-headline);
  font-size: 30px;
  text-transform: uppercase;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text p,
.legal-text li {
  color: var(--muted);
}

.legal-text h3 {
  margin: 26px 0 8px;
  font-size: 20px;
}

.legal-text a {
  color: var(--red);
  font-weight: 800;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 20px 0 30px;
}

.legal-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.legal-card p {
  margin: 0;
}

.legal-note {
  margin-top: 28px;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  background: var(--gold-soft);
  color: var(--ink);
}

/* Footer */
.site-footer {
  padding: 34px 0;
  color: #fff;
  background: var(--black);
}

.footer-inner {
  width: min(calc(100% - 32px), var(--max));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.site-footer nav a:hover {
  color: #fff;
}

/* Animationen */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .content-grid.reveal,
.js .news-list.reveal,
.js .sponsor-grid.reveal,
.js .quick-links.reveal,
.js .service-layout.reveal,
.js .match-grid.reveal {
  opacity: 1;
  transform: none;
}

/* Anchor-Karten (gewrappte Cards) */
a.news-card,
a.player,
a.trainer,
a.person-card,
.feature-tiles a {
  display: block;
  color: inherit;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

a.player,
a.trainer {
  text-decoration: none;
}

a.person-card:hover,
.feature-tiles a:hover {
  transform: translateY(-4px);
}

a.player:hover,
a.trainer:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(10, 11, 15, 0.30);
}

.sponsor-grid a {
  display: block;
  border-radius: 16px;
  transition: transform 220ms ease;
}

.sponsor-grid a:hover {
  transform: translateY(-2px);
}

.sponsor-grid a img {
  display: block;
}

.sponsor-name {
  display: block;
  margin-top: 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-gallery {
    display: none;
  }

  .roster-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 40px;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 20px;
    background: rgba(5, 6, 9, 0.97);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .nav-search {
    width: 100%;
    margin: 0 0 6px;
  }

  .nav-search input {
    height: 46px;
    border-radius: 14px;
  }

  .nav-search .search-results {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }

  .nav-group summary {
    justify-content: space-between;
    padding: 14px 16px;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    margin: 0 0 8px;
    padding: 6px;
    border-color: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown a {
    padding: 12px 14px;
  }

  .nav-dropdown a span {
    display: none;
  }

  .match-grid,
  .service-layout,
  .split-layout,
  .story-strip,
  .contact-grid,
  .page-intro,
  .image-band,
  .media-strip {
    grid-template-columns: 1fr;
  }

  .match-meta,
  .service-grid,
  .roster-summary,
  .team-grid,
  .feature-tiles,
  .entry-grid,
  .content-grid,
  .news-list,
  .legal-grid,
  .photo-gallery {
    grid-template-columns: 1fr;
  }

  .photo-gallery {
    grid-auto-rows: auto;
  }

  .photo-gallery a,
  .photo-gallery figure {
    min-height: 260px;
  }

  .photo-gallery a:nth-child(1),
  .photo-gallery figure:nth-child(1) {
    grid-row: auto;
  }

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

  .dyn-card {
    grid-column: span 2;
  }

  .roster-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 32px;
  }

  .trainer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 28px;
  }

  .feature-tiles a,
  .feature-tiles a:first-child {
    min-height: 320px;
  }

  .sponsor-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-content {
    padding-bottom: 150px;
  }

  .site-search {
    position: static;
  }
}

@media (max-width: 640px) {
  body::before {
    right: -96px;
    bottom: 8svh;
    width: min(78vw, 360px);
    opacity: 0.038;
  }

  body::after {
    left: -42px;
    top: -12px;
    width: min(74vw, 340px);
    opacity: 0.032;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 24px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero-section {
    min-height: 92svh;
    padding-top: 126px;
  }

  .hero-content {
    padding-bottom: 122px;
  }

  .hero-content h1 {
    font-size: clamp(46px, 15vw, 70px);
  }

  .hero-actions,
  .match-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 76px 0;
  }

  .photo-gallery {
    padding: 12px;
  }

  .photo-gallery a,
  .photo-gallery figure {
    min-height: 230px;
  }

  .photo-gallery a:nth-child(n + 5),
  .photo-gallery figure:nth-child(n + 5) {
    display: none;
  }

  .entry-card {
    min-height: 330px;
  }

  .roster-summary {
    grid-template-columns: 1fr;
  }

  .feature-tiles a,
  .feature-tiles a:first-child {
    min-height: 280px;
  }

  .media-strip,
  .legal-text {
    padding: 24px;
  }

  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vbl-service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 180px;
  }

  .vbl-service-card,
  .dyn-card {
    grid-column: auto;
    min-height: 220px;
  }

  .roster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 22px;
  }

  .player {
    min-height: 260px;
  }

  .player-pos {
    top: 10px;
    left: 10px;
    min-width: 28px;
    padding: 5px 8px;
    font-size: 10px;
  }

  .player-num {
    top: 8px;
    right: 10px;
    font-size: 64px;
  }

  .player-info,
  .trainer-info {
    padding: 12px 14px 14px;
  }

  .player-info .name {
    font-size: 14px;
  }

  .player-info .meta {
    font-size: 11px;
  }

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

  .trainer {
    min-height: 420px;
  }

  .person-card {
    min-height: 430px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Countdown */
.match-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.match-countdown div {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
}

.match-countdown span {
  display: block;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 900;
  line-height: 1;
}

.match-countdown small {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.match-countdown.is-live {
  background: rgba(220, 30, 30, 0.08);
  border-radius: 14px;
}

/* Sponsor Benefits */
.sponsor-benefits {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.sponsor-benefits li {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 14px;
  padding: 18px;
}

.sponsor-benefits strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

.sponsor-benefits span {
  display: block;
  font-size: 0.92rem;
  opacity: 0.78;
  line-height: 1.5;
}

/* Photo Gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  grid-auto-rows: 210px;
  gap: 16px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.20);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.92), rgba(28, 28, 28, 0.84)),
    radial-gradient(circle at 0 0, rgba(225, 6, 0, 0.26), transparent 42%);
  box-shadow: var(--shadow);
}

.photo-gallery a,
.photo-gallery figure {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  aspect-ratio: auto;
  background: #111;
  margin: 0;
}

.photo-gallery a:nth-child(1),
.photo-gallery figure:nth-child(1) {
  grid-row: span 2;
}

.photo-gallery a:nth-child(n + 7),
.photo-gallery figure:nth-child(n + 7) {
  display: none;
}

.photo-gallery a::after,
.photo-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.38)),
    linear-gradient(135deg, rgba(225, 6, 0, 0.12), transparent 46%);
  pointer-events: none;
}

.photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.06) contrast(1.10);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.photo-gallery a:hover img,
.photo-gallery figure:hover img {
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.14);
}

.photo-gallery figcaption,
.photo-credit {
  font-size: 0.78rem;
  opacity: 0.65;
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* Achievement cards (kompakt) */
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.achievement-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.achievement-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.achievement-card > img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.08);
}

.achievement-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.achievement-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 8px;
  background: var(--gold-soft);
  color: #6b5410;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.achievement-body h3 {
  margin: 2px 0 0;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.achievement-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.achievement-body small {
  font-size: 0.7rem;
  opacity: 0.7;
}

.achievement-body small a {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .photo-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .photo-gallery a,
  .photo-gallery figure {
    min-height: 260px;
  }

  .photo-gallery a:nth-child(1),
  .photo-gallery figure:nth-child(1) {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .photo-gallery {
    padding: 12px;
  }

  .photo-gallery a,
  .photo-gallery figure {
    min-height: 230px;
  }

  .photo-gallery a:nth-child(n + 5),
  .photo-gallery figure:nth-child(n + 5) {
    display: none;
  }
}

/* Ticket list */
.ticket-list {
  display: grid;
  gap: 14px;
}

.ticket-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.ticket-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  text-transform: uppercase;
  line-height: 1;
}

.ticket-date .day {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.75;
}

.ticket-date .num {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 900;
  margin: 4px 0;
}

.ticket-date .month {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  opacity: 0.75;
}

.ticket-info h3 {
  margin: 6px 0;
  font-family: var(--font-headline);
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.05;
}

.ticket-info h3 em {
  font-style: normal;
  color: var(--red);
  margin: 0 6px;
}

.ticket-meta {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.ticket-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}

@media (max-width: 720px) {
  .ticket-row {
    grid-template-columns: 90px 1fr;
    gap: 14px;
  }
  .ticket-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    min-width: 0;
  }
  .ticket-actions .button { flex: 1; }
}

/* Price grid */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.price-card-feature {
  border-color: var(--red);
  box-shadow: 0 18px 46px rgba(225, 6, 0, 0.18);
}

.price-tag {
  display: inline-block;
  padding: 5px 10px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  margin: 14px 0 12px;
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 10px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 10px;
  max-width: 880px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 18px;
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 0;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--red);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item p a { color: var(--red); text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Social Hub */
.social-hub {
  background: linear-gradient(180deg, var(--paper), #fff);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.social-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 22px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 6, 0, 0.32);
  box-shadow: var(--shadow);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.social-card strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.social-card small {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.social-card .social-meta {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

/* Newsletter */
.newsletter-box {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 28px;
  padding: 32px 36px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.newsletter-box .eyebrow.dark {
  color: var(--red);
  background: #fff;
  box-shadow: none;
}

.newsletter-text h3 {
  margin: 8px 0;
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.newsletter-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  grid-column: 1 / 2;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.newsletter-form button {
  grid-column: 2 / 3;
}

.newsletter-consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.newsletter-consent a {
  color: #fff;
  text-decoration: underline;
}

.newsletter-feedback {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: 0.85rem;
  font-weight: 700;
}

.newsletter-feedback.is-success {
  color: #6ee7b7;
}

.newsletter-feedback.is-error {
  color: #fca5a5;
}

@media (max-width: 720px) {
  .newsletter-box {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }
  .newsletter-form {
    grid-template-columns: 1fr;
  }
  .newsletter-form button {
    grid-column: 1 / -1;
  }
}

/* Beach Section (Startseite) */
.beach-section {
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(245, 196, 80, 0.28), transparent 60%),
    radial-gradient(700px 400px at 5% 80%, rgba(212, 175, 55, 0.10), transparent 60%),
    linear-gradient(180deg, #fff6e2, #fffaf0);
}

.beach-section .advantage-list article {
  border-color: rgba(212, 175, 55, 0.32);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.beach-section .advantage-list article:hover {
  border-color: rgba(212, 175, 55, 0.7);
  background: #fff;
}

.beach-section .advantage-list article span {
  color: #b58a1c;
  font-family: var(--font-headline);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.beach-section .advantage-list h3 {
  color: var(--ink);
}

.beach-section .advantage-list p {
  color: var(--muted);
}

.beach-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.beach-strip a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  max-height: 160px;
  background: #111;
}

.beach-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.beach-strip a:hover img {
  transform: scale(1.05);
}

@media (max-width: 720px) {
  .beach-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

.player-profile-layout {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
}

.profile-player-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.42)),
    url("Bilder/Logo/VCOLogoNeu.png") -28px calc(100% - 12px) / 62% no-repeat,
    linear-gradient(180deg, #ffffff 0%, var(--off-white) 100%);
  box-shadow: var(--shadow);
}

.profile-player-card > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center 10%;
  filter: saturate(1.07) contrast(1.03);
}

.profile-player-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.profile-player-info .name {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 950;
  line-height: 1.05;
}

.profile-player-info .meta {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.profile-player-info .meta span {
  color: var(--red);
}

.profile-panel,
.profile-section {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.profile-panel {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
}

.profile-panel h2 {
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  text-transform: uppercase;
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.profile-facts div {
  padding: 15px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 12px;
  background: #fff;
}

.profile-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-facts dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-section {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 42px);
}

.profile-section .section-head {
  margin-bottom: 28px;
}

.profile-timeline {
  position: relative;
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(var(--red), rgba(212, 175, 55, 0.28), transparent);
}

.profile-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: 0 0 0 58px;
}

.profile-timeline li.is-text-only {
  grid-template-columns: minmax(0, 0.72fr);
}

.profile-timeline li::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 22px;
  width: 20px;
  height: 20px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 1px rgba(225, 6, 0, 0.18), 0 10px 22px rgba(225, 6, 0, 0.18);
}

.profile-timeline .timeline-copy {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.profile-timeline li.has-media .timeline-copy {
  min-height: 190px;
  display: grid;
  align-content: center;
}

.profile-timeline li.is-flipped .timeline-copy {
  order: 2;
}

.profile-timeline figure {
  position: relative;
  width: min(100%, 280px);
  margin: 0;
  justify-self: end;
  align-self: stretch;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  box-shadow: var(--shadow);
}

.profile-timeline li.is-flipped figure {
  justify-self: start;
  order: 1;
}

.profile-timeline span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-timeline h3 {
  margin: 0 0 6px;
  font-size: 1.14rem;
}

.profile-timeline p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.profile-timeline img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
}

@media (max-width: 980px) {
  .player-hero {
    align-items: end;
    padding-bottom: 42px;
  }

  .player-hero .page-hero-content {
    padding-right: 0;
  }

  .player-hero .page-hero-content {
    padding-right: 0;
  }

  .player-profile-layout,
  .profile-facts,
  .profile-timeline li {
    grid-template-columns: 1fr;
  }

  .profile-player-card,
  .profile-player-card > img {
    min-height: 480px;
  }

  .profile-timeline li.is-text-only {
    grid-template-columns: 1fr;
  }

  .profile-timeline li.is-flipped .timeline-copy,
  .profile-timeline li.is-flipped figure {
    order: initial;
  }

  .profile-timeline figure {
    width: 100%;
    justify-self: stretch;
  }

  .profile-timeline img {
    height: 240px;
    min-height: 0;
  }
}

/* Downloads */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.download-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.download-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.download-thumb {
  height: 140px;
  background: #f0f1f4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.download-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-card[href$=".png"] .download-thumb img,
.download-card[href$=".svg"] .download-thumb img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.download-meta {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.download-meta span:first-child {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.download-meta strong {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 800;
}

.download-meta small {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Video Cards */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.video-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.video-thumb:hover img {
  opacity: 0.95;
  transform: scale(1.04);
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.video-meta {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.video-meta span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.video-meta h3 {
  margin: 2px 0;
  font-family: var(--font-headline);
  font-size: 1.15rem;
  text-transform: uppercase;
  font-weight: 800;
}

.video-meta small {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

/* Info banner */
.info-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.info-banner-tag {
  flex-shrink: 0;
  padding: 4px 10px;
  background: var(--gold);
  color: #2a2200;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.info-banner a {
  color: var(--red);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .info-banner { flex-direction: column; align-items: flex-start; }
}

/* Cookie Banner (DSGVO) */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 320ms ease, opacity 320ms ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner-text strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-headline);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.cookie-banner-text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner .button {
  padding: 10px 18px;
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 18px;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner .button {
    flex: 1;
    justify-content: center;
  }
}

/* Step list (Bewerbungs-Ablauf) */
.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  counter-reset: step;
}

.step-list li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  align-items: start;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 900;
}

.step-list h3 {
  margin: 0 0 8px;
  font-family: var(--font-headline);
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 800;
}

.step-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .step-list li {
    grid-template-columns: 1fr;
    padding: 18px 20px;
  }
  .step-num {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }
}

/* Social-Section (Instagram-Stub) */
.social-section .social-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
}

.social-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.social-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.social-tile:hover img {
  transform: scale(1.06);
}

.social-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.55));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-tile:hover .social-overlay {
  opacity: 1;
}

.social-overlay svg {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.social-overlay small {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.social-follow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* Instagram-Embed Grid */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(326px, 1fr));
  gap: 18px;
  align-items: start;
  justify-items: center;
}

.instagram-grid .instagram-media {
  margin: 0 !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: 540px !important;
}

/* Skelett-Seiten "In Vorbereitung" */
.placeholder-card { max-width: 820px; }
.placeholder-back { margin-top: 32px; }

/* Team-Auswahl-Tabs (spieler.html) */
.team-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 8px;
}
.team-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  min-height: 46px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}
.team-tabs a:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 6, 0, 0.5);
  color: var(--red);
}
.team-tabs a[aria-current="page"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.team-tabs a[aria-current="page"]:hover {
  color: #fff;
  border-color: var(--ink);
}

/* Team-Cards mit Foto (teams.html) */
.team-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
  border-color: rgba(225, 6, 0, 0.36);
}
.team-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0b0f;
}
.team-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 380ms ease;
}
.team-card:hover .team-card-media img {
  transform: scale(1.03);
}
.team-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team-card-body strong {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.team-card-body h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}
.team-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Eltern-Stepper (eltern-faq.html Schnellüberblick) */
.eltern-stepper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 28px;
  position: relative;
}
.eltern-step {
  position: relative;
  padding: 22px 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
}
.eltern-step:first-child { border-top-left-radius: 14px; border-bottom-left-radius: 14px; }
.eltern-step:last-child { border-top-right-radius: 14px; border-bottom-right-radius: 14px; }
.eltern-step + .eltern-step { border-left: none; }
.eltern-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 0.92rem;
  margin-bottom: 14px;
  font-family: var(--font-display, inherit);
}
.eltern-step h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  line-height: 1.3;
}
.eltern-step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}
.eltern-step strong.eltern-step-tag {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
@media (max-width: 720px) {
  .eltern-stepper { grid-template-columns: 1fr; }
  .eltern-step { border-radius: 0; border-left: 1px solid var(--line); }
  .eltern-step + .eltern-step { border-top: none; border-left: 1px solid var(--line); }
  .eltern-step:first-child { border-radius: 14px 14px 0 0; }
  .eltern-step:last-child { border-radius: 0 0 14px 14px; }
}

/* Talent-Journey-Block (talentfoerderung.html) */
.talent-journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
  position: relative;
  list-style: none;
  padding: 0;
}
.talent-journey::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--line) 8%, var(--line) 92%, transparent);
  z-index: 0;
}
.talent-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  background: transparent;
  text-decoration: none;
  color: inherit;
  z-index: 1;
}
.talent-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  color: var(--ink);
  font-family: var(--font-display, inherit);
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
  margin-bottom: 18px;
}
.talent-step:hover .talent-step-num {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: scale(1.05);
}
.talent-step strong {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.talent-step h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.25;
}
.talent-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}
.talent-step::after {
  content: "→";
  position: absolute;
  top: 24px;
  right: -18px;
  font-size: 1.4rem;
  color: var(--muted);
  opacity: 0.5;
}
.talent-step:last-child::after { display: none; }
@media (max-width: 900px) {
  .talent-journey { grid-template-columns: repeat(2, 1fr); }
  .talent-journey::before { display: none; }
  .talent-step::after { display: none; }
}
@media (max-width: 560px) {
  .talent-journey { grid-template-columns: 1fr; gap: 18px; }
}

/* Tickets-Fanshop: 2 große Hero-Tiles + Spieltags-Subzeile */
.tickets-tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 20px;
}
.tickets-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  padding: 28px;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.tickets-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}
.tickets-tile-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.tickets-tile-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 480ms ease;
}
.tickets-tile:hover .tickets-tile-bg img { transform: scale(1.04); }
.tickets-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10,11,15,0.05) 30%, rgba(10,11,15,0.85) 100%);
}
.tickets-tile strong {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f4c542;
  margin-bottom: 6px;
}
.tickets-tile h3 {
  margin: 0 0 8px;
  font-size: 1.55rem;
  line-height: 1.2;
}
.tickets-tile p {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.86);
  font-size: 0.96rem;
  line-height: 1.5;
}
.tickets-tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.tickets-subrow {
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tickets-subrow-text strong {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 2px;
}
.tickets-subrow-text h4 { margin: 0; font-size: 1.05rem; }
.tickets-subrow-text p { margin: 4px 0 0; color: var(--muted); font-size: 0.92rem; }
@media (max-width: 720px) {
  .tickets-tile-grid { grid-template-columns: 1fr; }
}

/* Spenden-Wege (spenden.html) */
.spende-wege {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.spende-weg {
  position: relative;
  padding: 26px 24px 28px;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.spende-weg:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 6, 0, 0.4);
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
}
.spende-weg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff5e6;
  color: var(--red);
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.spende-weg strong {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.spende-weg h3 { margin: 0 0 8px; font-size: 1.12rem; line-height: 1.3; }
.spende-weg p { margin: 0; font-size: 0.94rem; color: var(--muted); line-height: 1.55; }
@media (max-width: 720px) {
  .spende-wege { grid-template-columns: 1fr; }
}

/* Konto-Block (spenden.html) */
.spende-konto {
  margin-top: 16px;
  padding: 28px 30px;
  background: linear-gradient(135deg, #0a0b0f 0%, #1c1f29 100%);
  border-radius: 16px;
  color: #fff;
}
.spende-konto .spende-konto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 18px;
}
.spende-konto-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spende-konto-field span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f4c542;
}
.spende-konto-field code {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, Consolas, monospace);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.spende-konto-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.66);
  line-height: 1.55;
}

/* Club-Seite: Faktenbox + Mission-Quote + History-Timeline */
.club-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.club-fact {
  padding: 22px 22px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.club-fact strong {
  display: block;
  font-family: var(--font-display, inherit);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--red);
  margin-bottom: 8px;
}
.club-fact span {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

.club-quote {
  position: relative;
  margin: 0;
  padding: 36px 30px 32px;
  background: linear-gradient(135deg, #0a0b0f 0%, #1c1f29 100%);
  border-radius: 18px;
  color: #fff;
}
.club-quote::before {
  content: "\201E";
  position: absolute;
  top: 8px;
  left: 18px;
  font-size: 5rem;
  font-family: var(--font-display, Georgia, serif);
  color: rgba(244, 197, 66, 0.32);
  line-height: 1;
}
.club-quote q {
  font-size: 1.4rem;
  line-height: 1.4;
  display: block;
  margin-bottom: 14px;
  quotes: none;
}
.club-quote q::before, .club-quote q::after { content: none; }
.club-quote cite {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f4c542;
}

.club-history {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.club-history::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: var(--line);
}
.club-history li {
  position: relative;
  padding: 14px 0 14px 44px;
}
.club-history li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--red);
}
.club-history li time {
  display: block;
  font-family: var(--font-display, inherit);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.04em;
}
.club-history li h4 { margin: 2px 0 4px; font-size: 1.05rem; }
.club-history li p { margin: 0; font-size: 0.94rem; color: var(--muted); line-height: 1.5; }

.club-cta-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.club-cta {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 200ms ease, transform 200ms ease;
}
.club-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 6, 0, 0.4);
}
.club-cta strong {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.club-cta h4 { margin: 0 0 4px; font-size: 1.02rem; }
.club-cta span { font-size: 0.9rem; color: var(--muted); }

/* Alumni-Profile mit Timeline (alumni.html) */
.alumni-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 24px;
}
.alumni-entry {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.alumni-entry:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.alumni-portrait {
  position: sticky;
  top: 100px;
  align-self: start;
}
.alumni-portrait-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, #1c1f29 0%, #0a0b0f 100%);
  color: rgba(255,255,255,0.92);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.alumni-portrait-placeholder .initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display, inherit);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(244,197,66,0.18);
  letter-spacing: -0.04em;
}
.alumni-portrait-meta {
  position: relative;
  z-index: 1;
}
.alumni-portrait-meta strong {
  display: block;
  font-family: var(--font-display, inherit);
  font-size: 1.4rem;
  line-height: 1.15;
  margin-bottom: 4px;
}
.alumni-portrait-meta span {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: #f4c542;
  text-transform: uppercase;
}
.alumni-portrait-photo-note {
  margin-top: 10px;
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.alumni-body { display: flex; flex-direction: column; gap: 18px; }
.alumni-body h3 { margin: 0; font-size: 1.65rem; line-height: 1.15; }
.alumni-body .alumni-eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 800;
}

.alumni-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 14px 18px;
  background: #fafafa;
  border-radius: 10px;
  list-style: none;
}
.alumni-facts > div { display: flex; flex-direction: column; }
.alumni-facts dt {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.alumni-facts dd { margin: 0; font-size: 0.95rem; font-weight: 700; }

.alumni-stations {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.alumni-stations::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
}
.alumni-stations li {
  position: relative;
  padding: 4px 0 14px 28px;
  font-size: 0.92rem;
  line-height: 1.5;
}
.alumni-stations li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--red);
}
.alumni-stations li.is-vco::before {
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(225,6,0,0.18);
}
.alumni-stations li time {
  display: inline-block;
  min-width: 96px;
  font-weight: 800;
  color: var(--ink);
  font-family: var(--font-display, inherit);
}
.alumni-stations li.is-vco time { color: var(--red); }

.alumni-achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.alumni-achievements span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #fff5e6;
  color: #8a5a00;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}
.alumni-sources {
  font-size: 0.82rem;
  color: var(--muted);
}
.alumni-sources a { color: var(--muted); text-decoration: underline; }

@media (max-width: 880px) {
  .alumni-entry { grid-template-columns: 1fr; gap: 22px; }
  .alumni-portrait { position: static; max-width: 280px; }
  .alumni-portrait-placeholder { aspect-ratio: 4 / 3; }
}

/* Beach-Page Sekundärfarben (Sand + Türkis) */
body.beach-page {
  --accent-sand: #E2C792;
  --accent-sand-dark: #C19A6B;
  --accent-turquoise: #00BFC8;
}
body.beach-page .page-hero-content .eyebrow {
  color: var(--accent-turquoise);
}
body.beach-page .eyebrow.dark {
  color: var(--accent-sand-dark);
}
body.beach-page .gold {
  color: var(--accent-sand-dark);
}
body.beach-page .achievement-card .achievement-tag {
  background: var(--accent-sand);
  color: #4a3700;
}
body.beach-page .button-primary {
  background: var(--accent-turquoise);
  border-color: var(--accent-turquoise);
}
body.beach-page .button-primary:hover {
  background: var(--accent-sand-dark);
  border-color: var(--accent-sand-dark);
}

/* Logo-Platzhalter (überall wo Foto fehlt) */
.logo-placeholder {
  background: #0a0b0f;
  object-fit: contain !important;
  padding: 24% !important;
  opacity: 0.85;
}
body.beach-page .logo-placeholder {
  background: linear-gradient(135deg, #0a0b0f 0%, #1c1f29 100%);
}

/* Beach-Bereich-Buttons (beach.html) */
.beach-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 8px;
}
.beach-nav a {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
}
.beach-nav a:hover {
  transform: translateY(-2px);
  background: var(--accent-turquoise, #00BFC8);
  border-color: var(--accent-turquoise, #00BFC8);
  color: #fff;
}

/* Medien-CTA-Tiles (medien.html) */
.media-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 18px;
}
.media-cta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  padding: 26px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.media-cta:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 6, 0, 0.42);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}
.media-cta::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.06) 0%, transparent 70%);
  z-index: 0;
}
.media-cta-symbol {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #0a0b0f;
  color: #f4c542;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: auto;
}
.media-cta strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 32px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.media-cta h3 { position: relative; z-index: 1; margin: 6px 0 6px; font-size: 1.3rem; line-height: 1.2; }
.media-cta p { position: relative; z-index: 1; margin: 0; font-size: 0.94rem; color: var(--muted); line-height: 1.5; }
.media-cta-arrow { position: relative; z-index: 1; margin-top: 14px; font-weight: 800; font-size: 0.92rem; color: var(--ink); }
@media (max-width: 880px) {
  .media-cta-grid { grid-template-columns: 1fr; }
}

/* Medien Mini-Galerie */
.media-mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.media-mini-gallery a {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
}
.media-mini-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}
.media-mini-gallery a:hover img { transform: scale(1.05); }
@media (max-width: 700px) {
  .media-mini-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* News-Liste clean (news.html) */
.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.news-filter a {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: background 180ms, border-color 180ms, color 180ms;
}
.news-filter a:hover {
  border-color: rgba(225, 6, 0, 0.4);
  color: var(--red);
}
.news-filter a[aria-current="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.news-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-row {
  display: grid;
  grid-template-columns: 140px 130px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 180ms ease;
}
.news-row:hover { background: #fafafa; }
.news-row:last-child { border-bottom: none; }
.news-row-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
}
.news-row-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-row-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.news-row-category {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.news-row-category[data-cat="spielbericht"] { background: #fff5e6; color: #8a5a00; }
.news-row-category[data-cat="vorbericht"] { background: #e7f5ff; color: #0a4d80; }
.news-row-category[data-cat="talent"] { background: #f0e7ff; color: #4a2480; }
.news-row-date {
  font-size: 0.82rem;
  color: var(--muted);
}
.news-row-text h3 { margin: 0 0 4px; font-size: 1.05rem; line-height: 1.3; }
.news-row-text p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
.news-row-arrow {
  font-size: 1.3rem;
  color: var(--muted);
}
.news-row:hover .news-row-arrow { color: var(--red); }
@media (max-width: 820px) {
  .news-row { grid-template-columns: 110px 1fr; grid-template-rows: auto auto; gap: 14px; }
  .news-row-thumb { grid-row: span 2; }
  .news-row-meta { grid-column: 2; }
  .news-row-text { grid-column: 2; }
  .news-row-arrow { display: none; }
}
