﻿:root {
  --primary: #af101a;
  --primary-container: #d32f2f;
  --surface: #fcf9f8;
  --surface-low: #f6f3f2;
  --surface-lowest: #ffffff;
  --on-surface: #1c1b1b;
  --outline: #8f6f6c;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--on-surface);
  background:
    radial-gradient(circle at 15% 8%, rgba(175, 16, 26, 0.08), transparent 35%),
    radial-gradient(circle at 85% 2%, rgba(32, 37, 55, 0.1), transparent 32%),
    var(--surface);
}

a { color: inherit; text-decoration: none; }
a:focus-visible {
  outline: 2px solid #ff9b94;
  outline-offset: 2px;
  border-radius: 8px;
}
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background:
    radial-gradient(circle at 8% -45%, rgba(223, 57, 69, 0.24), transparent 42%),
    linear-gradient(180deg, rgba(23, 24, 29, .96), rgba(14, 15, 19, .96));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.topbar.is-scrolled {
  box-shadow: 0 14px 26px rgba(7, 8, 11, .32);
}
.topbar-glow {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 142, 133, .78) 50%, transparent 100%);
  pointer-events: none;
}
.topbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 96px;
  padding-left: 200px;
  gap: 18px;
}
.brand {
  position: absolute;
  left: 24px;
  top: -18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}
.brand-logo {
  width: auto;
  height: 178px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(13, 8, 8, .42));
}
.brand-copy {
  display: none;
  gap: 2px;
  padding-top: 6px;
}
.brand-mark {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  font-size: 1.42rem;
}
.brand-sub {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
}
.main-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  text-transform: uppercase;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}
.main-nav-primary {
  margin-left: auto;
}
.main-nav-primary .nav-link {
  color: rgba(255, 255, 255, .92);
}
.main-nav-primary .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}
.main-nav-primary .nav-link.active {
  color: #fff;
  opacity: 1;
  background: rgba(175, 16, 26, 0.42);
}
.main-nav .nav-item {
  position: relative;
  padding-bottom: 2px;
}
.main-nav .nav-item.has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}
.main-nav .nav-link {
  opacity: .88;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 10px;
  border-radius: 9px;
}
.main-nav .nav-item.has-children > .nav-link::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .58;
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 220px;
  display: grid;
  gap: 2px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(143, 111, 108, 0.18);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 30px rgba(26, 16, 16, .14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 60;
}
.nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.nav-submenu a {
  border-radius: 8px;
  padding: 9px 10px;
  font-size: .76rem;
  letter-spacing: .06em;
}
.nav-submenu a:hover {
  color: var(--primary);
  background: #f8f1f1;
}
.nav-submenu a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-container));
}
.main-nav .nav-item:hover .nav-submenu,
.main-nav .nav-item:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.topbar-secondary {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, #c0131e 0%, #ac101a 35%, #8f0e15 100%);
}
.topbar-secondary-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
}
.main-nav-secondary {
  width: 100%;
  justify-content: flex-start;
  gap: 2px;
  font-size: .77rem;
}
.main-nav-secondary .nav-link {
  color: #fff;
  opacity: .92;
  border-radius: 0;
  padding: 10px 12px;
  letter-spacing: .02em;
}
.main-nav-secondary .nav-link:hover {
  color: #fff;
  background: rgba(13, 11, 11, 0.17);
}
.main-nav-secondary .nav-link.active {
  color: #fff;
  opacity: 1;
  background: rgba(13, 11, 11, 0.24);
}
.main-nav-secondary .nav-submenu {
  top: 100%;
}

.mobile-nav {
  display: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 18, 23, 0.97);
}
.mobile-nav .container {
  padding-top: 8px;
  padding-bottom: 8px;
}
.mobile-nav-label {
  display: inline-block;
  margin-top: 2px;
  font-family: "Space Grotesk", sans-serif;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.72);
}
.mobile-nav-label-secondary {
  color: rgba(255, 211, 211, 0.88);
}
.mobile-nav-track {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  overflow-x: auto;
  padding: 6px 0 8px;
  scrollbar-width: thin;
}
.mobile-nav-track-secondary {
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  margin-top: 6px;
  padding-top: 10px;
}
.mobile-nav-link {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  color: rgba(255, 255, 255, .94);
  background: rgba(255, 255, 255, .08);
}
.mobile-nav-link-secondary {
  background: rgba(0, 0, 0, .16);
}
.mobile-nav-link.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--primary-container));
  color: #fff;
}
.mobile-context-nav {
  display: none;
  border-bottom: 1px solid rgba(143, 111, 108, 0.12);
  background: rgba(247, 243, 242, 0.82);
}
.mobile-context-nav-inner {
  padding-top: 8px;
  padding-bottom: 8px;
  display: grid;
  gap: 8px;
}
.mobile-context-group {
  border: 1px solid #e6d9d7;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.mobile-context-group summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 12px;
  font-size: .75rem;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #6a5d5d;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mobile-context-group summary::-webkit-details-marker {
  display: none;
}
.mobile-context-group summary::after {
  content: "▾";
  font-size: .72rem;
  opacity: .7;
  transition: transform .16s ease;
}
.mobile-context-group[open] summary::after {
  transform: rotate(180deg);
}
.mobile-context-links {
  border-top: 1px solid #efe6e4;
  display: grid;
  gap: 3px;
  padding: 8px;
}
.mobile-context-links > a,
.mobile-context-sub a {
  display: block;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: .83rem;
  font-weight: 700;
  color: #483e3d;
}
.mobile-context-sub {
  margin: 0 0 2px 10px;
  padding-left: 8px;
  border-left: 2px solid #f1e4e2;
}
.mobile-context-sub a {
  font-size: .79rem;
  font-weight: 600;
}
.mobile-context-links a.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-container));
  color: #fff;
}

.sponsor-ribbon {
  border-bottom: 1px solid rgba(143, 111, 108, 0.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(246,241,240,.92)),
    radial-gradient(circle at 12% -120%, rgba(175,16,26,.08), transparent 55%);
}
.sponsor-ribbon-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 200px;
}
.sponsor-ribbon-label {
  flex: 0 0 auto;
  font-family: "Space Grotesk", sans-serif;
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  color: #6b5f5e;
}
.sponsor-ribbon-track {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: thin;
}
.sponsor-ribbon-track > :first-child {
  min-height: 58px;
  padding: 0px;
}
.sponsor-ribbon-track > :first-child img {
  max-width: 500px;
  border-radius: 12px;
}
.sponsor-ribbon-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 6px 6px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e6d9d8;
  box-shadow: 0 6px 16px rgba(20, 14, 14, 0.05);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.sponsor-ribbon-item:hover {
  transform: translateY(-1px);
  border-color: #d9c3c1;
  box-shadow: 0 10px 20px rgba(20, 14, 14, 0.1);
}
.sponsor-ribbon-item img {
  width: auto;
  max-width: 160px;
  max-height: 72px;
  display: block;
  object-fit: contain;
}
[data-sponsor="livestreaming"] img {
  max-height: 51px;
}

.sponsor-showcase {
  margin-top: 24px;
}
.sponsor-showcase-inner {
  background: linear-gradient(180deg, rgba(25, 25, 25, 0.9), rgba(18, 18, 18, 0.94));
  border: 1px solid rgba(207, 24, 38, 0.45);
  border-top: 3px solid #cf1826;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 38px rgba(8, 8, 8, 0.38);
}
.sponsor-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.sponsor-featured-item {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 2px solid #d81423;
  background: linear-gradient(180deg, rgba(250, 250, 250, 0.98), rgba(236, 236, 236, 0.98));
  text-align: center;
  padding: 0 18px 18px;
}
.sponsor-featured-item:last-child {
  border-right: 0;
}
.sponsor-featured-item h3 {
  margin: 0 -16px 12px;
  padding: 8px 10px;
  font-size: 1.02rem;
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  background: linear-gradient(90deg, #171717, #272727);
  border-bottom: 2px solid #d81423;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.sponsor-featured-item a {
  min-height: 156px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.sponsor-featured-item img {
  max-width: 100%;
  max-height: 126px;
  object-fit: contain;
}
.sponsor-bottom-carousel {
  position: relative;
  background: rgba(251, 251, 251, 0.96);
}
.sponsor-bottom-page {
  display: none;
}
.sponsor-bottom-page.is-active {
  display: block;
}
.sponsor-bottom-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}
.sponsor-bottom-item {
  min-height: 116px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-right: 1px solid #ece3e2;
  border-top: 1px solid #e8dede;
  transition: background .16s ease;
}
.sponsor-bottom-item:last-child {
  border-right: 0;
}
.sponsor-bottom-item:hover {
  background: #fff4f4;
}
.sponsor-bottom-item img {
  max-width: 100%;
  max-height: 86px;
  object-fit: contain;
}
.sponsor-bottom-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 8px 0 12px;
}
.sponsor-bottom-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #d0c3c2;
  padding: 0;
  cursor: pointer;
}
.sponsor-bottom-dot.is-active {
  background: #b90f1b;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.btn.primary { background: linear-gradient(135deg, var(--primary), var(--primary-container)); color: #fff; }
.btn.ghost { background: var(--surface-low); color: var(--on-surface); }

.page-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: calc(100vh - 74px);
}
.page-shell.no-sidebar {
  grid-template-columns: 1fr;
}
.sidebar {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(250,245,244,.72)),
    radial-gradient(circle at 0% 0%, rgba(175,16,26,.12), transparent 48%),
    var(--surface-low);
  padding: 9px 18px;
  border-right: 1px solid rgba(143, 111, 108, 0.12);
}
.sidebar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #d71927, #8f0d17);
}
.sidebar-block + .sidebar-block {
  margin-top: 18px;
}
.sidebar h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--primary);
}
.sidebar p {
  margin: 4px 0 18px;
  font-size: 0.8rem;
  opacity: 0.7;
}
.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-block nav {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(143, 111, 108, 0.14);
  border-radius: 12px;
  padding: 9px;
}
.sidebar nav a {
  padding: 10px 12px;
  border-radius: 8px;
  background: transparent;
  font-weight: 700;
}
.sidebar nav a:hover { background: #fff; }
.sidebar nav a.sub { margin-left: 16px; font-size: 0.88rem; opacity: 0.85; }
.sidebar nav a.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-container));
  color: #fff;
}
.sidebar .join-link {
  margin-top: 22px;
  display: inline-block;
  text-align: center;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .82rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .04em;
}
.sidebar .join-link:hover {
  background: var(--primary);
  color: #fff;
}

.content { padding: 24px; }
.alert {
  background: #eaf8ee;
  color: #216a3a;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.hero-panel {
  position: relative;
  min-height: 380px;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero-slider {
  position: relative;
  min-height: 380px;
}
.hero-slide {
  display: none;
  position: relative;
  inset: auto;
  opacity: 0;
  transform: scale(1.01);
  pointer-events: none;
  transition: opacity .45s ease, transform .6s ease;
}
.hero-slide.is-active {
  display: block;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.hero-panel .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,27,27,.86), rgba(28,27,27,.4));
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 46px;
  max-width: 700px;
}
.hero-content .kicker {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffdad6;
}
.hero-content h1 {
  margin: 14px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: .95;
  letter-spacing: -0.03em;
}
.hero-cta-row {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-slider-nav {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 16px;
  z-index: 4;
  display: flex;
  gap: 8px;
}
.hero-slider-dot {
  border: 0;
  border-radius: 999px;
  width: 34px;
  height: 8px;
  background: rgba(255,255,255,.34);
  cursor: pointer;
  padding: 0;
}
.hero-slider-dot.is-active {
  background: linear-gradient(90deg, #f5414b, #b80f1c);
}
.hero-side-slides {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  width: min(320px, 38%);
}
.hero-side-slides article {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  padding: 10px;
  color: #fff;
}
.hero-side-slides article span {
  display: block;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #ffdad6;
  font-weight: 800;
}
.hero-side-slides article h3 {
  margin: 5px 0 7px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.05;
}
.hero-side-slides article a {
  font-size: .74rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
}

.section { margin-top: 36px; }
.section > .section-head:first-child h1::after,
.section > .section-head:first-child h2::after {
  background: linear-gradient(90deg, #d71927 0%, #b50f1b 65%, #7d0a12 100%);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.section-head h1,
.section-head h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
  color: #261a1a;
}
.section-head h1::after,
.section-head h2::after {
  content: "";
  display: block;
  width: 68px;
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d71927, #8f0d17);
}
.section-link {
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
}

.editorial-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 14px;
  padding: 16px 18px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(12,12,12,.8), rgba(175,16,26,.78)),
    url("/legacy-media/img/new-site/c-slide-2.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 28px rgba(20, 12, 12, .2);
}
.editorial-banner h3 {
  margin: 3px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: -.02em;
}

.home-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.home-quick-card {
  position: relative;
  min-height: 230px;
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(18, 17, 17, 0.9), rgba(175, 16, 26, 0.75)),
    radial-gradient(circle at 15% 20%, rgba(255, 120, 110, 0.45), transparent 42%),
    #1f1c1c;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 28px rgba(22, 14, 14, .2);
}
.home-quick-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, .18), rgba(12, 12, 12, .64));
}
.home-quick-content {
  position: relative;
  z-index: 1;
  color: #fff;
  height: 100%;
  padding: 16px;
  display: grid;
  align-content: end;
  gap: 8px;
}
.home-quick-content .section-kicker {
  color: #ffb3ac;
  margin-bottom: 0;
}
.home-quick-content h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
  letter-spacing: -.015em;
}
.home-quick-content p {
  margin: 0;
  font-size: .9rem;
  color: rgba(255, 255, 255, .92);
}
.home-quick-content .btn {
  justify-self: start;
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.news-feature,
.card,
.news-detail,
.side-column,
.table-wrap {
  background: var(--surface-lowest);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(28, 27, 27, 0.08);
  transition: transform .16s ease, box-shadow .16s ease;
}
.news-feature:hover,
.card:hover,
.news-detail:hover,
.side-column:hover,
.table-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(28, 27, 27, 0.12);
}
.news-feature img,
.card img,
.news-detail img { width: 100%; display: block; border-radius: 12px 12px 0 0; max-height: 320px; object-fit: cover; }
.img-fallback {
  filter: saturate(.82) contrast(.96);
}
.img-broken {
  opacity: .35;
}
.news-feature > div,
.card,
.news-detail,
.side-column,
.table-wrap { padding: 16px; }
.news-feature h3,
.card h3,
.news-detail h1,
.news-detail h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}
.news-list article { padding: 12px; border-radius: 10px; background: var(--surface-lowest); margin-bottom: 10px; }
.news-list article span { font-size: .8rem; opacity: .65; }

.news-filter-strip {
  margin: 0 0 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.news-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-lowest);
  border: 1px solid #e8dddd;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  color: #5f5655;
  text-decoration: none;
  transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.news-filter-chip em {
  font-style: normal;
  border-radius: 999px;
  background: #f1e9e9;
  padding: 1px 7px;
  color: #7b6060;
}
.news-filter-chip.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-container));
  color: #fff;
  border-color: transparent;
}
.news-filter-chip:hover {
  transform: translateY(-1px);
  border-color: #d6c5c4;
  box-shadow: 0 8px 18px rgba(29, 20, 20, 0.08);
}
.news-filter-chip.active em {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.news-filter-intro {
  margin-bottom: 14px;
}
.news-filter-intro h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.02em;
}
.news-filter-intro p {
  margin: 6px 0 0;
  color: #5f5655;
}
.news-toolbar {
  margin: 0 0 16px;
  padding: 10px 12px;
  border: 1px solid #e9e0de;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #faf7f6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.news-toolbar p {
  margin: 0;
  font-size: .84rem;
  font-weight: 700;
  color: #5a4f4f;
}
.news-page-size-form {
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-page-size-form label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .77rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  color: #6a5d5d;
}
.news-page-size-form select {
  border: 1px solid #ddd1ce;
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff;
  font: inherit;
}
.news-empty-state {
  padding: 18px;
  border-radius: 12px;
  background: var(--surface-lowest);
  box-shadow: 0 12px 28px rgba(28, 27, 27, 0.08);
}
.news-empty-state h2 {
  margin: 0 0 6px;
  font-family: "Space Grotesk", sans-serif;
}
.news-empty-state p {
  margin: 0 0 12px;
  color: #5f5655;
}

.category-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 16px;
}
.category-news-block {
  background: var(--surface-lowest);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(28, 27, 27, 0.08);
  overflow: hidden;
}
.category-news-block header {
  padding: 14px 16px 12px;
  background: linear-gradient(135deg, rgba(175,16,26,.96), rgba(130,10,16,.95));
  color: #fff;
}
.category-news-block h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 1rem;
}
.category-news-block h3 a {
  color: inherit;
}
.category-news-block header p {
  margin: 6px 0 0;
  font-size: .84rem;
  opacity: .86;
}
.category-news-link {
  margin-top: 10px;
  display: inline-block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 800;
  color: #fff;
  opacity: .94;
}
.category-news-items {
  display: grid;
  gap: 0;
}
.category-news-item {
  padding: 12px 14px;
  border-bottom: 1px solid #f2ebeb;
}
.category-news-item:last-child {
  border-bottom: 0;
}
.category-news-item span {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #766a69;
  font-weight: 800;
}
.category-news-item h4 {
  margin: 5px 0 6px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.015em;
}
.category-news-item p {
  margin: 0;
  font-size: .86rem;
  color: #5f5655;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.news-layout {
  align-items: start;
}
.news-card-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.card { padding: 0 0 14px; overflow: hidden; }
.card h3, .card p, .card small, .card .chip { padding-left: 14px; padding-right: 14px; display: block; }

.chip {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.66rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary);
}
.fixture-table .chip {
  margin-top: 0;
}

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px; text-align: left; font-size: .95rem; }
thead th {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: "Space Grotesk", sans-serif;
  background: #ebe7e7;
}
tbody tr:nth-child(even) { background: var(--surface-low); }

.news-detail { max-width: 900px; }
.news-detail .html-content img { max-width: 100%; height: auto; }
.side-column { margin-top: 16px; }
.news-detail-title {
  margin-top: 10px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: .95;
  letter-spacing: -.03em;
}
.detail-layout {
  align-items: start;
}
.detail-article {
  max-width: 100%;
  box-shadow: 0 12px 26px rgba(28, 27, 27, 0.08);
}
.detail-intro {
  font-size: 1.03rem;
  margin-top: 0;
}
.detail-side .tiny-date {
  opacity: .6;
  font-size: .74rem;
  margin-top: 2px;
}
.muted {
  margin-top: 0;
  opacity: .78;
}

.page-title {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  letter-spacing: -0.035em;
  text-transform: uppercase;
  line-height: .95;
}
.section-intro {
  color: #5d5454;
  max-width: 70ch;
}
.section-head-tight {
  margin-bottom: 10px;
}
.section-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.match-layout {
  display: grid;
  gap: 20px;
  align-items: start;
  grid-template-columns: minmax(0, 2fr) minmax(250px, 1fr);
}
.match-panel {
  background: var(--surface-lowest);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(28, 27, 27, 0.08);
  overflow: hidden;
}
.match-panel .panel-head {
  background: #ebe7e7;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.match-panel .panel-head h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: .94rem;
}
.match-panel .panel-head span {
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: .11em;
  color: #6f5f5d;
  font-weight: 800;
}
.fixture-table th,
.fixture-table td {
  padding: 14px 16px;
}
.team-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}
.team-mark::before {
  content: "";
  width: 4px;
  height: 24px;
  border-radius: 100px;
  background: var(--primary);
}
.versus {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .45;
  font-weight: 800;
}
.match-side {
  display: grid;
  gap: 16px;
}
.next-match,
.mini-list,
.promo-card {
  background: var(--surface-lowest);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(28, 27, 27, 0.08);
}
.next-match h3,
.mini-list h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.next-match .teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.next-match .badge {
  background: var(--surface-low);
  border-radius: 999px;
  padding: 12px 8px;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: .8rem;
  font-weight: 700;
}
.next-match .meta {
  display: grid;
  gap: 6px;
  font-size: .84rem;
}
.mini-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.mini-list li {
  border-top: 1px solid #f0ecec;
  padding-top: 8px;
  font-size: .88rem;
}
.promo-card {
  color: #fff;
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, rgba(12, 11, 11, .88), rgba(175, 16, 26, .88)), url("/legacy-media/img/1000x1000_7.jpg");
  background-size: cover;
  background-position: center;
}
.promo-card h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-size: 1.35rem;
}
.promo-card p {
  margin: 0 0 12px;
  max-width: 46ch;
  opacity: .92;
}
.promo-card .btn.ghost {
  background: rgba(255,255,255,.14);
  color: #fff;
}
.news-hero-card {
  border-radius: 14px;
  min-height: 390px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 34px rgba(28, 27, 27, 0.2);
  position: relative;
}
.news-hero-card .inner {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  color: #fff;
}
.news-hero-card h2 {
  margin: 10px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: .95;
  letter-spacing: -.03em;
}
.news-hero-card h2 a {
  color: inherit;
}
.news-hero-card p {
  max-width: 56ch;
  opacity: .94;
}
.news-hero-card .meta {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .8;
  font-weight: 700;
}
.news-subscribe {
  display: grid;
  gap: 10px;
}
.news-subscribe label {
  display: grid;
  gap: 6px;
  font-size: .86rem;
}
.news-subscribe input {
  border: 1px solid #dfd8d6;
  border-radius: 8px;
  padding: 8px 10px;
  font: inherit;
}
.news-subscribe .btn {
  border: 0;
}
.news-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f8f4f3);
  border: 1px solid #e9dfdc;
}
.news-page-btn {
  border: 1px solid #e0d8d5;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--foreground);
  background: #fff;
  text-decoration: none;
  min-width: 38px;
  text-align: center;
  transition: transform .14s ease, border-color .14s ease, color .14s ease;
}
.news-page-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}
.news-page-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.fixture-stat-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.fixture-stat-grid article {
  background: var(--surface-lowest);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 8px 22px rgba(28, 27, 27, 0.07);
}
.fixture-stat-grid strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  letter-spacing: -.03em;
  color: var(--primary);
  line-height: 1;
}
.fixture-stat-grid span {
  display: block;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .68rem;
  font-weight: 800;
  color: #6f6362;
}
.fixture-shell {
  margin-top: 14px;
  background: var(--surface-lowest);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(28, 27, 27, 0.09);
  overflow: hidden;
}
.fixture-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  background: #ebe7e7;
  border-bottom: 1px solid #e2dddd;
}
.fixture-search {
  display: grid;
  gap: 4px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
  color: #6f6362;
  width: min(480px, 100%);
}
.fixture-search input {
  border: 1px solid #d7cccc;
  border-radius: 10px;
  padding: 9px 11px;
  font: inherit;
  background: #fff;
  text-transform: none;
  letter-spacing: normal;
}
.fixture-search input:focus {
  outline: 2px solid #ffb3ac;
  border-color: var(--primary);
}
.fixture-actions {
  display: flex;
  gap: 8px;
}
.fixture-stream {
  display: grid;
  gap: 8px;
  padding: 10px;
}
.fixture-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  background: var(--surface);
  border: 1px solid #ede5e5;
  border-radius: 12px;
  padding: 10px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.fixture-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(175, 16, 26, 0.12);
}
.fixture-card.is-result {
  border-left: 4px solid var(--primary);
}
.fixture-date-tile {
  border-radius: 10px;
  background: linear-gradient(160deg, #1f1d1d, #322f2f);
  color: #fff;
  text-align: center;
  padding: 8px 6px;
}
.fixture-date-tile strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -.02em;
  line-height: 1;
}
.fixture-date-tile span {
  display: block;
  margin-top: 4px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.fixture-date-tile em {
  display: block;
  margin-top: 2px;
  font-size: .66rem;
  font-style: normal;
  color: #ffb3ac;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.fixture-body {
  min-width: 0;
}
.fixture-teams-line,
.fixture-result-line {
  display: grid;
  align-items: center;
  gap: 10px;
}
.fixture-teams-line {
  grid-template-columns: 1fr auto 1fr;
}
.fixture-result-line {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}
.fixture-team {
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.fixture-team.is-home {
  color: var(--primary);
}
.fixture-vs {
  font-size: .74rem;
  text-transform: uppercase;
  font-weight: 800;
  opacity: .48;
  letter-spacing: .08em;
}
.fixture-meta-line {
  margin-top: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .78rem;
  color: #5f5453;
}
.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f1e9e9;
  color: #6f4d4a;
  padding: 2px 8px;
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 800;
}
.result-chip {
  background: linear-gradient(135deg, var(--primary), var(--primary-container));
  color: #fff;
  border-radius: 9px;
  padding: 6px 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  letter-spacing: .05em;
}
.fixture-link {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  color: var(--primary);
  border: 1px solid #f1d5d2;
  border-radius: 8px;
  padding: 6px 10px;
}
.fixture-link:hover {
  background: #fff1f0;
}
.fixture-empty {
  border: 1px dashed #d8caca;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  color: #6f6362;
}
.team-hero {
  border-radius: 14px;
  overflow: hidden;
  min-height: 280px;
  position: relative;
  background: linear-gradient(140deg, rgba(12,12,12,.82), rgba(22,26,29,.55)), url("/legacy-media/img/Header-Roda46.jpg");
  background-size: cover;
  background-position: center;
}
.team-hero .inner {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #fff;
}
.team-chip {
  color: #ffb3ac;
}
.team-title {
  color: #fff;
  margin: 0;
}
.team-intro-section {
  margin-top: 18px;
}
.team-intro-head {
  align-items: flex-start;
}
.team-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 120px));
  gap: 12px;
  justify-content: end;
}
.team-stats strong {
  display: block;
  color: var(--primary);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1;
}
.team-stats span {
  display: block;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .68rem;
  color: #6f6362;
  margin-top: 3px;
  font-weight: 800;
}
.team-contacts {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}
.contact-card {
  background: var(--surface-lowest);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 12px 28px rgba(28, 27, 27, 0.08);
}
.contact-card .role {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--primary);
  font-weight: 800;
}
.contact-card h3 {
  margin: 6px 0 10px;
  font-family: "Space Grotesk", sans-serif;
}
.contact-card p {
  margin: 0 0 4px;
  font-size: .86rem;
}

.content-page-hero {
  background: var(--surface-lowest);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(28, 27, 27, 0.08);
}
.content-assets {
  background: var(--surface-lowest);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(28, 27, 27, 0.08);
  padding: 16px;
}
.content-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.content-image-card {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ece4e2;
  background: #fff;
}
.content-image-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
.content-image-card span {
  display: block;
  padding: 8px 10px;
  font-size: .8rem;
  color: #4d4443;
}
.content-download-list {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.content-download-item {
  background: #fff;
  border: 1px solid #ece4e2;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.content-download-item strong {
  font-size: .9rem;
}
.content-download-item span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #7a6b6a;
}
.teamhub-layout {
  display: grid;
  gap: 16px;
  align-items: start;
}
.teamhub-side {
  background: var(--surface-lowest);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(28, 27, 27, 0.08);
  padding: 14px;
  position: sticky;
  top: 20px;
}
.teamhub-side h2,
.teamhub-side h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.02em;
  color: #2f2524;
}
.teamhub-side h3 {
  margin-top: 14px;
  font-size: .92rem;
  color: #5d4d4b;
}
.teamhub-list {
  display: grid;
  gap: 6px;
}
.teamhub-list a {
  display: block;
  border: 1px solid #ece4e2;
  border-radius: 9px;
  padding: 9px 10px;
  font-size: .84rem;
  font-weight: 700;
  color: #443a39;
  background: #fff;
  transition: all .16s ease;
}
.teamhub-list a:hover {
  border-color: #ddcbc8;
  transform: translateY(-1px);
}
.teamhub-list a.active {
  color: #fff;
  background: linear-gradient(140deg, #ca131f, #8f0e17);
  border-color: transparent;
}
.teamhub-sublist a {
  font-weight: 600;
}
.teamhub-main {
  background: var(--surface-lowest);
  border-top: 3px solid rgba(180, 15, 27, 0.8);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(22, 22, 22, 0.08);
  padding: 18px;
}
.teamhub-main-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}
.teamhub-main-head h2 {
  margin: 6px 0 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.02em;
  color: #201818;
}
.teamhub-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.teamhub-meta span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #6a5a58;
}
.teamhub-meta a {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: #f8f2f1;
  color: #7f181f;
  border: 1px solid #efdcda;
  font-size: .74rem;
  font-weight: 700;
}
.teamhub-team-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
}
.teamhub-team-filter label {
  font-size: .69rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #756665;
  font-weight: 800;
}
.teamhub-team-filter select {
  border: 1px solid #dfd0ce;
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff;
  font: inherit;
  font-size: .82rem;
  min-width: 210px;
}
.teamhub-intro {
  margin-top: 0;
  color: #5d4d4b;
}
.teamhub-main .html-content {
  border-top: 1px solid #eee4e3;
  margin-top: 12px;
  padding-top: 12px;
  overflow-wrap: anywhere;
}
.teamhub-main .html-content img {
  width: min(210px, 100%) !important;
  max-width: 210px !important;
  max-height: 280px !important;
  height: auto !important;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #ebdede;
  margin: 6px !important;
  float: none !important;
  display: inline-block;
  vertical-align: top;
  background: #fff;
  box-shadow: 0 8px 18px rgba(18, 12, 12, 0.08);
}
.teamhub-main .html-content p:has(img) {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}
.teamhub-main .html-content p:has(img) img {
  margin: 0 !important;
}
.teamhub-main .html-content p {
  line-height: 1.6;
}
.teamhub-main .html-content h2,
.teamhub-main .html-content h3 {
  font-family: "Space Grotesk", sans-serif;
  color: #8d121b;
  letter-spacing: -.01em;
}
.teamhub-main .html-content table {
  width: 100%;
  border-collapse: collapse;
}
.teamhub-main .html-content td,
.teamhub-main .html-content th {
  border: 1px solid #eadfdd;
  padding: 8px;
}
.teamhub-fixtures {
  margin-top: 20px;
}
.teamhub-assets {
  margin-top: 20px;
}
.teamhub-summary-grid {
  margin: 10px 0 16px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.teamhub-summary-grid article {
  border: 1px solid #ece4e2;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
}
.teamhub-summary-grid strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  color: var(--primary);
}
.teamhub-summary-grid span {
  display: block;
  margin-top: 3px;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #6f6362;
}
.teamhub-fixture-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 12px;
}
.teamhub-standings {
  margin: 6px 0 16px;
}
.teamhub-standings h4 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.01em;
}
.teamhub-standings-table-wrap {
  border: 1px solid #ece4e2;
  border-radius: 12px;
  overflow-x: auto;
  background: #fff;
}
.teamhub-standings-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.teamhub-standings-table th,
.teamhub-standings-table td {
  padding: 8px 10px;
  text-align: center;
  border-bottom: 1px solid #f1eceb;
  font-size: .8rem;
}
.teamhub-standings-table th:nth-child(2),
.teamhub-standings-table td:nth-child(2) {
  text-align: left;
  min-width: 170px;
}
.teamhub-standings-table thead th {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #6c5e5d;
  background: #faf7f6;
}
.teamhub-standings-table tbody tr.is-primary {
  background: rgba(196, 20, 34, 0.08);
}
.teamhub-standings-table tbody tr.is-primary td:nth-child(2) {
  font-weight: 800;
  color: #7d121a;
}
.teamhub-standings-table tbody tr:last-child td {
  border-bottom: 0;
}
.teamhub-fixture-side {
  display: grid;
  gap: 10px;
  align-content: start;
}
.teamhub-side-panel {
  border: 1px solid #ece4e2;
  border-radius: 12px;
  background: #fff;
  padding: 12px;
}
.teamhub-side-panel h4 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: .98rem;
  letter-spacing: -.01em;
}
.teamhub-side-panel p {
  margin: 0;
  color: #6c5e5c;
  font-size: .86rem;
}
.teamhub-side-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.teamhub-side-panel li {
  border: 1px solid #efe7e5;
  border-radius: 10px;
  padding: 8px 9px;
  display: grid;
  gap: 4px;
}
.teamhub-side-panel li strong {
  font-size: .78rem;
  color: #a0141f;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.teamhub-side-panel li span {
  font-size: .82rem;
  color: #413837;
}

.error-shell {
  background: var(--surface-lowest);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(28, 27, 27, 0.08);
  max-width: 700px;
}
.error-shell h1 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.02em;
}
.error-shell p {
  margin: 0 0 14px;
  color: #635a58;
}

.footer {
    margin-left: -24px;
    margin-right: -24px;
    margin-bottom: -24px;
    margin-top: 48px;
    padding: 36px 0;
    background: var(--surface-low);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}
.footer h4, .footer h5 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--primary);
}
.footer a { display: block; margin-bottom: 8px; font-size: .92rem; }
.footer-meta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(143, 111, 108, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: .74rem;
  color: #6f6362;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 980px) {
  .topbar-inner {
    padding-left: 300px;
  }
  .brand-logo {
    height: 142px;
  }
  .sponsor-ribbon-inner {
    padding-left: 296px;
  }
  .page-shell { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .mobile-nav { display: block; }
  .mobile-context-nav { display: block; }
  .match-layout { grid-template-columns: 1fr; }
  .teamhub-layout { grid-template-columns: 1fr; }
  .teamhub-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .teamhub-fixture-layout {
    grid-template-columns: 1fr;
  }
  .teamhub-side {
    position: static;
  }
  .hero-side-slides {
    position: static;
    margin: 12px;
    width: auto;
  }
  .fixture-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .sponsor-featured-grid {
    grid-template-columns: 1fr;
  }
  .sponsor-featured-item {
    border-right: 0;
    border-bottom: 1px solid #d8cccc;
  }
  .sponsor-bottom-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .main-nav { display: none; }
  .topbar-secondary {
    display: none;
  }
  .topbar-inner {
    min-height: 72px;
    padding-left: 0;
    justify-content: flex-start;
  }
  .brand {
    position: static;
    gap: 8px;
  }
  .brand-logo {
    height: 46px;
    filter: drop-shadow(0 4px 10px rgba(13, 8, 8, .24));
  }
  .brand-copy {
    padding-top: 0;
  }
  .brand-mark {
    font-size: 1.12rem;
  }
  .brand-sub {
    display: none;
  }
  .sponsor-ribbon-inner {
    min-height: 52px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 24px;
  }
  .sponsor-ribbon-label {
    display: none;
  }
  .sponsor-ribbon-item img {
    max-height: 34px;
    max-width: 170px;
  }
  [data-sponsor="livestreaming"] img {
    max-height: 34px;
  }
  .sponsor-showcase {
    margin-top: 14px;
  }
  .sponsor-bottom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sponsor-featured-item h3 {
    font-size: .96rem;
  }
  .news-grid { grid-template-columns: 1fr; }
  .content { padding: 14px; }
  .hero-content { padding: 24px; }
  .hero-slider-nav {
    left: 14px;
    right: 14px;
    bottom: 12px;
  }
  .hero-slider-dot {
    width: 28px;
  }
  .mobile-context-nav-inner {
    gap: 6px;
  }
  .mobile-context-group summary {
    padding: 9px 10px;
  }
  .teamhub-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .teamhub-team-filter {
    margin-left: 0;
    width: 100%;
  }
  .teamhub-team-filter select {
    min-width: 0;
    width: 100%;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { flex-direction: column; }
  .team-stats { justify-content: start; }
  .fixture-card {
    grid-template-columns: 1fr;
  }
  .fixture-link {
    justify-self: start;
  }
  .news-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-page-size-form {
    width: 100%;
  }
  .news-page-size-form label {
    width: 100%;
    justify-content: space-between;
  }
}

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