/*
 * Local preview stylesheet based on:
 * - schwatzgelb_brand_guideline_interaktiv_v16_final_vollstaendig.html
 * - schwatzgelb_design_tokens_v16_final_vollstaendig.json
 *
 * This file defines the default brand-v16 styling.
 * Use query param legacyStyle=1 to temporarily fall back to legacy styling.
 */

:root {
  --sgv16-bg: #121212;
  --sgv16-surface: #1A1A1A;
  --sgv16-surface-2: #2E2E2E;
  --sgv16-line: #FFCC00;
  --sgv16-line-strong: #2E2E2E;
  --sgv16-text: #F5F5F5;
  --sgv16-text-2: #A3A3A3;
  --sgv16-text-3: #A3A3A3;
  --sgv16-yellow: #FFCC00;
  --sgv16-yellow-hover: #E6B800;  /* 10 % dunkler für Hover-Feedback */
  --sgv16-yellow-active: #CCA300; /* 20 % dunkler für Active-Feedback */
  --sgv16-yellow-legacy: #FFCC00;
  --sgv16-yellow-legacy-hover: #FFCC00;
  --sgv16-yellow-legacy-dark: #FFCC00;
  --sgv16-yellow-legacy-light: #FFCC00;
  --sgv16-yellow-legacy-border: #FFCC00;
  --sgv16-yellow-legacy-soft: #FFCC00;
  --sgv16-yellow-legacy-muted: #FFCC00;
  --sgv16-yellow-ink-muted: #1A1A1A;
  --sgv16-yellow-ink-muted-hover: #121212;
  --sgv16-yellow-accent: #FFCC00;
  --sgv16-yellow-alpha-46: rgba(255, 204, 0, 0.46);
  --sgv16-yellow-alpha-34: rgba(255, 204, 0, 0.34);
  --sgv16-yellow-alpha-28: rgba(255, 204, 0, 0.28);
  --sgv16-yellow-legacy-alpha-44: rgba(255, 204, 0, 0.44);
  --sgv16-yellow-legacy-alpha-70: rgba(255, 204, 0, 0.7);
  --sgv16-yellow-ink: #121212;
  --sgv16-success: #22C55E;
  --sgv16-error: #EF4444;
  --sgv16-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  --sgv16-outer-max: 1200px;
  --sgv16-content-max: 1200px;
  --sgv16-reading-max: 780px;

  /* Layout spacing */
  --sgv16-module-space-desktop: 2.2rem;
  --sgv16-module-space-mobile: 1.4rem;

  /* Immersive hero */
  --immersive-hero-offset: 0px;
}

@media (prefers-color-scheme: light) {
  :root {
    --sgv16-bg: #F5F5F5;
    --sgv16-surface: #FFFFFF;      /* war #F5F5F5 = identisch mit bg, keine Tiefe */
    --sgv16-surface-2: #EBEBEB;    /* war #A3A3A3 = viel zu dunkel in light */
    --sgv16-line: #FFCC00;
    --sgv16-line-strong: #2E2E2E;
    --sgv16-text: #121212;
    --sgv16-text-2: #1A1A1A;
    --sgv16-text-3: #6B7280;       /* war #A3A3A3 = gleicher Wert wie dark-default */
  }
}

body.brand-v16.theme-light {
  --sgv16-bg: #F5F5F5;
  --sgv16-surface: #FFFFFF;     /* war #F5F5F5 = identisch mit bg */
  --sgv16-surface-2: #EBEBEB;   /* war #A3A3A3 */
  --sgv16-line: #FFCC00;         /* Intentionell gelb: Trennlinien = Brand-Akzent */
  --sgv16-line-strong: #2E2E2E;
  --sgv16-text: #121212;
  --sgv16-text-2: #1A1A1A;
  --sgv16-text-3: #6B7280;      /* war #A3A3A3 */
}

body.brand-v16 {
  font-family: "Atkinson Hyperlegible", sans-serif;
  color: var(--sgv16-text);
  background: var(--sgv16-bg);
  overflow-x: clip;
}

body.brand-v16.theme-dark {
  --sgv16-bg: #121212;
  --sgv16-surface: #1A1A1A;
  --sgv16-surface-2: #2E2E2E;
  --sgv16-line: #FFCC00;
  --sgv16-line-strong: #2E2E2E;
  --sgv16-text: #F5F5F5;
  --sgv16-text-2: #D0D0D0;  /* war #A3A3A3, konsistent mit @media-dark-Wert */
  --sgv16-text-3: #A3A3A3;
}

/*
 * Base compatibility layer for brand-v16.
 * Replaces essential layout primitives that were previously inherited from style.min.100.css.
 */
body.brand-v16,
body.brand-v16 * {
  box-sizing: border-box;
}

body.brand-v16 img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

body.brand-v16 .img-fluid {
  max-width: 100%;
  height: auto;
}

body.brand-v16 .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

body.brand-v16 .row>[class^="col-"],
body.brand-v16 .row>[class*=" col-"] {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 0.85rem;
}

body.brand-v16 .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  body.brand-v16 .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  body.brand-v16 .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

body.brand-v16 .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background-clip: border-box;
}

body.brand-v16 .wrap {
  max-width: var(--sgv16-outer-max);
  background: var(--sgv16-bg);
}

body.brand-v16 .wrap.wrap--article,
body.brand-v16 .article-view.article-view--special {
  max-width: none;
  width: 100%;
}

body.brand-v16 .article-view.article-view--special {
  overflow: visible;
}

body.brand-v16 .article-view--special .article-immersive-hero {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

body.brand-v16 .article-view--special .article-immersive-hero__overlay {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 24%,
      rgba(10, 12, 18, 0.72) 70%,
      rgba(10, 12, 18, 0.98) 100%);
}

body.brand-v16 .article-view--special .article-view__body {
  max-width: none;
  width: 100%;
}

body.brand-v16 .article-view--special .forum-thread-link,
body.brand-v16 .article-view--special .article-endtools {
  max-width: var(--sgv16-reading-max);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body.brand-v16 .article-view--special .forum-thread-link__cta {
  display: inline-flex;
  justify-content: center;
}

body.brand-v16 .article-view--special .article-endtools .article-socialbar {
  justify-content: center;
}

body.brand-v16 .article-view--special .article-endtools .article-steady img {
  margin-left: auto;
  margin-right: auto;
}

body.brand-v16 .article-view {
  max-width: var(--sgv16-reading-max);
  border-radius: 0;
  box-shadow: none;
  /* background wird durch :not(.theme-dark) und Final-Block gesetzt */
}

body.brand-v16 .card.article-view img,
body.brand-v16 .article-view .article-media img,
body.brand-v16 .article-view .article-hero img,
body.brand-v16 .article-view .article-content img {
  border-radius: 0 !important;
}

body.brand-v16 .site-header {
  background: var(--sgv16-yellow);
  box-shadow: 0 0 9px 2px rgba(0, 0, 0, 0.35);
}

body.brand-v16 .site-header .logo,
body.brand-v16 .site-header .claim,
body.brand-v16 .menu-link,
body.brand-v16 .menu-search-trigger {
  color: var(--sgv16-yellow-ink);
}

body.brand-v16 .site-header a,
body.brand-v16 .site-header a:hover,
body.brand-v16 .site-header a:focus,
body.brand-v16 .btn-primary,
body.brand-v16 .tag-chip,
body.brand-v16 .tag-pill,
body.brand-v16 .forum-chip,
body.brand-v16 .footer__top,
body.brand-v16 .footer__top a,
body.brand-v16 .footer__social h3,
body.brand-v16 .footer__social a {
  color: var(--sgv16-yellow-ink) !important;
}

body.brand-v16 .footer__top {
  background: var(--sgv16-yellow);
}

body.brand-v16 .footer__social a {
  border-color: rgba(18, 18, 18, 0.85);
}

body.brand-v16 .footer__social a:hover {
  background: rgba(18, 18, 18, 0.92);
  color: var(--sgv16-yellow) !important;
}

body.brand-v16 .top-nav {
  background: var(--sgv16-bg);
  color: var(--sgv16-text);
  border-bottom: 1px solid var(--sgv16-line);
  font-family: "Atkinson Hyperlegible", sans-serif;
}

body.brand-v16 .top-nav a {
  color: var(--sgv16-text-2);
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 700;
}

body.brand-v16 .top-nav a:not(:last-child) {
  border-right-color: rgba(255, 255, 255, 0.25);
}

body.brand-v16 .main-nav {
  background: var(--sgv16-surface);
  border-top-color: var(--sgv16-line);
  border-bottom-color: var(--sgv16-line);
  font-family: "Barlow Semi Condensed", sans-serif !important;
  margin-bottom: 0;
}

body.brand-v16 .main-nav a {
  color: var(--sgv16-text);
  font-family: "Barlow Semi Condensed", sans-serif !important;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 700;
}

body.brand-v16 .teaser-card {
  background: var(--sgv16-surface);
}

body.brand-v16 .teaser-card--aufmacher-special .teaser-media,
body.brand-v16 .teaser-card--aufmacher-special .teaser-card__media .teaser-media {
  aspect-ratio: 16 / 9;
}

body.brand-v16 .teaser-card__link:focus-visible {
  outline-color: var(--sgv16-yellow);
}

body.brand-v16 .teaser-card__pill,
body.brand-v16 .tag-chip,
body.brand-v16 .tag-pill,
body.brand-v16 .forum-chip {
  background: var(--sgv16-yellow);
  color: var(--sgv16-yellow-ink);
  border-radius: 0;
}

body.brand-v16 .menu-link,
body.brand-v16 .menu-search-trigger,
body.brand-v16 .mm-menu,
body.brand-v16 .mm-menu a,
body.brand-v16 .mm-menu summary {
  font-family: "Barlow Semi Condensed", sans-serif !important;
  letter-spacing: normal;
}

body.brand-v16 .listing--category-box,
body.brand-v16 .forum-box,
body.brand-v16 .statistik-box {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
  background: var(--sgv16-surface);
  border: 0;
  border-top: 4px solid var(--sgv16-yellow);
  color: var(--sgv16-text);
  box-shadow: var(--sgv16-shadow);
}

/* h2 a Farbe separat in nächstem Block gesetzt (var(--sgv16-yellow)), hier nur h2 */
body.brand-v16 .listing--category-box h2,
body.brand-v16 .forum-box h2,
body.brand-v16 .statistik-box h2 {
  font-family: "Barlow Semi Condensed", sans-serif !important;
  font-weight: 700;
  text-transform: none;
  text-decoration: none;
  color: var(--sgv16-text);
}

body.brand-v16 .listing--category-box h2 a,
body.brand-v16 .listing--category-box h2 a:hover,
body.brand-v16 .listing--category-box h2 a:focus,
body.brand-v16 .forum-box h2 a,
body.brand-v16 .forum-box h2 a:hover,
body.brand-v16 .forum-box h2 a:focus,
body.brand-v16 .statistik-box h2 a,
body.brand-v16 .statistik-box h2 a:hover,
body.brand-v16 .statistik-box h2 a:focus {
  text-decoration: none;
  color: var(--sgv16-yellow);
}

body.brand-v16 .listing--category-box a,
body.brand-v16 .forum-box a,
body.brand-v16 .statistik-box a,
body.brand-v16 a {
  color: var(--sgv16-yellow);
}

body.brand-v16 .listing--category-box a:hover,
body.brand-v16 .forum-box a:hover,
body.brand-v16 .statistik-box a:hover,
body.brand-v16 a:hover {
  color: var(--sgv16-yellow-hover);
}

body.brand-v16 .forum-box__item,
body.brand-v16 .statistik-box ul li,
body.brand-v16 .kommende-spiele-box__group li {
  background: var(--sgv16-bg);
  border: 1px solid var(--sgv16-line);
  border-left: 3px solid var(--sgv16-yellow);
  color: var(--sgv16-text);
}

body.brand-v16 .statistik-box h5,
body.brand-v16 .kommende-spiele-box__group h5 {
  font-family: "Barlow Semi Condensed", sans-serif !important;
  text-transform: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--sgv16-text);
}

body.brand-v16 .dachzeile {
  color: var(--sgv16-yellow);
  font-family: "Barlow Semi Condensed", sans-serif !important;
  font-weight: 700;
  text-transform: none;
}

body.brand-v16 .article-title,
body.brand-v16 .teaser-card__title,
body.brand-v16 h1,
body.brand-v16 h2,
body.brand-v16 h3,
body.brand-v16 h4 {
  font-family: "Barlow Semi Condensed", sans-serif !important;
  font-weight: 700;
  text-transform: none;
  line-height: 0.98;
}

/* Keep immersive hero readable: global heading overrides are too aggressive here. */
body.brand-v16 .article-immersive-hero__title {
  font-family: "Barlow Semi Condensed", sans-serif !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.01em;
  text-transform: none;
}

body.brand-v16 .article-immersive-hero__byline,
body.brand-v16 .article-immersive-hero__teaser {
  font-family: "Atkinson Hyperlegible", sans-serif;
}

body.brand-v16 .article-view--special .article-immersive-hero__meta-wrap {
  bottom: clamp(1.9rem, 5.4svh, 3.4rem);
}

body.brand-v16 .article-view--special .article-immersive-hero__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

body.brand-v16 .article-view--special .article-immersive-hero__teaser {
  order: 1;
  margin: 0;
  color: #F5F5F5;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

body.brand-v16 .article-view--special .article-immersive-hero__byline {
  order: 2;
  margin: 0.35rem 0 0;
  width: 100%;
  padding: 0.42rem 0.72rem;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(9, 12, 17, 0.52);
  backdrop-filter: blur(1.5px);
  color: #F5F5F5;
}

body.brand-v16 .article-view--special .article-immersive-hero__byline a,
body.brand-v16 .article-view--special .article-immersive-hero__byline .article-immersive-hero__byline-item,
body.brand-v16 .article-view--special .article-immersive-hero__byline .article-immersive-hero__byline-item--author,
body.brand-v16 .article-view--special .article-immersive-hero__byline .article-immersive-hero__byline-item--reading {
  color: #F5F5F5;
}

body.brand-v16 .article-view--special .article-view__body {
  padding-top: 1.25rem;
}

body.brand-v16 .article-view--special .article-teaser {
  margin-bottom: 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--sgv16-yellow-alpha-46);
}

body.brand-v16 .article-view--special .article-content {
  padding-top: 1.1rem;
  border-top: 1px solid var(--sgv16-yellow-alpha-28);
}

body.brand-v16 .article-view--special .article-endtools {
  border-top: 1px solid var(--sgv16-yellow-alpha-34);
  padding-top: 1rem;
}

body.brand-v16 .article-content,
body.brand-v16 .article-teaser,
body.brand-v16 .teaser-card__excerpt,
body.brand-v16 p {
  font-family: "Atkinson Hyperlegible", sans-serif;
  color: var(--sgv16-text-2);
}

body.brand-v16 .card.article-view .article-teaser {
  font-size: 1.24rem;
  line-height: 1.4;
  font-weight: 600;
}

body.brand-v16 .card.article-view .article-title,
body.brand-v16 .card.article-view .article-kicker,
body.brand-v16 .card.article-view .article-meta--intro {
  text-align: center;
}

body.brand-v16 .card.article-view .article-hero {
  margin-top: 1.15rem;
  margin-bottom: 1.5rem;
}

body.brand-v16 .card.article-view .article-teaser--intro {
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: left;
}

body.brand-v16 .card.article-view .article-meta--intro {
  padding-top: .5rem;
  padding-bottom: .5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

body.brand-v16 .btn-primary,
body.brand-v16 .article-socialbar__btn:hover {
  background: var(--sgv16-yellow);
  border-color: var(--sgv16-yellow);
  color: var(--sgv16-yellow-ink);
}

@media (max-width: 980px) {
  body.brand-v16 .site-header .inner {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  body.brand-v16 .menu-tools {
    top: 50%;
    transform: translateY(-50%);
  }

  body.brand-v16 .menu-link__label {
    display: none;
  }

  body.brand-v16 .menu-link {
    gap: 0;
  }
}

@media (max-width: 900px) {
  body.brand-v16 .article-view--special .article-immersive-hero__byline {
    margin-bottom: 0;
  }

  body.brand-v16 .article-view--special .article-view__body {
    padding-top: 1.1rem;
  }
}

body.brand-v16 .site-footer {
  background: var(--sgv16-surface);
  color: var(--sgv16-text);
}

body.brand-v16 .site-footer a,
body.brand-v16 .footer-grid h4,
body.brand-v16 .footer-meta {
  color: var(--sgv16-text);
}

body.brand-v16:not(.theme-dark) .top-nav {
  background: #1A1A1A;
  color: #F5F5F5;
  border-bottom-color: #1A1A1A;
}

body.brand-v16:not(.theme-dark) .top-nav a {
  color: #F5F5F5;
}

body.brand-v16:not(.theme-dark) .main-nav {
  background: var(--sgv16-surface);
  border-top-color: var(--sgv16-line);
  border-bottom-color: #FFCC00;
}

body.brand-v16:not(.theme-dark) .main-nav a {
  color: #1A1A1A;
}

body.brand-v16:not(.theme-dark) .teaser-card {
  background: var(--sgv16-surface);
  border: 0;
}

body.brand-v16:not(.theme-dark) .teaser-card__title {
  color: #121212;
}

body.brand-v16:not(.theme-dark) .teaser-card__excerpt {
  color: #1A1A1A;
}

body.brand-v16:not(.theme-dark) .teaser-card__meta {
  color: #1A1A1A;
}

body.brand-v16:not(.theme-dark) .teaser-card--aufmacher-special .teaser-card__overlay-content .teaser-card__title {
  color: #F5F5F5;
}

body.brand-v16:not(.theme-dark) .teaser-card--aufmacher-special .teaser-card__overlay-content .teaser-card__excerpt {
  color: #F5F5F5;
}

body.brand-v16:not(.theme-dark) .teaser-card--aufmacher-special .teaser-card__overlay-content .teaser-card__meta {
  color: #F5F5F5;
}

body.brand-v16:not(.theme-dark) .article-view {
  background: var(--sgv16-surface);
  border: 1px solid var(--sgv16-line);
}

body.brand-v16:not(.theme-dark) .card.article-view .article-title,
body.brand-v16:not(.theme-dark) .card.article-view .article-kicker,
body.brand-v16:not(.theme-dark) .card.article-view .article-meta,
body.brand-v16:not(.theme-dark) .card.article-view .article-content,
body.brand-v16:not(.theme-dark) .card.article-view .article-content p,
body.brand-v16:not(.theme-dark) .card.article-view .article-content li,
body.brand-v16:not(.theme-dark) .card.article-view .article-teaser {
  color: #1A1A1A;
}

body.brand-v16:not(.theme-dark) .article-view--special .article-view__body {
  background: var(--sgv16-surface);
  color: #1A1A1A;
}

body.brand-v16:not(.theme-dark) .article-view--special .article-immersive-hero__teaser {
  color: #F5F5F5;
}

body.brand-v16:not(.theme-dark) .article-view--special .article-immersive-hero__byline,
body.brand-v16:not(.theme-dark) .article-view--special .article-immersive-hero__byline a,
body.brand-v16:not(.theme-dark) .article-view--special .article-immersive-hero__byline .article-immersive-hero__byline-item {
  color: #F5F5F5;
}

body.brand-v16:not(.theme-dark) .article-view--special .article-kicker,
body.brand-v16:not(.theme-dark) .article-view--special .article-title,
body.brand-v16:not(.theme-dark) .article-view--special .article-meta,
body.brand-v16:not(.theme-dark) .article-view--special .article-teaser,
body.brand-v16:not(.theme-dark) .article-view--special .article-content,
body.brand-v16:not(.theme-dark) .article-view--special .article-content p,
body.brand-v16:not(.theme-dark) .article-view--special .article-content li {
  color: #1A1A1A;
}

body.brand-v16:not(.theme-dark) .listing--category-box,
body.brand-v16:not(.theme-dark) .forum-box,
body.brand-v16:not(.theme-dark) .statistik-box {
  background: var(--sgv16-surface);
}

body.brand-v16:not(.theme-dark) .forum-box__item,
body.brand-v16:not(.theme-dark) .statistik-box ul li,
body.brand-v16:not(.theme-dark) .kommende-spiele-box__group li {
  background: var(--sgv16-surface);
  color: #1A1A1A;
  border-color: var(--sgv16-line);
}

body.brand-v16:not(.theme-dark) .site-footer {
  background: var(--sgv16-surface);
  border-top: 1px solid var(--sgv16-line);
}

body.brand-v16:not(.theme-dark) .site-footer a,
body.brand-v16:not(.theme-dark) .footer-grid h4,
body.brand-v16:not(.theme-dark) .footer-meta {
  color: #1A1A1A;
}

@media (min-width: 1100px) {

  body.brand-v16 .wrap,
  body.brand-v16 .site-header .inner,
  body.brand-v16 .main-nav .inner,
  body.brand-v16 .top-nav .inner,
  body.brand-v16 .site-footer .inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 36px;
    padding-right: 36px;
    box-sizing: border-box;
  }
}

body.brand-v16.theme-dark .listing--category-box,
body.brand-v16.theme-dark .forum-box,
body.brand-v16.theme-dark .statistik-box {
  background: var(--sgv16-surface);
  border-color: var(--sgv16-line);
  border-top-color: var(--sgv16-yellow);
  color: var(--sgv16-text);
  box-shadow: var(--sgv16-shadow);
}

body.brand-v16.theme-dark .listing--category-box a,
body.brand-v16.theme-dark .forum-box a,
body.brand-v16.theme-dark .statistik-box a {
  color: var(--sgv16-yellow);
}


body.brand-v16.theme-dark .forum-box__item,
body.brand-v16.theme-dark .statistik-box ul li,
body.brand-v16.theme-dark .kommende-spiele-box__group li {
  background: #121212;
  border-color: var(--sgv16-line);
  border-left-color: var(--sgv16-yellow);
  color: var(--sgv16-text);
}

body.brand-v16.theme-dark .statistik-box h5,
body.brand-v16.theme-dark .kommende-spiele-box__group h5 {
  color: var(--sgv16-text);
}

body.brand-v16.theme-dark .forum-box__meta,
body.brand-v16.theme-dark .statistik-box p,
body.brand-v16.theme-dark .kommende-spiele-box__hint {
  color: var(--sgv16-text-2);
}

/* --sgv16-module-space-* sind im globalen :root oben definiert */

body.brand-v16 .listing-article--module-inline,
body.brand-v16 .listing-article--podcast,
body.brand-v16 .shop-module,
body.brand-v16 .homepage-category-module,
body.brand-v16 .forum-box.listing--category-box,
body.brand-v16 .fotos-box.listing--category-box,
body.brand-v16 .statistik-box.listing--category-box,
body.brand-v16 .kommende-spiele-box.listing--category-box {
  margin-top: var(--sgv16-module-space-desktop) !important;
  margin-bottom: var(--sgv16-module-space-desktop) !important;
}

/* Avoid double vertical spacing for modules directly after homepage Aufmacher. */
body.brand-v16 .homepage-topthemen .listing-article--module-inline>.homepage-category-module,
body.brand-v16 .homepage-topthemen .listing-article--module-inline>.listing-article--podcast,
body.brand-v16 .homepage-topthemen .listing-article--module-inline>.shop-module,
body.brand-v16 .homepage-topthemen .listing-article--module-inline>.forum-box.listing--category-box,
body.brand-v16 .homepage-topthemen .listing-article--module-inline>.fotos-box.listing--category-box,
body.brand-v16 .homepage-topthemen .listing-article--module-inline>.statistik-box.listing--category-box,
body.brand-v16 .homepage-topthemen .listing-article--module-inline>.kommende-spiele-box.listing--category-box {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 900px) {

  body.brand-v16 .listing-article--module-inline,
  body.brand-v16 .listing-article--podcast,
  body.brand-v16 .shop-module,
  body.brand-v16 .homepage-category-module,
  body.brand-v16 .forum-box.listing--category-box,
  body.brand-v16 .fotos-box.listing--category-box,
  body.brand-v16 .statistik-box.listing--category-box,
  body.brand-v16 .kommende-spiele-box.listing--category-box {
    margin-top: var(--sgv16-module-space-mobile) !important;
    margin-bottom: var(--sgv16-module-space-mobile) !important;
  }
}

@media (prefers-color-scheme: dark) {
  body.brand-v16:not(.theme-light) {
    --sgv16-bg: #121212;
    --sgv16-surface: #1A1A1A;
    --sgv16-surface-2: #1A1A1A;
    --sgv16-line: #FFCC00;
    --sgv16-line-strong: #2E2E2E;
    --sgv16-text: #F5F5F5;
    --sgv16-text-2: #D0D0D0;  /* war #F5F5F5 = identisch mit text-1, keine Hierarchie */
    --sgv16-text-3: #A3A3A3;
  }

  body.brand-v16:not(.theme-light) .top-nav {
    background: #121212;
    color: var(--sgv16-text);
    border-bottom-color: var(--sgv16-line);
  }

  body.brand-v16:not(.theme-light) .top-nav a {
    color: var(--sgv16-text-2);
  }

  body.brand-v16:not(.theme-light) .main-nav {
    background: var(--sgv16-surface);
    border-top-color: var(--sgv16-line);
    border-bottom-color: var(--sgv16-line);
  }

  body.brand-v16:not(.theme-light) .main-nav a {
    color: var(--sgv16-text);
  }

  body.brand-v16:not(.theme-light) .teaser-card {
    background: var(--sgv16-surface);
    border-color: var(--sgv16-line);
  }

  body.brand-v16:not(.theme-light) .teaser-card__title {
    color: #F5F5F5;
  }

  body.brand-v16:not(.theme-light) .teaser-card__excerpt {
    color: #F5F5F5;
  }

  body.brand-v16:not(.theme-light) .article-view {
    background: #121212;
    border-color: #1A1A1A;
  }

  body.brand-v16:not(.theme-light) .card.article-view .article-title,
  body.brand-v16:not(.theme-light) .card.article-view .article-kicker,
  body.brand-v16:not(.theme-light) .card.article-view .article-meta,
  body.brand-v16:not(.theme-light) .card.article-view .article-content,
  body.brand-v16:not(.theme-light) .card.article-view .article-content p,
  body.brand-v16:not(.theme-light) .card.article-view .article-content li,
  body.brand-v16:not(.theme-light) .card.article-view .article-teaser {
    color: #F5F5F5;
  }

  body.brand-v16:not(.theme-light) .article-view--special .article-view__body {
    background: #121212;
    color: #F5F5F5;
  }

  body.brand-v16:not(.theme-light) .article-view--special .article-kicker,
  body.brand-v16:not(.theme-light) .article-view--special .article-title,
  body.brand-v16:not(.theme-light) .article-view--special .article-meta,
  body.brand-v16:not(.theme-light) .article-view--special .article-teaser,
  body.brand-v16:not(.theme-light) .article-view--special .article-content,
  body.brand-v16:not(.theme-light) .article-view--special .article-content p,
  body.brand-v16:not(.theme-light) .article-view--special .article-content li {
    color: #F5F5F5;
  }

  body.brand-v16:not(.theme-light) .listing--category-box,
  body.brand-v16:not(.theme-light) .forum-box,
  body.brand-v16:not(.theme-light) .statistik-box {
    background: var(--sgv16-surface);
    border-color: var(--sgv16-line);
  }

  body.brand-v16:not(.theme-light) .forum-box__item,
  body.brand-v16:not(.theme-light) .statistik-box ul li,
  body.brand-v16:not(.theme-light) .kommende-spiele-box__group li {
    background: #121212;
    color: var(--sgv16-text);
    border-color: var(--sgv16-line);
  }

  body.brand-v16:not(.theme-light) .site-footer {
    background: var(--sgv16-surface);
    border-top-color: var(--sgv16-line);
  }

  body.brand-v16:not(.theme-light) .site-footer a,
  body.brand-v16:not(.theme-light) .footer-grid h4,
  body.brand-v16:not(.theme-light) .footer-meta {
    color: var(--sgv16-text);
  
  /* Einheitliche teaser-card__meta-Farbe in allen Theme-Varianten */
  body.brand-v16:not(.theme-dark) .teaser-card__meta,
  body.brand-v16.theme-dark .teaser-card__meta {
    color: #A3A3A3 !important;
  }
}
}


/* --- Migrated from templates/_layouts/base.twig inline <style> block --- */
/* --immersive-hero-offset ist im globalen :root oben definiert */

body a:hover {
  color: var(--sgv16-yellow-accent);
}

.skip {
  position: absolute;
  top: -1000px;
  left: -1000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  z-index: 9999;
  background: var(--sgv16-surface);
  padding: .5rem .75rem;
  border-radius: 6px;
}

.top-nav {
  background: #1A1A1A;
  color: #F5F5F5;
  font-size: .78rem;
  position: relative;
}

.top-nav .inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: .4rem 15px;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.top-nav-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.top-nav-scroll::-webkit-scrollbar {
  display: none;
}

.top-nav-arrow {
  display: none;
}

.top-nav a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  text-transform: none;
  font-weight: 500;
  letter-spacing: .01em;
}

.top-nav a:not(:last-child) {
  border-right: 1px dotted rgba(255, 255, 255, .65);
  padding-right: .75rem;
}

@media (max-width:900px) {
  .top-nav {
    overflow: hidden;
  }

  .top-nav .inner {
    max-width: none;
    justify-content: flex-start;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    margin: 0 34px;
    padding: .45rem 0;
  }

  .top-nav.top-nav--no-overflow .inner {
    margin: 0;
    padding: .45rem 1.55rem;
  }

  .top-nav a {
    flex: 0 0 auto;
  }

  .top-nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #F5F5F5;
    z-index: 2;
    cursor: pointer;
  }

  .top-nav-arrow--left {
    left: 6px;
  }

  .top-nav-arrow--right {
    right: 6px;
  }

  .top-nav.top-nav--at-start .top-nav-arrow--left,
  .top-nav.top-nav--at-end .top-nav-arrow--right,
  .top-nav.top-nav--no-overflow .top-nav-arrow {
    display: none;
  }
}

.site-header {
  margin: 0;
  padding: 18px 0 12px;
  background: linear-gradient(90deg, var(--sgv16-yellow-legacy-light), var(--sgv16-yellow-legacy));
  box-shadow: 0 0 9px 3px rgba(41, 41, 41, .2);
  text-align: center;
}

.site-header .inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

.site-header .logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: clamp(40px, 7.2vw, 40px);
  max-width: min(calc(100vw - 170px), 360px);
}

.site-header .logo svg {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
}

.site-header .logo .st0 {
  fill: #1A1A1A;
}

.site-header .claim {
  font-weight: bolder;
  font-size: 1rem;
  color: #1A1A1A;
  margin-top: .05rem;
}

.menu-tools {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: .65rem;
  z-index: 2;
}

.menu-link,
.menu-search-trigger {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #121212;
  text-decoration: none;
  font-weight: 800;
}

.menu-link {
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.menu-link .fas {
  font-size: 1.25rem;
  line-height: 1;
}

.menu-link__label {
  font-size: .95rem;
  font-weight: 800;
  line-height: 1;
}

.menu-search-trigger {
  font-size: 1.2rem;
  line-height: 1;
  padding-left: .65rem;
  border-left: 1px solid rgba(0, 0, 0, .28);
}

.menu-search-trigger .fas {
  display: block;
}

.mm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 1800;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.mm-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(92vw, 420px);
  background: #1A1A1A;
  color: #F5F5F5;
  z-index: 1900;
  transform: translateX(-102%);
  transition: transform .24s ease, visibility .24s ease;
  overflow: auto;
  box-shadow: 0 0 28px rgba(0, 0, 0, .35);
  visibility: hidden;
}

.mm-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem .9rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.mm-menu-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.mm-menu-close {
  border: 0;
  background: transparent;
  color: #F5F5F5;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.mm-menu-search {
  padding: .8rem .95rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.mm-menu-search form {
  display: block;
}

.mm-menu-search input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: #121212;
  color: #F5F5F5;
  padding: .48rem .75rem;
  outline: none;
  font-size: .9rem;
}

.mm-menu-search input::placeholder {
  color: rgba(255, 255, 255, .65);
  opacity: 1;
}

.mm-menu nav {
  padding: .35rem 0 1rem;
}

.mm-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mm-menu li,
.mm-menu details {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mm-menu a,
.mm-menu summary,
.mm-menu .group-label {
  display: block;
  padding: .78rem .95rem;
  color: #F5F5F5;
  text-decoration: none;
}

.mm-menu a:hover,
.mm-menu summary:hover {
  background: rgba(255, 255, 255, .08);
}

.mm-menu details summary {
  cursor: pointer;
}

.mm-menu details>ul {
  background: rgba(0, 0, 0, .12);
}

.mm-menu details>ul a {
  padding-left: 1.4rem;
}

.mm-menu details>ul details>ul a {
  padding-left: 2rem;
}

body.menu-open .mm-menu {
  transform: translateX(0);
  visibility: visible;
}

body.menu-open .mm-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  html {
    overflow-x: hidden;
  }

  .menu-tools {
    left: auto;
    right: 15px;
  }

  .mm-menu {
    left: auto;
    right: 0;
    transform: translateX(102%);
  }

  body.menu-open .mm-menu {
    transform: translateX(0);
  }
}

.teaser-media,
.listing-article img.img-fluid,
.list img.img-fluid {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: top;
  display: block;
}

.shop-module {
  margin: 1.4rem 0;
}

.shop-module__media {
  position: relative;
}

.shop-module__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.shop-module__link {
  display: block;
}

.shop-module__stretched-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
}

.shop-module__ad-pill {
  position: absolute;
  top: .55rem;
  left: .55rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .18rem .5rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, .9);
  color: #F5F5F5;
  font-size: .64rem;
  letter-spacing: .04em;
  font-weight: 800;

  line-height: 1;
  pointer-events: none;
}

.listing-article img,
img.img-fluid {
  border-radius: 0 !important;
}

*,
*::before,
*::after {
  transition: none !important;
}

@media (max-width:760px) {
  .search-form input {
    width: 88px;
  }
}

@media (max-width:980px) {
  .menu-search-trigger {
    display: none;
  }

  .site-header .claim {
    display: none;
  }
}

@media (max-width:560px) {
  .menu-link__label {
    font-size: .88rem;
  }
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 1200;
  margin-bottom: 10px;
  border-top: none;
  border-bottom: 3px solid var(--sgv16-yellow-legacy);
  background: var(--sgv16-surface);
}

.main-nav .inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: .65rem 15px;
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.main-nav-scroll::-webkit-scrollbar {
  display: none;
}

.main-nav-arrow {
  display: none;
}

.main-nav a {
  color: #121212;
  text-decoration: none;
  font-weight: 800;
  font-size: .92rem;
}

.main-nav .main-nav__home {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 2rem;
  text-transform: none;
  text-decoration: none;
}

.main-nav.main-nav--scrolled .main-nav__home {
  display: inline-flex;
}

.main-nav .main-nav__home .fas {
  font-size: 1.05rem;
}

@media (max-width:900px) {
  .main-nav {
    overflow: hidden;
    position: sticky;
  }

  .main-nav .inner {
    max-width: none;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    margin: 0 40px;
    padding: .7rem 0;
  }

  .main-nav.main-nav--no-overflow .inner {
    margin: 0;
    padding: .7rem 1.55rem;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .main-nav.main-nav--scrolled .main-nav__home {
    display: inline-flex;
  }

  .main-nav .main-nav__home {
    min-width: 2rem;
  }

  .main-nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 17, 17, .08);
    color: #121212;
    z-index: 2;
    cursor: pointer;
  }

  .main-nav-arrow--left {
    left: 8px;
  }

  .main-nav-arrow--right {
    right: 8px;
  }

  .main-nav.main-nav--at-start .main-nav-arrow--left,
  .main-nav.main-nav--at-end .main-nav-arrow--right,
  .main-nav.main-nav--no-overflow .main-nav-arrow {
    display: none;
  }
}

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px 3rem;
}

.wrap--full {
  max-width: none;
  width: 100%;
  padding: 0 0 3rem;
}

.article-view {
  margin-top: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: 0;
  background: var(--sgv16-surface);
  border: 1px solid var(--sgv16-line);
  box-shadow: none;
}

.article-view--special {
  margin-top: 0;
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  overflow: hidden;
}

.article-immersive-hero {
  position: relative;
  width: 100vw;
  height: calc(100vh - var(--immersive-hero-offset));
  height: calc(100svh - var(--immersive-hero-offset));
  min-height: 420px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: #121212;
}

.article-immersive-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.article-immersive-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(15, 17, 23, .92) 100%);
  z-index: 1;
  pointer-events: none;
}

.article-immersive-hero__meta-wrap {
  position: absolute;
  left: 50%;
  bottom: clamp(1.4rem, 6svh, 4.2rem);
  transform: translateX(-50%);
  width: min(100% - 2rem, 960px);
  z-index: 2;
}

.article-immersive-hero__meta {
  max-width: 760px;
  color: #F5F5F5;
}

.article-immersive-hero__title {
  margin: 0 0 .65rem;
  line-height: 1.08;
  font-size: clamp(2rem, 5vw, 4.1rem);
  font-weight: 900;
  letter-spacing: -.01em;
  color: #F5F5F5;
  text-wrap: balance;
}

.article-immersive-hero__byline {
  margin: 0 0 .7rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
  font-size: .95rem;
  color: #F5F5F5;
  opacity: .95;
}

.article-immersive-hero__byline-item {
  display: inline-flex;
  align-items: center;
  line-height: 1.3;
}

.article-immersive-hero__byline-item--author,
.article-immersive-hero__byline-item--reading {
  font-weight: 700;
}

.article-immersive-hero__teaser {
  margin: 0;
  max-width: 66ch;
  line-height: 1.6;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  color: #F5F5F5;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .15);
}

.article-view--special .article-view__body {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem clamp(.85rem, 2.1vw, 1.3rem) 1.25rem;
  background: #121212;
  color: #F5F5F5;
}

.article-immersive-caption {
  margin: 0 0 1rem;
  font-size: .82rem;
  color: #A3A3A3;
  line-height: 1.45;
  text-align: left;
}

.article-view--special .article-kicker,
.article-view--special .article-title,
.article-view--special .article-meta,
.article-view--special .article-teaser,
.article-view--special .article-content,
.article-view--special .article-content p,
.article-view--special .article-content li {
  color: #F5F5F5;
}

.article-view--special .article-content a {
  color: var(--sgv16-yellow);
}

.article-kicker {
  margin: 0 0 .35rem;
  font-weight: normal;
  color: #2E2E2E;
  letter-spacing: .02em;
}

.article-title {
  margin: 0 0 .55rem;
  line-height: 1.14;
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
}

.article-meta {
  margin: 0 0 .95rem;
  color: #2E2E2E;
  font-size: .95rem;
}

.article-meta--structured {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .42rem .62rem;
  line-height: 1.45;
  color: #2E2E2E;
}

.article-meta__item {
  display: inline-flex;
  align-items: center;
  color: #2E2E2E;
}

.article-meta__item+.article-meta__item {
  position: relative;
  padding-left: .62rem;
}

.article-meta__item+.article-meta__item::before {
  content: '·';
  position: absolute;
  left: 0;
  color: #A3A3A3;
}

.article-meta__item--author,
.article-meta__item--date {
  font-weight: 700;
  color: #1A1A1A;
}

.article-teaser {
  margin: 0 0 1rem;
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 600;
  color: #1A1A1A;
}

.article-content {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.14rem;
  line-height: 1.82;
  letter-spacing: .002em;
  color: #1A1A1A;
}

.article-view--no-first-letter .article-content [data-dropcap-start="1"]::first-letter {
  all: unset;
}

.article-report {
  margin: 0 0 1rem;
  padding: .75rem .9rem;
  border: 1px solid var(--sgv16-line);
  border-radius: 8px;
  background: var(--sgv16-surface);
}

.article-report h2 {
  margin: 0 0 .45rem;
  font-size: 1.05rem;
}

.article-report--letters ul {
  margin: 0;
  padding-left: 1.2rem;
}

.article-report--letters li {
  margin: .2rem 0;
}

.article-report--letters a {
  color: #1A1A1A;
  text-decoration: underline;
}

.article-block--note {
  margin-top: 1rem;
  padding: .75rem .9rem;
  border: 1px solid var(--sgv16-line);
  border-radius: 8px;
}

.article-box__text {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 160%;
}

@media (min-width:768px) {
  .article-box__text {
    font-size: 1.2rem;
    line-height: 160%;
  }
}

.article-hero {
  margin: 0 0 1rem;
}

.article-hero img {
  width: 100%;
  border-radius: 8px;
}

.article-lightbox-trigger {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  cursor: zoom-in;
}

.article-lightbox-trigger img {
  display: block;
}

.article-lightbox-trigger::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(2, 10, 26, .92);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .32);
  pointer-events: none;
  z-index: 2;
}

.article-lightbox-trigger::before {
  content: "\f31e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 22px;
  color: #F5F5F5;
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 3;
}

.article-hero figcaption,
.article-content figcaption {
  margin-top: .35rem;
  color: #2E2E2E;
  font-size: .88rem;
  line-height: 1.2;
}

.article-hero figcaption,
.article-content figure figcaption {
  display: block;
  width: 100%;
  clear: both;
}

.article-content>* {
  margin: 0 0 1rem;
}

.article-content>*:last-child {
  margin-bottom: 0;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  line-height: 1.24;
  margin: 1.2rem 0 .6rem;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .01em;
}

.article-content h2 {
  font-size: clamp(1.25rem, 2.3vw, 1.55rem);
}

.article-content h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.article-content p {
  margin: 0 0 1rem;
}

.article-content p::first-letter {
  all: unset;
}

.article-content [data-dropcap-start="1"]::first-letter {
  color: var(--sgv16-yellow-legacy);
  font-weight: 800;
  font-size: 4.6em;
  line-height: .88;
  float: left;
  margin: .02em .12em 0 0;
}

.article-content p,
.article-content li,
.article-content blockquote,
.article-content .richtext {
  line-height: 1.72;
}

.article-content ul,
.article-content ol {
  padding-left: 1.2rem;
}

.article-content a {
  color: #1A1A1A;
  text-decoration: underline;
}

.article-box__text a,
.article-box__text a:hover {
  background: none;
}

.article-content img,
.article-content video,
.article-content iframe,
.article-content table {
  max-width: 100%;
}

.article-content table {
  width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  -webkit-overflow-scrolling: touch;
}

.article-content th,
.article-content td {
  padding: .5rem .6rem;
  border: 1px solid var(--sgv16-line);
}

.article-block {
  margin: 1rem 0;
}

.article-block--quote,
.article-block--infobox,
.article-reportcard,
.article-slider {
  border: 1px solid var(--sgv16-line);
  border-radius: 8px;
  background: var(--sgv16-surface);
  padding: .9rem;
}

.article-block--quote {
  border-left: 4px solid var(--sgv16-yellow-legacy);
}

.article-quote__author {
  margin: .6rem 0 0;
  font-weight: 700;
  color: #2E2E2E;
}

.article-block--infobox {
  background: var(--sgv16-surface);
}

.article-block--infobox.article-block--infobox-alt {
  background: var(--sgv16-surface);
}

.article-content .article-media {
  display: block !important;
}

.article-media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.article-media.media--center {
  margin-left: auto;
  margin-right: auto;
}

.article-media.media--full {
  width: 100%;
}

.article-slider {
  display: grid;
  gap: 1rem;
}

.article-slider__item {
  margin: 0;
}

.article-slider__item img {
  width: 100%;
  border-radius: 8px;
}

.article-embed {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--sgv16-line);
  background: var(--sgv16-surface);
}

.article-embed iframe {
  width: 100%;
  border: 0;
  display: block;
  min-height: 250px;
}

.article-embed--social iframe {
  min-height: 420px;
}

.article-embed--audio iframe {
  min-height: 220px;
}

.article-audio {
  width: 100%;
  margin: .7rem 0;
}

.article-reportcard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .6rem;
}

.embed-note {
  margin: .55rem 0 1rem;
  font-size: .92rem;
  color: #2E2E2E;
}

.article-endtools {
  padding-top: 1rem;
  border-top: 1px solid var(--sgv16-line);
}

.article-socialbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin: 0 0 1rem;
}

.article-socialbar__label {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-right: .15rem;
}

.article-socialbar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--sgv16-line);
  background: var(--sgv16-surface);
  color: #1A1A1A;
  text-decoration: none;
  font-size: 1.06rem;
}

.article-socialbar__btn:hover {
  background: var(--sgv16-yellow-legacy);
  border-color: var(--sgv16-yellow-legacy);
  color: #121212;
}

.article-socialbar__btn .icon-bluesky {
  width: 1em;
  height: 1em;
  display: block;
  fill: currentColor;
  flex: 0 0 auto;
}

.article-steady img {
  display: block;
  max-width: min(100%, 360px);
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--sgv16-line);
}

.article-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(8, 10, 14, .9);
}

.article-lightbox.is-open {
  display: flex;
}

.article-lightbox__dialog {
  position: relative;
  max-width: min(96vw, 1200px);
  max-height: 92vh;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.article-lightbox__close {
  position: absolute;
  top: .4rem;
  right: .4rem;
  border: 0;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, .6);
  color: #F5F5F5;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 2;
}

.article-lightbox__image {
  max-width: 100%;
  max-height: calc(92vh - 72px);
  object-fit: contain;
  border-radius: 8px;
  background: #121212;
}

.article-lightbox__caption {
  margin: 0;
  padding: .5rem .7rem;
  border-radius: 8px;
  color: #F5F5F5;
  background: rgba(0, 0, 0, .52);
  font-size: .95rem;
  line-height: 1.5;
  max-width: 100%;
  overflow-wrap: anywhere;
}

body.lightbox-open {
  overflow: hidden;
}

.article-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2601;
  background: rgba(0, 0, 0, .55);
  color: #F5F5F5;
  border: none;
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  padding: 0;
  flex-shrink: 0;
}

.article-lightbox__nav:hover {
  background: rgba(0, 0, 0, .85);
}

.article-lightbox__nav--prev {
  left: 1rem;
}

.article-lightbox__nav--next {
  right: 1rem;
}

@media (max-width:600px) {
  .article-lightbox__nav--prev {
    left: .35rem;
  }

  .article-lightbox__nav--next {
    right: .35rem;
  }

  .article-lightbox__nav {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.4rem;
  }
}

@media (min-width:901px) {

  .article-content .media--left,
  .article-content .media--drop-left {
    float: left;
    max-width: min(52%, 460px);
    margin: .25rem 1rem .8rem 0;
  }

  .article-content .media--right,
  .article-content .media--drop-right {
    float: right;
    max-width: min(52%, 460px);
    margin: .25rem 0 .8rem 1rem;
  }
}

@media (max-width:900px) {
  .article-view {
    padding: .9rem .82rem 1rem;
  }

  .article-title {
    font-size: clamp(1.5rem, 7.2vw, 2.08rem);
  }

  .article-teaser {
    font-size: 1rem;
  }

  .article-content {
    font-size: 1.04rem;
    line-height: 1.72;
  }

  .article-view--special {
    padding: 0;
  }

  .article-immersive-hero__meta-wrap {
    width: calc(100% - 1.4rem);
    bottom: clamp(1rem, 4.8svh, 2.6rem);
  }

  .article-immersive-hero__title {
    font-size: clamp(1.7rem, 8vw, 2.7rem);
  }

  .article-view--special .article-view__body {
    padding: .95rem .82rem 1rem;
  }

  .article-lightbox-trigger::after,
  .article-lightbox-trigger::before {
    width: 48px;
    height: 48px;
    right: 10px;
    bottom: 10px;
  }

  .article-lightbox-trigger::before {
    font-size: 18px;
  }

  .article-content .article-media {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .article-hero,
  .article-hero .article-lightbox-trigger,
  .article-hero img,
  .article-content figure,
  .article-content .article-lightbox-trigger,
  .article-content img {
    width: 100% !important;
    max-width: 100% !important;
  }

  .article-content .media--left,
  .article-content .media--right,
  .article-content .media--drop-left,
  .article-content .media--drop-right,
  .article-content .media--center,
  .article-content .media--full {
    float: none !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 1rem 0;
  }

  .article-block--quote,
  .article-block--infobox,
  .article-reportcard,
  .article-slider {
    padding: .78rem;
  }

  .article-embed iframe {
    min-height: 220px;
  }

  .article-embed--social iframe {
    min-height: 340px;
  }

  .article-socialbar__label {
    width: 100%;
    margin: 0 0 .15rem;
  }
}

@media (max-width:767px) {
  .article-immersive-hero__meta-wrap {
    bottom: clamp(.9rem, 4.2svh, 2.1rem);
  }

  .article-immersive-hero__byline {
    font-size: .88rem;
    gap: .35rem;
  }
}

.listing--category-box {
  background: var(--sgv16-surface);
  border: 0;
  border-top: 4px solid var(--sgv16-yellow);
  border-radius: 0;
  padding: 1rem 15px .75rem;
}

.listing.listing--category-box {
  margin: 0 -15px 1rem;
}

.listing--category-box h2 {
  margin: 0 0 .85rem;
  line-height: 1.2;
}

.listing--category-box>p {
  margin: 0;
}

.listing--category-box .listing-row {
  margin: 0;
}

.listing--category-box a {
  text-decoration: none;
  padding-bottom: .04rem;
  cursor: pointer;
  color: var(--sgv16-yellow-legacy);
  font-weight: 800;
}


body:not(.theme-dark) .forum-box,
body:not(.theme-dark) .statistik-box {
  background: var(--sgv16-surface);
  color: #1A1A1A;
}

body:not(.theme-dark) .forum-box a,
body:not(.theme-dark) .statistik-box a {
  color: var(--sgv16-yellow-ink-muted);
}

body:not(.theme-dark) .forum-box h2 a,
body:not(.theme-dark) .statistik-box h2 a {
  border-bottom-color: var(--sgv16-yellow-ink-muted);
}

body:not(.theme-dark) .forum-box a:hover,
body:not(.theme-dark) .forum-box a:focus,
body:not(.theme-dark) .statistik-box a:hover,
body:not(.theme-dark) .statistik-box a:focus {
  color: var(--sgv16-yellow-ink-muted-hover);
}

body:not(.theme-dark) .forum-box__item,
body:not(.theme-dark) .statistik-box ul li {
  background: var(--sgv16-surface);
  border: 1px solid var(--sgv16-line);
  border-left: 3px solid var(--sgv16-yellow-ink-muted);
  color: #1A1A1A;
}

body:not(.theme-dark) .statistik-box ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .375rem;
}

body:not(.theme-dark) .statistik-box ul li {
  padding: .65rem .875rem;
  border-radius: 5px;
  line-height: 1.45;
}

body:not(.theme-dark) .statistik-box h5 {
  color: #1A1A1A;
  margin: .35rem 0 .55rem;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .02em;

}

@media (min-width: 992px) {
  body.brand-v16 .statistik-box:not(.kommende-spiele-box) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: .25rem;
    align-items: start;
  }

  body.brand-v16 .statistik-box:not(.kommende-spiele-box) > h2,
  body.brand-v16 .statistik-box:not(.kommende-spiele-box) > p {
    grid-column: 1 / -1;
  }

  body.brand-v16 .statistik-box:not(.kommende-spiele-box) > h5:nth-of-type(1),
  body.brand-v16 .statistik-box:not(.kommende-spiele-box) > ul:nth-of-type(1) {
    grid-column: 1;
  }

  body.brand-v16 .statistik-box:not(.kommende-spiele-box) > h5:nth-of-type(2),
  body.brand-v16 .statistik-box:not(.kommende-spiele-box) > ul:nth-of-type(2) {
    grid-column: 2;
  }

  body.brand-v16 .statistik-box:not(.kommende-spiele-box) > h5:nth-of-type(1),
  body.brand-v16 .statistik-box:not(.kommende-spiele-box) > h5:nth-of-type(2) {
    grid-row: 3;
  }

  body.brand-v16 .statistik-box:not(.kommende-spiele-box) > ul:nth-of-type(1),
  body.brand-v16 .statistik-box:not(.kommende-spiele-box) > ul:nth-of-type(2) {
    grid-row: 4;
    margin-bottom: 0;
  }

  body.brand-v16 .statistik-box:not(.kommende-spiele-box) > p:last-child {
    grid-column: 1 / -1;
    grid-row: 5;
    margin-top: .6rem;
  }
}

.kommende-spiele-box__hint {
  margin: 0 0 .7rem;
  font-size: .78rem;
  color: #2E2E2E;
}

.kommende-spiele-box__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  margin-bottom: .5rem;
}

.kommende-spiele-box__group h5 {
  margin: 0 0 .4rem;
}

.kommende-spiele-box__group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.kommende-spiele-box__venue {
  display: inline-block;
  margin-top: .1rem;
  opacity: .92;
}

@media (max-width:680px) {
  .kommende-spiele-box__grid {
    grid-template-columns: 1fr;
  }
}

.forum-box__list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .375rem;
}

.forum-box__item {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: .65rem .875rem;
  background: var(--sgv16-surface);
  border-radius: 5px;
  border-left: 3px solid var(--sgv16-yellow-legacy);
}

.forum-box__title {
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
  line-height: 1.4;
  transition: color .15s;
}

.forum-box__meta {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  color: #A3A3A3;
}

body:not(.theme-dark) .forum-box__meta {
  color: #2E2E2E;
}

body:not(.theme-dark) .statistik-box p {
  color: #1A1A1A;
}

.forum-box__replies::before {
  content: '· ';
}

.forum-box__footer-link {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
}

.forum-thread-link {
  margin-top: 1.5rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sgv16-line);
}

.forum-thread-link__cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  color: var(--sgv16-yellow-legacy);
  text-decoration: none;
}

.forum-thread-link__cta .fas {
  font-size: 1rem;
}

/* fotos-slider */
.fotos-box__footer-link {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  margin-top: .6rem;
}

.fotos-slider {
  position: relative;
}

.fotos-slider__track {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .25rem;
  scrollbar-width: none;
}

.fotos-slider__track::-webkit-scrollbar {
  display: none;
}

.fotos-slider__slide {
  flex: 0 0 auto;
  width: calc(33.333% - .34rem);
  scroll-snap-align: start;
}

@media (max-width:600px) {
  .fotos-slider__slide {
    width: calc(50% - .25rem);
  }
}

@media (max-width:400px) {
  .fotos-slider__slide {
    width: 85%;
  }
}

.fotos-slider__img-link {
  display: block;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 5px;
  background: var(--sgv16-surface);
}

.fotos-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s;
}

.fotos-slider__img-link:hover .fotos-slider__img {
  transform: scale(1.04);
}

.fotos-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .55);
  color: #F5F5F5;
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  z-index: 2;
  padding: 0;
}

.fotos-slider__btn:hover {
  background: rgba(0, 0, 0, .8);
}

.fotos-slider__btn--prev {
  left: .3rem;
}

.fotos-slider__btn--next {
  right: .3rem;
}

.fotos-slider--loading .fotos-slider__track {
  min-height: 120px;
  background: var(--sgv16-surface);
  border-radius: 5px;
}

.bvb-fotos-embed {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sgv16-line);
}

.bvb-fotos-embed__title {
  margin: 0 0 .5rem;
  font-size: .95rem;
  font-weight: 700;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.bvb-fotos-embed__title--loading {
  display: none;
}

.fotos-slider .article-lightbox-trigger::before,
.fotos-slider .article-lightbox-trigger::after {
  display: none;
}

.bvb-fotos-embed--left,
.bvb-fotos-embed--drop-left {
  float: left;
  width: 48%;
  margin-right: 1.5rem;
  margin-top: .25rem;
  border-top: none;
  padding-top: 0;
}

.bvb-fotos-embed--right,
.bvb-fotos-embed--drop-right {
  float: right;
  width: 48%;
  margin-left: 1.5rem;
  margin-top: .25rem;
  border-top: none;
  padding-top: 0;
}

.bvb-fotos-embed--full {
  width: 100%;
}

@media (max-width:600px) {

  .bvb-fotos-embed--left,
  .bvb-fotos-embed--drop-left,
  .bvb-fotos-embed--right,
  .bvb-fotos-embed--drop-right {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--sgv16-line);
  }
}

.listing-load-more {
  display: flex;
  justify-content: center;
  margin: 1rem 0 .35rem;
}

.listing-load-more__button {
  border: 1px solid var(--sgv16-yellow-legacy-border);
  background: var(--sgv16-yellow-legacy);
  color: #121212;
  font-weight: 800;
  border-radius: 999px;
  padding: .5rem 1rem;
  line-height: 1.1;
  cursor: pointer;
}

.listing-load-more__button:hover,
.listing-load-more__button:focus {
  background: var(--sgv16-yellow-legacy-hover);
  color: #121212;
}

.listing-article--podcast {
  margin-top: 1rem;
  margin-bottom: .15rem;
}

.podcast-feature {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .14);
}

.podcast-feature__media {
  background: var(--sgv16-bg);
}

.podcast-feature__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
  border: 0;
}

.podcast-feature__content {
  background: var(--sgv16-yellow-legacy);
  color: #121212;
  padding: .88rem .95rem .9rem;
  display: flex;
  flex-direction: column;
  gap: .38rem;
}

.podcast-feature__section-title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.25;
  color: #1A1A1A;

  letter-spacing: .035em;
}

.podcast-feature__title {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.18;
  font-weight: 800;
}

.podcast-feature__title-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.podcast-feature__title-link:hover,
.podcast-feature__title-link:focus {
  color: inherit;
  border-bottom-color: #121212;
}

.podcast-feature__summary {
  margin: 0;
  font-size: 1rem;
  line-height: 1.42;
  color: #1A1A1A;
}

.podcast-feature__meta {
  margin: 0;
  font-size: .92rem;
  font-weight: 700;
  color: #1A1A1A;
}

.podcast-feature__meta-sep::before {
  content: ' · ';
}

.podcast-feature__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.podcast-feature__btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: .52rem .95rem;
  font-size: .92rem;
  font-weight: 800;
  transition: none !important;
  cursor: pointer;
}

.podcast-feature__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
  margin-top: .25rem;
  align-items: center;
}

.podcast-feature__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: .35rem .68rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, .28);
  background: rgba(255, 255, 255, .3);
  color: #121212;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.podcast-feature__chip .fab,
.podcast-feature__chip .fas,
.podcast-feature__chip .fa-brands,
.podcast-feature__chip .fa-solid {
  font-size: 1rem;
  line-height: 1;
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.podcast-feature__chip .podcast-feature__chip-svg {
  width: 1rem;
  height: 1rem;
  display: block;
  fill: currentColor;
}

.podcast-feature__chip:hover,
.podcast-feature__chip:focus {
  background: rgba(17, 17, 17, .08);
  color: #121212;
  text-decoration: none;
}

.podcast-feature__chip--copy {
  font-family: inherit;
}

.podcast-feature__copy-state {
  min-height: 20px;
  font-size: .8rem;
  font-weight: 700;
  color: #1A1A1A;
}

.podcast-feature__player {
  margin-top: .45rem;
  background: transparent;
  color: #1A1A1A;
  border-radius: 0;
  padding: .05rem 0 0;
}

.podcast-feature__player-row {
  background: var(--sgv16-bg);
  color: var(--sgv16-yellow-legacy-muted);
  border-radius: 999px;
  min-height: 40px;
  padding: .3rem .44rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: .4rem;
}

.podcast-feature__player-toggle,
.podcast-feature__player-rate {
  border: 0;
  border-radius: 999px;
  background: var(--sgv16-bg);
  color: var(--sgv16-yellow-legacy);
  font-weight: 800;
  font-size: .9rem;
  height: 28px;
  min-width: 28px;
  padding: 0 .4rem;
  cursor: pointer;
}

.podcast-feature__player-toggle:hover,
.podcast-feature__player-rate:hover,
.podcast-feature__player-toggle:focus,
.podcast-feature__player-rate:focus {
  background: var(--sgv16-surface);
  color: #FFCC00;
}

.podcast-feature__player-progress {
  width: 100%;
  margin: 0;
  accent-color: var(--sgv16-yellow-legacy);
  cursor: pointer;
}

.podcast-feature__player-time {
  font-size: .88rem;
  font-weight: 700;
  color: var(--sgv16-yellow-legacy);
  white-space: nowrap;
}

.podcast-feature__player--embed {
  margin-top: .34rem;
  padding: 0;
}

.teaser-card--has-podcast .teaser-card__podcast {
  position: relative;
  z-index: 30;
  padding: .25rem .95rem .88rem;
}

.teaser-card__podcast-actions {
  margin-top: 0;
  margin-bottom: .5rem;
}

.teaser-card__podcast-actions .podcast-feature__btn--primary {
  background: var(--sgv16-yellow-legacy);
  color: #121212;
  border: 1px solid var(--sgv16-yellow-legacy);
}

.teaser-card__podcast-actions .podcast-feature__btn--primary:focus {
  outline: 2px solid #121212;
  outline-offset: 2px;
}

.teaser-card__podcast-platforms {
  margin-top: .38rem;
}

.teaser-card__podcast-platforms .podcast-feature__chip {
  background: rgba(255, 255, 255, .08);
  border-color: var(--sgv16-yellow-legacy-alpha-44);
  color: var(--sgv16-yellow-legacy);
}

.teaser-card__podcast-platforms .podcast-feature__chip:focus {
  outline: 2px solid var(--sgv16-yellow-legacy-alpha-70);
  outline-offset: 2px;
}

.podcast-feature__category-link-wrap {
  margin: .1rem 0 0;
}

.podcast-feature__category-link {
  text-decoration: none;
  padding-bottom: .04rem;
  cursor: pointer;
  color: #121212;
  font-size: .88rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(17, 17, 17, .55);
}

.podcast-feature__category-link:hover,
.podcast-feature__category-link:focus {
  background: rgba(17, 17, 17, .08);
  color: #121212;
}

.teaser-card {
  position: relative;
  background: #1A1A1A;
  color: #F5F5F5;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .14);
  height: 100%;
  cursor: pointer;
}

.teaser-card__link {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: block;
}

.teaser-card__link:focus-visible {
  outline: 2px solid var(--sgv16-yellow-legacy);
  outline-offset: -2px;
}

.teaser-card--no-media {
  display: block;
}

.teaser-card__media {
  display: block;
  position: relative;
  transition: none !important;
}

.teaser-card__media .teaser-media {
  min-height: 0;
  aspect-ratio: 16/9;
  transition: none !important;
  transform: none !important;
}

.teaser-card__pill {
  position: absolute;
  left: .65rem;
  top: .65rem;
  background: var(--sgv16-yellow-legacy);
  color: #121212;
  font-weight: 800;
  font-size: .8rem;
  padding: .24rem .52rem;
  border-radius: 999px;
}

.teaser-card__content {
  padding: .85rem .95rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .38rem;
}

.teaser-card__kicker {
  color: var(--sgv16-text);
  font-size: 1rem;
  font-weight: 400;
}

.teaser-card__title {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 800;
}

.teaser-card__excerpt {
  margin: 0;
  color: #F5F5F5;
  font-size: 1.03rem;
  line-height: 1.5;
}

.teaser-card__meta {
  margin-top: auto;
  color: #A3A3A3;
  font-size: .9rem;
}

.listing-article--aufmacher {
  flex: 0 0 100%;
  max-width: 100%;
}

.teaser-card--aufmacher {
  border-radius: 0;
  margin-bottom: 0;
}

.teaser-card--aufmacher .teaser-card__title {
  font-size: 2.4rem;
  line-height: 1.15;
}

.teaser-card--aufmacher .teaser-card__excerpt {
  font-size: 1.12rem;
  color: #F5F5F5;
}

.teaser-card--aufmacher-default .teaser-card__content--aufmacher-head {
  padding: .9rem 1rem .72rem;
  gap: .3rem;
}

.teaser-card--aufmacher-default .teaser-card__content--aufmacher-foot {
  padding: .78rem 1rem 1rem;
  gap: .42rem;
}

.teaser-card--aufmacher-default .teaser-card__content--aufmacher-foot .teaser-card__meta {
  margin-top: 0;
}

.teaser-card__content--mobile-default {
  display: none;
}

.teaser-card--aufmacher-default .teaser-media {
  aspect-ratio: 16/9;
}

.teaser-card--aufmacher-special .teaser-card__media {
  position: relative;
  display: block;
  min-height: 0;
}

.teaser-card--aufmacher-special .teaser-media,
.teaser-card--aufmacher-special .teaser-card__media .teaser-media {
  aspect-ratio: 4/3;
}

.teaser-card--aufmacher-special .teaser-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 12, .06) 34%, rgba(7, 9, 12, .55) 62%, rgba(7, 9, 12, .88) 100%);
  pointer-events: none;
}

.teaser-card__overlay-content {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #F5F5F5;
  display: flex;
  flex-direction: column;
  gap: .38rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .8);
}

.teaser-card--aufmacher-special .teaser-card__overlay-content .teaser-card__kicker {
  color: var(--sgv16-yellow-legacy-soft);
  background: rgba(0, 0, 0, .52);
  padding: .22rem .5rem;
  width: max-content;
}

.teaser-card--aufmacher-special .teaser-card__overlay-content .teaser-card__title {
  color: #F5F5F5;
  font-size: 3.05rem;
}

.teaser-card--aufmacher-special .teaser-card__overlay-content .teaser-card__excerpt {
  color: #F5F5F5;
  font-size: 1.2rem;
  line-height: 1.45;
}

.teaser-card--aufmacher-special .teaser-card__overlay-content .teaser-card__meta {
  color: #F5F5F5;
  margin-top: .15rem;
}

@media (max-width:900px) {
  body.brand-v16 .listing-article--podcast {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .listing-article--podcast {
    margin-top: .78rem;
  }

  .podcast-feature {
    grid-template-columns: 1fr;
  }

  .podcast-feature__media {
    display: none;
  }

  .podcast-feature__image {
    min-height: 200px;
  }

  .podcast-feature__content {
    padding: .78rem .78rem .85rem;
  }

  .podcast-feature__section-title {
    font-size: .84rem;
    line-height: 1.25;
  }

  .podcast-feature__title {
    font-size: 1.48rem;
    line-height: 1.18;
  }

  .podcast-feature__summary {
    display: none;
  }

  .podcast-feature__actions {
    gap: .48rem;
  }

  .podcast-feature__platforms {
    gap: .35rem;
  }

  .podcast-feature__chip {
    min-height: 32px;
    padding: .3rem .58rem;
  }

  .podcast-feature__player-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .podcast-feature__player-rate {
    display: none;
  }

  .teaser-card--has-podcast .teaser-card__podcast {
    padding: .22rem .85rem .8rem;
  }

  .teaser-card__title {
    font-size: 1.45rem;
  }

  .teaser-card__excerpt {
    display: none;
  }

  .listing .listing-article {
    padding-left: 8px;
    padding-right: 8px;
  }

  .teaser-card--aufmacher-default .teaser-card__media {
    aspect-ratio: 1/1;
  }

  .teaser-card--aufmacher-default .teaser-card__media .teaser-media {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .teaser-card--aufmacher .teaser-card__title {
    font-size: 2.05rem;
  }

  .teaser-card--aufmacher .teaser-card__excerpt {
    display: block;
    font-size: 1.06rem;
  }

  .teaser-card--aufmacher-default .teaser-card__content--aufmacher-head {
    padding: .8rem .85rem .65rem;
  }

  .teaser-card--aufmacher-default .teaser-card__content--aufmacher-foot {
    padding: .72rem .85rem .92rem;
  }

  .teaser-card--aufmacher-special .teaser-card__media::after {
    display: none;
  }

  .teaser-card--aufmacher-special .teaser-card__overlay-content {
    display: none;
  }

  .teaser-card--aufmacher-special .teaser-card__content--mobile-default {
    display: flex;
  }

  .teaser-card--aufmacher-special .teaser-card__content--mobile-default.teaser-card__content--aufmacher-head {
    padding: .8rem .85rem .65rem;
  }

  .teaser-card--aufmacher-special .teaser-card__content--mobile-default.teaser-card__content--aufmacher-foot {
    padding: .72rem .85rem .92rem;
  }

  .teaser-card--aufmacher-special .teaser-card__content--mobile-default .teaser-card__meta {
    margin-top: 0;
  }

  .teaser-card--aufmacher-special .teaser-card__overlay-content {
    left: .8rem;
    right: .8rem;
    bottom: .85rem;
  }

  .teaser-card--aufmacher-special .teaser-card__overlay-content .teaser-card__title {
    font-size: 2.05rem;
  }

  .teaser-card--aufmacher-special .teaser-card__overlay-content .teaser-card__excerpt {
    display: block;
    font-size: 1.03rem;
  }
}

.footer__top {
  background: #FFCC00;
  padding: 1.35rem 0 1.55rem;
}

.footer__social {
  text-align: center;
  width: 100%;
}

.footer__social h3 {
  margin: 0 0 .95rem;
  color: #121212;
  font-size: 1.95rem;
  font-weight: 800;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin: .2rem .38rem;
  border-radius: 999px;
  color: #121212;
  border: 6px solid #1A1A1A;
  text-decoration: none;
  background: transparent;
}

.footer__social a:hover {
  background: #1A1A1A;
  color: #FFCC00;
}

.footer__social .fab,
.footer__social .fas,
.footer__social .fa-brands,
.footer__social .fa-solid,
.footer__social .icon-bluesky {
  font-size: 2rem;
  line-height: 1;
  width: 2rem;
  height: 2rem;
  display: block;
  flex: 0 0 auto;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

.footer__social .icon-bluesky {
  fill: currentColor;
}

.footer__social span {
  margin: 0;
}

.site-footer {
  background: #1A1A1A;
  color: #F5F5F5;
  margin-top: 0;
}

.site-footer a {
  color: #F5F5F5;
  text-decoration: none;
}

.site-footer .inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 3rem 15px 2.1rem;
}

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

.footer-grid h4 {
  margin: 0 0 .55rem;
  font-size: 2rem;
  color: #F5F5F5;
  font-weight: 500;
  line-height: 1.1;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin: .2rem 0;
  font-size: 1.1rem;
  line-height: 1.35;
  color: #F5F5F5;
}

.footer-meta {
  margin-top: 1.4rem;
  padding: .95rem 15px;
  font-size: 1.05rem;
  text-align: center;
  background: #1A1A1A;
}

.footer-meta a {
  color: #F5F5F5;
}

.footer-meta .footer-consent-link {
  appearance: none;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
  text-decoration: none;
}

.footer-meta .footer-consent-link:hover {
  text-decoration: underline;
}

.footer-meta .footer-consent-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

@media (max-width:992px) {
  .footer__social h3 {
    font-size: 1.45rem;
  }

  .footer__social a {
    width: 52px;
    height: 52px;
    border-width: 4px;
  }

  .footer__social .fab,
  .footer__social .fas,
  .footer__social .fa-brands,
  .footer__social .fa-solid,
  .footer__social .icon-bluesky {
    font-size: 1.45rem;
    width: 1.45rem;
    height: 1.45rem;
  }

  .site-footer .inner {
    padding: 2.1rem 15px 1.4rem;
  }

  .footer-grid h4 {
    font-size: 1.7rem;
  }

  .footer-grid li {
    font-size: 1rem;
  }

  .footer-meta {
    font-size: .95rem;
  }
}


/* --- Final styling overrides (single source of truth precedence) --- */

/* Enforce approved palette tokens on core surfaces and text. */
body.brand-v16 {
  background: var(--sgv16-bg);
  color: var(--sgv16-text);
}

body.brand-v16 .top-nav,
body.brand-v16 .main-nav,
body.brand-v16 .teaser-card,
body.brand-v16 .article-view,
body.brand-v16 .listing--category-box,
body.brand-v16 .forum-box,
body.brand-v16 .statistik-box,
body.brand-v16 .site-footer,
body.brand-v16 .footer-meta {
  background: var(--sgv16-surface);
  color: var(--sgv16-text);
  border-color: var(--sgv16-line);
}

body.brand-v16 .teaser-card:hover,
body.brand-v16 .teaser-card:focus-within,
body.brand-v16 .listing--category-box:hover,
body.brand-v16 .forum-box:hover,
body.brand-v16 .statistik-box:hover {
  background: var(--sgv16-surface);
}

body.brand-v16 .teaser-card__meta,
body.brand-v16 .article-meta,
body.brand-v16 .forum-box__meta,
body.brand-v16 .kommende-spiele-box__hint,
body.brand-v16 .footer-meta {
  color: var(--sgv16-text-3);
}

/* .dachzeile ist ein Text-Kicker (nicht Badge/Pill) → nur Textfarbe, kein Hintergrund */
body.brand-v16 .dachzeile {
  color: var(--sgv16-yellow);
}

body.brand-v16 .teaser-card__pill,
body.brand-v16 .tag-chip,
body.brand-v16 .tag-pill,
body.brand-v16 .btn-primary,
body.brand-v16 .article-socialbar__btn:hover {
  background: var(--sgv16-yellow);
  color: var(--sgv16-yellow-ink);
  border-color: var(--sgv16-yellow);
}

/* Keep link contrast in dark mode for all extra modules. */
body.brand-v16.theme-dark .listing--category-box a,
body.brand-v16.theme-dark .forum-box a,
body.brand-v16.theme-dark .statistik-box a,
body.brand-v16.theme-dark .kommende-spiele-box a {
  color: var(--sgv16-yellow) !important;
}

body.brand-v16.theme-dark .listing--category-box a:hover,
body.brand-v16.theme-dark .listing--category-box a:focus,
body.brand-v16.theme-dark .forum-box a:hover,
body.brand-v16.theme-dark .forum-box a:focus,
body.brand-v16.theme-dark .statistik-box a:hover,
body.brand-v16.theme-dark .statistik-box a:focus,
body.brand-v16.theme-dark .kommende-spiele-box a:hover,
body.brand-v16.theme-dark .kommende-spiele-box a:focus {
  color: var(--sgv16-yellow-hover) !important;
}

@media (prefers-color-scheme: dark) {
  body.brand-v16:not(.theme-light) .listing--category-box a,
  body.brand-v16:not(.theme-light) .forum-box a,
  body.brand-v16:not(.theme-light) .statistik-box a,
  body.brand-v16:not(.theme-light) .kommende-spiele-box a {
    color: var(--sgv16-yellow) !important;
  }

  body.brand-v16:not(.theme-light) .listing--category-box a:hover,
  body.brand-v16:not(.theme-light) .listing--category-box a:focus,
  body.brand-v16:not(.theme-light) .forum-box a:hover,
  body.brand-v16:not(.theme-light) .forum-box a:focus,
  body.brand-v16:not(.theme-light) .statistik-box a:hover,
  body.brand-v16:not(.theme-light) .statistik-box a:focus,
  body.brand-v16:not(.theme-light) .kommende-spiele-box a:hover,
  body.brand-v16:not(.theme-light) .kommende-spiele-box a:focus {
    color: var(--sgv16-yellow-hover) !important;
  }
}

body.brand-v16.theme-dark .card.article-view .article-kicker,
body.brand-v16.theme-dark .article-view--special .article-kicker {
  color: #ffc000 !important;
}

@media (prefers-color-scheme: dark) {
  body.brand-v16:not(.theme-light) .card.article-view .article-kicker,
  body.brand-v16:not(.theme-light) .article-view--special .article-kicker {
    color: #ffc000 !important;
  }
}

body.brand-v16 .is-success,
body.brand-v16 .status-success,
body.brand-v16 .text-success {
  color: var(--sgv16-success) !important;
}

body.brand-v16 .is-error,
body.brand-v16 .status-error,
body.brand-v16 .text-error {
  color: var(--sgv16-error) !important;
}

/* Light mode footer-meta readability */
body.brand-v16.theme-light .footer-meta,
body.brand-v16.theme-light .footer-meta a {
  color: #1A1A1A !important;
}

@media (prefers-color-scheme: light) {

  body.brand-v16:not(.theme-dark) .footer-meta,
  body.brand-v16:not(.theme-dark) .footer-meta a {
    color: #1A1A1A !important;
  }
}

/* Consolidated podcast-feature styling for all views and breakpoints */
body.brand-v16 .podcast-feature {
  display: grid;
  grid-template-columns: minmax(120px, 36%) minmax(0, 1fr);
  column-gap: 0;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: var(--sgv16-shadow);
}

body.brand-v16 .podcast-feature__media {
  display: block;
  align-self: stretch;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--sgv16-surface-2);
}

body.brand-v16 .podcast-feature__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

body.brand-v16 .podcast-feature__content {
  background: var(--sgv16-yellow);
  color: var(--sgv16-yellow-ink);
  display: grid;
  align-content: start;
  gap: 0.6rem;
  padding: 1rem;
}

body.brand-v16 .podcast-feature__section-title {
  margin: 0 0 0.35rem;
}

body.brand-v16 .podcast-feature__title {
  margin: 0.2rem 0 0.35rem;
  line-height: 1.05;
}

body.brand-v16 .podcast-feature__section-title,
body.brand-v16 .podcast-feature__title,
body.brand-v16 .podcast-feature__summary,
body.brand-v16 .podcast-feature__meta,
body.brand-v16 .podcast-feature__copy-state,
body.brand-v16 .podcast-feature__category-link,
body.brand-v16 .podcast-feature__category-link:hover,
body.brand-v16 .podcast-feature__category-link:focus {
  color: var(--sgv16-yellow-ink) !important;
}

body.brand-v16 .podcast-feature__title,
body.brand-v16 .podcast-feature__title-link,
body.brand-v16 .podcast-feature__title-link:hover,
body.brand-v16 .podcast-feature__title-link:focus {
  color: var(--sgv16-yellow-ink) !important;
  border-bottom: 0;
  text-decoration: none;
}

body.brand-v16 .podcast-feature__summary {
  margin: 0 0 0.2rem;
  opacity: 0.9;
}

body.brand-v16 .podcast-feature__actions {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

body.brand-v16 .podcast-feature__btn--primary {
  background: #121212;
  border: 1px solid #121212;
  color: #F5F5F5;
}

body.brand-v16 .podcast-feature__btn--primary:hover,
body.brand-v16 .podcast-feature__btn--primary:focus {
  background: #1A1A1A;
  color: #F5F5F5;
}

body.brand-v16.theme-dark .podcast-feature__btn--primary {
  background: #1A1A1A;
  border: 1px solid #1A1A1A;
}

body.brand-v16.theme-dark .podcast-feature__btn--primary:hover,
body.brand-v16.theme-dark .podcast-feature__btn--primary:focus {
  background: #2E2E2E;
}

@media (prefers-color-scheme: dark) {
  body.brand-v16:not(.theme-light) .podcast-feature__btn--primary {
    background: #1A1A1A;
    border: 1px solid #1A1A1A;
  }

  body.brand-v16:not(.theme-light) .podcast-feature__btn--primary:hover,
  body.brand-v16:not(.theme-light) .podcast-feature__btn--primary:focus {
    background: #2E2E2E;
  }
}

body.brand-v16 .podcast-feature__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.25rem;
  align-items: center;
}

body.brand-v16 .podcast-feature__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  min-width: 34px;
  padding: 0.35rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 18, 18, 0.28);
  background: rgba(255, 255, 255, 0.32);
  color: var(--sgv16-yellow-ink);
  text-decoration: none;
  line-height: 1;
  font-weight: 700;
}

body.brand-v16 .podcast-feature__chip:hover,
body.brand-v16 .podcast-feature__chip:focus {
  background: rgba(18, 18, 18, 0.1);
  color: var(--sgv16-yellow-ink);
}

body.brand-v16 .podcast-feature__player {
  margin-top: 0.45rem;
  padding: 0.05rem 0 0;
}

body.brand-v16 .podcast-feature__player-row {
  background: var(--sgv16-bg);
  color: var(--sgv16-yellow);
  border-radius: 999px;
  min-height: 40px;
  padding: 0.3rem 0.44rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.4rem;
}

body.brand-v16 .podcast-feature__player-toggle,
body.brand-v16 .podcast-feature__player-rate {
  border: 0;
  border-radius: 999px;
  background: var(--sgv16-bg);
  color: var(--sgv16-yellow);
  font-weight: 800;
  font-size: 0.9rem;
  height: 28px;
  min-width: 28px;
  padding: 0 0.4rem;
  cursor: pointer;
}

body.brand-v16 .podcast-feature__player-toggle:hover,
body.brand-v16 .podcast-feature__player-rate:hover,
body.brand-v16 .podcast-feature__player-toggle:focus,
body.brand-v16 .podcast-feature__player-rate:focus {
  background: var(--sgv16-surface);
  color: #FFCC00;
}

body.brand-v16 .podcast-feature__player-progress {
  width: 100%;
  margin: 0;
  accent-color: var(--sgv16-yellow);
}

body.brand-v16 .podcast-feature__player-time {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sgv16-yellow);
  white-space: nowrap;
}

body.brand-v16 .podcast-feature__player--embed {
  margin-top: 0.34rem;
  padding: 0;
}

body.brand-v16 .teaser-card--has-podcast .teaser-card__podcast {
  position: relative;
  z-index: 30;
  padding: 0.25rem 0.95rem 0.88rem;
}

body.brand-v16 .teaser-card__podcast-actions {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

body.brand-v16 .teaser-card__podcast-actions .podcast-feature__btn--primary {
  background: var(--sgv16-yellow);
  color: var(--sgv16-yellow-ink);
  border: 1px solid var(--sgv16-yellow);
}

body.brand-v16 .teaser-card__podcast-platforms {
  margin-top: 0.38rem;
}

body.brand-v16 .teaser-card__podcast-platforms .podcast-feature__chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 204, 0, 0.44);
  color: var(--sgv16-yellow);
}

body.brand-v16 .teaser-card__podcast-platforms .podcast-feature__chip:focus {
  outline: 2px solid rgba(255, 204, 0, 0.7);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  body.brand-v16 .podcast-feature {
    grid-template-columns: 1fr;
  }

  body.brand-v16 .podcast-feature__media {
    display: block;
    aspect-ratio: 1 / 1;
    min-height: clamp(220px, 72vw, 420px);
  }

  body.brand-v16 .podcast-feature__image {
    min-height: 0;
    max-height: none;
    aspect-ratio: 1 / 1;
  }

  body.brand-v16 .podcast-feature__content {
    padding: 0.62rem 0.78rem 0.85rem;
    gap: 0.5rem;
  }

  body.brand-v16 .podcast-feature__section-title {
    font-size: 0.84rem;
    line-height: 1.25;
  }

  body.brand-v16 .podcast-feature__title {
    font-size: 1.48rem;
    line-height: 1.18;
  }

  body.brand-v16 .podcast-feature__summary {
    display: none;
  }

  body.brand-v16 .podcast-feature__actions {
    gap: 0.48rem;
  }

  body.brand-v16 .podcast-feature__platforms {
    gap: 0.35rem;
  }

  body.brand-v16 .podcast-feature__chip {
    min-height: 32px;
    padding: 0.3rem 0.58rem;
  }

  body.brand-v16 .podcast-feature__player-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  body.brand-v16 .podcast-feature__player-rate {
    display: none;
  }

  body.brand-v16 .teaser-card--has-podcast .teaser-card__podcast {
    padding: 0.22rem 0.85rem 0.8rem;
  }
}

@media (prefers-color-scheme: dark) {

  html,
  body {
    background: #121212;
    color: #F5F5F5;
  }

  a {
    color: var(--sgv16-yellow);
  }

  body a:hover {
    color: #F5F5F5;
  }

  .skip:focus {
    background: #1A1A1A;
    color: #F5F5F5;
  }

  .top-nav {
    background: #121212;
    color: #F5F5F5;
  }

  .top-nav a {
    color: #F5F5F5;
  }

  .top-nav a:not(:last-child) {
    border-right-color: rgba(255, 255, 255, .35);
  }

  .top-nav-arrow {
    background: rgba(255, 255, 255, .16);
    color: #F5F5F5;
  }

  .site-header {
    box-shadow: 0 0 9px 2px rgba(0, 0, 0, .55);
  }

  .site-header .claim {
    color: #1A1A1A;
  }

  .menu-link,
  .menu-search-trigger {
    color: #121212;
  }

  .menu-search-trigger {
    border-left-color: rgba(0, 0, 0, .28);
  }

  .main-nav {
    background: #121212;
    border-top-color: #ffffff;
    border-bottom-color: #1A1A1A;
  }

  .main-nav a {
    color: #F5F5F5;
  }

  .main-nav-arrow {
    background: rgba(255, 255, 255, .14);
    color: #F5F5F5;
  }

  .mm-overlay {
    background: rgba(0, 0, 0, .72);
  }

  .mm-menu {
    background: #121212;
    color: #F5F5F5;
  }

  .mm-menu li,
  .mm-menu details,
  .mm-menu-header,
  .mm-menu-search {
    border-bottom-color: rgba(255, 255, 255, .14);
  }

  .mm-menu a,
  .mm-menu summary,
  .mm-menu .group-label {
    color: #F5F5F5;
  }

  .mm-menu a:hover,
  .mm-menu summary:hover {
    background: rgba(255, 255, 255, .12);
  }

  .mm-menu-close,
  .mm-menu-search input {
    color: #F5F5F5;
  }

  .mm-menu-search input {
    background: #121212;
    border-color: #2E2E2E;
  }

  .mm-menu-search input::placeholder {
    color: #A3A3A3;
  }

  .wrap {
    background: #121212;
    color: #F5F5F5;
  }

  .article-view {
    background: #121212;
    border-color: #1A1A1A;
    box-shadow: none;
  }

  .article-view.article-view--special {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .article-view--special .article-view__body {
    background: #121212;
  }

  .article-kicker {
    color: var(--sgv16-yellow);
  }

  .article-title {
    color: #F5F5F5;
  }

  .article-meta {
    color: #A3A3A3;
  }

  .article-meta--structured,
  .article-meta__item {
    color: #A3A3A3;
  }

  .article-meta__item+.article-meta__item::before {
    color: #2E2E2E;
  }

  .article-meta__item--author,
  .article-meta__item--date {
    color: #F5F5F5;
  }

  .article-teaser {
    color: #F5F5F5;
  }

  .article-content {
    color: #F5F5F5;
  }

  .article-content a {
    color: var(--sgv16-yellow);
  }

  .article-hero figcaption,
  .article-content figcaption {
    color: #A3A3A3;
    line-height: 1.2;
  }

  .article-content th,
  .article-content td {
    border-color: #1A1A1A;
  }

  .article-block--quote,
  .article-block--infobox,
  .article-reportcard,
  .article-slider,
  .article-embed {
    background: #121212;
    border-color: #1A1A1A;
  }

  .article-block--quote {
    border-left-color: var(--sgv16-yellow);
  }

  .article-quote__author,
  .embed-note {
    color: #A3A3A3;
  }

  .article-block--infobox {
    background: #1A1A1A;
  }

  .article-block--infobox.article-block--infobox-alt {
    background: #1A1A1A;
  }

  .article-report--letters {
    background: #121212;
    border-color: #1A1A1A;
  }

  .article-report--letters h2 {
    color: #F5F5F5;
  }

  .article-report--letters a {
    color: var(--sgv16-yellow);
  }

  .article-endtools {
    border-top-color: #ffffff;
  }

  .article-socialbar__label {
    color: #A3A3A3;
  }

  .article-socialbar__btn {
    background: #121212;
    border-color: #1A1A1A;
    color: #F5F5F5;
  }

  .article-socialbar__btn:hover {
    background: var(--sgv16-yellow);
    border-color: var(--sgv16-yellow);
    color: #121212;
  }

  .article-steady img {
    border-color: #1A1A1A;
  }

  .article-lightbox__caption {
    background: rgba(4, 7, 12, .75);
    color: #F5F5F5;
  }

  body:not(.theme-dark) .listing--category-box,
  body.theme-dark .listing--category-box,
  body:not(.theme-dark) .forum-box,
  body.theme-dark .forum-box,
  body:not(.theme-dark) .statistik-box,
  body.theme-dark .statistik-box {
    background: #1A1A1A;
    color: #F5F5F5;
  }

  body:not(.theme-dark) .listing--category-box h2,
  body.theme-dark .listing--category-box h2,
  body:not(.theme-dark) .listing--category-box a,
  body.theme-dark .listing--category-box a,
  body:not(.theme-dark) .forum-box a,
  body.theme-dark .forum-box a,
  body:not(.theme-dark) .statistik-box a,
  body.theme-dark .statistik-box a {
    color: var(--sgv16-yellow);
  }

  body:not(.theme-dark) .listing--category-box h2 a,
  body.theme-dark .listing--category-box h2 a,
  body:not(.theme-dark) .forum-box h2 a,
  body.theme-dark .forum-box h2 a,
  body:not(.theme-dark) .statistik-box h2 a,
  body.theme-dark .statistik-box h2 a {
    border-bottom-color: var(--sgv16-yellow);
  }

  body:not(.theme-dark) .listing--category-box a,
  body.theme-dark .listing--category-box a {
    font-weight: 800;
  }

  body:not(.theme-dark) .forum-box__item,
  body.theme-dark .forum-box__item,
  body:not(.theme-dark) .statistik-box ul li,
  body.theme-dark .statistik-box ul li,
  body:not(.theme-dark) .kommende-spiele-box__group li,
  body.theme-dark .kommende-spiele-box__group li {
    background: #1A1A1A;
    border: 1px solid #1A1A1A;
    border-left: 3px solid var(--sgv16-yellow);
    color: #F5F5F5;
  }

  body:not(.theme-dark) .statistik-box h5,
  body.theme-dark .statistik-box h5,
  body:not(.theme-dark) .kommende-spiele-box__group h5,
  body.theme-dark .kommende-spiele-box__group h5 {
    color: #F5F5F5;
  }

  body:not(.theme-dark) .forum-box__meta,
  body.theme-dark .forum-box__meta {
    color: #A3A3A3;
  }

  body:not(.theme-dark) .kommende-spiele-box .kommende-spiele-box__hint,
  body.theme-dark .kommende-spiele-box .kommende-spiele-box__hint {
    color: #A3A3A3 !important;
  }

  .forum-thread-link {
    border-top-color: #ffffff;
  }

  .fotos-slider__img-link {
    background: #1A1A1A;
  }

  .fotos-slider--loading .fotos-slider__track {
    background: #1A1A1A;
  }

  .bvb-fotos-embed {
    border-top-color: #ffffff;
  }

  @media (max-width:600px) {

    .bvb-fotos-embed--left,
    .bvb-fotos-embed--right {
      border-top-color: #ffffff;
    }
  }

  .card,
  .list,
  .list article,
  article.card,
  .table,
  .pagination,
  .search-form,
  input,
  select,
  textarea {
    color: #F5F5F5;
  }

  .card {
    background: #121212;
    border-color: #1A1A1A;
  }

  input,
  select,
  textarea {
    background: #1A1A1A;
    border: 1px solid #1A1A1A;
  }

  body.brand-v16:not(.theme-light) .teaser-card {
    background: #1A1A1A;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .35);
  }

  body.brand-v16:not(.theme-light) .teaser-card__pill {
    background: var(--sgv16-yellow);
    color: #121212;
  }

  body.brand-v16:not(.theme-light) .teaser-card__kicker {
    color: var(--sgv16-yellow);
    background: transparent;
  }

  body.brand-v16:not(.theme-light) .teaser-card__title a {
    color: #F5F5F5;
  }

  body.brand-v16:not(.theme-light) .teaser-card__excerpt {
    color: #F5F5F5;
  }

  body.brand-v16:not(.theme-light) .teaser-card__meta {
    color: #A3A3A3;
  }

  .footer__top {
    background: var(--sgv16-yellow-legacy-dark);
  }

  /* Footer-Social-Icons auf gelbem Hintergrund: dunkler Text */
  .footer__social h3,
  .footer__social a {
    color: #121212;
  }
  /* teaser-card__kicker gehört NICHT hierher; Farbe via :not(.theme-light) oben gesetzt */

  .footer__social a {
    border-color: #1A1A1A;
  }

  .footer__social a:hover {
    background: #1A1A1A;
    color: var(--sgv16-yellow);
  }

  .site-footer {
    background: #121212;
    color: #F5F5F5;
  }

  .site-footer a,
  .footer-grid h4,
  .footer-grid li,
  .footer-meta,
  .footer-meta a {
    color: #F5F5F5;
  }

  .footer-meta {
    background: #121212;
  }
}

/* Final dark precedence overrides: must win against default rules. */
/* Final spacing precedence for modules after homepage Aufmacher. */
body.brand-v16 .homepage-topthemen .listing-article--module-inline {
  margin-top: var(--sgv16-module-space-desktop) !important;
  margin-bottom: var(--sgv16-module-space-desktop) !important;
}

body.brand-v16 .homepage-topthemen .listing-article--module-inline .homepage-category-module,
body.brand-v16 .homepage-topthemen .listing-article--module-inline .listing-article--podcast,
body.brand-v16 .homepage-topthemen .listing-article--module-inline .shop-module,
body.brand-v16 .homepage-topthemen .listing-article--module-inline .forum-box.listing--category-box,
body.brand-v16 .homepage-topthemen .listing-article--module-inline .fotos-box.listing--category-box,
body.brand-v16 .homepage-topthemen .listing-article--module-inline .statistik-box.listing--category-box,
body.brand-v16 .homepage-topthemen .listing-article--module-inline .kommende-spiele-box.listing--category-box,
body.brand-v16 .homepage-topthemen .listing-article--module-inline .listing--category-box {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 900px) {
  body.brand-v16 .homepage-topthemen .listing-article--module-inline {
    margin-top: var(--sgv16-module-space-mobile) !important;
    margin-bottom: var(--sgv16-module-space-mobile) !important;
  }

  body.brand-v16 .homepage-topthemen .listing-article--module-inline .homepage-category-module,
  body.brand-v16 .homepage-topthemen .listing-article--module-inline .listing-article--podcast,
  body.brand-v16 .homepage-topthemen .listing-article--module-inline .shop-module,
  body.brand-v16 .homepage-topthemen .listing-article--module-inline .forum-box.listing--category-box,
  body.brand-v16 .homepage-topthemen .listing-article--module-inline .fotos-box.listing--category-box,
  body.brand-v16 .homepage-topthemen .listing-article--module-inline .statistik-box.listing--category-box,
  body.brand-v16 .homepage-topthemen .listing-article--module-inline .kommende-spiele-box.listing--category-box,
  body.brand-v16 .homepage-topthemen .listing-article--module-inline .listing--category-box {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

/* Final immersive hero meta positioning: centered above article body. */
body.brand-v16 .article-view--special .article-immersive-hero__meta-wrap {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  width: min(100% - 2rem, 800px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  bottom: clamp(1rem, 3.2svh, 2.2rem) !important;
  z-index: 2;
}

body.brand-v16 .article-view--special .article-immersive-hero__meta {
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: flex;
  flex-direction: column;
  align-items: center !important;
  text-align: center;
}