/* darts-tracker landing v2 — Broadcast-Sport-Aesthetic */

:root {
  --l-bg:        #0a0a0c;
  --l-bg-2:      #111114;
  --l-bg-3:      #17171b;
  --l-line:      #2a2a30;
  --l-line-2:    #3a3a44;

  --l-ink:       #f0e6d0;    /* chalk cream, primary text */
  --l-ink-2:     #c8bfa8;
  --l-ink-mute:  #7a7c82;
  --l-ink-dim:   #4a4c53;

  --l-red:       #e01a1a;    /* PDC-broadcast red */
  --l-red-d:     #9c0f13;
  --l-red-glow:  rgba(224,26,26,0.35);
  --l-gold:      #d8ba58;
  --l-gold-d:    #a48a34;
  --l-green:     #17a34a;

  --l-cond:  'Barlow Condensed', 'Oswald', Impact, sans-serif;
  --l-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --l-mono:  'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  background: var(--l-bg);
  color: var(--l-ink);
  font-family: var(--l-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: var(--l-ink); text-decoration: none; }
img, svg { display: block; }

/* ── Chalk-Noise-Overlay über allem (extrem subtil) ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(1200px 700px at 15% 10%, rgba(224,26,26,0.10), transparent 60%),
    radial-gradient(900px 600px at 100% 90%, rgba(216,186,88,0.06), transparent 55%),
    linear-gradient(180deg, #0a0a0c 0%, #0d0d10 100%);
}

/* ── Wrap ── */
.l-wrap { max-width: 1300px; margin: 0 auto; padding: 0 24px; }
.l-wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════ TOP-STRIP ═══════════════════════════════ */
.l-topstrip {
  background: var(--l-bg-2);
  border-bottom: 1px solid var(--l-line);
  font-family: var(--l-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--l-ink-mute);
}
.l-topstrip-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 24px;
  max-width: 1300px; margin: 0 auto;
}
.l-topstrip-inner .l-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--l-red);
  box-shadow: 0 0 8px var(--l-red-glow);
  margin-right: 8px; vertical-align: middle;
  animation: livepulse 1.6s ease-in-out infinite;
}
@keyframes livepulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ═══════════════════════════════ NAV ═══════════════════════════════ */
.l-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  max-width: 1300px; margin: 0 auto;
  border-bottom: 1px solid var(--l-line);
}
.l-brand { display: inline-flex; align-items: center; gap: 14px; }
.l-brand-mark {
  width: 40px; height: 40px;
  background: radial-gradient(circle at 30% 30%, #d8bf65, #d8ba58 45%, #7a5e18 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--l-cond);
  font-weight: 700; font-size: 20px;
  color: #1a1200;
  box-shadow: inset 0 -3px 8px rgba(0,0,0,0.4), 0 4px 10px rgba(0,0,0,0.5);
  border: 1px solid #7a5e18;
}
.l-brand-text {
  font-family: var(--l-cond);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
}
.l-brand-text .lbl {
  display: block;
  font-family: var(--l-mono);
  font-size: 10px;
  color: var(--l-ink-mute);
  letter-spacing: 0.24em;
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
}
.l-nav-link {
  font-family: var(--l-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--l-ink-2);
  padding: 12px 22px;
  border: 1px solid var(--l-line-2);
  transition: all .15s ease;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  background: transparent;
}
.l-nav-link:hover { border-color: var(--l-red); color: var(--l-ink); background: rgba(224,26,26,0.08); }

/* ═══════════════════════════════ HERO ═══════════════════════════════ */
.l-hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}
.l-hero-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(320px, 560px) 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.l-hero-board {
  position: relative;
  margin-left: -6%;
  max-width: 560px;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.6));
  animation: subtleSway 8s ease-in-out infinite;
}
@keyframes subtleSway {
  0%, 100% { transform: rotate(-1.5deg); }
  50% { transform: rotate(1.5deg); }
}
.l-hero-board::before {
  content: '';
  position: absolute; inset: -60px;
  background: radial-gradient(circle at center, rgba(224,26,26,0.20), transparent 60%);
  z-index: -1; filter: blur(20px);
}
.l-hero-text { position: relative; }

/* Big score-tag / eyebrow: "180" style */
.l-scoretag {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-family: var(--l-mono);
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--l-gold);
  margin-bottom: 20px;
}
.l-scoretag::before {
  content: '';
  display: inline-block; width: 34px; height: 1px; background: var(--l-gold);
  margin-right: 4px;
}

.l-hero h1 {
  font-family: var(--l-cond);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0 0 28px;
  color: var(--l-ink);
}
.l-hero h1 .l-strike {
  color: var(--l-red);
  position: relative;
  padding: 0 4px;
}
.l-hero h1 .l-strike::after {
  content: '';
  position: absolute; left: -2px; right: -2px;
  bottom: 12%; height: 6px;
  background: var(--l-red);
  transform: skewY(-1deg);
  opacity: 0.15;
}
.l-hero h1 .l-mute { color: var(--l-ink-mute); }

.l-hero-lead {
  font-size: 1.1rem;
  color: var(--l-ink-2);
  max-width: 520px;
  margin: 0 0 32px;
}
.l-hero-lead strong { color: var(--l-ink); font-weight: 600; }

.l-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.l-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--l-cond);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
  border: 0;
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}
.l-btn-primary {
  background: linear-gradient(180deg, var(--l-red), var(--l-red-d));
  color: #fff;
  box-shadow: 0 8px 20px var(--l-red-glow);
}
.l-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px var(--l-red-glow); color: #fff; }
.l-btn-ghost {
  background: var(--l-bg-3);
  color: var(--l-ink);
  border: 1px solid var(--l-line-2);
}
.l-btn-ghost:hover { background: var(--l-bg-2); border-color: var(--l-ink-2); color: var(--l-ink); }

/* ═══════════════════════════════ SCORE-TICKER (Broadcast lower-third) ═══ */
.l-ticker {
  background: var(--l-red);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.35);
}
.l-ticker-track {
  display: flex;
  gap: 60px;
  padding: 14px 0;
  font-family: var(--l-cond);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  will-change: transform;
}
.l-ticker-item { display: inline-flex; align-items: center; gap: 12px; }
.l-ticker-item::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--l-gold);
  display: inline-block;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════ SECTIONS ═══════════════════════════════ */
.l-section { padding: 90px 0; position: relative; }
.l-section-alt { background: var(--l-bg-2); border-top: 1px solid var(--l-line); border-bottom: 1px solid var(--l-line); }

.l-section-head { max-width: 720px; margin: 0 0 60px; }
.l-section-eyebrow {
  display: block;
  font-family: var(--l-mono);
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--l-gold);
  margin-bottom: 14px;
  padding-left: 46px;
  position: relative;
}
.l-section-eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 34px; height: 1px; background: var(--l-gold);
}
.l-section-head h2 {
  font-family: var(--l-cond);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0 0 16px;
  color: var(--l-ink);
}
.l-section-head p {
  color: var(--l-ink-2);
  font-size: 1.05rem;
  margin: 0;
  max-width: 620px;
}

/* ══════ Feature-Cards mit Riesenzahl-Decoration ══════ */
.l-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--l-line);
  border: 1px solid var(--l-line);
}
.l-feature {
  background: var(--l-bg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.l-feature-big {
  position: absolute;
  right: -20px; bottom: -35px;
  font-family: var(--l-cond);
  font-weight: 700;
  font-size: 190px;
  line-height: 0.85;
  color: var(--l-ink-dim);
  opacity: 0.12;
  letter-spacing: -0.03em;
  pointer-events: none;
}
.l-feature-label {
  font-family: var(--l-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--l-gold);
  margin-bottom: 14px;
}
.l-feature h3 {
  font-family: var(--l-cond);
  font-weight: 700;
  font-size: 1.9rem;
  text-transform: uppercase;
  color: var(--l-ink);
  margin: 0 0 12px;
  line-height: 1.05;
  letter-spacing: -0.005em;
}
.l-feature p {
  color: var(--l-ink-2);
  font-size: 0.98rem;
  margin: 0;
  max-width: 460px;
  position: relative;
}

/* ══════ Live-Log-Ticker Section (Persistenz-Beweis) ══════ */
.l-persist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.l-persist-copy h2 {
  font-family: var(--l-cond);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--l-ink);
  margin: 0 0 18px;
}
.l-persist-copy h2 .l-strike { color: var(--l-red); }
.l-persist-copy p {
  color: var(--l-ink-2);
  font-size: 1.05rem;
  margin: 0 0 16px;
  max-width: 480px;
}
.l-persist-copy ul {
  list-style: none;
  padding: 0; margin: 24px 0 0;
}
.l-persist-copy li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-top: 1px dashed var(--l-line-2);
  font-size: 0.95rem;
  color: var(--l-ink-2);
}
.l-persist-copy li:last-child { border-bottom: 1px dashed var(--l-line-2); }
.l-persist-copy li svg { flex-shrink: 0; margin-top: 3px; color: var(--l-green); }
.l-persist-copy li b { color: var(--l-ink); font-weight: 600; }

/* Terminal-Live-Log */
.l-terminal {
  background: #05060a;
  border: 1px solid var(--l-line-2);
  border-radius: 4px;
  padding: 20px;
  font-family: var(--l-mono);
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--l-ink-2);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.02);
  position: relative;
  overflow: hidden;
}
.l-terminal::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 32px;
  background: linear-gradient(180deg, #101014, #0a0a0e);
  border-bottom: 1px solid var(--l-line);
}
.l-terminal::after {
  content: '● ● ●';
  position: absolute; top: 8px; left: 14px;
  font-size: 8px; color: var(--l-ink-dim);
  letter-spacing: 8px;
}
.l-terminal-body { margin-top: 30px; }
.l-terminal .k-time { color: var(--l-ink-dim); }
.l-terminal .k-tag  { color: var(--l-gold); }
.l-terminal .k-red  { color: var(--l-red); }
.l-terminal .k-green{ color: var(--l-green); }
.l-terminal .k-name { color: var(--l-ink); }
.l-terminal .k-mute { color: var(--l-ink-mute); }
.l-terminal .k-cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--l-ink);
  vertical-align: middle;
  animation: cursorBlink 1s step-end infinite;
  margin-left: 4px;
}
@keyframes cursorBlink { 50% { opacity: 0; } }

/* ══════ Oche-Line-Divider (dart-thematisch) ══════ */
.l-oche {
  display: flex; align-items: center; gap: 24px;
  margin: 32px 0;
  color: var(--l-ink-mute);
  font-family: var(--l-mono);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
}
.l-oche::before, .l-oche::after {
  content: '';
  flex: 1;
  height: 0;
  border-top: 2px dashed var(--l-line-2);
}

/* ══════ Final CTA — full-bleed ══════ */
.l-cta-final {
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--l-line);
  background:
    radial-gradient(ellipse at center, rgba(224,26,26,0.12), transparent 60%),
    var(--l-bg);
}
.l-cta-final h2 {
  font-family: var(--l-cond);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--l-ink);
  margin: 0 0 20px;
  letter-spacing: -0.005em;
}
.l-cta-final p {
  color: var(--l-ink-2);
  font-size: 1.15rem;
  margin: 0 0 40px;
  max-width: 620px;
  margin-inline: auto;
}
.l-cta-final .l-btn { font-size: 22px; padding: 20px 40px; }

/* ══════ Footer ══════ */
.l-footer {
  border-top: 1px solid var(--l-line);
  padding: 36px 0;
  text-align: center;
  font-family: var(--l-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--l-ink-2);
}
.l-footer a { color: var(--l-ink); margin: 0 14px; font-weight: 600; }
.l-footer a:hover { color: var(--l-gold); }

/* ══════ Responsive ══════ */
@media (max-width: 1024px) {
  .l-hero-inner { grid-template-columns: 1fr; gap: 30px; text-align: left; }
  .l-hero-board { order: -1; margin-left: 0; max-width: 380px; margin-inline: auto; }
  .l-persist { grid-template-columns: 1fr; gap: 40px; }
  .l-features { grid-template-columns: 1fr; }
  .l-feature-big { font-size: 150px; }
}
@media (max-width: 640px) {
  .l-topstrip-inner { padding: 8px 16px; font-size: 10px; }
  .l-topstrip-inner .l-hide-sm { display: none; }
  .l-nav { padding: 16px; }
  .l-nav-link { padding: 10px 16px; font-size: 11px; }
  .l-brand-text { font-size: 20px; }
  .l-hero { padding: 40px 0 60px; }
  .l-hero h1 { font-size: 3rem; }
  .l-feature { padding: 32px 24px; min-height: 180px; }
  .l-feature h3 { font-size: 1.6rem; }
  .l-feature-big { font-size: 120px; right: -10px; bottom: -25px; }
  .l-terminal { font-size: 11.5px; padding: 16px; }
  .l-cta-final .l-btn { font-size: 18px; padding: 16px 30px; }
  .l-section { padding: 60px 0; }
  .l-btn { font-size: 15px; padding: 14px 22px; }
}

/* Werner-Dartscheibe als externes IMG einbinden */
.l-dartboard-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 520px;
  margin: 0 auto;
}


/* Formate-Section — 4 Cards mit Live/Geplant-Status */
.l-formats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .l-formats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .l-formats { grid-template-columns: 1fr; }
}
.l-format {
  padding: 22px 20px 20px;
  background: var(--l-bg-2);
  border: 1px solid var(--l-line-2);
  border-radius: 4px;
  transition: transform .15s ease, border-color .15s ease;
}
.l-format-live { border-color: var(--l-green); border-left: 3px solid var(--l-green); }
.l-format-soon { opacity: 0.68; }
.l-format-status {
  font-family: var(--l-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--l-ink-mute);
  margin-bottom: 14px;
  font-weight: 600;
}
.l-format-live .l-format-status { color: var(--l-green); }
.l-format h3 {
  font-family: var(--l-cond);
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--l-ink);
  margin: 0 0 8px;
  text-transform: uppercase;
  line-height: 1.05;
}
.l-format p {
  color: var(--l-ink-2);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Brennende-180 Logo in Landing-Nav — überschreibt .l-brand-mark */
.l-brand-logo {
  height: 48px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .l-brand-logo { height: 40px; }
}

/* ═══════════════════════════════ HERO MULTI-SPORT (v2 2026-08-18) ═══ */
/* Ersetzt den alten .l-hero-board Dartboard-Slot durch eine 5-Kachel-Sportgrid */

.l-hero-inner-multi {
  max-width: 1300px; margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1.05fr);
  gap: 56px;
  align-items: center;
  position: relative;
}

.l-sportgrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 1fr;
  gap: 12px;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.5));
  min-width: 0;
}
/* Reihe 1: 3 Karten à 2 Spalten (Darts, Kicker, Billard) */
.l-sportgrid > .l-sportcard:nth-child(1) { grid-column: span 2; }
.l-sportgrid > .l-sportcard:nth-child(2) { grid-column: span 2; }
.l-sportgrid > .l-sportcard:nth-child(3) { grid-column: span 2; }
/* Reihe 2: 2 Karten à 3 Spalten (Boule, Cornhole) */
.l-sportgrid > .l-sportcard:nth-child(4) { grid-column: span 3; }
.l-sportgrid > .l-sportcard:nth-child(5) { grid-column: span 3; }

.l-sportcard {
  background: linear-gradient(180deg, var(--l-bg-2) 0%, var(--l-bg-3) 100%);
  border: 1px solid var(--l-line-2);
  border-radius: 4px;
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 184px;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  color: var(--l-ink-mute);
}
.l-sportcard::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.03), transparent 55%);
  pointer-events: none;
}
.l-sportcard-icon {
  width: 100%; height: 88px;
  display: flex; align-items: center; justify-content: center;
  color: var(--l-ink-2);
}
.l-sportcard-icon img,
.l-sportcard-icon svg {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  display: block;
}
.l-sportcard-name {
  font-family: var(--l-cond);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--l-ink);
  line-height: 1;
  text-align: center;
}
.l-sportcard-status {
  font-family: var(--l-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--l-ink-mute);
  font-weight: 600;
}
.l-sportcard-live {
  border-color: var(--l-green);
  box-shadow: 0 0 0 1px rgba(23,163,74,0.25), 0 12px 30px rgba(23,163,74,0.10);
}
.l-sportcard-live .l-sportcard-status { color: var(--l-green); }
.l-sportcard-live .l-sportcard-icon { color: var(--l-red); }
.l-sportcard:not(.l-sportcard-live) { opacity: 0.75; }
.l-sportcard:not(.l-sportcard-live):hover { opacity: 0.95; transform: translateY(-2px); border-color: var(--l-ink-mute); }
.l-sportcard-live:hover { transform: translateY(-3px); }

@media (max-width: 1024px) {
  .l-hero-inner-multi {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }
  .l-sportgrid {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .l-sportgrid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .l-sportgrid > .l-sportcard:nth-child(1) { grid-column: span 1; }
  .l-sportgrid > .l-sportcard:nth-child(2) { grid-column: span 1; }
  .l-sportgrid > .l-sportcard:nth-child(3) { grid-column: span 1; }
  .l-sportgrid > .l-sportcard:nth-child(4) { grid-column: span 1; }
  .l-sportgrid > .l-sportcard:nth-child(5) { grid-column: span 2; }
  .l-sportcard { min-height: 140px; padding: 18px 14px 14px; }
  .l-sportcard-icon { height: 68px; }
  .l-sportcard-icon img,
  .l-sportcard-icon svg { max-width: 100%; max-height: 100%; width: auto; height: auto; }
  .l-sportcard-name { font-size: 1.1rem; }
}



/* ═══════════════════════════════ HERO PYRAMID (2-block: apex over base) 2026-08-18 ═══ */
.l-sportgrid-pyramid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.5));
  min-width: 0;
}
/* Apex block: single card, ~80% width, centered */
.l-sportgrid-apex {
  display: flex;
  justify-content: center;
}
.l-sportgrid-apex > .l-sportcard {
  width: 82%;
  padding: 32px 24px 22px;
}
.l-sportgrid-apex > .l-sportcard .l-sportcard-icon {
  height: 168px;
  margin-bottom: 6px;
}
.l-sportgrid-apex > .l-sportcard .l-sportcard-name {
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}
.l-sportgrid-apex > .l-sportcard .l-sportcard-status {
  font-size: 10.5px;
  letter-spacing: 0.28em;
}

/* Base block: 2 cards side-by-side */
.l-sportgrid-base {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* "Weitere in Planung" line */
.l-sportgrid-more {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px dashed var(--l-line-2);
  border-radius: 4px;
  background: rgba(0,0,0,0.15);
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.l-sportgrid-more-label {
  font-family: var(--l-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--l-gold);
  padding: 2px 8px;
  border: 1px solid var(--l-gold-d);
  border-radius: 2px;
  white-space: nowrap;
}
.l-sportgrid-more-list {
  font-family: var(--l-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--l-ink-mute);
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .l-sportgrid-apex > .l-sportcard {
    width: 100%;
    padding: 22px 16px 16px;
  }
  .l-sportgrid-apex > .l-sportcard .l-sportcard-icon { height: 120px; }
  .l-sportgrid-apex > .l-sportcard .l-sportcard-name { font-size: 1.4rem; }
  .l-sportgrid-more { padding: 10px 12px; gap: 8px; }
  .l-sportgrid-more-list { font-size: 10px; letter-spacing: 0.1em; }
}
