/* ==========================================================================
   TG Langenselbold — Design System
   ========================================================================== */

:root {
  /* Color tokens */
  --ink: #0A0E1A;
  --paper: #F7F4EE;
  --paper-2: #EFEAE0;
  --navy: #0B1F3E;
  --navy-2: #0F284D;
  --navy-3: #14325F;
  --line: #1A3963;
  --blue: #2D6FE0;
  --red: #E11D48;
  --red-2: #BE123C;
  --gold: #F2B441;
  --gold-2: #C28F2C;
  --green: #10B981;

  --g-50: #F7F7F5;
  --g-100: #EAEAE4;
  --g-200: #D4D4CC;
  --g-300: #B4B4AA;
  --g-400: #8A8A82;
  --g-500: #5F5F58;
  --g-600: #3F3F3A;
  --g-700: #28282A;
  --g-800: #16161A;
  --g-900: #0A0A0C;

  /* Typo */
  --f-display: "Anton", "Oswald", Impact, sans-serif;
  --f-head: "Archivo", "Helvetica Neue", sans-serif;
  --f-body: "Manrope", "Helvetica Neue", sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --max: 1400px;
  --gutter: clamp(20px, 4vw, 40px);
  --radius: 4px;
  --radius-lg: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ==========================================================================
   Typography utilities
   ========================================================================== */

.display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.86;
  text-transform: uppercase;
}
.h1, h1 { font-family: var(--f-head); font-weight: 800; font-size: clamp(36px, 5vw, 64px); line-height: 1.02; letter-spacing: -0.025em; }
.h2, h2 { font-family: var(--f-head); font-weight: 700; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05; letter-spacing: -0.02em; }
.h3, h3 { font-family: var(--f-head); font-weight: 700; font-size: clamp(20px, 2.2vw, 28px); line-height: 1.15; letter-spacing: -0.015em; }
.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g-500);
  font-weight: 500;
}
.eyebrow-light { color: rgba(255,255,255,0.65); }
.mono { font-family: var(--f-mono); }

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.grid { display: grid; gap: 24px; }
.flex { display: flex; }
.section { padding: clamp(56px, 8vw, 120px) 0; }
.section-tight { padding: clamp(40px, 5vw, 72px) 0; }

/* ==========================================================================
   Top notification bar
   ========================================================================== */

.topbar {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 0;
  border-bottom: 1px solid #1A1A22;
  overflow: hidden;
}
.topbar-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  align-items: center;
}
.topbar-track > span { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); display: inline-block; box-shadow: 0 0 0 0 rgba(225,29,72,0.7); animation: pulse 1.6s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(225,29,72,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(225,29,72,0); }
  100% { box-shadow: 0 0 0 0 rgba(225,29,72,0); }
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  background: var(--paper);
  border-bottom: 1px solid var(--g-200);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 76px;
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand img { width: 44px; height: 44px; object-fit: contain; }
.nav-brand-text { line-height: 1.1; }
.nav-brand-text strong { font-family: var(--f-head); font-weight: 800; font-size: 14px; letter-spacing: 0.02em; display: block; text-transform: uppercase; white-space: nowrap; }
.nav-brand-text span { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--g-500); white-space: nowrap; }
.nav-links { display: flex; gap: 4px; justify-content: center; flex-wrap: nowrap; }
@media (max-width: 1180px) {
  .nav-inner { grid-template-columns: auto 1fr auto; gap: 16px; }
  .nav-brand-text span { display: none; }
  .nav-links { gap: 0; }
  .nav-links a { padding: 10px 10px; font-size: 13px; }
}
@media (max-width: 980px) {
  .nav-brand-text { display: none; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
}
.nav-links a {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--ink);
  position: relative;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--red); }
.nav-links a.active { color: var(--red); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--red);
}

/* ── Nav Dropdowns ── */
.nav-drop { position: relative; }
.nav-drop-btn {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s;
  position: relative;
}
.nav-drop-btn:hover,
.nav-drop.open .nav-drop-btn { color: var(--red); }
.nav-drop-btn.active { color: var(--red); }
.nav-drop-btn.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--red);
}
.nav-arrow {
  font-size: 9px;
  display: inline-block;
  transition: transform 0.2s;
  color: var(--g-500);
}
.nav-drop.open .nav-arrow { transform: rotate(180deg); color: var(--red); }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--g-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  min-width: 200px;
  padding: 6px;
  z-index: 200;
}
.nav-drop.open .nav-drop-menu { display: block; animation: dropIn 0.15s ease; }
@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-drop-menu a {
  display: block;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  transition: all 0.12s;
  white-space: nowrap;
}
.nav-drop-menu a:hover { background: var(--paper-2); color: var(--red); }
.nav-drop-menu a.active { color: var(--red); background: rgba(225,29,72,0.06); }
.nav-drop-menu a.active::after { display: none; }
@media (max-width: 1180px) {
  .nav-drop-btn { padding: 10px 10px; font-size: 13px; }
}

.nav-cta { display: flex; gap: 8px; align-items: center; }
.nav-search {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--g-100);
  display: grid;
  place-items: center;
  transition: background 0.15s;
}
.nav-search:hover { background: var(--g-200); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: var(--radius);
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: white;
}
.btn-primary:hover { background: var(--red-2); transform: translateY(-1px); }
.btn-dark {
  background: var(--ink);
  color: var(--paper);
}
.btn-dark:hover { background: var(--navy); }
.btn-ghost-light {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--g-300);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
/* btn-ghost auf dunklen Flächen lesbar machen (heller Text + Rand statt dunkel-auf-dunkel) */
.bg-ink .btn-ghost,
.section-ticket .btn-ghost,
.page-hero .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.32);
}
.bg-ink .btn-ghost:hover,
.section-ticket .btn-ghost:hover,
.page-hero .btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-arrow::after { content: '→'; font-family: var(--f-body); }

/* ==========================================================================
   Rechtsseite mit fixierter Sprung-Sidebar (Barrierefreiheit etc.)
   ========================================================================== */
.a11y-layout { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start; }
.a11y-toc { position: sticky; top: 96px; }
.a11y-toc-head { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--g-500); margin-bottom: 14px; }
.a11y-toc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; border-left: 2px solid var(--g-200); }
.a11y-toc a {
  display: block; padding: 9px 0 9px 16px; margin-left: -2px;
  border-left: 2px solid transparent;
  color: var(--g-600); text-decoration: none;
  font-size: 14px; line-height: 1.35;
  transition: color .15s ease, border-color .15s ease;
}
.a11y-toc a:hover { color: var(--ink); }
.a11y-toc a.active { color: var(--red); border-left-color: var(--red); font-weight: 600; }
.a11y-content { max-width: 720px; }
.a11y-content > section { scroll-margin-top: 96px; }
.a11y-content > section + section { margin-top: 44px; padding-top: 44px; border-top: 1px solid var(--g-200); }
.a11y-content h2 { font-size: 24px; line-height: 1.2; }
.a11y-content h3 { font-size: 17px; line-height: 1.3; margin-top: 28px; }
.a11y-content p { color: var(--g-600); margin-top: 14px; line-height: 1.7; }
.a11y-content p strong { color: var(--ink); }
.a11y-content p.a11y-q { margin-top: 18px; }
.a11y-content a { color: var(--red); }
.a11y-list { margin-top: 14px; padding-left: 20px; color: var(--g-600); line-height: 1.7; }
.a11y-list li { margin-top: 4px; }
.a11y-table-wrap { margin-top: 14px; overflow-x: auto; }
.a11y-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.a11y-table th, .a11y-table td { text-align: left; padding: 10px 14px; border: 1px solid var(--g-200); }
.a11y-table th { background: var(--g-100); font-family: var(--f-head); font-weight: 700; color: var(--ink); }
.a11y-table td { color: var(--g-600); }
@media (max-width: 860px) {
  .a11y-layout { grid-template-columns: 1fr; gap: 28px; }
  .a11y-toc { position: static; top: auto; border: 1px solid var(--g-200); border-radius: var(--radius); padding: 18px 20px; }
}

/* ==========================================================================
   Status pills / badges
   ========================================================================== */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 100px;
  font-weight: 500;
}
.pill-live { background: var(--red); color: white; }
.pill-live .dot { width: 6px; height: 6px; border-radius: 50%; background: white; animation: pulse-w 1.4s infinite; }
@keyframes pulse-w { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.pill-bundesliga { background: var(--navy); color: white; }
.pill-regional { background: var(--gold); color: var(--ink); }
.pill-jugend { background: var(--green); color: white; }
.pill-outline { border: 1px solid currentColor; }
.pill-light { background: var(--g-100); color: var(--ink); }

/* ==========================================================================
   Hero (default — Action Photo + Countdown)
   ========================================================================== */

.hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  flex-direction: column;
}
.hero-meta {
  border-bottom: 1px solid #1A1A22;
  padding: 16px 0;
}
.hero-meta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-meta-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-meta-left .eyebrow { color: rgba(255,255,255,0.55); }
.hero-divider { width: 1px; height: 12px; background: rgba(255,255,255,0.2); }

.hero-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  position: relative;
}
@media (max-width: 960px) {
  .hero-body { grid-template-columns: 1fr; }
}

.hero-text {
  padding: 56px var(--gutter) 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 2;
}
.hero-text-inner { max-width: 640px; margin-left: auto; margin-right: 0; }
@media (max-width: 960px) { .hero-text-inner { margin: 0; } }
.hero-display {
  font-family: var(--f-display);
  font-size: clamp(80px, 13vw, 200px);
  line-height: 0.84;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.hero-display .stroke {
  -webkit-text-stroke: 2px rgba(255,255,255,0.45);
  color: transparent;
}
.hero-display .ink {
  color: var(--paper);
}
.hero-display .red { color: var(--red); }
.hero-sub {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-top: 28px;
}

.hero-image {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  overflow: hidden;
  min-height: 520px;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px);
}
.hero-image-label {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 2;
}
.hero-image-placeholder-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  padding: 24px;
}
.hero-jersey {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--f-display);
  font-size: clamp(280px, 36vw, 540px);
  line-height: 0.8;
  color: rgba(255,255,255,0.06);
  font-weight: 400;
  letter-spacing: -0.04em;
  pointer-events: none;
}

/* Countdown card */
.countdown-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 18px;
  margin-top: auto;
  position: relative;
  z-index: 3;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  max-width: 580px;
}
.countdown-card .label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.countdown-match {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.countdown-team {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.countdown-team.away { flex-direction: row-reverse; }
.countdown-team-logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--g-100);
  border: 1px solid var(--g-200);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--ink);
  flex-shrink: 0;
}
.countdown-team-logo.tg { background: var(--navy); color: white; padding: 4px; border: none; overflow: hidden; }
.countdown-team-logo.tg img { width: 100%; height: 100%; object-fit: contain; }
.countdown-team-name { font-family: var(--f-head); font-weight: 700; font-size: 14px; line-height: 1.15; }
.countdown-team-meta { font-family: var(--f-mono); font-size: 11px; color: var(--g-500); letter-spacing: 0.08em; text-transform: uppercase; }
.countdown-vs { font-family: var(--f-display); font-size: 26px; color: var(--g-300); }

.countdown-clocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 16px;
  border-radius: var(--radius);
}
.clock-cell { text-align: center; }
.clock-cell .num { font-family: var(--f-display); font-size: 36px; line-height: 1; }
.clock-cell .lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }

.countdown-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--g-500);
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   Hero — variant 2 — Splitscreen
   ========================================================================== */

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
@media (max-width: 960px) { .hero-split { grid-template-columns: 1fr; } }
.hero-split-pane {
  padding: 56px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.hero-split-pane.bundesliga {
  background: var(--ink);
  color: var(--paper);
}
.hero-split-pane.bundesliga::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(225,29,72,0.14), transparent 50%);
}
.hero-split-pane.regional {
  background: var(--paper);
  color: var(--ink);
  border-left: 1px solid var(--g-200);
}
@media (max-width: 960px) { .hero-split-pane.regional { border-left: none; border-top: 1px solid var(--g-200); } }
.hero-split-num {
  font-family: var(--f-display);
  font-size: clamp(160px, 20vw, 280px);
  line-height: 0.84;
  position: absolute;
  bottom: -20px;
  right: -10px;
  pointer-events: none;
}
.hero-split-num.muted   { color: rgba(255,255,255,0.05); }
.hero-split-num.muted-d { color: rgba(255,255,255,0.05); }
.hero-split-content { position: relative; z-index: 2; }
.hero-split-title {
  font-family: var(--f-display);
  font-size: clamp(60px, 8vw, 120px);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 16px 0 24px;
}
.hero-split-record {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid currentColor;
  border-color: rgba(255,255,255,0.15);
  position: relative;
  z-index: 2;
}
.hero-split-pane.regional .hero-split-record { border-color: var(--g-200); }
.hero-split-stat .num { font-family: var(--f-display); font-size: 36px; line-height: 1; }
.hero-split-stat .lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; margin-top: 4px; }

/* ==========================================================================
   Hero — variant 3 — Editorial Magazine
   ========================================================================== */

.hero-mag {
  background: var(--paper);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero-mag-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  min-height: 680px;
}
@media (max-width: 960px) { .hero-mag-grid { grid-template-columns: 1fr; } }
.hero-mag-text {
  padding: 64px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}
.hero-mag-display {
  font-family: var(--f-display);
  font-size: clamp(72px, 11vw, 168px);
  line-height: 0.84;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.hero-mag-display .red { color: var(--red); }
.hero-mag-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--g-200);
  padding-top: 24px;
}
.hero-mag-stat .num { font-family: var(--f-display); font-size: 44px; line-height: 1; }
.hero-mag-stat .lbl { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--g-500); margin-top: 6px; }
.hero-mag-image {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero-mag-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px);
}
.hero-mag-issue {
  position: absolute;
  top: 32px; right: 32px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 2;
}

/* ==========================================================================
   Match strip (next matches)
   ========================================================================== */

.match-strip {
  background: var(--paper);
  border-top: 1px solid var(--g-200);
  border-bottom: 1px solid var(--g-200);
}
.match-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 960px) { .match-strip-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .match-strip-inner { grid-template-columns: 1fr; } }
.match-cell {
  padding: 24px 24px;
  border-right: 1px solid var(--g-200);
  display: grid;
  gap: 8px;
}
.match-cell:last-child { border-right: none; }
@media (max-width: 960px) {
  .match-cell:nth-child(2) { border-right: none; }
  .match-cell:nth-child(-n+2) { border-bottom: 1px solid var(--g-200); }
}
.match-cell-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g-500);
}
.match-cell-teams {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}
.match-cell-score {
  font-family: var(--f-display);
  font-size: 28px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.match-cell-score .vs { font-size: 18px; color: var(--g-300); }
.match-cell-score .winner { color: var(--ink); }
.match-cell-score .loser { color: var(--g-300); }
.match-cell-foot {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--g-500);
  letter-spacing: 0.06em;
}

/* ==========================================================================
   Section header
   ========================================================================== */

.sec-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--g-200);
}
.sec-head h2 { max-width: 760px; }
.sec-head .eyebrow { margin-bottom: 12px; display: block; }
.sec-head a { font-family: var(--f-head); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.sec-head a:hover { color: var(--red); }

.sec-head-dark { border-bottom-color: rgba(255,255,255,0.15); }
.sec-head-dark .eyebrow { color: rgba(255,255,255,0.55); }

/* ==========================================================================
   News grid
   ========================================================================== */

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 960px) { .news-grid { grid-template-columns: 1fr; } }
/* Einzelner Beitrag: balanciertes 2-Spalten-Hero statt schmal in der linken Rasterspalte */
.news-grid:has(> .news-card:only-child) { grid-template-columns: 1fr; }
.news-card.feature:only-child {
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: auto;
  align-items: center;
  gap: 48px;
}
@media (max-width: 760px) {
  .news-card.feature:only-child { grid-template-columns: 1fr; gap: 16px; align-items: stretch; }
}

.news-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  position: relative;
}
.news-card-img {
  background: var(--g-100);
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.news-card.feature .news-card-img { aspect-ratio: 4 / 3; }
.news-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 12px);
}
.news-card-img-label {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g-500);
}
.news-card-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
}
.news-card-meta {
  display: flex;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--g-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.news-card-meta .sep { color: var(--g-300); }
.news-card-title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-top: 4px;
}
.news-card.feature .news-card-title { font-size: 36px; line-height: 1.05; }
.news-card-excerpt {
  color: var(--g-500);
  font-size: 14px;
  line-height: 1.55;
  margin-top: 8px;
}
.news-card a:hover .news-card-title { color: var(--red); }

/* Compact news list */
.news-list { display: grid; gap: 0; }
.news-list-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--g-200);
  align-items: center;
}
.news-list-item:last-child { border-bottom: 1px solid var(--g-200); }
.news-list-date {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--g-500);
  line-height: 1.4;
}
.news-list-date strong { display: block; font-family: var(--f-display); font-size: 22px; color: var(--ink); letter-spacing: 0; }
.news-list-title { font-family: var(--f-head); font-weight: 700; font-size: 17px; line-height: 1.25; letter-spacing: -0.01em; }
.news-list-title:hover { color: var(--red); }

/* ==========================================================================
   Teams grid
   ========================================================================== */

.teams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .teams-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .teams-grid { grid-template-columns: 1fr; } }
.team-card {
  background: white;
  border: 1px solid var(--g-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: grid;
  gap: 20px;
  position: relative;
  transition: all 0.2s;
  overflow: hidden;
}
.team-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.team-card-rank {
  position: absolute;
  bottom: -18px; right: -10px;
  font-family: var(--f-display);
  font-size: 140px;
  line-height: 0.8;
  color: var(--g-100);
  pointer-events: none;
}
.team-card.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.team-card.featured .team-card-rank { color: rgba(255,255,255,0.07); }
.team-card-head { display: flex; justify-content: space-between; align-items: start; gap: 12px; position: relative; z-index: 2; }
.team-card-name { font-family: var(--f-head); font-weight: 800; font-size: 20px; line-height: 1.1; letter-spacing: -0.01em; }
.team-card-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; position: relative; z-index: 2; padding-top: 16px; border-top: 1px solid var(--g-200); }
.team-card.featured .team-card-stats { border-color: rgba(255,255,255,0.15); }
.team-card-stat .num { font-family: var(--f-display); font-size: 24px; line-height: 1; }
.team-card-stat .lbl { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.55; margin-top: 4px; }
.team-card-link { font-family: var(--f-head); font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; position: relative; z-index: 2; }

/* ==========================================================================
   Tabelle / League table
   ========================================================================== */

.tabelle {
  background: white;
  border: 1px solid var(--g-200);
  border-radius: var(--radius);
  overflow: hidden;
  font-family: var(--f-body);
}
.tabelle table { width: 100%; border-collapse: collapse; }
.tabelle thead {
  background: var(--ink);
  color: var(--paper);
}
.tabelle th {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 12px;
  text-align: center;
}
.tabelle th.team-col, .tabelle td.team-col { text-align: left; }
.tabelle td {
  padding: 14px 12px;
  border-top: 1px solid var(--g-100);
  text-align: center;
  font-size: 14px;
}
.tabelle td.rank { font-family: var(--f-display); font-size: 18px; }
.tabelle td.team-col { font-family: var(--f-head); font-weight: 700; font-size: 14px; }
.tabelle td.points { font-family: var(--f-display); font-size: 18px; }
.tabelle tr.tg-row { background: rgba(11, 31, 62, 0.04); }
.tabelle tr.tg-row td.team-col { color: var(--navy); position: relative; padding-left: 22px; }
.tabelle tr.tg-row td.team-col::before {
  content: '';
  position: absolute;
  left: 8px; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 22px;
  background: var(--red);
}
.tabelle tr.line { border-top: 2px solid var(--g-300); }
.tabelle tr.relegation td { color: var(--g-400); }

/* Große, prominente Tabelle auf der Mannschaftsdetailseite */
.league-section .tabelle {
  box-shadow: 0 24px 60px -28px rgba(11, 31, 62, 0.35);
  border-color: var(--g-300);
}
.league-section .tabelle th { font-size: 11px; padding: 18px 14px; }
.league-section .tabelle td { padding: 18px 14px; font-size: 16px; }
.league-section .tabelle td.rank { font-size: 26px; }
.league-section .tabelle td.team-col { font-size: 17px; }
.league-section .tabelle td.points { font-size: 24px; color: var(--navy); }
.league-section .tabelle tr.tg-row { background: rgba(214, 31, 38, 0.06); }
.league-section .tabelle tr.tg-row td { font-weight: 700; }
.league-section .tabelle tr.tg-row td.team-col::before { height: 28px; width: 5px; }
@media (max-width: 640px) {
  .league-section .tabelle td, .league-section .tabelle th { padding: 12px 8px; font-size: 13px; }
  .league-section .tabelle td.rank { font-size: 20px; }
  .league-section .tabelle td.points { font-size: 18px; }
}

/* ==========================================================================
   Sponsors
   ========================================================================== */

.sponsors-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 0;
}
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 560px) { .sponsors-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.sponsor-cell {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  display: grid;
  place-items: center;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: uppercase;
  min-height: 140px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.sponsor-cell:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,0.28); color: var(--ink); }
.sponsor-cell img { max-width: 100%; max-height: 78px; width: auto; object-fit: contain; }
.sponsor-cell.headline { font-size: 20px; }

/* Weißer Partner-Streifen direkt unter dem Hero */
.partner-band { background: #fff; border-bottom: 1px solid var(--g-200); padding: 22px 0; }
.partner-band-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.partner-band-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--g-500); white-space: nowrap; }
.partner-band-logos { display: flex; align-items: center; gap: 44px; flex-wrap: wrap; flex: 1; }
.partner-band-cell { display: inline-flex; align-items: center; }
.partner-band-cell img { max-height: 54px; max-width: 190px; width: auto; object-fit: contain; transition: transform 0.15s ease; }
.partner-band-cell:hover img { transform: scale(1.04); }
.partner-band-cell span { font-family: var(--f-head); font-weight: 800; font-size: 17px; text-transform: uppercase; color: var(--ink); }
.partner-band-cta { font-family: var(--f-head); font-weight: 700; font-size: 13px; color: var(--ink); text-decoration: none; white-space: nowrap; }
.partner-band-cta:hover { color: var(--red); }
@media (max-width: 700px) {
  .partner-band-inner { gap: 18px; }
  .partner-band-logos { gap: 28px; justify-content: center; }
  .partner-band-label, .partner-band-cta { width: 100%; text-align: center; }
}
.sponsor-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   CTA blocks
   ========================================================================== */

.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 760px) { .cta-row { grid-template-columns: 1fr; } }
.cta-block {
  padding: 48px 40px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.cta-block.dark { background: var(--ink); color: var(--paper); }
.cta-block.red { background: var(--red); color: white; }
.cta-block-num {
  position: absolute;
  bottom: -40px; right: -20px;
  font-family: var(--f-display);
  font-size: 280px;
  line-height: 0.8;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
}
.cta-block h3 { font-size: 32px; max-width: 480px; position: relative; z-index: 2; }
.cta-block p { opacity: 0.8; max-width: 480px; position: relative; z-index: 2; }
.cta-block-cta { position: relative; z-index: 2; }

/* ==========================================================================
   Halle / Venue
   ========================================================================== */

.venue {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--paper-2);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 960px) { .venue { grid-template-columns: 1fr; } }
.venue-img {
  background: var(--g-200);
  min-height: 420px;
  position: relative;
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 12px);
}
.venue-img-label {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g-500);
}
.venue-content { padding: 56px 40px; display: grid; gap: 32px; align-content: center; }
.venue-info { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding-top: 24px; border-top: 1px solid var(--g-300); }
.venue-info dt { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--g-500); margin-bottom: 6px; }
.venue-info dd { font-family: var(--f-head); font-weight: 700; font-size: 16px; line-height: 1.3; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid #1A1A22;
}
@media (max-width: 960px) { .footer-top { grid-template-columns: 1fr 1fr; } }
.footer-brand { display: grid; gap: 20px; align-content: start; }
.footer-brand-row { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 56px; height: 56px; object-fit: contain; }
.footer-brand-row strong { font-family: var(--f-head); font-weight: 800; font-size: 18px; letter-spacing: 0.01em; text-transform: uppercase; }
.footer-brand-row span { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.footer-tag { color: rgba(255,255,255,0.6); font-size: 14px; max-width: 280px; line-height: 1.5; }
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.85); font-size: 14px; }
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: white; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  font-size: 13px;
  letter-spacing: 0;
  color: white;
  transition: background 0.15s;
}
.footer-social a:hover { background: var(--red); }

/* ==========================================================================
   Page hero (sub pages)
   ========================================================================== */

.page-hero {
  background:
    radial-gradient(ellipse at 88% 20%, rgba(225,29,72,0.16) 0%, transparent 48%),
    radial-gradient(ellipse at 8% 85%, rgba(45,111,224,0.08) 0%, transparent 42%),
    linear-gradient(145deg, var(--g-900) 0%, var(--navy) 52%, var(--g-800) 100%);
  color: var(--paper);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 14px);
  pointer-events: none;
}
/* Ghost watermark word — set data-bg-word="HERREN" etc. on the <section> */
.page-hero::after {
  content: attr(data-bg-word);
  position: absolute;
  right: -30px;
  bottom: -60px;
  font-family: var(--f-display);
  font-size: clamp(130px, 21vw, 340px);
  line-height: 0.8;
  color: rgba(255,255,255,0.032);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  z-index: 0;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-crumbs { display: flex; gap: 8px; align-items: center; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.page-crumbs a:hover { color: white; }
.page-hero-title {
  font-family: var(--f-display);
  font-size: clamp(64px, 10vw, 160px);
  line-height: 0.86;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
/* Variante für dynamische Artikel-/News-Titel: moderat, lesbar, kein Überlauf */
.page-hero-title.is-article {
  font-size: clamp(28px, 4.6vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: none;
  overflow-wrap: anywhere;
  max-width: 900px;
}
.page-hero-sub { color: rgba(255,255,255,0.7); max-width: 580px; margin-top: 20px; font-size: 16px; }
.page-hero-meta { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); }
.page-hero-stat .num { font-family: var(--f-display); font-size: 36px; line-height: 1; }
.page-hero-stat .lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ==========================================================================
   Tweaks panel
   ========================================================================== */

.tweaks-toggle {
  position: fixed;
  bottom: 20px; right: 20px;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 18px;
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 200;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.tweaks-toggle .led { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: pulse-w 1.4s infinite; }

.tweaks-panel {
  position: fixed;
  bottom: 80px; right: 20px;
  width: 320px;
  background: white;
  border: 1px solid var(--g-300);
  border-radius: var(--radius);
  z-index: 200;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  display: none;
  overflow: hidden;
}
.tweaks-panel.open { display: block; }
.tweaks-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--g-200);
  background: var(--ink);
  color: var(--paper);
}
.tweaks-panel-head h4 { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; }
.tweaks-panel-body { padding: 18px; }
.tweaks-panel-body label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g-500);
  display: block;
  margin-bottom: 10px;
}
.tweak-radio { display: grid; gap: 8px; }
.tweak-radio button {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--g-200);
  border-radius: var(--radius);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.15s;
}
.tweak-radio button:hover { border-color: var(--ink); }
.tweak-radio button.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tweak-radio .meta { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.55; font-weight: 400; }

/* ==========================================================================
   Spielplan / Schedule
   ========================================================================== */

.schedule {
  display: grid;
  gap: 0;
}
.schedule-day {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--g-200);
}
.schedule-day:last-child { border-bottom: 1px solid var(--g-200); }
@media (max-width: 760px) { .schedule-day { grid-template-columns: 1fr; gap: 16px; } }
.schedule-date {
  font-family: var(--f-display);
  font-size: 36px;
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.schedule-date span { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--g-500); display: block; margin-top: 6px; }
.schedule-matches { display: grid; gap: 12px; }
.schedule-match {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--g-200);
  border-radius: var(--radius);
}
@media (max-width: 760px) { .schedule-match { grid-template-columns: auto 1fr auto; gap: 12px; } .schedule-match .schedule-time { display: none; } }
.schedule-time {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--g-700);
}
.schedule-teams {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
}
.schedule-teams .vs { color: var(--g-300); margin: 0 6px; }
.schedule-teams .home { font-weight: 800; }
.schedule-result {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
}
.schedule-result.upcoming { color: var(--g-300); }

/* ==========================================================================
   Player cards
   ========================================================================== */

.players-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .players-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .players-grid { grid-template-columns: 1fr; } }
.player-card {
  background: var(--paper);
  border: 1px solid var(--g-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}
.player-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.player-card-img {
  background: var(--ink);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}
.player-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px);
}
.player-card-num {
  position: absolute;
  bottom: -20px; right: -10px;
  font-family: var(--f-display);
  font-size: 200px;
  line-height: 0.8;
  color: rgba(255,255,255,0.08);
  pointer-events: none;
}
.player-card-tag {
  position: absolute;
  top: 14px; left: 14px;
}
.player-card-body {
  padding: 18px;
  display: grid;
  gap: 14px;
}
.player-card-name {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.player-card-role { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--g-500); margin-top: 2px; }
.board-contact { display: grid; gap: 4px; margin-top: 10px; }
.board-contact a {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--g-600);
  text-decoration: none;
  transition: color .15s ease;
  word-break: break-word;
}
.board-contact a:hover { color: var(--red); }
.board-contact .contact-ico { font-style: normal; font-size: 13px; color: var(--g-400); flex-shrink: 0; width: 16px; text-align: center; }
.player-card-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding-top: 12px; border-top: 1px solid var(--g-200); }
.player-card-stat .num { font-family: var(--f-display); font-size: 20px; line-height: 1; }
.player-card-stat .lbl { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--g-500); margin-top: 3px; }

/* utilities */
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.bg-ink { background: var(--ink); color: var(--paper); }
.bg-paper { background: var(--paper); color: var(--ink); }
/* Dot-grid texture on secondary paper sections */
.bg-paper-2 {
  background-color: var(--paper-2);
  background-image: radial-gradient(circle, rgba(0,0,0,0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  color: var(--ink);
}
/* Dark ink sections — red accent glow + diagonal texture */
.section.bg-ink,
.section-tight.bg-ink {
  background:
    radial-gradient(ellipse at 82% 25%, rgba(225,29,72,0.11) 0%, transparent 52%),
    radial-gradient(ellipse at 12% 75%, rgba(45,111,224,0.06) 0%, transparent 40%),
    var(--ink);
  color: var(--paper);
  position: relative;
}
.section.bg-ink::before,
.section-tight.bg-ink::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 18px);
  pointer-events: none;
  z-index: 0;
}
.section.bg-ink > .container,
.section-tight.bg-ink > .container { position: relative; z-index: 1; }

.text-muted { color: var(--g-500); }
.text-muted-light { color: rgba(255,255,255,0.65); }

/* hide hero variants */
.hero-variant { display: none; }
.hero-variant.active { display: flex; }
.hero-mag.hero-variant { display: none; }
.hero-mag.hero-variant.active { display: block; }
.hero-split-wrap.hero-variant { display: none; }
.hero-split-wrap.hero-variant.active { display: block; }

/* lead paragraph */
.lead { font-size: 19px; line-height: 1.5; color: var(--g-700); max-width: 720px; }

/* prose */
.prose { max-width: 720px; }
.prose p { margin-bottom: 1.2em; font-size: 16px; line-height: 1.6; color: var(--g-700); }
.prose p.first::first-letter { font-family: var(--f-display); font-size: 5em; float: left; line-height: 0.85; padding-right: 8px; padding-top: 6px; color: var(--red); }
.prose h3 { margin: 1.5em 0 0.6em; }

/* divider */
.divider { height: 1px; background: var(--g-200); margin: 0; border: none; }
.divider-dark { background: rgba(255,255,255,0.15); }

/* ==========================================================================
   Player Portrait page
   ========================================================================== */
.portrait-hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.portrait-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(191,35,112,0.18) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 16px);
  pointer-events: none;
}
.portrait-hero::after {
  content: attr(data-bg-word);
  position: absolute;
  right: -20px;
  bottom: -50px;
  font-family: var(--f-display);
  font-size: clamp(120px, 20vw, 320px);
  line-height: 0.8;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  z-index: 0;
}
.portrait-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  min-height: 720px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1100px) { .portrait-hero-grid { grid-template-columns: 1fr; } }
.portrait-text {
  padding: 80px var(--gutter) 64px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.portrait-crumbs {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex;
  gap: 10px;
  align-items: center;
}
.portrait-crumbs a { color: rgba(255,255,255,0.55); text-decoration: none; }
.portrait-crumbs a:hover { color: var(--paper); }
.portrait-meta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}
.portrait-meta-row .pill { background: rgba(255,255,255,0.10); color: var(--paper); border: 1px solid rgba(255,255,255,0.18); }
.portrait-meta-row .pill.live { background: var(--red); border-color: var(--red); }
.portrait-display {
  font-family: var(--f-display);
  font-size: clamp(80px, 12vw, 200px);
  line-height: 0.82;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-top: 20px;
}
.portrait-display .accent { color: var(--red); display: block; }
.portrait-tagline {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  max-width: 520px;
  color: rgba(255,255,255,0.82);
  margin-top: 32px;
}
.portrait-quickstats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 48px;
}
.portrait-quickstat {
  padding: 24px 0;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.portrait-quickstat:last-child { border-right: none; }
.portrait-quickstat .num { font-family: var(--f-display); font-size: 44px; line-height: 0.9; color: var(--paper); }
.portrait-quickstat .lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 8px; }
.portrait-image {
  position: relative;
  background: linear-gradient(180deg, #14141C 0%, #050507 100%);
  overflow: hidden;
}
.portrait-image-num {
  position: absolute;
  top: 40px; left: 40px;
  font-family: var(--f-display);
  font-size: clamp(220px, 28vw, 460px);
  line-height: 0.78;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  letter-spacing: -0.04em;
}
.portrait-image-stripe {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 24px);
  pointer-events: none;
}
.portrait-image-tag {
  position: absolute;
  bottom: 32px;
  left: 40px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.portrait-image-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}

/* Stat block grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--g-200);
  border: 1px solid var(--g-200);
}
@media (max-width: 900px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-cell {
  background: var(--paper);
  padding: 32px 28px;
}
.stat-cell .num {
  font-family: var(--f-display);
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.stat-cell .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--g-500);
  margin-top: 10px;
}
.stat-cell .delta {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  margin-top: 12px;
  display: inline-block;
}
.stat-cell .delta.up { color: #1F7A3D; }
.stat-cell .delta.down { color: var(--red); }

/* Profile spec list */
.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--g-200);
}
@media (max-width: 700px) { .spec-list { grid-template-columns: 1fr; } }
.spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--g-200);
}
.spec-row .key { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--g-500); padding-top: 4px; }
.spec-row .val { font-family: var(--f-head); font-weight: 600; font-size: 16px; line-height: 1.35; }
.spec-row:nth-child(odd) { padding-right: 32px; }
.spec-row:nth-child(even) { padding-left: 32px; }
@media (max-width: 700px) { .spec-row { padding: 18px 0 !important; } }

/* Bilanz table */
.bilanz-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.bilanz-table thead th {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--g-500);
  font-weight: 600;
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid var(--g-200);
}
.bilanz-table tbody td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--g-200);
  font-family: var(--f-head);
}
.bilanz-table .opp { font-weight: 700; }
.bilanz-table .res { font-family: var(--f-display); font-size: 17px; }
.bilanz-table .res.win { color: #1F7A3D; }
.bilanz-table .res.loss { color: var(--red); }
.bilanz-table .date { font-family: var(--f-mono); font-size: 12px; color: var(--g-500); white-space: nowrap; }

/* Form bar (W/L history) */
.formbar { display: flex; gap: 4px; }
.formbar span {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 11px;
  border-radius: 4px;
  color: white;
}
.formbar .w { background: #1F7A3D; }
.formbar .l { background: var(--red); }

/* Quote block */
.pullquote {
  font-family: var(--f-display);
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 1000px;
  margin: 0;
}
.pullquote .accent { color: var(--red); }
.pullquote-meta {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--g-500);
  margin-top: 32px;
}

/* Equipment cards */
.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 800px) { .gear-grid { grid-template-columns: 1fr; } }
.gear-card {
  background: var(--paper);
  border: 1px solid var(--g-200);
  border-radius: var(--radius);
  padding: 28px;
}
.gear-card .lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--g-500); }
.gear-card .name { font-family: var(--f-head); font-weight: 800; font-size: 22px; margin-top: 8px; line-height: 1.15; }
.gear-card .spec { font-family: var(--f-mono); font-size: 13px; color: var(--g-700); margin-top: 14px; line-height: 1.6; }

/* Career timeline */
.career {
  display: grid;
  gap: 0;
  border-left: 2px solid var(--ink);
  padding-left: 32px;
}
.career-item {
  position: relative;
  padding: 20px 0 24px;
  border-bottom: 1px dashed var(--g-300);
}
.career-item:last-child { border-bottom: none; }
.career-item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 28px;
  width: 14px; height: 14px;
  background: var(--red);
  border-radius: 50%;
  border: 3px solid var(--paper);
}
.career-year { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--g-500); }
.career-title { font-family: var(--f-head); font-weight: 800; font-size: 22px; margin-top: 4px; }
.career-desc { font-family: var(--f-body); font-size: 14px; color: var(--g-700); margin-top: 8px; line-height: 1.55; max-width: 600px; }

/* Adjacent player nav */
.adjacent-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--g-200);
  border-top: 1px solid var(--g-200);
  border-bottom: 1px solid var(--g-200);
}
@media (max-width: 700px) { .adjacent-nav { grid-template-columns: 1fr; } }
.adjacent-link {
  background: var(--paper);
  padding: 32px var(--gutter);
  text-decoration: none;
  color: var(--ink);
  display: grid;
  gap: 6px;
  transition: background 0.15s;
}
.adjacent-link:hover { background: var(--paper-2); }
.adjacent-link.next { text-align: right; }
.adjacent-link .arrow { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--g-500); }
.adjacent-link .name { font-family: var(--f-display); font-size: 32px; line-height: 1; letter-spacing: -0.01em; }
.adjacent-link .role { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--g-500); margin-top: 4px; }

/* ==========================================================================
   News detail
   ========================================================================== */
.article-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 100px var(--gutter) 80px;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 18px);
  pointer-events: none;
}
.article-hero-inner { position: relative; z-index: 1; max-width: 980px; }
.article-cat { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); }
.article-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-top: 16px;
  text-wrap: balance;
}
.article-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.article-meta strong { color: var(--paper); font-weight: 600; }
.article-cover {
  background: var(--g-200);
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
}
.article-cover::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 14px);
}
.article-cover-label {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--g-700);
  background: var(--paper);
  padding: 8px 14px;
  border-radius: 4px;
}
.article-body {
  display: grid;
  grid-template-columns: 1fr 720px 1fr;
  gap: 0;
  padding: 80px 0;
}
@media (max-width: 1100px) { .article-body { grid-template-columns: 1fr; padding: 64px var(--gutter); } }
.article-body > * { grid-column: 2; }
@media (max-width: 1100px) { .article-body > * { grid-column: 1; max-width: 720px; margin-left: auto; margin-right: auto; } }
.article-body p { font-size: 18px; line-height: 1.6; color: var(--g-700); margin-bottom: 1.2em; }
.article-body p.lead-p { font-size: 22px; line-height: 1.5; color: var(--ink); font-weight: 500; margin-bottom: 1.6em; }
.article-body h2 { font-family: var(--f-head); font-weight: 800; font-size: 28px; line-height: 1.2; margin: 1.4em 0 0.5em; }
.article-body blockquote {
  margin: 1.6em 0;
  padding: 28px 32px;
  border-left: 4px solid var(--red);
  background: var(--paper-2);
  font-family: var(--f-head);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
}
.article-body blockquote cite {
  display: block;
  font-family: var(--f-mono);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g-500);
  margin-top: 16px;
}
.article-body figure {
  grid-column: 1 / -1;
  margin: 2em auto;
  max-width: 1200px;
}
@media (max-width: 1100px) { .article-body figure { grid-column: 1; } }
.article-body figure .img-ph {
  background: var(--g-200);
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: var(--radius);
}
.article-body figure .img-ph::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 14px);
}
.article-body figure figcaption {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g-500);
  margin-top: 12px;
}
.article-body p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-size: 5em;
  float: left;
  line-height: 0.85;
  padding-right: 10px;
  padding-top: 8px;
  color: var(--red);
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 32px;
  border-top: 1px solid var(--g-200);
  margin-top: 48px;
}
.article-tags .tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g-700);
  border: 1px solid var(--g-300);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ==========================================================================
   Team portrait page
   ========================================================================== */
.team-hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding: 80px var(--gutter) 64px;
}
.team-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 110%, rgba(191,35,112,0.20) 0%, transparent 55%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 18px);
  pointer-events: none;
}
.team-hero-inner { position: relative; z-index: 1; max-width: 1400px; margin: 0 auto; }
.team-hero-display {
  font-family: var(--f-display);
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.82;
  letter-spacing: -0.018em;
  text-transform: uppercase;
  margin-top: 20px;
}
.team-hero-display .accent { color: var(--red); display: block; }
.team-hero-tag {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  max-width: 720px;
  color: rgba(255,255,255,0.82);
  margin-top: 32px;
  line-height: 1.4;
}
.team-hero-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
@media (max-width: 900px) { .team-hero-stats { grid-template-columns: repeat(2, 1fr); } }
.team-hero-stats .cell {
  padding: 24px 20px 24px 0;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.team-hero-stats .cell:last-child { border-right: none; }
.team-hero-stats .num { font-family: var(--f-display); font-size: 56px; line-height: 0.9; color: var(--paper); }
.team-hero-stats .lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 10px; }

.team-roster {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--g-200);
  border: 1px solid var(--g-200);
}
@media (max-width: 1100px) { .team-roster { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .team-roster { grid-template-columns: repeat(2, 1fr); } }
.roster-cell {
  background: var(--ink);
  color: var(--paper);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  align-content: end;
  aspect-ratio: 3 / 4;
}
.roster-cell::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px);
}
.roster-cell .num {
  position: absolute;
  top: 12px; right: 14px;
  font-family: var(--f-display);
  font-size: 56px;
  color: rgba(255,255,255,0.18);
  line-height: 0.9;
}
.roster-cell .name {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  position: relative;
}
.roster-cell .nat {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  position: relative;
}
.roster-cell.coach { background: var(--red); }
.roster-cell.coach .num { color: rgba(255,255,255,0.30); }

/* ==========================================================================
   Sponsoring deck
   ========================================================================== */
.sponsor-deck-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 100px var(--gutter) 80px;
  position: relative;
  overflow: hidden;
}
.sponsor-deck-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% -10%, rgba(232,182,71,0.20) 0%, transparent 55%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 18px);
}
.sponsor-deck-inner { position: relative; z-index: 1; max-width: 1400px; margin: 0 auto; }
.sponsor-deck-display {
  font-family: var(--f-display);
  font-size: clamp(72px, 11vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.018em;
  text-transform: uppercase;
}
.sponsor-deck-display .accent { color: var(--red); }
.reach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--g-200);
  border: 1px solid var(--g-200);
}
@media (max-width: 900px) { .reach-grid { grid-template-columns: repeat(2, 1fr); } }
.reach-cell {
  background: var(--paper);
  padding: 36px 32px;
}
.reach-cell .num { font-family: var(--f-display); font-size: 80px; line-height: 0.9; letter-spacing: -0.02em; }
.reach-cell .num small { font-size: 32px; color: var(--g-500); margin-left: 6px; }
.reach-cell .lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--g-500); margin-top: 10px; }
.reach-cell .desc { font-family: var(--f-body); font-size: 13px; line-height: 1.5; color: var(--g-700); margin-top: 14px; max-width: 220px; }

/* Package cards */
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1100px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pkg-grid { grid-template-columns: 1fr; } }
.pkg-card {
  background: var(--paper);
  border: 1px solid var(--g-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.pkg-card.featured { background: var(--ink); color: var(--paper); border-color: var(--ink); position: relative; }
.pkg-card.featured .pkg-name,
.pkg-card.featured .pkg-price,
.pkg-card.featured .pkg-list li { color: var(--paper); }
.pkg-card.featured .pkg-list li::before { color: var(--red); }
.pkg-card.featured .pkg-tier-label { color: var(--red); }
.pkg-tier-label { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--g-500); }
.pkg-name { font-family: var(--f-display); font-size: 48px; line-height: 0.95; letter-spacing: -0.015em; margin-top: 8px; }
.pkg-price {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 600;
  margin-top: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--g-200);
}
.pkg-card.featured .pkg-price { border-bottom-color: rgba(255,255,255,0.15); }
.pkg-list { list-style: none; padding: 0; margin-top: 18px; display: grid; gap: 10px; flex-grow: 1; }
.pkg-list li {
  font-family: var(--f-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--g-700);
  padding-left: 22px;
  position: relative;
}
.pkg-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* Inventory grid */
.inventory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--g-200);
  border: 1px solid var(--g-200);
}
@media (max-width: 900px) { .inventory { grid-template-columns: 1fr; } }
.inv-cell {
  background: var(--paper);
  padding: 32px 28px;
  display: grid;
  gap: 12px;
}
.inv-cell .lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--g-500); }
.inv-cell .name { font-family: var(--f-head); font-weight: 800; font-size: 22px; line-height: 1.15; }
.inv-cell .meta { font-family: var(--f-mono); font-size: 12px; color: var(--g-700); }
.inv-cell .desc { font-family: var(--f-body); font-size: 13px; line-height: 1.55; color: var(--g-700); }

/* ── Floating Ticket Flag ──────────────────────────────────── */
.ticket-flag {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ticket-flag a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: white;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 18px 14px 16px;
  border-radius: 8px 0 0 8px;
  box-shadow: -4px 0 24px rgba(225,29,72,0.35);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: padding 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.ticket-flag a:hover {
  padding: 14px 22px 14px 16px;
  box-shadow: -6px 0 32px rgba(225,29,72,0.5);
}
.ticket-flag a svg {
  transform: rotate(180deg);
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .ticket-flag { top: auto; bottom: 24px; transform: none; }
  .ticket-flag a {
    writing-mode: horizontal-tb;
    transform: none;
    border-radius: 8px 0 0 8px;
    padding: 12px 16px;
  }
}

/* ==========================================================================
   DYN Livestream Strip
   ========================================================================== */
.dyn-strip {
  background: #07090F;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 9px 0;
}
.dyn-strip-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.dyn-badge {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  padding: 3px 10px;
  border: 1px solid var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.dyn-text {
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dyn-cta {
  margin-left: auto;
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.dyn-cta:hover { border-color: var(--red); color: var(--red); }
@media (max-width: 560px) { .dyn-cta { display: none; } }

/* ==========================================================================
   Nächstes-Spiel Strip (inspiriert von ttcoe.de)
   ========================================================================== */
.next-match-strip {
  background: var(--red);
  color: white;
  padding: 24px 0;
}
.next-match-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.next-match-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
  padding: 14px 22px;
  min-width: 90px;
  text-align: center;
  flex-shrink: 0;
}
.next-match-date .day {
  font-family: var(--f-display);
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.next-match-date .month {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 2px;
}
.next-match-type {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: white;
  color: var(--red);
  padding: 4px 14px;
  border-radius: 2px;
  flex-shrink: 0;
}
.next-match-info {
  flex: 1;
  min-width: 200px;
}
.next-match-info .nm-league {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 6px;
}
.next-match-info .nm-teams {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(16px, 2.4vw, 24px);
  line-height: 1.15;
}
.next-match-info .nm-venue {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-top: 6px;
  text-transform: uppercase;
}
.next-match-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.next-match-time .nm-time-num {
  font-family: var(--f-display);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.next-match-time .nm-time-lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}
@media (max-width: 680px) {
  .next-match-date { padding: 10px 16px; }
  .next-match-date .day { font-size: 36px; }
  .next-match-time { display: none; }
}

/* ==========================================================================
   Match Strip — HEIM / AUSWÄRTS Badges
   ========================================================================== */
.match-badge-heim {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  background: rgba(16,185,129,0.15);
  color: var(--green);
  font-weight: 600;
}
.match-badge-aus {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  background: var(--g-100);
  color: var(--g-500);
  font-weight: 600;
}
.match-badge-next {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  background: rgba(225,29,72,0.12);
  color: var(--red);
  font-weight: 600;
}

/* ==========================================================================
   Live-bei-DYN Section (Inhaltsbereich)
   ========================================================================== */
.dyn-section {
  background: #07090F;
  color: var(--paper);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dyn-section-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.dyn-section-logo {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 80px);
  letter-spacing: -0.01em;
  line-height: 1;
  color: white;
}
.dyn-section-logo span { color: var(--red); }
.dyn-section-text {
  flex: 1;
  min-width: 200px;
}
.dyn-section-text h3 {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.2;
  margin-bottom: 8px;
}
.dyn-section-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 440px;
}
.dyn-channels {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.dyn-channel {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 680px) { .dyn-section-logo { font-size: 40px; } }

/* ==========================================================================
   Match-Strip — dark cinematic
   ========================================================================== */

.match-strip {
  background: var(--ink);
  border-top: 3px solid var(--red);
  border-bottom: none;
  color: var(--paper);
}
.match-cell {
  border-right-color: rgba(255,255,255,0.07);
}
.match-cell-meta { color: rgba(255,255,255,0.38); }
.match-cell-teams { color: var(--paper); }
.match-cell-score .winner { color: var(--paper); }
.match-cell-score .loser { color: rgba(255,255,255,0.28); }
.match-cell-score .vs { color: rgba(255,255,255,0.2); }
.match-cell-foot { color: rgba(255,255,255,0.42); }

/* ==========================================================================
   Section — dark editorial ink (News)
   ========================================================================== */

.section-ink {
  background: var(--navy);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.section-ink::before {
  content: 'NEWS';
  position: absolute;
  top: -40px;
  right: -30px;
  font-family: var(--f-display);
  font-size: clamp(180px, 24vw, 360px);
  line-height: 0.8;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.section-ink .sec-head {
  border-bottom-color: rgba(255,255,255,0.1);
}
.section-ink .sec-head h2 { color: var(--paper); }
.section-ink .sec-head a { color: rgba(255,255,255,0.55); }
.section-ink .sec-head a:hover { color: var(--paper); }
/* Cards appear as light panels on dark ground */
.section-ink .news-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}
.section-ink .news-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
}
.section-ink .news-card-title { color: var(--paper); }
.section-ink .news-card-meta { color: rgba(255,255,255,0.42); }
.section-ink .news-card-meta .sep { color: rgba(255,255,255,0.18); }
.section-ink .news-card-excerpt { color: rgba(255,255,255,0.58); }
/* Compact list */
.section-ink .news-list-item {
  border-top-color: rgba(255,255,255,0.08);
}
.section-ink .news-list-item:last-child {
  border-bottom-color: rgba(255,255,255,0.08);
}
.section-ink .news-list-item:hover { background: rgba(255,255,255,0.03); }
.section-ink .news-list-date { color: rgba(255,255,255,0.42); }
.section-ink .news-list-date strong { color: var(--paper); }
.section-ink .news-list-title { color: var(--paper); }
.section-ink .eyebrow { color: rgba(255,255,255,0.45); }

/* ==========================================================================
   Teams section — ghost "LIGA" watermark + red top accent
   ========================================================================== */

.section-teams {
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--red);
}
.section-teams::after {
  content: 'LIGA';
  position: absolute;
  bottom: -60px;
  right: -30px;
  font-family: var(--f-display);
  font-size: clamp(160px, 22vw, 380px);
  line-height: 0.8;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

/* ==========================================================================
   Ticket section — dark stage feel
   ========================================================================== */

.section-ticket {
  background: var(--g-900);
  color: var(--paper);
  position: relative;
}
.section-ticket::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(225,29,72,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.section-ticket .sec-head { border-bottom-color: rgba(255,255,255,0.1); }
.section-ticket .sec-head h2 { color: var(--paper); }
.section-ticket .sec-head a { color: rgba(255,255,255,0.55); }
/* Venue-Card komplett dunkel */
.section-ticket .venue {
  background: var(--g-800);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.section-ticket .venue-content {
  background: rgba(255,255,255,0.03);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.section-ticket .venue-info { border-top-color: rgba(255,255,255,0.12); }
/* dt: Label */
.section-ticket .venue-info dt { color: rgba(255,255,255,0.42); }
/* dd: Wert */
.section-ticket .venue-info dd { color: var(--paper); }
/* Lauftext */
.section-ticket .text-muted { color: rgba(255,255,255,0.62); }
.section-ticket h3 { color: var(--paper); }
.section-ticket p { color: rgba(255,255,255,0.72); }
.section-ticket .eyebrow { color: rgba(255,255,255,0.4); }

/* ==========================================================================
   Vereinszahlen — full-bleed dark image + stats
   ========================================================================== */

.vereinszahlen {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: clamp(72px, 10vw, 140px) 0;
}
.vz-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  mix-blend-mode: luminosity;
  pointer-events: none;
}
.vz-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,14,26,0.97) 0%, rgba(10,14,26,0.65) 50%, rgba(10,14,26,0.90) 100%),
    linear-gradient(180deg, rgba(225,29,72,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.vz-inner {
  position: relative;
  z-index: 2;
}
.vz-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}
.vz-rule {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.vz-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.vz-stat {
  flex: 1;
  min-width: 160px;
  padding: 0 48px;
}
.vz-stat:first-child { padding-left: 0; }
.vz-divider {
  width: 1px;
  height: 90px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.vz-num {
  font-family: var(--f-display);
  font-size: clamp(52px, 6.5vw, 96px);
  line-height: 0.88;
  color: var(--paper);
  letter-spacing: -0.02em;
}
.vz-suffix {
  font-size: 0.55em;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
  color: var(--red);
}
.vz-lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
}
.vz-cta {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 768px) {
  .vz-stats { flex-direction: column; align-items: flex-start; gap: 40px; }
  .vz-divider { display: none; }
  .vz-stat { padding: 0; }
}

/* Ghost-white outline button */
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.25);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: transparent;
  border-radius: var(--radius);
  transition: all 0.18s;
}
.btn-ghost-white:hover {
  border-color: rgba(255,255,255,0.7);
  color: white;
  background: rgba(255,255,255,0.06);
}

/* ==========================================================================
   CTA-Blöcke — diagonale Textur für mehr Tiefe
   ========================================================================== */

.cta-block {
  position: relative;
  overflow: hidden;
}
.cta-block.dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -52deg,
    transparent,
    transparent 28px,
    rgba(255,255,255,0.025) 28px,
    rgba(255,255,255,0.025) 29px
  );
  pointer-events: none;
}
.cta-block.red::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -52deg,
    transparent,
    transparent 28px,
    rgba(0,0,0,0.07) 28px,
    rgba(0,0,0,0.07) 29px
  );
  pointer-events: none;
}

/* ==========================================================================
   Sponsor-Detailseite (aus Vorlage übernommen)
   ========================================================================== */
.sponsor-detail-hero {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
}
.sponsor-detail-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.sponsor-detail-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: end;
  margin-top: 48px;
}
.sponsor-detail-display {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-top: 24px;
}
.sponsor-detail-display .accent { color: var(--gold); }
.sponsor-detail-tagline {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-top: 20px;
  line-height: 1.6;
}
.sponsor-logo-box {
  background: white;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 48px;
  color: var(--ink);
  letter-spacing: -0.04em;
  position: relative;
  overflow: hidden;
}
.sponsor-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 56px;
  padding-top: 40px;
}
.sponsor-hero-stats .cell { border-right: 1px solid rgba(255,255,255,0.10); padding-right: 32px; margin-right: 32px; }
.sponsor-hero-stats .cell:last-child { border-right: none; }
.sponsor-hero-stats .num { font-family: var(--f-head); font-weight: 800; font-size: clamp(28px,3vw,44px); line-height: 1; letter-spacing: -0.02em; color: var(--gold); }
.sponsor-hero-stats .lbl { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 8px; }

/* Package Badge */
.pkg-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 3px;
}
.pkg-badge .dot-gold { width: 8px; height: 8px; background: var(--ink); border-radius: 50%; opacity: 0.6; }

/* Benefits Grid */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--g-200);
  border: 2px solid var(--g-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.benefit-cell {
  background: var(--paper);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefit-cell .icon {
  width: 44px;
  height: 44px;
  background: var(--ink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.benefit-cell .name { font-family: var(--f-head); font-weight: 700; font-size: 17px; line-height: 1.2; }
.benefit-cell .desc { font-size: 14px; color: var(--g-500); line-height: 1.55; }
.benefit-cell.highlight { background: var(--ink); color: var(--paper); }
.benefit-cell.highlight .desc { color: rgba(255,255,255,0.55); }
.benefit-cell.highlight .icon { background: var(--gold); }

/* Activation Section */
.activation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.activation-card {
  border: 1px solid var(--g-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.activation-image {
  aspect-ratio: 16/9;
  background: var(--g-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--g-400);
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--g-200);
}
.activation-body { padding: 24px; }
.activation-body .eyebrow { margin-bottom: 8px; }
.activation-body h3 { margin-bottom: 10px; }
.activation-body p { font-size: 14px; color: var(--g-500); line-height: 1.55; }

/* Reach Breakdown */
.reach-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--g-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.rb-cell {
  background: var(--paper);
  padding: 36px 32px;
}
.rb-cell .num { font-family: var(--f-head); font-weight: 800; font-size: clamp(32px,3.5vw,52px); line-height: 1; letter-spacing: -0.025em; color: var(--ink); }
.rb-cell .num small { font-size: 0.55em; font-weight: 600; color: var(--g-400); }
.rb-cell .lbl { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--g-500); margin-top: 8px; }
.rb-cell .desc { font-size: 14px; color: var(--g-500); line-height: 1.55; margin-top: 12px; }
.rb-cell.accent-cell { background: var(--navy); color: var(--paper); }
.rb-cell.accent-cell .num { color: var(--gold); }
.rb-cell.accent-cell .lbl { color: rgba(255,255,255,0.55); }
.rb-cell.accent-cell .desc { color: rgba(255,255,255,0.55); }

@media (max-width: 960px) {
  .sponsor-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .sponsor-logo-box { aspect-ratio: 3/1; max-width: 420px; }
  .sponsor-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .sponsor-hero-stats .cell { border-right: none; margin-right: 0; padding-right: 0; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .activation-grid { grid-template-columns: 1fr; }
  .reach-breakdown { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .benefit-grid { grid-template-columns: 1fr; }
}

/* Unternehmensprofil (Beschreibung + Eckdaten + Social) */
.sponsor-profile-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: start; }
.sponsor-profile-text { max-width: 640px; color: var(--g-700, #3a3a3a); }
.sponsor-profile-text p { margin-bottom: 16px; line-height: 1.75; }
.sponsor-profile-text p:last-child { margin-bottom: 0; }
.sponsor-facts {
  background: var(--paper-2);
  border: 1px solid var(--g-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 96px;
}
.sp-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.sp-social a {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.05em;
  padding: 10px 18px; border: 1px solid var(--g-300); border-radius: 999px;
  color: var(--ink); text-decoration: none; transition: all 0.15s ease;
}
.sp-social a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
@media (max-width: 860px) {
  .sponsor-profile-grid { grid-template-columns: 1fr; gap: 32px; }
  .sponsor-facts { position: static; }
}

/* Sponsor-Bildergalerie + Lightbox */
.sponsor-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sg-item {
  margin: 0; position: relative; overflow: hidden;
  border-radius: var(--radius-lg); cursor: pointer;
  aspect-ratio: 4/3; background: var(--g-100);
}
.sg-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.sg-item:hover img { transform: scale(1.05); }
.sg-item:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.sg-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 16px 12px;
  background: linear-gradient(transparent, rgba(7,12,24,0.82));
  color: #fff; font-size: 13px; line-height: 1.35;
}
@media (max-width: 860px) { .sponsor-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .sponsor-gallery { grid-template-columns: 1fr; } }

.sg-lightbox {
  position: fixed; inset: 0; z-index: 99990;
  display: none; align-items: center; justify-content: center;
  background: rgba(5,8,16,0.92); padding: 32px;
}
.sg-lightbox.open { display: flex; }
.sg-lightbox-img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.sg-lightbox-caption { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.85); font-size: 14px; padding: 0 24px; }
.sg-close {
  position: absolute; top: 20px; right: 24px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff; border: none;
  font-size: 28px; line-height: 1; cursor: pointer; transition: background 0.15s ease;
}
.sg-close:hover { background: rgba(255,255,255,0.25); }

/* Sponsor-Zitat (moderat, auch für längere Texte) */
.sponsor-quote {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 820px;
  margin: 0;
  padding-left: 28px;
  border-left: 4px solid var(--red);
}
