:root {
  --ink: #151515;
  --ink-soft: #2c2c2c;
  --ink-dim: #b3b3b3;
  --ink-faint: #eeeeee;
  --bg: #f4f4f4;
  --white: #f4f4f4;
  --card: #fff;
  --text-white: #fff;
  --border: #e4e4e4;
  --navy: #0f1e3c;
  --navy-mid: #162848;
  --green: #1a6b3a;
  --gold: #f0b429;
  --navy-faint: rgba(15, 30, 60, 0.07);
  --navy-soft: rgba(15, 30, 60, 0.4);
  --green-faint: rgba(26, 107, 58, 0.1);
  --green-mid: #1f7d45;
  --green-dim: rgba(26, 107, 58, 0.12);
  --r: 18px;
  --nav-h: 64px;
  --frame: 14px;
  --gap: 12px;
  --red: #e74e6e;
}

/* ---- REWORKED CARDS ----- */

.card {
  padding: 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--card);
  border-radius: var(--r);
  border: 1.5px solid var(--border);
}

/* --------- OLD STUFF --------- */

/* .card {
  border-radius: var(--r);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--card);
  padding: 24px;
  position: relative;
  flex-shrink: 0;
} */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  padding: 0;
}

ul {
  list-style: none;
}

::-moz-selection {
  color: var(--navy);
  background: var(--gold);
}

::selection {
  color: var(--navy);
  background: var(--gold);
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Plus Jakarta Sans", sans-serif;
  scrollbar-width: none;
  min-height: 100dvh;
}

body::-webkit-scrollbar {
  display: none;
}

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

sup {
  font-size: 0.5rem;
  font-weight: 600;
}

sup .header {
  font-weight: 700;
}

.windowOuter {
  position: relative;
}

.windowWrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  padding: var(--frame);
  overflow: hidden;
  background: transparent;
}

.windowInner {
  height: 100%;
  border-bottom-left-radius: var(--r);
  border-bottom-right-radius: var(--r);
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--white);
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.windowInner::-webkit-scrollbar {
  display: none;
}

/* Programmatic focus targets (skip-link destination, modal containers) must
   not paint a ring around a whole region — they are never Tab stops. */
[tabindex="-1"]:focus {
  outline: none;
}

.browser-firefox .windowInner {
  scroll-behavior: auto;
}

.nav {
  position: sticky;
  top: 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  padding-inline: max(32px, calc((100% - 1400px) / 2));
  background: var(--bg);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  max-width: 100%;
  justify-content: center;
}

@supports (-moz-appearance: none) {
  .nav {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

.browser-firefox .nav {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.nav-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1200px;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  cursor: pointer;
  pointer-events: none;
}

html[data-theme="dark"] .nav-logo-icon {
  filter: invert(1) grayscale(1);
}

.nav-wordmark {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

.nav-wordmark span {
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--ink-dim);
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2px;
}

.nav-links a {
  display: block;
  padding: 6px 14px;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--ink-dim);
  border-radius: 8px;
  transition:
    color 0.15s,
    background 0.15s;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: var(--ink-faint);
}

/* ── Dropdown ── */
.nav-has-dropdown {
  position: relative;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  margin-top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 6px;
  min-width: 160px;
  z-index: 300;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  list-style: none;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 12px;
}

.nav-has-dropdown:hover .nav-dropdown--simple,
.nav-has-dropdown:focus-within .nav-dropdown--simple {
  grid-template-columns: 1fr;
  gap: unset;
}

.nav-dropdown li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-dropdown__heading {
  display: block;
  padding: 6px 10px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink);
  border-radius: calc(var(--r) - 6px);
  white-space: nowrap;
  transition:
    color 0.15s,
    background 0.15s;
  margin-bottom: 2px;
}

.nav-dropdown__heading:hover {
  background: var(--ink-faint);
}

.nav-dropdown__heading--static {
  cursor: default;
  pointer-events: none;
  color: var(--ink-dim);
}

.nav-dropdown__heading--static:hover {
  background: none;
}

.nav-dropdown a {
  display: block;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-dim);
  border-radius: calc(var(--r) - 6px);
  white-space: nowrap;
  transition:
    color 0.15s,
    background 0.15s;
}

.nav-dropdown a:hover {
  color: var(--ink);
  background: var(--ink-faint);
}

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

.nav-ghost {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--ink-dim);
  padding: 7px 14px;
  border-radius: 8px;
  transition:
    color 0.15s,
    background 0.15s;
}

.nav-ghost:hover {
  color: var(--ink);
  background: var(--ink-faint);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
}

.nav-tickets {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink);
  background: #f0b429;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.15s;
}

.nav-tickets:hover {
  background: #e0a820;
}

/* ── Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Mobile menu ── */
.nav-mobile-menu {
  display: none;
  position: sticky;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px 16px;
  z-index: 199;
  flex-direction: column;
  gap: 2px;
}

.nav-mobile-menu.is-open {
  display: flex;
  position: absolute;
}

.nav-mobile-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-dim);
  border-radius: 8px;
}

.nav-mobile-menu a:hover {
  color: var(--ink);
  background: var(--ink-faint);
}

.nav-mobile-menu .nav-tickets {
  margin-top: 8px;
  text-align: center;
  display: block;
  padding: 12px;
  border-radius: 8px;
  color: var(--ink);
}

.nav-mobile-tabs {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-mobile-tab {
  display: block;
  padding: 10px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-dim);
  border-radius: 8px;
}

.nav-mobile-tab:hover {
  color: var(--ink);
  background: var(--ink-faint);
}

.nav-mobile-tab--toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.nav-mobile-tab__chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.nav-mobile-tab--toggle[aria-expanded="true"] .nav-mobile-tab__chevron {
  transform: rotate(180deg);
}

.nav-mobile-submenu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0 0 0 12px;
  padding: 0 0 0 10px;
  border-left: 2px solid var(--border);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.25s ease,
    margin 0.3s ease,
    padding 0.3s ease;
}

.nav-mobile-submenu.is-open {
  max-height: 800px;
  opacity: 1;
  margin: 2px 0 4px 12px;
  padding: 4px 0 4px 10px;
}

.nav-mobile-tab--sub {
  padding: 8px 12px;
  font-size: 0.84rem;
}

.nav-mobile-tab--label {
  cursor: default;
  pointer-events: none;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-dim);
  padding: 8px 12px 2px;
}

.nav-mobile-actions {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}

.nav-mobile-action {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-mobile-action.nav-ghost {
  margin-top: 8px;
  text-align: center;
  display: block;
  padding: 12px;
  border-radius: 8px;
  color: var(--ink);
  background-color: var(--ink-faint);
}

.nav-mobile-action.nav-ghost:hover {
  color: var(--ink);
  background: var(--ink-faint);
}

.nav-mobile-action.nav-tickets,
.nav-mobile-action.nav-cta {
  color: var(--ink);
  background: #f0b429;
}

.nav-mobile-action.nav-tickets:hover,
.nav-mobile-action.nav-cta:hover {
  background: #e0a820;
}

.content {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  max-width: 1400px;
  margin-inline: auto;
  width: 100%;
  min-height: calc(100vh - 65px);
}

.fourOfour-header {
  gap: var(--gap);
  display: flex;
  flex-direction: column;
}

.card--dark {
  background: var(--navy);
  color: var(--card);
}

.card--green {
  background: var(--green);
  color: var(--card);
}

.page-header {
  background: var(--navy);
  padding: 44px 56px;
  color: var(--card);
  position: relative;
  overflow: hidden;
  min-height: 190px;
  display: flex;
  flex-direction: column;
}

.page-header__eyebrow {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.page-header__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-white);
}

.page-header__sub {
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 58ch;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .page-header {
    padding: 36px 32px;
  }
}

@media (max-width: 580px) {
  .page-header {
    padding: 28px 20px;
    min-height: unset;
  }
}

.section-grid {
  display: grid;
  gap: var(--gap);
}

.players-grid {
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

.player-card {
  display: grid;
  gap: 10px;
}

.player-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
}

.player-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--ink-faint);
}

.site-footer {
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-dim);
  padding: 30px 12px;
}

/* ── Shared footer (rendered by PHP on every page) ── */
footer {
  background: var(--ink);
  border-radius: var(--r);
  padding: 48px max(32px, calc((100% - 1400px) / 2)) 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr repeat(4, auto);
  gap: 40px 48px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  width: 80px;
  height: auto;
  display: block;
  opacity: 0.92;
}

.footer-partner-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #565656;
  margin-bottom: 6px;
}

.footer-partner-logo {
  width: 60px;
  height: auto;
  display: block;
  opacity: 0.85;
  transition:
    filter 0.2s,
    opacity 0.2s;
}

.footer-partner-logo:hover {
  filter: none;
  opacity: 0.7;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 260px;
}

.footer-about__name {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
}

.footer-about__text {
  font-size: 0.72rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.35);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col__toggle {
  all: unset;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 4px;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-col__toggle:focus-visible {
  outline: 2px solid var(--text-white);
  outline-offset: 2px;
  border-radius: 4px;
}

.footer-col__chevron {
  display: none;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--text-white);
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
  white-space: nowrap;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.88);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom__copy {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
  footer {
    padding: 40px 20px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }

  .footer-about {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-brand {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .footer-about {
    padding-block: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .footer-col {
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .footer-col__toggle {
    cursor: pointer;
    width: 100%;
    padding: 14px 0;
    margin-bottom: 0;
  }

  .footer-col__chevron {
    display: block;
  }

  .footer-col.is-open .footer-col__chevron {
    transform: rotate(180deg);
  }

  .footer-col__links {
    overflow: hidden;
    max-height: 0;
    gap: 10px;
    transition:
      max-height 0.25s ease,
      padding-bottom 0.25s ease;
    padding-bottom: 0;
  }

  .footer-col.is-open .footer-col__links {
    max-height: 400px;
    padding-bottom: 16px;
  }
}

.article-v1 {
  padding: clamp(16px, 2.2vw, 28px);
  display: grid;
  gap: 18px;
}

.article-v1-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-dim);
}

.article-v1-breadcrumbs a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.article-v1-breadcrumbs a:hover {
  color: var(--ink);
}

.article-v1-breadcrumbs__sep {
  color: rgba(21, 21, 21, 0.3);
}

.article-v1-cover {
  margin: 0;
}

.article-v1-cover img {
  width: 100%;
  max-height: min(56vh, 620px);
  object-fit: cover;
  border-radius: 12px;
}

.article-v1-meta {
  gap: 8px 12px;
  color: var(--ink-dim);
  font-size: 0.74rem;
}

.article-v1-meta .wp-block-post-date,
.article-v1-meta .wp-block-post-terms {
  margin: 0;
}

.article-v1-meta .wp-block-post-terms__prefix {
  display: none;
}

.article-v1-meta .wp-block-post-terms a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--ink-faint);
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-v1-title {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.article-v1-content {
  max-width: 72ch;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.article-v1-content > * {
  margin-block: 0 1.05em;
}

.article-v1-content h2,
.article-v1-content h3,
.article-v1-content h4 {
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 1.3em;
}

.article-v1-content a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.article-v1-content figure {
  margin: 1.4em 0;
}

.article-v1-content img {
  border-radius: 10px;
}

@media (max-width: 900px) {
  .nav {
    padding-inline: 16px;
    /* Safari/iOS composites the blurred sticky nav on its own layer and can
       rasterize it a hair off its layout box, leaving a 1px seam where the
       page behind shows through. A same-color shadow ring bleeds the nav
       over that seam without shifting layout or sticky positioning. */
    box-shadow: 0 0 0 1px var(--bg);
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 580px) {
  :root {
    --frame: 10px;
    --gap: 10px;
    --nav-h: 60px;
  }

  .windowWrapper {
    padding-inline: 8px;
  }

  .card {
    padding: 18px;
  }

  .article-v1 {
    gap: 14px;
  }

  .article-v1-title {
    font-size: clamp(1.45rem, 7vw, 2.1rem);
  }

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

/* ═══════════════════════════════════════════════════════════════════
   SECTION DIVIDER
   Used on the index page between content sections.
═══════════════════════════════════════════════════════════════════ */

.sec-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0 0;
  flex-wrap: wrap;
}

.sec-divider__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
}

.sec-divider__line {
  flex: 1;
  height: 1px;
  background: var(--border);
  min-width: 20px;
}

.sec-divider a .icon {
  height: 14px;
}

@media (max-width: 580px) {
  .sec-divider a {
    display: none;
  }
}

.powered-all,
.sec-divider a {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* ── Mehr Aktionen dropdown ── */
.mehr-aktionen {
  position: relative;
  flex-shrink: 0;
}

.mehr-aktionen__trigger {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
  padding: 4px 0;
  transition: color 0.15s;
}

.mehr-aktionen__trigger:hover {
  color: var(--ink);
}

.mehr-aktionen__trigger svg {
  transition: transform 0.2s;
}

.mehr-aktionen.is-open .mehr-aktionen__trigger svg {
  transform: rotate(180deg);
}

.mehr-aktionen__dropdown {
  display: none;
  position: fixed;
  min-width: 210px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 9999;
}

.mehr-aktionen.is-open .mehr-aktionen__dropdown {
  display: block;
}

.mehr-aktionen__item {
  display: block;
  padding: 11px 16px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  transition:
    background 0.12s,
    color 0.12s;
  border-bottom: 1px solid var(--border);
}

.mehr-aktionen__item:last-child {
  border-bottom: none;
}

.mehr-aktionen__item:hover {
  background: var(--bg);
  color: var(--navy);
}

/* Calendar button item reset (button inside dropdown looks like an anchor item) */
button.mehr-aktionen__item {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

/* iCal calendar modal */
.ical-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.ical-modal.is-open {
  display: flex;
}

.ical-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 20, 0.52);
}

.ical-modal__box {
  position: relative;
  z-index: 1;
  background: var(--card);
  border-radius: 8px;
  padding: 28px 24px 24px;
  width: min(300px, 88vw);
  box-shadow: 0 8px 32px rgba(0, 0, 40, 0.18);
}

.ical-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.1rem;
  line-height: 1;
  padding: 4px 6px;
  cursor: pointer;
  color: var(--ink);
}

.ical-modal__title {
  margin: 0 0 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.ical-modal__hint {
  margin: 0 0 18px;
  font-size: 0.58rem;
  color: #888;
}

.ical-modal__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ical-modal__option {
  display: block;
  padding: 12px 16px;
  border-radius: var(--r);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    background 0.12s,
    color 0.12s,
    border-color 0.12s;
}

/* ════════════════════════════════════════════════════════════════════════════
   SQUAD PAGE styles → moved to assets/css/pages/squad.css
   ════════════════════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════════════════════
   PLAYER DETAIL PAGE  → moved to assets/css/pages/player.css
   ════════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   SHARED PAGE COMPONENTS
   Reusable blocks used across multiple page templates.
═══════════════════════════════════════════════════════════════════ */

/* ── Card eyebrow label ── */
.card-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 20px;
}

/* ── Promo strip / CTA banner ── */
.promo-strip {
  background: var(--navy);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 28px;
  flex-shrink: 0;
}

.promo-strip__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.promo-strip__title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-white);
  line-height: 1.2;
}

.promo-strip__sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1px;
}

.promo-strip__cta {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--gold);
  padding: 11px 22px;
  border-radius: 10px;
  transition: background 0.15s;
  white-space: nowrap;
}

.promo-strip__cta:hover {
  background: #e0a820;
  animation: none;
}

.promo-strip__cta svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.15s;
}

.promo-strip__cta:hover svg {
  transform: translateX(3px);
}

/* ── Wero payment banner ── */
.wero-banner {
  display: flex;
  align-items: stretch;
  background: #fff48d;
  border-radius: var(--r);
  overflow: hidden;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  min-height: 176px;
  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

/* Art column */
.wero-banner__art {
  flex-shrink: 0;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
}

.wero-banner__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Text column */
.wero-banner__content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 40px 28px 28px;
  min-width: 0;
}

.wero-banner__content {
  gap: 20px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

/* Facts panel — fills the empty space next to the headline on desktop */
.wero-banner__facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.wero-banner__fact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.wero-banner__fact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #1d1c1c;
  color: #1d1c1c;
}

.wero-banner__fact-icon svg {
  width: 16px;
  height: 16px;
}

.wero-banner__fact-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.wero-banner__fact-title {
  font-family: "GTWalsheimWero", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: #1d1c1c;
  letter-spacing: -0.01em;
}

.wero-banner__fact-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.74rem;
  color: rgba(29, 28, 28, 0.62);
  line-height: 1.3;
}

.wero-banner__headline {
  font-family: "GTWalsheimWero", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 2.15rem;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #0a0a0a;
  text-transform: uppercase;
}

.wero-real {
  display: inline-flex;
  align-items: center;
  background: #578df7;
  border: 1.5px solid black;
  color: black;
  border-radius: 8px;
  padding: 2px 10px 1px 8px;
  font-family: "GTWalsheimOblique", "GTWalsheimWero", sans-serif;
  font-style: oblique;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  letter-spacing: -0.01em;
  margin-right: 5px;
  vertical-align: baseline;
}

/* Real Wero wordmark, embedded inline wherever "wero" is referenced */
.wero-logo-mark {
  display: inline-flex;
  align-items: center;
  height: 1.05em;
  vertical-align: -0.18em;
  color: inherit;
}

.wero-logo-mark svg {
  display: block;
  width: auto;
  height: 100%;
}

.wero-banner__url {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  align-self: flex-start;
  background: #fff;
  border: 1px solid #1d1c1c;
  border-radius: 30px;
  box-shadow: 0 3px #1d1c1c;
  height: 40px;
  padding: 0 18px;
  font-size: 0.8rem;
  font-family: "GTWalsheimWero", "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  line-height: 1.3;
  color: #1d1c1c;
  letter-spacing: 0;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.wero-banner:active .wero-banner__url {
  box-shadow: none;
  transform: translate(2px, 2px);
}

.wero-banner__url-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #1d1c1c;
}

.wero-banner__url-arrow svg {
  width: 100%;
  height: 100%;
}

/* Responsive */
@media (max-width: 1000px) {
  .wero-banner__facts {
    display: none;
  }
}

@media (max-width: 860px) {
  .wero-banner__headline {
    font-size: 1.7rem;
  }
  .wero-banner__art {
    width: 220px;
  }
}

@media (max-width: 640px) {
  /* No imagery on mobile — headline + button only, full width */
  .wero-banner {
    min-height: unset;
  }

  .wero-banner__art {
    display: none;
  }

  .wero-banner__content-wrapper {
    padding: 22px 22px 24px;
  }

  .wero-banner__headline {
    font-size: 1.5rem;
  }

  .wero-banner__url {
    height: 36px;
    font-size: 0.76rem;
    padding: 0 14px;
  }
}

@media (max-width: 400px) {
  .wero-banner__headline {
    font-size: 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wero-banner:hover {
    transform: none;
  }
}

@keyframes ad-cta-jiggle {
  0%,
  55%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  60% {
    transform: scale(1.07) rotate(-4deg);
  }
  67% {
    transform: scale(1.07) rotate(4deg);
  }
  74% {
    transform: scale(1.05) rotate(-3deg);
  }
  81% {
    transform: scale(1.05) rotate(3deg);
  }
  88% {
    transform: scale(1.02) rotate(-1deg);
  }
  94% {
    transform: scale(1.02) rotate(1deg);
  }
}

.promo-strip__cta.is-jiggle {
  animation: ad-cta-jiggle 2.8s ease-in-out infinite;
}

/* ── Prices layout ── */
.prices-heading {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.prices-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.seating-plan-wrapper {
  width: 100%;
}

.seating-plan {
  width: 100%;
  display: block;
  pointer-events: none;
}

.seating-plan--dark {
  display: none;
}

html[data-theme="dark"] .seating-plan--light {
  display: none;
}

html[data-theme="dark"] .seating-plan--dark {
  display: block;
}

.price-cat-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.price-cat-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cat-color-bar {
  width: 5px;
  height: 20px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.82;
}

.price-cat-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-cat-name {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.price-cat-vals {
  font-size: 0.84rem;
  color: var(--ink-dim);
  line-height: 1.65;
}

.price-cat-vals strong {
  font-weight: 600;
  color: var(--ink-soft);
}

.teilzahler-note {
  font-size: 0.82rem;
  color: var(--ink-dim);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 4px;
}

.teilzahler-note strong {
  font-weight: 700;
  color: var(--ink-soft);
}

/* ── Ticket embed card ── */
.embed-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: visible;
  padding: 28px 32px 32px;
}

.ditix-event-box {
  max-width: 100%;
  margin-top: 16px;
}

/* ── Footnotes ── */
.footnotes-block {
  padding: 0 24px 8px;
  font-size: 0.76rem;
  color: var(--ink-dim);
  line-height: 1.85;
}

/* ── Shared responsive ── */
@media (max-width: 900px) {
  .prices-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 580px) {
  .promo-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
  }

  .promo-strip__cta {
    width: 100%;
    justify-content: center;
    animation: none;
  }

  .footnotes-block {
    padding: 0 18px 8px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   DARK MODE — CSS variable overrides
   Applied via html[data-theme="dark"] (set by inline script in <head>
   from localStorage or OS preference before first paint).
═══════════════════════════════════════════════════════════════════ */

html[data-theme="dark"] {
  --bg: #0d111e;
  --white: #0d111e;
  --card: #14203a;
  --ink: #e2e8f6;
  --ink-soft: #b8c3d8;
  --ink-dim: #5e7296;
  --ink-faint: #1a263d;
  --border: #243352;
  /* navy-faint / navy-soft: use a blue-tinted rgba so selected states and highlights
     remain recognisably "navy blue" rather than white-washed in dark mode */
  --navy-faint: rgba(94, 141, 216, 0.1);
  --navy-soft: rgba(94, 141, 216, 0.22);
  --text-white: #fff;
  /* Accent blue: used by dark-mode overrides for all navy-coloured TEXT/icons.
     #7db0ed gives ≥ 5:1 contrast on --card (#14203a) — WCAG AA for body text. */
  --dm-accent: #7db0ed;
  /* Button blue: dark enough for white text (≥ 7:1) yet clearly blue on dark bg. */
  --dm-btn: #1e4a9e;
  --dm-btn-hover: #2558b8;
}

/* ── Theme toggle button (shared between footer & mobile menu) ── */

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #c6c6c6;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.15s,
    color 0.15s;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.72);
}

/* Moon icon = "switch to dark" (visible in light mode) */
/* Sun icon  = "switch to light" (visible in dark mode) */
.theme-toggle__sun {
  display: none;
}

.theme-toggle__moon {
  display: flex;
}

html[data-theme="dark"] .theme-toggle__sun {
  display: flex;
}

html[data-theme="dark"] .theme-toggle__moon {
  display: none;
}

/* ── Mobile nav theme toggle row ── */

.nav-mobile-theme-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  margin-bottom: 2px;
  border-bottom: 1px solid var(--border);
}

.nav-mobile-theme-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-dim);
}

.theme-toggle--mobile {
  background: var(--ink-faint);
  color: var(--ink-soft);
  margin-top: 8px;
  height: auto;
  width: 10vw;
  min-width: 40px;
}

.theme-toggle--mobile:hover {
  background: var(--ink-faint);
  color: var(--ink-soft);
}

html[data-theme="dark"] .theme-toggle--mobile {
  background: var(--ink-faint);
  color: var(--ink-dim);
}

/* BUTTONS */

.btn-re {
  background: var(--card);
  border: 1.5px solid var(--border);
  color: var(--ink);
}

.article-mobile-tab.is-active,
.btn-re:hover {
  border-color: var(--ink-dim);
  color: var(--ink);
}

/*Altcha Styling*/
.altcha[data-display="bar"] .altcha-main {
  background-color: var(--navy);
  border: none !important;
  color: var(--altcha-color-primary-content);
}

/* ACCESSIBILITY: skip link */

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10001;
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
  padding: 10px 16px;
  background: var(--bg);
  color: var(--ink);
  border-radius: 8px;
  outline: 2px solid var(--navy);
}
