:root {
  --ink: #101114;
  --ink-2: #1b1d22;
  --paper: #f3f4ef;
  --card: #ffffff;
  --muted: #666a73;
  --line: #d9dbd4;
  --red: #d72638;
  --blue: #1769aa;
  --green: #087e5a;
  --yellow: #f0b429;
  --max: 1500px;
  --shadow: 0 20px 60px rgba(16, 17, 20, 0.14);
  --shadow-tight: 0 10px 26px rgba(16, 17, 20, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 17, 20, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(16, 17, 20, 0.028) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  font-family: "Commissioner", "Segoe UI", sans-serif;
}

body.has-catfish-ad {
  padding-bottom: clamp(96px, 12vw, 140px);
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(220px, 330px);
  gap: 16px;
  align-items: center;
  width: min(var(--max), calc(100% - 24px));
  min-height: 74px;
  margin: 12px auto 0;
  padding: 10px;
  color: #fff;
  background: rgba(16, 17, 20, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow-tight);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 205px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  font-family: "Russo One", sans-serif;
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.16);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Russo One", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.primary-nav {
  display: flex;
  gap: 4px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.primary-nav::-webkit-scrollbar {
  display: none;
}

.nav-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
}

.nav-link--match {
  color: #ffd166;
}

.header-search label,
.search-panel label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  color: var(--muted);
  background: #fff;
  border: 1px solid transparent;
  border-radius: 8px;
}

.header-search input,
.search-panel input {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

main {
  width: min(var(--max), calc(100% - 24px));
  margin: 14px auto 44px;
}

.site-ad {
  width: min(var(--max), calc(100% - 24px));
  margin: 12px auto 0;
}

.site-ad a,
.sponsor-card a,
.catfish-ad a {
  display: block;
}

.site-ad--header a {
  aspect-ratio: 1356 / 175;
  overflow: hidden;
  background: #0b0c0f;
  border: 1px solid rgba(16, 17, 20, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow-tight);
}

.site-ad--header picture,
.site-ad--header img,
.sponsor-card img,
.catfish-ad img {
  display: block;
  width: 100%;
}

.site-ad--header picture {
  height: 100%;
}

.site-ad--header img {
  height: 100%;
  object-fit: cover;
}

.sponsor-card {
  justify-self: center;
  width: 100%;
  max-width: 529px;
  overflow: hidden;
  background: #ffc400;
  border: 1px solid rgba(16, 17, 20, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow-tight);
}

.sponsor-card img {
  height: auto;
}

.catfish-ad {
  position: fixed;
  bottom: max(14px, env(safe-area-inset-bottom));
  right: max(16px, calc((100vw - var(--max)) / 2 + 16px));
  z-index: 80;
  width: min(920px, calc(100% - 32px));
  overflow: visible;
}

.catfish-ad img {
  height: 100%;
  object-fit: contain;
}

.catfish-ad a {
  aspect-ratio: 1440 / 184;
  overflow: hidden;
  background: #ffc400;
  border: 1px solid rgba(16, 17, 20, 0.2);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

.catfish-ad__close {
  position: absolute;
  top: -10px;
  right: -10px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  color: #fff;
  background: rgba(16, 17, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
}

.catfish-ad__close:hover {
  background: rgba(16, 17, 20, 0.94);
}

.catfish-ad__close i {
  width: 18px;
  height: 18px;
}

.scorebar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
  padding: 8px;
  color: #fff;
  background: #0b0c0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-tight);
}

.scorebar__label,
.scorebar__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: #ffd166;
  font-weight: 900;
  white-space: nowrap;
}

.scorebar__track {
  display: flex;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.score-chip {
  flex: 0 0 245px;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  background: #181a20;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.score-chip span,
.score-chip small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.score-chip strong {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  font-size: 0.88rem;
}

.score-chip b {
  color: #ffd166;
}

.breaking-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 54px;
  margin-top: 12px;
  padding: 8px 12px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(215, 38, 56, 0.42), transparent 36%),
    #1b1d22;
  border-radius: 8px;
  overflow: hidden;
}

.breaking-strip > span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #ffd166;
  font-weight: 900;
  white-space: nowrap;
}

.breaking-strip div {
  display: flex;
  gap: 18px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.breaking-strip div::-webkit-scrollbar {
  display: none;
}

.breaking-strip a {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.sports-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.85fr) minmax(300px, 0.7fr);
  gap: 14px;
  margin-top: 14px;
}

.sports-dashboard--hub {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr) minmax(300px, 0.7fr);
}

.editorial-briefing {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr) minmax(280px, 0.72fr);
  gap: 14px;
  margin-top: 14px;
}

.briefing-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.briefing-card > span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--category-accent, var(--red));
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.briefing-card h2 {
  margin: 0;
  overflow-wrap: anywhere;
  font-family: "Russo One", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.briefing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.briefing-card--focus {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(215, 38, 56, 0.52), transparent 42%),
    var(--ink);
  border-color: rgba(255, 255, 255, 0.12);
}

.briefing-card--focus > span,
.briefing-card--focus p {
  color: rgba(255, 255, 255, 0.78);
}

.briefing-list {
  display: grid;
  gap: 8px;
}

.briefing-list a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.briefing-list b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-family: "Russo One", sans-serif;
}

.briefing-list strong {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.2;
}

.briefing-list small,
.briefing-match small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.briefing-match {
  display: grid;
  gap: 6px;
  padding: 12px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.briefing-match strong {
  overflow-wrap: anywhere;
  font-family: "Russo One", sans-serif;
  line-height: 1.08;
}

.briefing-match b {
  color: #ffd166;
}

.briefing-match small {
  grid-column: auto;
  color: rgba(255, 255, 255, 0.72);
}

.briefing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.briefing-tags a {
  min-height: 30px;
  padding: 5px 9px;
  background: #f7f8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 900;
}

	.lead-story,
	.headline-panel,
	.live-rail,
		.rail-card,
		.news-card,
		.hub-lead-card,
		.hub-story-tile,
		.hub-feed,
		.page-hero,
		.sport-hub-hero,
		.fixture-hero,
	.discussion-box,
	.activity-desk,
	.status-panel,
	.empty-panel {
	  background: var(--card);
	  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.lead-story {
  display: grid;
  grid-template-rows: minmax(320px, 44vh) auto;
  overflow: hidden;
}

.lead-story__image {
  min-height: 0;
}

.article-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 190px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(215, 38, 56, 0.14), transparent),
    #dfe2dc;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

a:hover .article-image img {
  transform: scale(1.035);
}

.article-image--card {
  aspect-ratio: 16 / 10;
}

.article-image--wide {
  min-height: 320px;
  aspect-ratio: 16 / 7;
  border-radius: 8px;
}

.article-image--thumb {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.article-image.is-empty::after {
  content: "NewsBK";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(16, 17, 20, 0.25);
  font-family: "Russo One", sans-serif;
}

.lead-story__copy {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 18px;
}

.lead-story h1,
.article-hero h1,
.page-hero h1,
.fixture-hero h1,
.sport-hub-hero h1 {
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-family: "Russo One", sans-serif;
  letter-spacing: 0;
  line-height: 0.96;
}

.lead-story h1 {
  font-size: clamp(2rem, 4vw, 4.3rem);
}

.lead-story p,
.article-hero p,
.page-hero p,
.fixture-hero p,
.sport-hub-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.lead-story__meta,
.card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
}

.category-pill {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  color: #fff;
  background: var(--category-accent, var(--red));
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 900;
}

.headline-panel,
.live-rail,
.stack-rail {
  min-width: 0;
}

.headline-panel,
.live-rail,
.rail-card {
  padding: 12px;
}

.section-title {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.section-title h1,
.section-title h2 {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: "Russo One", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.section-title a,
.section-title span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.headline-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.headline-row span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--category-accent, var(--red));
  border-radius: 8px;
  font-weight: 900;
}

.headline-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 1rem;
  line-height: 1.22;
}

.headline-row small {
  color: var(--muted);
}

.fixture-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(120px, 0.45fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.fixture-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-tight);
}

.fixture-card--rail {
  grid-template-columns: 62px 1fr;
  margin-top: 8px;
}

.fixture-card--rail .fixture-card__meta {
  grid-column: 1 / -1;
}

.fixture-card__time,
.fixture-card__teams,
.fixture-card__meta {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.fixture-card__time strong {
  font-size: 1.05rem;
}

.fixture-card__time small,
.fixture-card__meta small,
.fixture-card__teams span {
  color: var(--muted);
  font-size: 0.8rem;
}

.fixture-card__teams strong,
.fixture-card__teams span,
.fixture-card__meta b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fixture-card__teams em {
  justify-self: start;
  padding: 2px 7px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
  font-style: normal;
  font-weight: 900;
}

.status-badge {
  justify-self: start;
  padding: 2px 7px;
  color: #fff;
  background: var(--blue);
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-badge--live {
  background: var(--red);
}

.status-badge--finished {
  background: var(--green);
}

.telegram-card,
.watch-card {
  display: grid;
  gap: 9px;
  margin-top: 10px;
  padding: 14px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 105, 170, 0.45), transparent),
    #101114;
  border-radius: 8px;
}

.telegram-card span,
.watch-card span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #ffd166;
  font-weight: 900;
}

.telegram-card a,
.watch-card a {
  justify-self: start;
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.watch-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.watch-link-list {
  display: grid;
  gap: 8px;
}

.watch-link {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 2px 8px;
  align-items: center;
  justify-self: stretch;
  padding: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  text-decoration: none;
}

.watch-link span {
  grid-row: span 2;
}

.watch-link strong,
.watch-link small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.watch-link small {
  color: rgba(255, 255, 255, 0.62);
}

.media-layout,
.matches-layout,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 14px;
  margin-top: 14px;
}

.news-feed,
.matches-list {
  min-width: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.news-card {
  overflow: hidden;
}

.news-card__body {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 14px;
}

.news-card h3 {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 1.08rem;
  line-height: 1.18;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.46;
}

.news-card--text-only {
  min-height: 220px;
}

.news-card--text-only .news-card__body {
  position: relative;
  align-content: start;
  min-height: 100%;
  padding-top: 20px;
}

.news-card--text-only .news-card__body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 14px;
  left: 14px;
  height: 5px;
  background: var(--category-accent, var(--red));
  border-radius: 0 0 5px 5px;
}

.news-card--wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.news-card--wide .article-image {
  min-height: 100%;
}

.news-list {
  display: grid;
  gap: 10px;
}

.home-river {
  display: grid;
  gap: 10px;
}

.news-list-item {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  min-height: 150px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.news-list-item--text {
  grid-template-columns: 8px minmax(0, 1fr);
}

.news-list-item__media,
.news-list-item__media .article-image {
  height: 100%;
  min-height: 0;
}

.news-list-item__marker {
  display: grid;
  place-items: center;
  min-height: 100%;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    var(--category-accent, var(--red));
}

.news-list-item--text .news-list-item__marker {
  min-width: 8px;
}

.news-list-item--text .news-list-item__marker span {
  display: none;
}

.news-list-item__marker span {
  max-width: 130px;
  padding: 8px;
  font-family: "Russo One", sans-serif;
  text-align: center;
  overflow-wrap: anywhere;
}

.news-list-item__copy {
  display: grid;
  gap: 9px;
  align-content: center;
  min-width: 0;
  padding: 14px 16px 14px 0;
}

.news-list-item--text .news-list-item__copy {
  padding-left: 8px;
}

.news-list-item h3 {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: "Russo One", sans-serif;
  font-size: clamp(1.12rem, 1.4vw, 1.42rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.news-list-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.category-desk {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.66fr) minmax(280px, 0.54fr);
  gap: 14px;
  margin-top: 14px;
  align-items: stretch;
}

.hub-lead-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.36fr) minmax(0, 0.64fr);
  min-height: 380px;
  overflow: hidden;
}

.hub-lead-card__media,
.hub-lead-card__media .article-image {
  min-height: 0;
  height: 100%;
}

.hub-lead-card__copy {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 16px;
}

.hub-kicker {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-self: start;
  color: var(--category-accent, var(--red));
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hub-lead-card h2,
.hub-story-tile h3,
.hub-news-row h3 {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: "Russo One", sans-serif;
  letter-spacing: 0;
}

.hub-lead-card h2 {
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
  line-height: 1.04;
}

.hub-lead-card p,
.hub-news-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.headline-panel--desk,
.live-rail--desk {
  min-height: 100%;
}

.hub-spotlight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.hub-story-tile {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  min-height: 150px;
  overflow: hidden;
  background: #fff;
}

.hub-story-tile > a,
.hub-story-tile .article-image {
  height: 100%;
}

.hub-story-tile > div {
  display: grid;
  gap: 8px;
  align-content: center;
  min-width: 0;
  padding: 14px;
}

.hub-story-tile span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: var(--category-accent, var(--red));
  border-radius: 8px;
  font-weight: 900;
}

.hub-story-tile h3 {
  font-size: 1.04rem;
  line-height: 1.16;
}

.hub-story-tile small {
  color: var(--muted);
}

.media-layout--hub {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 370px);
  align-items: start;
}

.hub-feed {
  padding: 14px;
}

.hub-news-list {
  display: grid;
  gap: 0;
}

.match-news-list {
  display: grid;
  gap: 0;
  padding: 0 14px 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hub-news-row {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.hub-news-row__marker {
  width: 10px;
  min-height: 100%;
  background: var(--category-accent, var(--red));
  border-radius: 8px;
  opacity: 0.88;
}

.hub-news-row h3 {
  font-size: 1.18rem;
  line-height: 1.16;
}

.hub-news-row p {
  margin-top: 7px;
}

.hub-news-row .card-meta {
  margin-top: 8px;
}

.rail-card--watch {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(215, 38, 56, 0.34), transparent 48%),
    #101114;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.rail-card--watch .section-title h2,
.rail-card--watch .section-title a {
  color: #fff;
}

.stack-rail {
  display: grid;
  gap: 14px;
  align-content: start;
}

.compact-news {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.compact-news__index {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--category-accent, var(--red));
  border-radius: 8px;
  font-weight: 900;
}

.compact-news__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.compact-news strong {
  line-height: 1.18;
}

.compact-news small {
  color: var(--muted);
  font-size: 0.8rem;
}

.activity-desk {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 12px;
}

.activity-feed {
  display: grid;
  gap: 8px;
}

.activity-feed--wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.activity-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-width: 0;
  padding: 10px;
  background: #f7f8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.activity-item__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.activity-item--comment .activity-item__icon,
.activity-item--reaction .activity-item__icon {
  background: var(--red);
}

.activity-item--poll .activity-item__icon {
  background: var(--blue);
}

.activity-item--broadcast .activity-item__icon {
  background: var(--green);
}

.activity-item__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.activity-item strong {
  overflow-wrap: anywhere;
  line-height: 1.18;
}

.activity-item small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.category-hubs,
.tag-cloud {
  margin-top: 14px;
  padding: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.hub-card {
  position: relative;
  display: grid;
  min-height: 190px;
  align-content: end;
  padding: 12px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  overflow: hidden;
}

.hub-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 12%, rgba(0, 0, 0, 0.78) 100%);
}

.hub-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hub-card span,
.hub-card strong {
  position: relative;
  z-index: 1;
}

.hub-card span {
  justify-self: start;
  margin-bottom: 7px;
  padding: 4px 8px;
  background: var(--category-accent, var(--red));
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
}

.hub-card strong {
  font-size: 0.92rem;
  line-height: 1.18;
}

.tag-cloud div,
.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topics-board {
  margin-top: 14px;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.topic-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 132px;
  padding: 16px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(215, 38, 56, 0.84), transparent 55%),
    #101114;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.topic-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 116px;
  height: 116px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.08;
}

.topic-card span {
  color: #ffd166;
  font-weight: 900;
}

.topic-card strong {
  position: relative;
  z-index: 1;
  overflow-wrap: anywhere;
  font-family: "Russo One", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.topic-card small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.topic-dossier {
  align-content: end;
}

.topic-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.topic-stat-grid a,
.topic-stat-grid div {
  display: grid;
  gap: 4px;
  min-height: 74px;
  padding: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.topic-stat-grid span {
  color: #ffd166;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.topic-stat-grid strong {
  overflow-wrap: anywhere;
  font-family: "Russo One", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}

.topic-lead {
  margin-top: 14px;
}

.topic-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-chip-list a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  color: var(--ink);
  background: #f7f8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.topic-chip-list small {
  color: var(--red);
}

.tag-cloud--compact {
  margin-top: 18px;
}

.tag-cloud a,
.quick-tags a,
.tag-list a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.tag-cloud small {
  color: var(--red);
}

.page-hero,
.fixture-hero,
.sport-hub-hero {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 5vw, 56px);
  overflow: hidden;
}

.page-hero--dark,
.fixture-hero {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(215, 38, 56, 0.48), transparent 42%),
    #101114;
  border-color: rgba(255, 255, 255, 0.12);
}

.page-hero span,
.fixture-hero > span,
.sport-hub-hero span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero--dark span,
.fixture-hero > span {
  color: #ffd166;
}

.page-hero h1,
.fixture-hero h1,
.sport-hub-hero h1 {
  font-size: clamp(2.2rem, 5vw, 5rem);
}

.fixture-hero h1 b {
  color: #ffd166;
}

.page-hero--dark p,
.fixture-hero p {
  color: rgba(255, 255, 255, 0.72);
}

.sport-hub-hero {
  position: relative;
  min-height: 270px;
  color: #fff;
  background: var(--ink);
}

.sport-hub-hero--editorial {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
  align-items: end;
}

.sport-hub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.52) 45%, rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 58%);
}

.sport-hub-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sport-hub-hero__copy,
.sport-hub-hero__stats {
  position: relative;
  z-index: 1;
}

.sport-hub-hero__copy {
  max-width: 720px;
}

.hub-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hub-hero-actions a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.sport-hub-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.sport-hub-hero__stats span {
  display: grid;
  gap: 3px;
  min-height: 68px;
  align-content: center;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  text-transform: none;
}

.sport-hub-hero__stats strong {
  font-family: "Russo One", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.sport-hub-hero__stats small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 800;
}

.hub-tabs,
.date-tabs,
.filter-bar,
.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  padding: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hub-tabs a,
.date-tabs a,
.filter-bar button,
.pager a,
.pager strong {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  background: #f7f8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.date-tabs a.is-active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(160px, 220px) minmax(150px, 190px) auto;
}

.filter-bar input,
.filter-bar select,
.comment-form input,
.comment-form textarea {
  min-height: 42px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
}

.filter-bar button,
.search-panel button,
.comment-form button {
  min-height: 42px;
  padding: 0 13px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
}

.pager {
  justify-content: space-between;
}

.archive-grid,
.broadcast-grid,
.status-grid,
.entity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.archive-section {
  margin-top: 16px;
}

.archive-section .section-title {
  padding: 0 2px;
}

.broadcast-board {
  margin-top: 14px;
}

.status-panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr) minmax(320px, 0.8fr);
  gap: 14px;
  margin-top: 14px;
}

.status-panel {
  min-width: 0;
  padding: 12px;
}

.status-panel dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.status-panel dl div {
  display: grid;
  grid-template-columns: minmax(110px, 0.45fr) minmax(0, 1fr);
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
}

.status-panel dt {
  color: var(--muted);
  font-weight: 900;
}

.status-panel dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.status-error {
  margin: 12px 0 0;
  padding: 10px;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
}

.archive-day,
.broadcast-card,
.status-grid div,
.entity-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.archive-day {
  position: relative;
  overflow: hidden;
}

.archive-day::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--red);
}

.archive-day--month::after {
  background: var(--blue);
}

.archive-day--year::after {
  background: var(--green);
}

.archive-day span,
.broadcast-card span,
.status-grid span,
.entity-card span {
  color: var(--red);
  font-weight: 900;
}

.archive-day strong,
.broadcast-card strong,
.status-grid strong,
.entity-card strong {
  font-size: 1.25rem;
}

.archive-day small,
.broadcast-card small,
.entity-card small {
  color: var(--muted);
  line-height: 1.4;
}

.broadcast-card {
  position: relative;
  overflow: hidden;
}

.broadcast-card--managed {
  border-top: 4px solid var(--red);
}

.broadcast-card em {
  align-self: end;
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.broadcast-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 116px;
  height: 116px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.08;
}

.entity-hero {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 6vw, 70px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(215, 38, 56, 0.56), transparent 36%),
    linear-gradient(90deg, #101114, #20232b);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow-tight);
}

.entity-hero span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #ffd166;
  font-weight: 900;
  text-transform: uppercase;
}

.entity-hero h1 {
  margin: 0;
  font-family: "Russo One", sans-serif;
  font-size: clamp(2.4rem, 6vw, 6rem);
  line-height: 0.94;
}

.entity-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.entity-card {
  position: relative;
  overflow: hidden;
}

.entity-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -36px;
  width: 110px;
  height: 110px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.08;
}

.hp-field {
  display: none !important;
}

.admin-login,
.admin-shell {
  display: grid;
  gap: 16px;
}

.admin-login {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  align-items: stretch;
  min-height: 58vh;
  padding: clamp(22px, 5vw, 58px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(215, 38, 56, 0.58), transparent 34%),
    #101114;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow-tight);
}

.admin-login > div,
.admin-login form {
  display: grid;
  align-content: center;
  gap: 14px;
}

.admin-login span,
.admin-topbar span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #ffd166;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-login h1,
.admin-topbar h1 {
  margin: 0;
  font-family: "Russo One", sans-serif;
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 0.94;
}

.admin-login p,
.admin-topbar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.admin-login label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.admin-login input {
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 8px;
  outline: 0;
}

.admin-login button,
.admin-button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  color: #fff;
  background: var(--red);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
}

.admin-button--ghost {
  color: var(--ink);
  background: #f7f8f4;
  border: 1px solid var(--line);
}

.admin-button--danger {
  background: #101114;
}

.admin-status {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  margin-left: 6px;
  padding: 0 7px;
  color: var(--muted);
  background: #f7f8f4;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "Commissioner", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  vertical-align: middle;
}

.admin-status--reported {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.form-error,
.admin-notice {
  padding: 10px 12px;
  color: #fff;
  background: rgba(215, 38, 56, 0.78);
  border-radius: 8px;
}

.admin-topbar,
.admin-panel,
.admin-actions,
.admin-stats div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-topbar {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(18px, 4vw, 38px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(215, 38, 56, 0.5), transparent 38%),
    #101114;
  border-color: rgba(255, 255, 255, 0.12);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 10px;
}

.admin-stats div {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.admin-stats span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-stats strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 1.4rem;
}

.admin-actions {
  padding: 12px;
}

.admin-action-row,
.admin-row-actions,
.admin-redirect-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.admin-stack-form {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  padding: 12px;
  background: #f7f8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-stack-form label {
  display: grid;
  gap: 6px;
}

.admin-stack-form label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-stack-form input,
.admin-stack-form select,
.admin-stack-form textarea {
  width: 100%;
  min-height: 40px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-stack-form textarea {
  min-height: 84px;
  padding-top: 10px;
  resize: vertical;
}

.admin-redirect-form {
  margin-bottom: 12px;
}

.admin-redirect-form input,
.admin-redirect-form select {
  min-height: 40px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-redirect-form input {
  flex: 1 1 220px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 14px;
}

.admin-grid--bottom {
  align-items: start;
}

.admin-panel {
  min-width: 0;
  padding: 12px;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-comment,
.admin-article,
.admin-redirect,
.admin-poll,
.admin-broadcast {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: #f7f8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-comment {
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-poll,
.admin-broadcast {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.admin-redirect {
  grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr) auto;
  align-items: center;
}

.admin-redirect code {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-redirect span {
  justify-self: start;
  padding: 3px 8px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
  font-weight: 900;
}

.admin-comment p {
  margin: 8px 0 0;
  line-height: 1.48;
}

.admin-comment small,
.admin-article small,
.admin-poll small,
.admin-broadcast small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.admin-json {
  max-height: 220px;
  overflow: auto;
  padding: 12px;
  color: #fff;
  background: #101114;
  border-radius: 8px;
}

.admin-inline-form {
  margin: 0;
}

.admin-attention-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-attention-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  color: #7a1a24;
  background: #fff3f4;
  border: 1px solid rgba(215, 38, 56, 0.22);
  border-radius: 8px;
  font-weight: 800;
}

.admin-panel--media {
  display: grid;
  gap: 12px;
}

.admin-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 12px;
  align-items: start;
}

.section-title--mini {
  margin: 2px 0 8px;
}

.section-title--mini h3 {
  margin: 0;
  font-family: "Commissioner", "Segoe UI", sans-serif;
  font-size: 0.96rem;
  font-weight: 900;
}

.admin-allowlist-row,
.admin-takedown {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 12px;
  background: #f7f8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-allowlist-row.is-disabled {
  opacity: 0.72;
}

.admin-allowlist-row--readonly {
  align-items: center;
}

.admin-allowlist-edit {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.admin-allowlist-head,
.admin-allowlist-notes,
.admin-allowlist-edit .admin-button {
  grid-column: 1 / -1;
}

.admin-allowlist-head {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.admin-allowlist-edit label,
.admin-check {
  display: grid;
  gap: 6px;
}

.admin-check {
  display: flex;
  align-items: center;
}

.admin-allowlist-edit label span,
.admin-check span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-allowlist-edit input,
.admin-allowlist-edit select,
.admin-allowlist-edit textarea {
  width: 100%;
  min-height: 38px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-allowlist-edit textarea {
  min-height: 72px;
  padding-top: 10px;
  resize: vertical;
}

.admin-check input,
.admin-stack-form .admin-check input {
  width: auto;
  min-height: 0;
  margin: 0;
}

.admin-allowlist-row small,
.admin-takedown small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.admin-takedown code {
  display: block;
  max-width: 100%;
  margin-top: 7px;
  overflow: hidden;
  color: #34363b;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.match-day {
  margin-bottom: 14px;
  padding: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.match-state-grid,
.info-grid,
.article-context-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.match-state-grid > *,
.info-panel,
.article-context-grid article {
  min-width: 0;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.match-state-grid span,
.info-panel span,
.article-context-grid span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.match-state-grid strong {
  display: block;
  margin: 5px 0;
  font-size: 1.7rem;
}

.match-state-grid small,
.info-panel p,
.article-context-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.share-row a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 900;
}

.fixture-list {
  display: grid;
  gap: 8px;
}

.fixture-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fixture-actions a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 900;
}

.article-page {
  margin-top: 14px;
}

.article-hero {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto 14px;
  padding: clamp(18px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-hero--feature {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  max-width: none;
  min-height: 430px;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(215, 38, 56, 0.48), transparent 38%),
    linear-gradient(180deg, rgba(240, 180, 41, 0.08), transparent 42%),
    var(--ink);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-tight);
}

.article-hero__copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.article-hero--feature p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
}

.article-meta--feature {
  color: rgba(255, 255, 255, 0.74);
}

.article-meta--feature a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 4px;
}

.article-hero__panel {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.article-hero__panel > span {
  color: #ffd166;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-hero__panel dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.article-hero__panel div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.article-hero__panel dt,
.article-hero__panel dd {
  margin: 0;
  min-width: 0;
}

.article-hero__panel dt {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

.article-hero__panel dd {
  overflow-wrap: anywhere;
  font-weight: 900;
}

.article-hero__panel a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: var(--ink);
  background: #ffd166;
  border-radius: 8px;
  font-weight: 900;
}

.article-hero h1 {
  font-size: clamp(2rem, 4.5vw, 4.6rem);
}

.article-feature-media {
  margin-bottom: 14px;
}

.article-feature-media .article-image--wide {
  min-height: min(520px, 52vw);
}

.article-feature-media .image-credit {
  margin: 7px 0 0;
}

.article-layout--feature {
  align-items: start;
}

.article-main-column {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.article-brief {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--category-accent, var(--red));
  border-radius: 8px;
}

.article-brief > span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--category-accent, var(--red));
  font-weight: 900;
  text-transform: uppercase;
}

.article-brief ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.article-brief li {
  position: relative;
  min-width: 0;
  padding-left: 18px;
  line-height: 1.55;
}

.article-brief li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--category-accent, var(--red));
  border-radius: 50%;
}

.article-brief a {
  color: var(--category-accent, var(--red));
  font-weight: 900;
}

.article-body {
  min-width: 0;
  padding: clamp(18px, 3vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-body p {
  margin: 0 0 1.05rem;
  font-size: 1.08rem;
  line-height: 1.72;
}

.article-body--feature {
  border-top: 6px solid var(--category-accent, var(--red));
}

.article-aside {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-sticky-stack {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 12px;
  min-width: 0;
}

.article-next-panel {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.article-next-panel span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.article-next-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 10px;
  background: #f7f8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.discussion-box {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 14px;
}

.reaction-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reaction-row button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  color: var(--ink);
  background: #f7f8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.reaction-row button.is-active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.poll-stack,
.poll-options {
  display: grid;
  gap: 8px;
}

.poll-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: #f7f8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.poll-card__head {
  display: grid;
  gap: 5px;
}

.poll-card__head span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.poll-card__head strong {
  font-size: 1.08rem;
}

.poll-card__head small {
  color: var(--muted);
}

.poll-option {
  margin: 0;
}

.poll-option button {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  width: 100%;
  min-height: 42px;
  padding: 0 11px;
  overflow: hidden;
  color: var(--ink);
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.poll-option__bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: rgba(215, 38, 56, 0.14);
  transition: width 220ms ease;
}

.poll-option__label,
.poll-option__count {
  position: relative;
  z-index: 1;
}

.poll-option__label {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.poll-option__count {
  padding: 3px 8px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
}

.poll-option.is-selected button {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(215, 38, 56, 0.1);
}

.comment-form {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr auto;
  gap: 8px;
}

.comment-form textarea {
  min-height: 42px;
  padding-top: 10px;
  resize: vertical;
}

.comment-form small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.comment-list {
  display: grid;
  gap: 8px;
}

.comment-item {
  padding: 12px;
  background: #f7f8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comment-item p {
  margin: 6px 0;
  line-height: 1.5;
}

.comment-item__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  justify-content: space-between;
}

.comment-report-form {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.comment-report-form button {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 30px;
  padding: 0 8px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.comment-report-form.is-reported button {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.comment-report-form small {
  color: var(--red);
  font-weight: 800;
}

.comment-item time,
.muted {
  color: var(--muted);
}

.section-link {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-weight: 900;
}

.search-page {
  display: grid;
  gap: 14px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 24px;
  align-items: center;
  width: min(var(--max), calc(100% - 24px));
  margin: 0 auto 24px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.74);
  background: #101114;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.site-footer__brand {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: #fff;
  font-family: "Russo One", sans-serif;
  letter-spacing: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
}

.footer-legal {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.6fr);
  gap: 14px 18px;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal__title {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-legal__title span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #ffd166;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-legal__title strong {
  font-size: 1.12rem;
}

.footer-legal__title a {
  justify-self: start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.footer-legal__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
}

.footer-legal__details div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.footer-legal dt {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-legal dd {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.35;
}

.footer-legal > p {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.45;
}

.footer-legal > .footer-legal__age {
  color: #fff;
  font-weight: 900;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 45vh;
  padding: 24px;
  text-align: center;
}

.empty-state h1 {
  margin: 0;
  font-family: "Russo One", sans-serif;
  font-size: 6rem;
}

.read-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 900;
}

svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: 1fr;
  }

	  .admin-login,
	  .sports-dashboard,
	  .sports-dashboard--hub,
	  .editorial-briefing,
	  .article-hero--feature,
	  .category-desk,
		  .media-layout,
		  .matches-layout,
		  .article-layout,
	  .status-panels,
	  .admin-grid,
	  .admin-media-grid {
	    grid-template-columns: 1fr;
	  }

  .admin-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

	  .news-grid {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

  .hub-spotlight-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

	  .hub-grid,
	  .topic-grid,
	  .archive-grid,
	  .broadcast-grid,
	  .activity-feed--wide,
	  .status-grid,
	  .entity-grid {
	    grid-template-columns: repeat(3, minmax(0, 1fr));
	  }
}

@media (max-width: 760px) {
  body {
    background-size: 22px 22px;
  }

  .site-header,
  .site-ad,
  main,
  .site-footer {
    width: min(100% - 16px, var(--max));
  }

  body.has-catfish-ad {
    padding-bottom: 0;
  }

  .site-ad {
    margin-top: 10px;
  }

  .site-ad--header a {
    aspect-ratio: 420 / 130;
  }

  .catfish-ad {
    display: none;
  }

  .brand {
    min-width: 0;
  }

	  .scorebar {
	    grid-template-columns: 1fr;
	  }

  .sport-hub-hero--editorial {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .sport-hub-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scorebar__all {
    justify-content: center;
    min-height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
  }

  .breaking-strip {
    grid-template-columns: 1fr;
  }

  .lead-story {
    grid-template-rows: auto auto;
  }

  .editorial-briefing {
    gap: 10px;
  }

  .briefing-card {
    padding: 14px;
  }

	  .article-hero h1,
	  .page-hero h1,
	  .fixture-hero h1,
	  .sport-hub-hero h1 {
	    font-size: clamp(1.85rem, 10vw, 2.8rem);
	  }

	  .lead-story h1 {
	    font-size: clamp(1.55rem, 7.4vw, 2.15rem);
	  }

	  .lead-story__copy {
	    padding: 14px;
	  }

  .article-hero--feature {
    min-height: 0;
    padding: 18px;
  }

  .article-hero__panel div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .article-feature-media .article-image--wide {
    min-height: 220px;
  }

  .article-sticky-stack {
    position: static;
  }

	  .news-grid,
	  .hub-spotlight-strip,
		  .hub-grid,
		  .topic-grid,
	  .archive-grid,
	  .broadcast-grid,
	  .activity-feed--wide,
	  .status-grid,
	  .entity-grid {
	    grid-template-columns: 1fr;
	  }

  .topic-stat-grid {
    grid-template-columns: 1fr;
  }

	  .news-card--wide {
	    grid-template-columns: 1fr;
	  }

  .news-list-item {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 138px;
  }

  .news-list-item--text {
    grid-template-columns: 8px minmax(0, 1fr);
  }

  .news-list-item__copy {
    padding: 12px 12px 12px 0;
  }

  .news-list-item p {
    display: none;
  }

  .hub-lead-card {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(210px, 34vh) auto;
    min-height: 0;
  }

  .hub-story-tile {
    grid-template-columns: minmax(96px, 0.4fr) minmax(0, 1fr);
    min-height: 126px;
  }

  .fixture-card {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .fixture-card__meta {
    grid-column: 1 / -1;
  }

	  .filter-bar,
	  .comment-form,
	  .search-panel,
	  .admin-comment,
	  .admin-poll,
		  .admin-broadcast,
		  .admin-form-grid,
		  .admin-allowlist-row,
		  .admin-allowlist-edit,
		  .admin-takedown,
		  .status-panel dl div,
		  .admin-redirect {
		    grid-template-columns: 1fr;
		  }

  .admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-topbar {
    display: grid;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-legal,
  .footer-legal__details {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .article-image--wide {
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }
}

/* Arena shell reset */
.arena-body {
  --font-display: "Tektur", "Oswald", "IBM Plex Sans", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  padding-top: 0;
}

.arena-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(160px, 230px) minmax(0, 1fr) minmax(180px, 260px);
  gap: 18px;
  align-items: stretch;
  min-height: 92px;
  padding: 0 18px;
  color: #fff7d6;
  background: #080b08;
  border-bottom: 2px solid rgba(202, 255, 63, 0.55);
}

.site-header {
  display: none !important;
}

.arena-brand {
  display: grid;
  align-content: center;
  gap: 2px;
  color: #fff7d6;
  border-right: 1px solid rgba(202, 255, 63, 0.34);
}

.arena-brand:hover {
  color: #fff7d6;
}

.arena-brand span,
.arena-brand small {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
}

.arena-brand span {
  color: var(--green);
}

.arena-brand strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.arena-nav {
  display: flex;
  gap: 0;
  align-items: stretch;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.arena-nav::-webkit-scrollbar {
  display: none;
}

.arena-nav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 92px;
  padding: 0 14px;
  color: #fff7d6;
  border-right: 1px solid rgba(255, 247, 214, 0.12);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: uppercase;
}

.arena-nav a:hover,
.arena-nav a.is-active,
.arena-nav__hot {
  color: var(--green);
  background: rgba(202, 255, 63, 0.08);
}

.arena-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 8px;
  align-content: center;
}

.arena-search label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  color: #fff7d6;
  background: rgba(255, 247, 214, 0.08);
  border: 1px solid rgba(255, 247, 214, 0.22);
}

.arena-search input {
  width: 100%;
  min-width: 0;
  color: #fff7d6;
  background: transparent;
  border: 0;
  outline: 0;
}

.arena-search button {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 0;
  color: var(--ink);
  background: var(--green);
  border: 1px solid var(--green);
}

.arena-sponsor {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 0;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  border: 2px solid var(--green);
  background: #080b08;
}

.arena-sponsor::before {
  content: "AD";
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--green);
  font-family: var(--font-mono);
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.arena-sponsor .site-ad {
  width: 100%;
  margin: 0;
}

.arena-sponsor .site-ad--header a {
  height: 98px;
  border: 0;
  box-shadow: none;
}

@media (max-width: 760px) {
  .arena-header {
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 8px;
    min-height: 116px;
    padding: 8px 10px 0;
  }

  .arena-brand {
    border-right: 0;
  }

  .arena-brand strong {
    font-size: 1.55rem;
  }

  .arena-nav {
    grid-column: 1 / -1;
    order: 3;
    margin-inline: -10px;
    border-top: 1px solid rgba(255, 247, 214, 0.16);
  }

  .arena-nav a {
    min-height: 46px;
    padding: 0 11px;
    font-size: 0.88rem;
  }

  .arena-search {
    width: 48px;
  }

  .arena-search label {
    grid-template-columns: 22px;
    min-height: 44px;
    padding: 0 12px;
  }

  .arena-search input {
    width: 0;
    opacity: 0;
  }

  .arena-search:focus-within {
    grid-column: 1 / -1;
    order: 4;
    width: 100%;
  }

  .arena-search:focus-within label {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .arena-search:focus-within input {
    width: 100%;
    opacity: 1;
  }

  .arena-sponsor {
    grid-template-columns: 42px minmax(0, 1fr);
    width: min(100% - 18px, var(--max));
    margin-top: 10px;
  }

  .arena-sponsor .site-ad--header a {
    height: 82px;
  }
}

/* Sports desk redesign */
body {
  background:
    linear-gradient(180deg, rgba(11, 12, 15, 0.035), transparent 320px),
    linear-gradient(90deg, rgba(215, 38, 56, 0.045) 0 6px, transparent 6px 100%),
    #eef0ea;
  background-size: auto, 120px 100%, auto;
}

.site-header {
  min-height: 66px;
  margin-top: 10px;
  background: rgba(12, 14, 18, 0.96);
}

.brand-copy strong,
.brand-mark,
.site-footer strong {
  font-family: "Russo One", sans-serif;
}

.lead-story h1,
.article-hero h1,
.page-hero h1,
.fixture-hero h1,
.sport-hub-hero h1,
.desk-story h1,
.desk-story h3,
.story-mosaic h2,
.desk-section-head h2,
.news-list-item h3,
.hub-lead-card h2,
.hub-story-tile h3,
.hub-news-row h3,
.section-title h1,
.section-title h2,
.briefing-card h2,
.sport-desk-top h1,
.river-item h3 {
  font-family: "Commissioner", "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.scorebar {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(215, 38, 56, 0.22), transparent 36%),
    #0b0c0f;
}

.score-chip {
  flex-basis: 230px;
  background: #151820;
}

.news-desk-page,
.sport-desk-page {
  display: grid;
  gap: 14px;
}

.news-desk-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 380px);
  gap: 14px;
  align-items: start;
}

.news-desk-shell__main,
.sport-desk-grid__main {
  min-width: 0;
}

.news-desk-shell__rail,
.sport-desk-grid__rail,
.stack-rail--desk {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
}

.desk-kicker-row,
.desk-section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: end;
  margin-bottom: 10px;
}

.desk-kicker-row {
  justify-content: space-between;
}

.desk-section-head {
  justify-content: flex-start;
  align-items: baseline;
}

.desk-kicker-row span,
.desk-section-head span,
.sport-desk-top__copy > span,
.sport-desk-top__match > span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.desk-kicker-row strong,
.desk-kicker-row a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.desk-section-head h2 {
  margin: 0;
  font-size: clamp(1.22rem, 2vw, 1.9rem);
  line-height: 1;
}

.story-mosaic__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(250px, 0.72fr) minmax(270px, 0.68fr);
  gap: 12px;
  align-items: stretch;
}

.story-mosaic__side,
.story-mosaic__headlines,
.fixture-mini-list,
.topic-rail-list {
  display: grid;
  gap: 8px;
}

.desk-story,
.desk-rail,
.river-item,
.category-lane,
.today-board,
.category-lanes,
.sport-desk-top,
.story-mosaic__headlines {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 17, 20, 0.065);
}

.desk-story {
  display: grid;
  min-width: 0;
  overflow: hidden;
}

.desk-story--lead {
  grid-template-rows: minmax(330px, 43vh) auto;
}

.desk-story--secondary {
  grid-template-rows: minmax(150px, 180px) auto;
  min-height: 0;
}

.desk-story__media,
.desk-story__media .article-image {
  height: 100%;
  min-height: 0;
}

.desk-story--secondary .article-image {
  min-height: 150px;
  aspect-ratio: 16 / 9;
}

.desk-story--text {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.desk-story--text .desk-story__copy {
  min-height: 176px;
}

.desk-story__copy {
  display: grid;
  gap: 9px;
  align-content: center;
  min-width: 0;
  padding: 14px;
}

.desk-story--lead .desk-story__copy {
  padding: 18px;
}

.desk-story h1,
.desk-story h3 {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.desk-story h1 {
  max-width: 920px;
  font-size: clamp(1.7rem, 2.8vw, 3.35rem);
  line-height: 1.02;
}

.desk-story h3 {
  font-size: clamp(1.02rem, 1.25vw, 1.26rem);
  line-height: 1.12;
}

.desk-story p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.desk-story--secondary p {
  display: none;
}

.story-mosaic__headlines {
  align-content: start;
  padding: 10px 12px;
}

.compact-headline {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 8px 10px;
  align-items: start;
  min-width: 0;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.compact-headline:first-child {
  border-top: 0;
}

.compact-headline span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: var(--category-accent, var(--red));
  border-radius: 8px;
  font-weight: 900;
}

.compact-headline strong {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.17;
}

.compact-headline small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.desk-rail {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
  padding: 12px;
}

.desk-rail--watch,
.desk-rail--telegram {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(215, 38, 56, 0.34), transparent 46%),
    #101114;
  border-color: rgba(255, 255, 255, 0.12);
}

.desk-rail--telegram {
  background:
    linear-gradient(135deg, rgba(23, 105, 170, 0.44), transparent 46%),
    #101114;
}

.desk-rail--watch > span,
.desk-rail--telegram > span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #ffd166;
  font-weight: 900;
  text-transform: uppercase;
}

.desk-rail__cta {
  justify-self: start;
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.fixture-mini {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 4px 9px;
  padding: 10px;
  background: #f7f8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fixture-mini > span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 900;
}

.fixture-mini--live > span {
  background: var(--red);
}

.fixture-mini strong,
.fixture-mini small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fixture-mini b {
  color: var(--red);
}

.fixture-mini small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.topic-rail-list a {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-weight: 900;
}

.topic-rail-list small {
  color: var(--red);
}

.filter-bar--desk {
  margin-top: 0;
}

.quick-tags--desk {
  margin-top: -4px;
}

.today-board,
.category-lanes {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.today-board__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.today-board__grid .river-item--feature {
  grid-row: span 2;
}

.category-lanes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.category-lane {
  display: grid;
  align-content: start;
  min-width: 0;
  padding: 12px;
  box-shadow: none;
}

.category-lane__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.category-lane__title span {
  padding: 5px 9px;
  color: #fff;
  background: var(--category-accent, var(--red));
  border-radius: 8px;
  font-weight: 900;
}

.category-lane__title small {
  color: var(--muted);
  font-weight: 800;
}

.media-layout--news-desk,
.media-layout--hub {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 380px);
}

.editorial-river {
  display: grid;
  gap: 9px;
}

.river-item {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  overflow: hidden;
}

.river-item--feature {
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  min-height: 172px;
}

.river-item__line {
  width: 8px;
  min-height: 100%;
  background: var(--category-accent, var(--red));
}

.river-item__media,
.river-item__media .article-image {
  height: 100%;
  min-height: 0;
}

.river-item__copy {
  display: grid;
  gap: 8px;
  align-content: center;
  min-width: 0;
  padding: 13px 14px 13px 0;
}

.river-item--feature .river-item__copy {
  padding-left: 0;
}

.river-item h3 {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: clamp(1.08rem, 1.45vw, 1.42rem);
  line-height: 1.1;
}

.river-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.sport-desk-top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr) minmax(280px, 0.42fr);
  gap: 14px;
  align-items: end;
  min-height: 250px;
  padding: clamp(18px, 3.5vw, 42px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(215, 38, 56, 0.62), transparent 36%),
    linear-gradient(90deg, #111318, #20242e);
  border-color: rgba(255, 255, 255, 0.12);
}

.sport-desk-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 72%, rgba(255, 255, 255, 0.055) 72% 73%, transparent 73%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), transparent 60%);
  pointer-events: none;
}

.sport-desk-top__copy,
.sport-desk-top__stats,
.sport-desk-top__match {
  position: relative;
  z-index: 1;
}

.sport-desk-top__copy {
  display: grid;
  gap: 10px;
  max-width: 790px;
}

.sport-desk-top__copy > span,
.sport-desk-top__match > span {
  color: #ffd166;
}

.sport-desk-top h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5.4vw, 5.4rem);
  line-height: 0.92;
}

.sport-desk-top p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.sport-desk-top__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.sport-desk-top__stats span {
  display: grid;
  gap: 3px;
  min-height: 74px;
  align-content: center;
  padding: 11px;
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.sport-desk-top__stats strong {
  font-size: 1.45rem;
  line-height: 1;
}

.sport-desk-top__stats small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
}

.sport-desk-top__match {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.sport-desk-top__match a {
  display: grid;
  gap: 5px;
}

.sport-desk-top__match strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 1.08rem;
  line-height: 1.15;
}

.sport-desk-top__match small {
  color: rgba(255, 255, 255, 0.72);
}

.sport-desk-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 380px);
  gap: 14px;
  align-items: start;
}

.hub-spotlight-strip--desk {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 8px;
}

.hub-spotlight-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hub-spotlight-strip__grid .hub-story-tile {
  grid-template-columns: 1fr;
  grid-template-rows: minmax(168px, auto) minmax(0, 1fr);
  min-height: 310px;
}

.hub-spotlight-strip__grid .hub-story-tile > div {
  align-content: start;
}

@media (max-width: 1240px) {
  .news-desk-shell,
  .sport-desk-grid,
  .media-layout--news-desk,
  .media-layout--hub,
  .sport-desk-top {
    grid-template-columns: 1fr;
  }

  .story-mosaic__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  }

  .story-mosaic__headlines {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .today-board__grid,
  .category-lanes__grid,
  .hub-spotlight-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    background:
      linear-gradient(180deg, rgba(11, 12, 15, 0.035), transparent 260px),
      #eef0ea;
  }

  .story-mosaic__grid,
  .story-mosaic__side,
  .story-mosaic__headlines,
  .today-board__grid,
  .category-lanes__grid,
  .hub-spotlight-strip__grid {
    grid-template-columns: 1fr;
  }

  .desk-story--lead {
    grid-template-rows: minmax(230px, 34vh) auto;
  }

  .desk-story--secondary {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: 1fr;
    min-height: 138px;
  }

  .desk-story--text {
    grid-template-columns: 1fr;
  }

  .desk-story--secondary .desk-story__copy {
    padding: 10px;
  }

  .desk-story h1 {
    font-size: clamp(1.48rem, 7vw, 2.25rem);
  }

  .desk-story p,
  .river-item p {
    display: none;
  }

  .river-item,
  .river-item--feature {
    grid-template-columns: 100px minmax(0, 1fr);
    min-height: 128px;
  }

  .river-item:not(.river-item--feature) {
    grid-template-columns: 8px minmax(0, 1fr);
  }

  .river-item__copy {
    padding: 11px 11px 11px 0;
  }

  .river-item--feature .river-item__copy {
    padding-left: 0;
  }

  .sport-desk-top {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
    min-height: 0;
    padding: 14px;
  }

  .sport-desk-top__copy {
    gap: 8px;
    max-width: 100%;
    min-width: 0;
  }

  .sport-desk-top__copy > span,
  .sport-desk-top__match > span {
    font-size: 0.72rem;
  }

  .sport-desk-top h1 {
    font-size: clamp(1.9rem, 10.5vw, 2.7rem);
    line-height: 0.95;
  }

  .sport-desk-top p {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.94rem;
    line-height: 1.38;
  }

  .hub-hero-actions {
    gap: 6px;
    margin-top: 2px;
  }

  .hub-hero-actions a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .sport-desk-top__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    min-width: 0;
  }

  .sport-desk-top__stats span {
    min-height: 54px;
    padding: 9px;
  }

  .sport-desk-top__stats strong {
    font-size: 1.24rem;
  }

  .sport-desk-top__match {
    gap: 6px;
    min-width: 0;
    padding: 10px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 8px;
    min-height: 0;
    margin-top: 6px;
    padding: 8px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy small {
    display: none;
  }

  .primary-nav {
    grid-column: 1 / -1;
    order: 3;
  }

  .nav-link {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .header-search {
    width: 46px;
  }

  .header-search label {
    grid-template-columns: 20px;
    justify-content: center;
    min-height: 38px;
    padding: 0 10px;
  }

  .header-search input {
    width: 0;
    min-width: 0;
    opacity: 0;
  }

  .header-search:focus-within {
    grid-column: 1 / -1;
    order: 4;
    width: 100%;
  }

  .header-search:focus-within label {
    grid-template-columns: 20px 1fr;
  }

  .header-search:focus-within input {
    width: 100%;
    opacity: 1;
  }

  main {
    margin-top: 8px;
  }

  .scorebar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
    padding: 6px;
  }

  .scorebar__label {
    grid-column: 1 / -1;
    min-height: 24px;
    padding: 0 6px;
  }

  .scorebar__track {
    grid-column: 1;
  }

  .scorebar__all {
    grid-column: 2;
    justify-content: center;
    min-height: 64px;
    padding: 0 10px;
  }

  .score-chip {
    flex-basis: 170px;
    padding: 7px 9px;
  }

  .score-chip strong {
    font-size: 0.82rem;
  }

  .match-state-grid,
  .info-grid,
  .article-context-grid {
    grid-template-columns: 1fr;
  }

  .article-hero--feature {
    gap: 10px;
    padding: 14px;
  }

  .article-hero__copy {
    gap: 10px;
  }

  .article-hero--feature p {
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .article-hero__panel {
    gap: 10px;
    padding: 12px;
  }

  .article-hero__panel div {
    gap: 4px;
    padding-top: 7px;
  }

  .article-hero h1 {
    font-size: clamp(1.42rem, 7.2vw, 2.05rem);
    line-height: 1.02;
  }
}

/* Editorial Room live cascade */
:root {
  --ink: #111214;
  --ink-2: #292b2f;
  --paper: #f6f4ee;
  --paper-2: #efede6;
  --card: #ffffff;
  --muted: #686b72;
  --line: #e0ded6;
  --line-strong: #cbc8be;
  --red: #c81f2d;
  --red-dark: #981722;
  --blue: #275f73;
  --green: #54734d;
  --yellow: #f0c85e;
  --max: 1440px;
  --shadow: 0 22px 70px rgba(17, 18, 20, 0.08);
  --shadow-tight: 0 10px 34px rgba(17, 18, 20, 0.06);
  --font-display: "Literata", "Golos Text", Georgia, serif;
  --font-body: "Golos Text", "Segoe UI", sans-serif;
}

html {
  scroll-padding-top: 88px;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

body {
  padding-left: 0 !important;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0) 280px),
    linear-gradient(90deg, rgba(17, 18, 20, 0.028) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 96px 96px, auto;
}

body::before {
  display: none !important;
}

body.has-catfish-ad {
  padding-bottom: 104px;
}

a:hover {
  color: var(--red);
}

main,
.site-ad,
.site-footer {
  width: min(var(--max), calc(100% - 48px));
}

main {
  margin: 18px auto 56px;
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 90;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(220px, 320px);
  gap: 22px;
  align-items: center;
  width: 100% !important;
  max-width: none;
  min-height: 70px;
  margin: 0 !important;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2 + 24px));
  overflow: visible;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(17, 18, 20, 0.08);
}

.brand {
  min-width: 0;
}

.brand-mark {
  display: none;
}

.brand-copy {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-copy strong {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.brand-copy small {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 6px;
  color: #fff;
  background: var(--red);
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 900;
}

.primary-nav {
  gap: 2px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.primary-nav::-webkit-scrollbar {
  display: none;
}

.nav-link {
  position: relative;
  min-height: 70px;
  padding: 0 10px;
  color: #2c2e33;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 0.95rem;
  font-weight: 750;
  text-transform: none;
}

.nav-link::after {
  display: none !important;
}

.nav-link::before {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 3px;
  background: transparent;
  border-radius: 3px 3px 0 0;
}

.nav-link:hover,
.nav-link.is-active,
.nav-link--match {
  color: var(--red);
  background: transparent;
  border-color: transparent;
}

.nav-link:hover::before,
.nav-link.is-active::before {
  background: currentColor;
}

.header-search label,
.search-panel label {
  min-height: 42px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.header-search input,
.search-panel input {
  color: var(--ink);
}

.site-ad {
  margin: 14px auto 0;
}

.site-ad--header a {
  height: clamp(84px, 8vw, 118px);
  aspect-ratio: auto;
  max-height: 118px;
  overflow: hidden;
  background: #efefed;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.site-ad--header img {
  object-fit: cover;
}

.sponsor-card,
.catfish-ad a {
  overflow: hidden;
  background: #f4d464;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: var(--shadow-tight);
}

.catfish-ad {
  right: max(18px, calc((100vw - var(--max)) / 2 + 18px));
  width: min(780px, calc(100% - 36px));
}

.catfish-ad__close {
  color: #fff;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(17, 18, 20, 0.18);
}

.scorebar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0;
  align-items: stretch;
  padding: 0;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.scorebar__label,
.scorebar__all {
  min-height: 76px;
  padding: 0 18px;
  color: var(--red);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 900;
}

.scorebar__track {
  gap: 0;
}

.score-chip {
  flex-basis: 270px;
  gap: 5px;
  padding: 13px 16px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
}

.score-chip:last-child {
  border-right: 1px solid var(--line);
}

.score-chip:hover {
  color: var(--ink);
  background: #fbfaf6;
}

.score-chip span,
.score-chip small {
  color: var(--muted);
}

.score-chip strong {
  font-size: 0.94rem;
}

.score-chip b {
  color: var(--red);
  font-weight: 900;
}

.breaking-strip {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  min-height: 52px;
  margin-top: 14px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: none;
}

.breaking-strip > span {
  color: var(--red);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 900;
}

.breaking-strip a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
}

.breaking-strip a:hover {
  color: var(--red);
}

.lead-story,
.headline-panel,
.live-rail,
.rail-card,
.desk-rail,
.news-card,
.hub-lead-card,
.hub-story-tile,
.hub-feed,
.page-hero,
.sport-hub-hero,
.fixture-hero,
.discussion-box,
.activity-desk,
.status-panel,
.empty-panel,
.briefing-card,
.archive-day,
.topic-card,
.entity-card,
.info-panel,
.broadcast-card,
.poll-card,
.article-hero__panel,
.article-brief,
.article-context-grid article,
.article-next-panel,
.filter-bar,
.quick-tags,
.today-board,
.category-lane,
.tag-cloud,
.news-list-item,
.river-item,
.desk-story,
.fixture-card,
.match-day,
.article-body,
.article-aside,
.match-news-list,
.category-hubs {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.lead-story:hover,
.fixture-card:hover,
.news-list-item:hover,
.river-item:hover,
.desk-story:hover,
.news-card:hover {
  transform: none;
  box-shadow: var(--shadow-tight);
}

.sports-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 380px);
  grid-template-areas:
    "lead rail"
    "headlines rail";
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}

.lead-story {
  grid-area: lead;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.62fr);
  min-height: 436px;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
}

.lead-story__image,
.lead-story__image .article-image {
  height: 100%;
  min-height: 436px;
}

.article-image {
  background:
    linear-gradient(135deg, rgba(200, 31, 45, 0.12), rgba(39, 95, 115, 0.1)),
    #e7e5de;
}

.article-image img {
  filter: saturate(1.02) contrast(1.01);
}

.article-image.is-empty::after {
  content: "ПРАВДА БК";
  color: rgba(17, 18, 20, 0.24);
  font-family: var(--font-body);
  font-weight: 900;
}

.article-image--wide {
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

a:hover .article-image img {
  transform: scale(1.025);
}

.lead-story__copy {
  align-content: center;
  gap: 14px;
  min-width: 0;
  padding: 30px;
}

.brand-copy strong,
.lead-story h1,
.article-hero h1,
.page-hero h1,
.fixture-hero h1,
.sport-hub-hero h1,
.sport-desk-top h1,
.desk-story h1,
.desk-story h3 {
  letter-spacing: 0;
}

.lead-story h1,
.article-hero h1,
.page-hero h1,
.fixture-hero h1,
.sport-hub-hero h1,
.sport-desk-top h1,
.desk-story h1 {
  font-family: var(--font-display);
}

.lead-story h1 {
  color: var(--ink);
  font-size: 2.25rem;
  line-height: 1.08;
}

.lead-story p,
.article-hero p,
.page-hero p,
.fixture-hero p,
.sport-hub-hero p,
.news-card p,
.news-list-item p,
.river-item p,
.desk-story p,
.hub-news-row p,
.hub-lead-card p,
.article-context-grid p,
.article-brief li {
  color: var(--muted);
  line-height: 1.56;
}

.lead-story__meta,
.card-meta,
.article-meta {
  color: var(--muted);
  font-size: 0.84rem;
}

.category-pill {
  min-height: 28px;
  padding: 0 9px;
  color: var(--category-accent, var(--red));
  background: rgba(200, 31, 45, 0.08);
  border: 1px solid rgba(200, 31, 45, 0.16);
  border-radius: 999px;
  box-shadow: none;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: none;
}

.headline-panel {
  grid-area: headlines;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  align-content: start;
  padding: 20px;
}

.headline-panel .section-title {
  grid-column: 1 / -1;
}

.live-rail {
  grid-area: rail;
  align-self: start;
  padding: 18px;
}

.section-title {
  gap: 12px;
  margin-bottom: 14px;
}

.section-title h1,
.section-title h2 {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: none;
}

.section-title a,
.section-title span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.section-title a:hover {
  color: var(--red);
}

.headline-row {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.headline-row span,
.briefing-list b,
.hub-story-tile span,
.compact-news__index,
.compact-headline span {
  width: 32px;
  height: 32px;
  color: var(--red);
  background: #fbf2f2;
  border: 1px solid rgba(200, 31, 45, 0.16);
  border-radius: 8px;
  box-shadow: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 900;
}

.headline-row strong {
  font-size: 0.98rem;
  line-height: 1.25;
}

.headline-row small {
  color: var(--muted);
}

.fixture-card {
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  margin-top: 8px;
  padding: 12px;
  background: #fff;
}

.fixture-card__meta {
  grid-column: 1 / -1;
}

.fixture-card__teams em,
.status-badge {
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
}

.status-badge--live {
  background: var(--red);
}

.status-badge--finished {
  background: var(--green);
}

.telegram-card,
.watch-card,
.desk-rail--telegram,
.desk-rail--watch,
.rail-card--watch {
  color: #fff;
  background: #17191d;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.telegram-card span,
.watch-card span,
.desk-rail--telegram span,
.desk-rail--watch span {
  color: var(--yellow);
}

.watch-link {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: none;
}

.watch-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.editorial-briefing {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.92fr) minmax(280px, 0.68fr);
  gap: 18px;
  margin-top: 18px;
}

.briefing-card {
  padding: 20px;
}

.briefing-card > span,
.desk-section-head span,
.desk-kicker-row span,
.sport-desk-top__copy > span,
.sport-desk-top__match > span,
.page-hero span,
.fixture-hero > span,
.sport-hub-hero span {
  color: var(--red);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 900;
}

.briefing-card h2,
.desk-section-head h2 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.48rem;
  line-height: 1.14;
}

.briefing-card--focus,
.page-hero--dark,
.fixture-hero,
.entity-hero,
.sport-desk-top,
.article-hero--feature {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.briefing-card--focus > span,
.briefing-card--focus p,
.page-hero--dark p,
.fixture-hero p,
.entity-hero p,
.article-hero--feature p,
.sport-desk-top p {
  color: var(--muted);
}

.briefing-card--focus {
  border-top: 4px solid var(--red);
}

.briefing-match {
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.briefing-match b {
  color: var(--yellow);
}

.briefing-tags a,
.tag-cloud a,
.quick-tags a,
.topic-chip-list a,
.tag-list a,
.hub-hero-actions a,
.fixture-actions a,
.share-row a,
.pager a,
.pager strong,
.search-panel button,
.filter-bar button,
.comment-form button,
.desk-rail__cta,
.article-hero__panel a {
  min-height: 36px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
  font-weight: 850;
}

.filter-bar button,
.comment-form button,
.search-panel button,
.desk-rail__cta {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.media-layout,
.matches-layout,
.article-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  gap: 22px;
  margin-top: 22px;
}

.home-river,
.news-list,
.editorial-river {
  gap: 12px;
}

.news-list-item {
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 162px;
  overflow: hidden;
}

.news-list-item--text {
  grid-template-columns: 6px minmax(0, 1fr);
}

.news-list-item__marker {
  background: var(--category-accent, var(--red));
}

.news-list-item__copy {
  padding: 18px 20px 18px 0;
}

.news-list-item--text .news-list-item__copy {
  padding-left: 16px;
}

.news-list-item h3 {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.22rem;
  font-weight: 850;
  line-height: 1.22;
}

.stack-rail {
  gap: 18px;
}

.rail-card,
.desk-rail {
  padding: 18px;
}

.compact-news,
.compact-headline,
.fixture-mini,
.activity-item,
.section-link {
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.activity-item {
  grid-template-columns: 34px minmax(0, 1fr);
}

.activity-item__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.category-hubs,
.tag-cloud,
.today-board,
.category-lanes {
  margin-top: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.hub-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hub-card {
  min-height: 210px;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.hub-card::after {
  background:
    linear-gradient(180deg, transparent 16%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(135deg, rgba(200, 31, 45, 0.16), rgba(39, 95, 115, 0.1));
}

.hub-card span {
  color: #fff;
  background: var(--red);
  border-radius: 6px;
}

.hub-card strong {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 850;
}

.news-desk-page,
.sport-desk-page {
  display: grid;
  gap: 20px;
}

.news-desk-shell,
.sport-desk-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  gap: 22px;
}

.desk-kicker-row {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  margin-bottom: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.desk-kicker-row strong {
  margin-left: auto;
}

.story-mosaic__grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.desk-story {
  overflow: hidden;
}

.desk-story--lead {
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  grid-template-rows: none;
  min-height: 320px;
}

.desk-story--lead .desk-story__media,
.desk-story--lead .article-image {
  height: 100%;
  min-height: 320px;
}

.story-mosaic__side,
.story-mosaic__headlines,
.today-board__grid,
.category-lanes__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.desk-story__copy,
.river-item__copy {
  padding: 18px;
}

.desk-story h1 {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.08;
}

.desk-story h3,
.river-item h3,
.hub-news-row h3 {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.22;
}

.river-item {
  grid-template-columns: 6px minmax(0, 1fr);
  min-height: 148px;
  overflow: hidden;
}

.river-item__line,
.hub-news-row__marker {
  background: var(--category-accent, var(--red));
  border-radius: 8px;
}

.river-item--feature {
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
}

.filter-bar {
  padding: 12px;
  background: rgba(255, 255, 255, 0.82);
}

.filter-bar input,
.filter-bar select,
.comment-form input,
.comment-form textarea,
.search-panel input,
.admin-stack-form input,
.admin-stack-form select,
.admin-stack-form textarea {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.page-hero,
.fixture-hero,
.sport-hub-hero,
.entity-hero,
.sport-desk-top {
  padding: 34px;
  overflow: hidden;
}

.page-hero h1,
.fixture-hero h1,
.entity-hero h1,
.sport-desk-top h1,
.article-hero h1 {
  color: var(--ink);
  font-size: 2.7rem;
  line-height: 1.06;
}

.sport-hub-hero {
  color: #fff;
  background: var(--ink);
}

.sport-hub-hero h1,
.sport-hub-hero p {
  color: #fff;
}

.sport-hub-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38) 54%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 58%);
}

.sport-desk-top__stats span,
.match-state-grid > div,
.match-state-grid > a,
.status-grid > div {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.sport-desk-top__stats strong,
.match-state-grid strong,
.status-grid strong {
  font-family: var(--font-body);
}

.sport-desk-top__match {
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.article-page {
  display: grid;
  gap: 18px;
}

.article-hero {
  max-width: 960px;
  background: #fff;
}

.article-hero--feature {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  gap: 20px;
  max-width: none;
  min-height: 0;
  padding: 34px;
  border-top: 4px solid var(--category-accent, var(--red));
  box-shadow: none;
}

.article-hero__panel {
  color: var(--ink);
  background: #f8f6f0;
  border: 1px solid var(--line);
  box-shadow: none;
  backdrop-filter: none;
}

.article-hero__panel div {
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 16px;
}

.article-hero__panel > span {
  color: var(--red);
}

.article-hero__panel dt {
  color: var(--muted);
}

.article-hero__panel dd,
.article-meta--feature,
.article-meta--feature a,
.article-meta--feature span {
  color: var(--ink);
}

.article-body--feature {
  border-top: 0;
}

.article-body p,
.article-body li {
  font-size: 1.06rem;
  line-height: 1.72;
}

.article-sticky-stack {
  top: 88px;
}

.reaction-row button {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.reaction-row button.is-active,
.reaction-row button:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.site-footer {
  margin: 56px auto 0;
  padding: 28px;
  color: rgba(255, 255, 255, 0.78);
  background: #15171a;
  border: 0;
  border-radius: 8px 8px 0 0;
  box-shadow: none;
}

.site-footer strong {
  color: #fff;
  font-family: var(--font-body);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: #fff;
}

.site-footer p,
.footer-legal p,
.footer-legal dd,
.footer-legal dt {
  color: rgba(255, 255, 255, 0.64);
}

.footer-legal {
  border-top-color: rgba(255, 255, 255, 0.14);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) minmax(56px, 260px);
    gap: 14px;
    padding-inline: 18px;
  }

  .sports-dashboard,
  .media-layout,
  .matches-layout,
  .article-layout,
  .media-layout--news-desk,
  .media-layout--hub,
  .news-desk-shell,
  .sport-desk-grid,
  .editorial-briefing {
    grid-template-columns: 1fr;
  }

  .sports-dashboard {
    grid-template-areas:
      "lead"
      "headlines"
      "rail";
  }

  .lead-story {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  }

  .stack-rail,
  .news-desk-shell__rail,
  .sport-desk-grid__rail,
  .article-aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hub-grid,
  .topic-grid,
  .broadcast-grid,
  .archive-grid,
  .entity-grid,
  .info-grid,
  .match-state-grid,
  .status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 126px;
  }

  body {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0) 220px),
      var(--paper);
  }

  body.has-catfish-ad {
    padding-bottom: 0;
  }

  main,
  .site-ad,
  .site-footer {
    width: min(100% - 18px, var(--max));
  }

  main {
    margin-top: 10px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 8px;
    min-height: 0;
    padding: 8px 9px 0;
  }

  .brand-copy strong {
    font-size: 1.05rem;
  }

  .brand-copy small {
    min-height: 18px;
    font-size: 0.55rem;
  }

  .primary-nav {
    grid-column: 1 / -1;
    order: 3;
    display: flex;
    gap: 2px;
    padding-top: 2px;
  }

  .nav-link {
    min-height: 42px;
    padding: 0 9px;
    font-size: 0.8rem;
  }

  .header-search {
    width: 44px;
  }

  .header-search label {
    grid-template-columns: 20px;
    justify-content: center;
    min-height: 38px;
    padding: 0 10px;
  }

  .header-search input {
    width: 0;
    min-width: 0;
    opacity: 0;
  }

  .header-search:focus-within {
    grid-column: 1 / -1;
    order: 4;
    width: 100%;
    padding-bottom: 8px;
  }

  .header-search:focus-within label {
    grid-template-columns: 20px 1fr;
  }

  .header-search:focus-within input {
    width: 100%;
    opacity: 1;
  }

  .site-ad--header a {
    max-height: 98px;
  }

  .scorebar {
    grid-template-columns: 1fr;
  }

  .scorebar__label,
  .scorebar__all {
    min-height: 36px;
    justify-content: flex-start;
  }

  .score-chip {
    flex-basis: 220px;
  }

  .breaking-strip {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 12px;
  }

  .sports-dashboard,
  .headline-panel,
  .story-mosaic__grid,
  .story-mosaic__side,
  .story-mosaic__headlines,
  .today-board__grid,
  .category-lanes__grid,
  .hub-grid,
  .topic-grid,
  .broadcast-grid,
  .archive-grid,
  .entity-grid,
  .info-grid,
  .match-state-grid,
  .status-grid,
  .stack-rail,
  .news-desk-shell__rail,
  .sport-desk-grid__rail,
  .article-aside {
    grid-template-columns: 1fr;
  }

  .lead-story,
  .hub-lead-card,
  .news-card--wide,
  .desk-story--lead,
  .river-item--feature,
  .hub-story-tile,
  .news-list-item,
  .article-hero--feature {
    grid-template-columns: 1fr;
  }

  .lead-story {
    min-height: 0;
  }

  .lead-story__image,
  .lead-story__image .article-image {
    min-height: 245px;
  }

  .lead-story__image .article-image {
    height: 245px;
  }

  .lead-story__copy,
  .page-hero,
  .fixture-hero,
  .entity-hero,
  .sport-desk-top,
  .article-hero--feature,
  .headline-panel,
  .live-rail,
  .rail-card,
  .desk-rail,
  .briefing-card,
  .category-hubs,
  .tag-cloud,
  .today-board,
  .category-lanes {
    padding: 15px;
  }

  .article-hero__panel div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .lead-story h1 {
    font-size: 1.78rem;
    line-height: 1.1;
  }

  .page-hero h1,
  .fixture-hero h1,
  .entity-hero h1,
  .article-hero h1,
  .sport-desk-top h1,
  .desk-story h1 {
    font-size: 1.74rem;
    line-height: 1.1;
  }

  .briefing-card h2,
  .desk-section-head h2 {
    font-size: 1.22rem;
  }

  .news-list-item {
    min-height: 0;
  }

  .news-list-item__media,
  .news-list-item__media .article-image {
    height: 190px;
  }

  .news-list-item__copy {
    padding: 14px;
  }

  .news-list-item h3,
  .river-item h3,
  .desk-story h3,
  .news-card h3 {
    font-size: 1rem;
  }

  .news-list-item p,
  .river-item p,
  .desk-story p,
  .news-card p,
  .hub-lead-card p {
    display: block;
    font-size: 0.92rem;
  }

  .desk-story--lead .desk-story__media,
  .desk-story--lead .article-image {
    min-height: 220px;
    height: 220px;
  }

  .river-item--feature {
    min-height: 0;
  }

  .catfish-ad {
    display: none;
  }

  .site-footer {
    margin-top: 36px;
    padding: 18px;
  }
}

/* Control Room product model */
.control-home,
.news-control-page {
  display: grid;
  gap: 18px;
}

.control-board {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(360px, 1fr) minmax(280px, 0.48fr);
  gap: 0;
  min-height: 520px;
  overflow: hidden;
  color: #f8f4ea;
  background: #101215;
  border: 1px solid rgba(16, 18, 21, 0.18);
  border-radius: 8px;
}

.control-board__copy,
.control-board__panel {
  display: grid;
  align-content: center;
  gap: 18px;
  min-width: 0;
  padding: 34px;
}

.control-board__copy {
  background:
    linear-gradient(180deg, rgba(200, 31, 45, 0.18), transparent 46%),
    #101215;
}

.control-eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-self: start;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.control-board h1,
.news-command h1 {
  margin: 0;
  max-width: 680px;
  color: inherit;
  font-family: var(--font-display);
  font-size: 3.35rem;
  line-height: 1.02;
}

.control-board p,
.news-command p {
  margin: 0;
  max-width: 580px;
  color: rgba(248, 244, 234, 0.72);
  line-height: 1.58;
}

.control-lead-link {
  display: grid;
  gap: 8px;
  padding: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.control-lead-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.control-lead-link span {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
}

.control-lead-link strong {
  font-size: 1.12rem;
  line-height: 1.2;
}

.control-lead-link small {
  color: rgba(248, 244, 234, 0.7);
  line-height: 1.45;
}

.control-board__visual {
  min-width: 0;
}

.control-board__visual a,
.control-board__visual .article-image {
  height: 100%;
  min-height: 520px;
}

.control-board__panel {
  background: #171a1f;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.control-board__panel > span,
.match-console .section-title h2,
.brief-console .section-title h2 {
  color: #fff;
}

.control-board__cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: #101215;
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 900;
}

.control-board__cta:hover {
  color: #101215;
  transform: translateY(-1px);
}

.signal-tape {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  min-height: 68px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.signal-tape > span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  background: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-tape div {
  display: flex;
  gap: 10px;
  min-width: 0;
  overflow-x: auto;
  padding: 10px 12px 10px 0;
  scrollbar-width: none;
}

.signal-tape div::-webkit-scrollbar {
  display: none;
}

.signal-tape a {
  flex: 0 0 285px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  color: var(--ink);
  background: #f8f6f0;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.22;
}

.signal-tape b {
  color: var(--red);
  font-size: 0.78rem;
}

.control-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr) minmax(260px, 0.36fr);
  gap: 18px;
}

.signal-stack,
.match-console,
.brief-console,
.news-command,
.news-index-lead,
.source-note,
.brief-article__hero,
.brief-article__facts article,
.brief-article__rail,
.brief-article__side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.signal-stack,
.match-console,
.brief-console {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.match-console,
.brief-console {
  color: #fff;
  background: #15171a;
  border-color: #15171a;
}

.match-console__list {
  display: grid;
  gap: 10px;
}

.control-match {
  display: grid;
  gap: 8px;
  padding: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.control-match:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.control-match span,
.control-match small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.control-match strong {
  line-height: 1.22;
}

.control-match b {
  color: var(--yellow);
}

.control-signal {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.signal-stack .control-signal:first-of-type,
.decision-grid .control-signal:nth-child(-n + 3) {
  border-top: 0;
}

.control-signal--wide {
  padding-top: 0;
}

.control-signal__index {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--category-accent, var(--red));
  border-radius: 8px;
  font-weight: 900;
}

.control-signal__index:hover {
  color: #fff;
}

.control-signal__copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.control-signal__copy span {
  color: var(--category-accent, var(--red));
  font-size: 0.76rem;
  font-weight: 900;
}

.control-signal h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.22;
}

.control-signal--wide h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.12;
}

.control-signal p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.control-signal small {
  color: var(--muted);
  font-size: 0.78rem;
}

.brief-console__tags,
.brief-console__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brief-console__tags a,
.brief-console__topics a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-weight: 850;
}

.brief-console__topics small {
  margin-left: 6px;
  color: var(--yellow);
}

.desk-rail .brief-console__topics a {
  color: var(--ink);
  background: #f8f6f0;
  border-color: var(--line);
}

.desk-rail .brief-console__topics small {
  color: var(--red);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.control-river,
.news-index-layout,
.brief-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  gap: 22px;
}

.news-command {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.news-command h1 {
  color: var(--ink);
  font-size: 2.35rem;
}

.news-command p {
  color: var(--muted);
}

.news-command .control-eyebrow {
  color: var(--red);
}

.news-command__archive {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 900;
}

.news-command__archive:hover {
  color: #fff;
}

.news-index-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
}

.news-index-layout__main,
.news-index-layout__rail,
.brief-article__main {
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0;
}

.news-index-lead {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  overflow: hidden;
}

.news-index-lead > a,
.news-index-lead .article-image {
  height: 100%;
  min-height: 330px;
}

.news-index-lead > div {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 28px;
}

.news-index-lead span {
  justify-self: start;
  color: var(--category-accent, var(--red));
  font-size: 0.78rem;
  font-weight: 900;
}

.news-index-lead h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.15rem;
  line-height: 1.08;
}

.news-index-lead p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.brief-article {
  display: grid;
  gap: 18px;
}

.brief-article__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(340px, 0.56fr);
  overflow: hidden;
  background: #fff;
}

.brief-article__copy {
  display: grid;
  gap: 16px;
  align-content: center;
  min-width: 0;
  padding: clamp(24px, 5vw, 58px);
}

.brief-article__copy .control-eyebrow {
  color: var(--red);
}

.brief-article__copy h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.8vw, 4.9rem);
  line-height: 1.02;
}

.brief-article__copy p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.62;
}

.brief-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.brief-article__visual,
.brief-article__visual .article-image {
  min-height: 480px;
}

.brief-article__visual {
  position: relative;
}

.brief-article__visual .image-credit {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
  margin: 0;
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 6px;
}

.brief-article__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.brief-article__facts article {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 16px;
}

.brief-article__facts span,
.source-note span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-article__facts strong {
  align-self: end;
  line-height: 1.22;
}

.brief-article__layout {
  grid-template-columns: minmax(230px, 280px) minmax(0, 1fr) minmax(300px, 340px);
}

.brief-article__rail,
.brief-article__side {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 14px;
}

.source-note {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.source-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.brief-article__body {
  border-top: 4px solid var(--category-accent, var(--red));
}

@media (max-width: 1180px) {
  .control-board,
  .control-workbench,
  .news-command,
  .brief-article__hero,
  .brief-article__layout {
    grid-template-columns: 1fr;
  }

  .control-board__visual {
    order: -1;
  }

  .control-river,
  .news-index-layout {
    grid-template-columns: 1fr;
  }

  .brief-article__facts,
  .decision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .control-home,
  .news-control-page {
    gap: 12px;
  }

  .control-board {
    min-height: 0;
  }

  .control-board__copy,
  .control-board__panel,
  .news-command,
  .source-note {
    padding: 16px;
  }

  .control-board__visual a,
  .control-board__visual .article-image,
  .brief-article__visual,
  .brief-article__visual .article-image {
    min-height: 250px;
  }

  .control-board h1,
  .news-command h1 {
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .signal-tape {
    grid-template-columns: 1fr;
  }

  .signal-tape > span {
    min-height: 40px;
  }

  .signal-tape div {
    padding: 0 10px 10px;
  }

  .signal-tape a {
    flex-basis: 245px;
  }

  .signal-stack,
  .match-console,
  .brief-console,
  .decision-grid {
    padding: 14px;
  }

  .decision-grid,
  .brief-article__facts,
  .news-index-lead {
    grid-template-columns: 1fr;
  }

  .control-signal {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
  }

  .control-signal__index {
    width: 38px;
    height: 38px;
  }

  .control-signal--wide h3,
  .news-index-lead h2 {
    font-size: 1.25rem;
  }

  .news-index-lead > a,
  .news-index-lead .article-image {
    min-height: 210px;
    height: 210px;
  }

  .news-index-lead > div {
    padding: 16px;
  }

  .brief-article__copy {
    padding: 18px;
  }

  .brief-article__copy h1 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .brief-article__copy p {
    font-size: 1rem;
  }

  .brief-article__facts article {
    min-height: 0;
  }
}

/* Broadcast Deck final skin */
:root {
  --ink: #11140f;
  --ink-2: #1d221c;
  --paper: #fff2cf;
  --card: #121711;
  --muted: #a8aa9b;
  --line: rgba(255, 242, 207, 0.18);
  --line-strong: rgba(255, 242, 207, 0.34);
  --red: #ff4b2e;
  --blue: #75dfff;
  --green: #caff3f;
  --yellow: #ffd447;
  --max: 1500px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --shadow-tight: 0 16px 44px rgba(0, 0, 0, 0.24);
  --font-display: "Oswald", "IBM Plex Sans", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

body {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(202, 255, 63, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 75, 46, 0.04) 1px, transparent 1px),
    #080b08;
  background-size: 74px 74px, 74px 74px, auto;
}

main,
.site-ad,
.site-footer {
  width: min(var(--max), calc(100% - 32px));
}

.site-header {
  min-height: 64px;
  color: var(--ink);
  background: #fff2cf;
  border-bottom: 4px solid #070907;
  box-shadow: none;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 0 rgba(0, 0, 0, 0.28);
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--ink);
  background: var(--green);
  border: 2px solid var(--ink);
  font-family: var(--font-mono);
}

.nav-link {
  min-height: 64px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link.is-active,
.nav-link--match {
  color: var(--red);
}

.header-search label,
.search-panel label {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.46);
  border: 2px solid rgba(17, 20, 15, 0.16);
}

.site-ad--header a {
  height: clamp(76px, 7vw, 112px);
  background: #ffd447;
  border: 2px solid #070907;
  border-radius: 0;
  box-shadow: 6px 6px 0 rgba(202, 255, 63, 0.82);
}

.catfish-ad a,
.sponsor-card {
  border: 2px solid #070907;
  border-radius: 0;
  box-shadow: 7px 7px 0 rgba(202, 255, 63, 0.72);
}

.catfish-ad__close {
  color: var(--ink);
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 0;
}

.control-home,
.news-control-page,
.brief-article {
  gap: 16px;
}

.control-board {
  position: relative;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.36fr);
  min-height: 590px;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  background:
    linear-gradient(110deg, rgba(255, 75, 46, 0.24), transparent 42%),
    #080b08;
  border: 2px solid var(--line-strong);
  border-radius: 0;
  box-shadow: var(--shadow);
}

.control-board::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0 15%, rgba(202, 255, 63, 0.18) 15% 15.45%, transparent 15.45%),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 242, 207, 0.06) 28px 29px);
}

.control-board__visual {
  position: absolute;
  inset: 0 250px 0 34%;
  z-index: -1;
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
  opacity: 0.72;
}

.control-board__visual a,
.control-board__visual .article-image {
  min-height: 590px;
}

.control-board__copy,
.control-board__panel {
  position: relative;
  z-index: 1;
  padding: 38px;
}

.control-board__copy {
  background: linear-gradient(90deg, #080b08 0 72%, rgba(8, 11, 8, 0.38));
}

.control-board__panel {
  align-content: end;
  background: rgba(8, 11, 8, 0.86);
  border-left: 2px solid var(--line);
}

.control-eyebrow,
.control-board__panel > span,
.brief-article__facts span,
.source-note span {
  color: var(--green);
  font-family: var(--font-mono);
  letter-spacing: 0;
}

.control-board h1,
.news-command h1,
.brief-article__copy h1 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
}

.control-board h1 {
  max-width: 570px;
  font-size: 5.2rem;
  line-height: 0.96;
}

.control-board p {
  max-width: 540px;
  color: rgba(255, 242, 207, 0.74);
  font-size: 1.08rem;
}

.control-lead-link {
  max-width: 520px;
  color: var(--paper);
  background: rgba(255, 242, 207, 0.08);
  border: 2px solid var(--line);
  border-radius: 0;
}

.control-lead-link span,
.control-signal__copy span,
.news-index-lead span {
  color: var(--green);
  font-family: var(--font-mono);
}

.control-lead-link strong,
.control-signal h3,
.news-list-item h3,
.river-item h3,
.desk-story h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
}

.control-board__cta,
.news-command__archive,
.filter-bar button,
.desk-rail__cta,
.comment-form button,
.search-panel button {
  color: var(--ink);
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.signal-tape {
  min-height: 82px;
  color: var(--paper);
  background: #080b08;
  border: 2px solid var(--line-strong);
  border-radius: 0;
}

.signal-tape > span {
  color: var(--ink);
  background: var(--red);
  font-family: var(--font-mono);
}

.signal-tape a {
  color: var(--paper);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.signal-tape b,
.control-signal__index {
  font-family: var(--font-mono);
}

.control-workbench {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.5fr) minmax(280px, 0.38fr);
}

.signal-stack,
.match-console,
.brief-console,
.news-command,
.news-index-lead,
.source-note,
.brief-article__hero,
.brief-article__facts article,
.brief-article__rail,
.brief-article__side,
.decision-grid,
.rail-card,
.desk-rail,
.news-list-item,
.article-body,
.discussion-box {
  color: var(--paper);
  background: rgba(18, 23, 17, 0.92);
  border: 2px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.section-title h1,
.section-title h2,
.news-card h3,
.compact-news strong,
.brief-article__facts strong {
  color: var(--paper);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.section-title a,
.section-title span,
.control-signal p,
.control-signal small,
.news-index-lead p,
.source-note p,
.brief-article__copy p,
.brief-article__meta,
.news-list-item p,
.card-meta,
.compact-news small {
  color: rgba(255, 242, 207, 0.66);
}

.control-match {
  color: var(--paper);
  background: #080b08;
  border: 1px solid var(--line-strong);
  border-radius: 0;
}

.control-match b,
.brief-console__topics small,
.desk-rail .brief-console__topics small {
  color: var(--green);
}

.control-signal {
  grid-template-columns: 86px minmax(0, 1fr);
  border-top: 1px solid var(--line);
}

.control-signal__index {
  width: 70px;
  height: 70px;
  color: var(--ink);
  background: var(--category-accent, var(--green));
  border-radius: 0;
  font-size: 1.15rem;
}

.control-signal h3 {
  color: var(--paper);
  font-size: 1.25rem;
}

.control-signal--wide h3 {
  font-size: 2rem;
}

.brief-console__tags a,
.brief-console__topics a,
.desk-rail .brief-console__topics a,
.tag-list a,
.quick-tags a,
.topic-chip-list a {
  color: var(--paper);
  background: #080b08;
  border: 1px solid var(--line);
  border-radius: 0;
  font-family: var(--font-mono);
}

.decision-grid {
  gap: 0;
  padding: 0 20px;
}

.decision-grid .control-signal {
  padding: 20px 0;
}

.control-river,
.news-index-layout,
.brief-article__layout {
  gap: 16px;
}

.news-command {
  grid-template-columns: minmax(300px, 0.72fr) minmax(430px, 1fr) auto;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(202, 255, 63, 0.12), transparent 44%),
    #121711;
}

.news-command .control-eyebrow {
  color: var(--green);
}

.news-command h1 {
  color: var(--paper);
  font-size: 3.35rem;
  line-height: 0.98;
}

.news-command p {
  color: rgba(255, 242, 207, 0.68);
}

.filter-bar {
  background: transparent;
  border: 0;
  padding: 0;
}

.filter-bar input,
.filter-bar select,
.comment-form input,
.comment-form textarea,
.search-panel input {
  color: var(--paper);
  background: #080b08;
  border: 1px solid var(--line);
  border-radius: 0;
}

.news-index-lead {
  grid-template-columns: minmax(0, 1fr);
  position: relative;
  min-height: 470px;
  overflow: hidden;
}

.news-index-lead > a {
  position: absolute;
  inset: 0;
  opacity: 0.58;
}

.news-index-lead > a,
.news-index-lead .article-image {
  min-height: 470px;
}

.news-index-lead > div {
  position: relative;
  z-index: 1;
  max-width: 740px;
  align-content: end;
  padding: 38px;
}

.news-index-lead h2 {
  color: var(--paper);
  font-size: 3rem;
  text-transform: uppercase;
}

.brief-article__hero {
  position: relative;
  grid-template-columns: 1fr;
  min-height: 690px;
  overflow: hidden;
  background: #080b08;
}

.brief-article__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #080b08 0 47%, rgba(8, 11, 8, 0.72) 62%, rgba(8, 11, 8, 0.14)),
    linear-gradient(0deg, rgba(8, 11, 8, 0.7), transparent 45%);
}

.brief-article__copy {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.brief-article__copy .control-eyebrow,
.brief-article__facts span,
.source-note span {
  color: var(--green);
}

.brief-article__copy h1 {
  color: var(--paper);
  font-size: clamp(3rem, 6.8vw, 7rem);
  line-height: 0.92;
}

.brief-article__visual {
  position: absolute;
  inset: 0 0 0 42%;
  z-index: 1;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}

.brief-article__visual,
.brief-article__visual .article-image {
  min-height: 690px;
}

.brief-article__facts {
  grid-template-columns: 1.1fr 0.8fr 0.8fr 0.8fr;
  gap: 0;
  border: 2px solid var(--line);
  background: #080b08;
}

.brief-article__facts article {
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
}

.brief-article__facts article:last-child {
  border-right: 0;
}

.brief-article__layout {
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) minmax(280px, 320px);
}

.article-next-panel a,
.share-row a,
.reaction-row button,
.pager a,
.pager strong {
  color: var(--paper);
  background: #080b08;
  border: 1px solid var(--line);
  border-radius: 0;
}

.article-body p,
.article-body li {
  color: rgba(255, 242, 207, 0.82);
}

.category-hubs,
.tag-cloud,
.today-board,
.category-lanes {
  color: var(--paper);
  background: rgba(18, 23, 17, 0.82);
  border-color: var(--line);
}

.site-footer {
  color: rgba(255, 242, 207, 0.7);
  background: #080b08;
  border: 2px solid var(--line);
  border-bottom: 0;
  border-radius: 0;
}

@media (max-width: 1180px) {
  .control-board,
  .control-workbench,
  .news-command,
  .brief-article__layout {
    grid-template-columns: 1fr;
  }

  .control-board__visual {
    position: relative;
    inset: auto;
    order: -1;
    clip-path: none;
  }

  .brief-article__visual {
    position: relative;
    inset: auto;
    order: -1;
    clip-path: none;
  }

  .brief-article__hero::after {
    background: linear-gradient(0deg, #080b08 0 44%, rgba(8, 11, 8, 0.08));
  }
}

@media (max-width: 760px) {
  body {
    background:
      linear-gradient(90deg, rgba(202, 255, 63, 0.06) 1px, transparent 1px),
      #080b08;
    background-size: 42px 42px, auto;
  }

  main,
  .site-ad,
  .site-footer {
    width: min(100% - 18px, var(--max));
  }

  .site-header {
    background: #fff2cf;
  }

  .control-board {
    min-height: 0;
  }

  .control-board__visual a,
  .control-board__visual .article-image,
  .brief-article__visual,
  .brief-article__visual .article-image {
    min-height: 235px;
  }

  .control-board__copy,
  .control-board__panel,
  .news-command,
  .news-index-lead > div,
  .brief-article__copy {
    padding: 18px;
  }

  .control-board h1,
  .news-command h1 {
    font-size: 2.5rem;
  }

  .brief-article__hero {
    min-height: 0;
  }

  .brief-article__copy h1 {
    font-size: 2.55rem;
    line-height: 0.98;
  }

  .control-signal {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .control-signal__index {
    width: 48px;
    height: 48px;
  }

  .control-signal--wide h3,
  .news-index-lead h2 {
    font-size: 1.55rem;
  }

  .brief-article__facts {
    grid-template-columns: 1fr;
  }

  .brief-article__facts article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brief-article__facts article:last-child {
    border-bottom: 0;
  }
}

/* Odds Radar final rebuild */
body.arena-body {
  --radar-bg: #050606;
  --radar-ink: #0c0f0b;
  --radar-paper: #fff4d1;
  --radar-paper-soft: #f2e4bd;
  --radar-lime: #caff3f;
  --radar-red: #ff4b2e;
  --radar-cyan: #66e8ff;
  --radar-yellow: #ffd447;
  --radar-line: rgba(255, 244, 209, 0.18);
  --radar-dark-line: rgba(12, 15, 11, 0.18);
  --font-display: "Tektur", "Oswald", "IBM Plex Sans", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  color: var(--radar-paper);
  background:
    linear-gradient(90deg, rgba(202, 255, 63, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 244, 209, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 75, 46, 0.1), transparent 34%),
    var(--radar-bg);
  background-size: 96px 96px, 48px 48px, auto, auto;
  font-family: var(--font-body);
}

body.arena-body main,
body.arena-body .site-footer {
  width: min(1540px, calc(100% - 28px));
}

body.arena-body .arena-header {
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr) minmax(210px, 300px);
  min-height: 86px;
  padding: 0 14px;
  background:
    linear-gradient(90deg, rgba(202, 255, 63, 0.14), transparent 31%),
    #050606;
  border-bottom: 1px solid rgba(202, 255, 63, 0.72);
  box-shadow: 0 18px 0 rgba(0, 0, 0, 0.22);
}

body.arena-body .arena-brand {
  align-content: center;
  min-height: 62px;
  margin: 12px 0;
  padding: 0 18px;
  color: var(--radar-ink);
  background: var(--radar-lime);
  border: 0;
}

body.arena-body .arena-brand:hover {
  color: var(--radar-ink);
}

body.arena-body .arena-brand span,
body.arena-body .arena-brand small {
  color: var(--radar-ink);
}

body.arena-body .arena-brand strong {
  color: var(--radar-ink);
  font-size: 2.15rem;
}

body.arena-body .arena-nav a {
  min-height: 86px;
  padding: 0 16px;
  color: var(--radar-paper);
  border-right: 1px solid rgba(255, 244, 209, 0.12);
  font-size: 0.98rem;
}

body.arena-body .arena-nav a:hover,
body.arena-body .arena-nav a.is-active,
body.arena-body .arena-nav__hot {
  color: var(--radar-ink);
  background: var(--radar-yellow);
}

body.arena-body .arena-nav a.arena-nav__hot {
  color: var(--radar-ink);
  background: var(--radar-yellow);
}

body.arena-body .arena-search label {
  min-height: 46px;
  color: var(--radar-paper);
  background: rgba(255, 244, 209, 0.08);
  border: 1px solid rgba(255, 244, 209, 0.26);
}

body.arena-body .arena-search button {
  min-height: 46px;
  color: var(--radar-ink);
  background: var(--radar-yellow);
  border-color: var(--radar-yellow);
}

body.arena-body .arena-sponsor {
  grid-template-columns: 86px minmax(0, 1fr);
  width: min(1540px, calc(100% - 28px));
  margin-top: 18px;
  border: 1px solid rgba(202, 255, 63, 0.76);
  box-shadow: inset 0 0 0 6px rgba(202, 255, 63, 0.06);
}

body.arena-body .arena-sponsor::before {
  content: "18+ SPONSOR";
  color: var(--radar-ink);
  background: var(--radar-yellow);
  letter-spacing: 0;
}

body.arena-body .site-footer {
  margin-top: 42px;
  color: rgba(255, 244, 209, 0.72);
  background: #050606;
  border: 1px solid var(--radar-line);
  border-bottom: 0;
}

body.arena-body .catfish-ad {
  right: max(16px, calc((100vw - 1540px) / 2 + 16px));
  width: min(420px, calc(100% - 32px));
}

.odds-home,
.odds-news-page,
.odds-category-page {
  display: grid;
  gap: 18px;
}

.odds-livebar {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr) 112px;
  gap: 0;
  align-items: stretch;
  min-height: 74px;
  overflow: hidden;
  color: var(--radar-ink);
  background: var(--radar-paper);
  border: 1px solid var(--radar-dark-line);
}

.odds-livebar__label,
.odds-livebar__all {
  display: grid;
  place-items: center;
  padding: 0 14px;
  color: var(--radar-ink);
  background: var(--radar-lime);
  border-right: 1px solid var(--radar-dark-line);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
}

.odds-livebar__label strong {
  display: block;
  font-family: var(--font-mono);
}

.odds-livebar__all {
  background: var(--radar-red);
  border-right: 0;
  border-left: 1px solid var(--radar-dark-line);
}

.odds-livebar__track {
  display: flex;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.odds-livebar__track::-webkit-scrollbar {
  display: none;
}

.odds-live-chip {
  flex: 0 0 320px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 12px;
  align-content: center;
  min-width: 0;
  padding: 10px 14px;
  color: var(--radar-ink);
  background: var(--radar-paper);
  border-right: 1px solid var(--radar-dark-line);
}

.odds-live-chip span,
.odds-live-chip em {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.odds-live-chip em {
  color: var(--radar-red);
}

.odds-live-chip strong {
  min-width: 0;
  overflow: hidden;
  font-size: 0.94rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.odds-live-chip small {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  padding: 8px 9px;
  color: var(--radar-paper);
  background: var(--radar-ink);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.odds-hero {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.odds-board,
.odds-side-card,
.odds-news-menu,
.odds-news-rail .desk-rail {
  color: var(--radar-paper);
  background: #050606;
  border: 1px solid var(--radar-line);
}

.odds-board {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 610px;
}

.odds-board__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--radar-line);
}

.odds-board__head span,
.odds-kicker,
.odds-section-head span,
.odds-side-card > span,
.odds-news-menu strong,
.odds-filter span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--radar-lime);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.odds-board__head strong {
  color: var(--radar-yellow);
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}

.odds-board__rows {
  display: grid;
  align-content: start;
}

.odds-fixture-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 66px;
  gap: 8px 10px;
  align-items: center;
  min-height: 74px;
  padding: 12px 14px;
  color: var(--radar-paper);
  border-bottom: 1px solid var(--radar-line);
}

.odds-fixture-row span,
.odds-fixture-row small,
.odds-fixture-row em {
  color: rgba(255, 244, 209, 0.68);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-style: normal;
  text-transform: uppercase;
}

.odds-fixture-row strong {
  min-width: 0;
  overflow: hidden;
  font-size: 0.92rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.odds-fixture-row small {
  grid-column: 2;
}

.odds-fixture-row em {
  grid-row: 1 / 3;
  grid-column: 3;
  justify-self: end;
  padding: 8px 9px;
  color: var(--radar-ink);
  background: var(--radar-lime);
  font-weight: 800;
}

.odds-board__cta,
.odds-ticket__cta,
.odds-read-link,
.odds-side-card--telegram a,
.odds-side-card--score > a,
.odds-news-top__archive {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  color: var(--radar-ink);
  background: var(--radar-lime);
  border: 1px solid var(--radar-ink);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
}

.odds-side-card--score > .odds-fixture-row {
  display: grid;
  justify-content: stretch;
  min-height: 74px;
  padding: 12px 14px;
  color: var(--radar-paper);
  background: #050606;
  border: 0;
  border-bottom: 1px solid var(--radar-line);
  font-family: var(--font-body);
  text-transform: none;
}

.odds-board__cta {
  margin: 18px;
}

.odds-ticket {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.74fr);
  min-height: 610px;
  overflow: hidden;
  color: var(--radar-ink);
  background: var(--radar-paper);
  border: 1px solid var(--radar-dark-line);
}

body.arena-body .odds-ticket .odds-kicker,
body.arena-body .odds-ticket .category-pill {
  color: var(--radar-ink);
}

body.arena-body .odds-ticket .category-pill {
  background: rgba(12, 15, 11, 0.08);
  border-color: rgba(12, 15, 11, 0.18);
}

.odds-ticket::before {
  content: "";
  position: absolute;
  left: 34px;
  bottom: 24px;
  width: 235px;
  height: 28px;
  background: repeating-linear-gradient(90deg, var(--radar-ink) 0 5px, transparent 5px 10px, var(--radar-ink) 10px 12px, transparent 12px 19px);
  opacity: 0.88;
}

.odds-ticket::after {
  content: "18+";
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--radar-paper);
  background: var(--radar-red);
  border: 1px solid var(--radar-ink);
  font-family: var(--font-mono);
  font-weight: 800;
}

.odds-ticket__copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 15px;
  padding: 46px 40px 74px;
}

.odds-ticket .category-pill,
.odds-index-lead .category-pill {
  justify-self: start;
  color: var(--radar-ink);
  background: transparent;
  border: 1px solid var(--radar-ink);
  border-radius: 0;
}

.odds-ticket h1,
.odds-news-top h1,
.odds-index-lead h2,
.odds-section-head h2,
.odds-article .brief-article__copy h1 {
  color: inherit;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.94;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-transform: uppercase;
}

.odds-ticket h1 {
  max-width: 740px;
  font-size: 3.9rem;
}

.odds-ticket p {
  max-width: 620px;
  color: rgba(12, 15, 11, 0.74);
  font-size: 1.06rem;
  line-height: 1.65;
}

.odds-ticket__prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 520px;
  border: 1px solid var(--radar-ink);
}

.odds-ticket__prices span {
  display: grid;
  gap: 4px;
  padding: 13px 16px;
  border-right: 1px solid var(--radar-ink);
}

.odds-ticket__prices span:last-child {
  border-right: 0;
}

.odds-ticket__prices small {
  color: rgba(12, 15, 11, 0.58);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.odds-ticket__prices strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.odds-ticket__cta {
  justify-self: start;
  min-height: 50px;
  background: var(--radar-red);
}

.odds-ticket__media {
  min-width: 0;
  min-height: 610px;
  background: #050606;
  border-left: 1px solid var(--radar-ink);
}

.odds-ticket__media a,
.odds-ticket__media .article-image,
.odds-index-lead__media,
.odds-index-lead__media .article-image {
  display: block;
  height: 100%;
  min-height: 100%;
}

.odds-ticket__media .article-image,
.odds-index-lead__media .article-image,
.odds-story__media .article-image {
  border-radius: 0;
}

.odds-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 16px;
  align-items: end;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--radar-line);
}

.odds-section-head span {
  grid-column: 1 / -1;
}

.odds-section-head h2 {
  margin: 0;
  color: var(--radar-paper);
  font-size: 2.5rem;
}

.odds-section-head a,
.odds-section-head small {
  color: var(--radar-lime);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.odds-section-head--compact {
  padding: 0;
  border-bottom: 0;
}

.odds-market-wall,
.odds-betting-floor,
.odds-mosaic,
.odds-hubs {
  display: grid;
  gap: 18px;
}

.odds-market-grid,
.odds-news-grid,
.odds-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.odds-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
  min-height: 340px;
  overflow: hidden;
  color: var(--radar-paper);
  background:
    linear-gradient(180deg, rgba(255, 244, 209, 0.05), transparent),
    #050606;
  border: 1px solid var(--radar-line);
}

.odds-story__media {
  min-width: 0;
  max-width: 100%;
  min-height: 170px;
  border-bottom: 1px solid var(--radar-line);
}

.odds-story__copy {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
  padding: 18px;
}

.odds-story__copy > * {
  min-width: 0;
}

.odds-story__copy span {
  color: var(--category-accent, var(--radar-lime));
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.odds-story h3 {
  margin: 0;
  color: var(--radar-paper);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.odds-story h3 a {
  overflow-wrap: anywhere;
}

.odds-story p {
  margin: 0;
  color: rgba(255, 244, 209, 0.7);
  line-height: 1.55;
}

.odds-read-link {
  justify-self: start;
  min-height: 38px;
  margin-top: 4px;
  padding: 0 12px;
  font-size: 0.9rem;
}

.odds-story--wide {
  grid-column: span 2;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
}

.odds-story--wide .odds-story__media {
  min-height: 100%;
  border-right: 1px solid var(--radar-line);
  border-bottom: 0;
}

.odds-story--wide h3 {
  font-size: 2.45rem;
}

.odds-story--poster {
  grid-row: span 2;
  min-height: 520px;
}

.odds-story--poster h3 {
  font-size: 2rem;
}

.odds-betting-floor,
.odds-news-shell {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: start;
}

.odds-floor-main,
.odds-news-main {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.odds-ledger {
  display: grid;
  color: var(--radar-paper);
  background: #050606;
  border: 1px solid var(--radar-line);
}

.odds-ledger-row {
  display: grid;
  grid-template-columns: 70px 116px minmax(0, 1fr) 72px;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--radar-line);
}

.odds-ledger-row:last-child {
  border-bottom: 0;
}

.odds-ledger-row time,
.odds-ledger-row > a,
.odds-ledger-row > span {
  color: rgba(255, 244, 209, 0.62);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.odds-ledger-row > a {
  color: var(--category-accent, var(--radar-lime));
}

.odds-ledger-row h3 {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: var(--radar-paper);
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.odds-ledger-row > span {
  justify-self: end;
  padding: 7px 8px;
  color: var(--radar-ink);
  background: var(--radar-yellow);
}

.odds-side-stack,
.odds-news-rail {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.odds-side-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  max-width: 100%;
  padding: 18px;
}

.odds-side-card .compact-news {
  grid-template-columns: 40px minmax(0, 1fr);
  color: var(--radar-paper);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--radar-line);
  border-radius: 0;
  padding: 12px 0 0;
}

.odds-side-card .compact-news__index {
  color: var(--radar-ink);
  background: var(--category-accent, var(--radar-lime));
  border-radius: 0;
}

.odds-side-card .compact-news strong {
  color: var(--radar-paper);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.odds-side-card .compact-news small,
.odds-side-card p {
  color: rgba(255, 244, 209, 0.66);
}

.odds-side-card--topics div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.odds-side-card--topics a,
.odds-news-menu__tags a {
  padding: 8px 10px;
  color: var(--radar-paper);
  background: rgba(255, 244, 209, 0.07);
  border: 1px solid var(--radar-line);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.odds-side-card--topics small {
  color: var(--radar-lime);
}

.odds-side-card--telegram {
  background: var(--radar-yellow);
  color: var(--radar-ink);
  border-color: var(--radar-ink);
}

.odds-side-card--telegram span {
  color: var(--radar-ink);
}

.odds-side-card--telegram strong {
  color: var(--radar-ink);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.odds-hubs {
  padding: 24px;
  background: rgba(255, 244, 209, 0.05);
  border: 1px solid var(--radar-line);
}

.odds-category-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--radar-line);
  border: 1px solid var(--radar-line);
}

.odds-category-panel a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  min-height: 132px;
  padding: 16px;
  color: var(--radar-paper);
  background: #050606;
}

.odds-category-panel span {
  color: var(--category-accent, var(--radar-lime));
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.odds-category-panel strong {
  grid-column: 1 / -1;
  color: var(--radar-paper);
  font-family: var(--font-display);
  font-size: 1.24rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.odds-category-panel em {
  color: var(--radar-ink);
  background: var(--category-accent, var(--radar-lime));
  padding: 6px 8px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
}

.odds-news-top {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(440px, 1fr) auto;
  gap: 18px;
  align-items: stretch;
  padding: 22px;
  color: var(--radar-ink);
  background: var(--radar-paper);
  border: 1px solid var(--radar-dark-line);
}

.odds-news-top__copy {
  display: grid;
  align-content: center;
  gap: 10px;
}

.odds-news-top h1 {
  margin: 0;
  font-size: 3.6rem;
}

.odds-news-top p {
  max-width: 520px;
  margin: 0;
  color: rgba(12, 15, 11, 0.7);
}

.odds-news-top .odds-kicker {
  color: var(--radar-red);
}

.odds-filter {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(150px, 0.72fr) minmax(140px, 0.6fr) auto;
  gap: 10px;
  align-items: end;
}

.odds-filter--search {
  grid-template-columns: minmax(240px, 1fr) auto;
}

.odds-filter label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.odds-filter span {
  color: rgba(12, 15, 11, 0.62);
}

.odds-filter input,
.odds-filter select {
  width: 100%;
  min-height: 46px;
  min-width: 0;
  padding: 0 12px;
  color: var(--radar-ink);
  background: rgba(12, 15, 11, 0.04);
  border: 1px solid var(--radar-dark-line);
  border-radius: 0;
  outline: 0;
}

.odds-filter button {
  min-height: 46px;
  padding: 0 14px;
  color: var(--radar-ink);
  background: var(--radar-lime);
  border: 1px solid var(--radar-ink);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
}

.odds-news-top__archive {
  align-self: end;
  min-width: 124px;
}

.odds-news-shell {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}

.odds-news-menu {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.odds-news-menu strong {
  padding: 16px;
  border-bottom: 1px solid var(--radar-line);
}

.odds-news-menu > a {
  padding: 14px 16px;
  color: var(--radar-paper);
  border-bottom: 1px solid var(--radar-line);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
}

.odds-news-menu > a:hover,
.odds-news-menu > a.is-active {
  color: var(--radar-ink);
  background: var(--category-accent, var(--radar-lime));
}

.odds-news-menu__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
}

.odds-index-lead {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  min-height: 470px;
  overflow: hidden;
  color: var(--radar-paper);
  background: #050606;
  border: 1px solid var(--radar-line);
}

.odds-index-lead__media {
  min-height: 470px;
  border-right: 1px solid var(--radar-line);
}

.odds-index-lead__copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 36px;
}

.odds-index-lead__copy > span {
  color: var(--category-accent, var(--radar-lime));
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.odds-index-lead h2 {
  margin: 0;
  font-size: 3.2rem;
}

.odds-index-lead p {
  margin: 0;
  color: rgba(255, 244, 209, 0.72);
  line-height: 1.65;
}

.odds-index-lead .odds-ticket__prices {
  color: var(--radar-paper);
  border-color: var(--radar-line);
}

.odds-index-lead .odds-ticket__prices span {
  border-color: var(--radar-line);
}

.odds-index-lead .odds-ticket__prices small {
  color: rgba(255, 244, 209, 0.62);
}

.odds-news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.odds-news-grid .odds-story--tall {
  grid-row: span 2;
  min-height: 510px;
}

.odds-news-rail .desk-rail {
  padding: 18px;
  border-radius: 0;
  box-shadow: none;
}

.odds-news-rail .desk-rail > span,
.odds-news-rail .desk-rail .section-title h2 {
  color: var(--radar-lime);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.odds-news-rail .watch-link,
.odds-news-rail .desk-rail__cta {
  border-radius: 0;
}

body.arena-body .odds-article {
  display: grid;
  gap: 18px;
}

body.arena-body .odds-article .brief-article__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.84fr);
  min-height: 560px;
  overflow: hidden;
  color: var(--radar-ink);
  background: var(--radar-paper);
  border: 1px solid var(--radar-dark-line);
  border-radius: 0;
}

body.arena-body .odds-article .brief-article__hero::after {
  display: none;
}

body.arena-body .odds-article .brief-article__copy {
  position: relative;
  z-index: 2;
  max-width: none;
  padding: 46px;
  color: var(--radar-ink);
}

body.arena-body .odds-article .brief-article__copy .control-eyebrow {
  color: var(--radar-red);
}

body.arena-body .odds-article .brief-article__copy h1 {
  color: var(--radar-ink);
  font-size: 4.4rem;
}

body.arena-body .odds-article .brief-article__copy p {
  color: rgba(12, 15, 11, 0.72);
}

body.arena-body .odds-article .brief-article__meta,
body.arena-body .odds-article .share-row {
  color: var(--radar-ink);
}

body.arena-body .odds-article .share-row a {
  color: var(--radar-ink);
  background: transparent;
  border: 1px solid var(--radar-ink);
  border-radius: 0;
}

body.arena-body .odds-article .brief-article__visual {
  position: relative;
  inset: auto;
  z-index: 1;
  min-height: 560px;
  clip-path: none;
  border-left: 1px solid var(--radar-ink);
}

body.arena-body .odds-article .brief-article__visual .article-image {
  min-height: 560px;
  border-radius: 0;
}

body.arena-body .odds-article .brief-article__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  color: var(--radar-paper);
  background: #050606;
  border: 1px solid var(--radar-line);
  border-radius: 0;
}

body.arena-body .odds-article .brief-article__facts article {
  background: transparent;
  border: 0;
  border-right: 1px solid var(--radar-line);
  border-radius: 0;
  box-shadow: none;
}

body.arena-body .odds-article .brief-article__facts article:last-child {
  border-right: 0;
}

body.arena-body .odds-article .brief-article__facts span {
  color: var(--radar-lime);
}

body.arena-body .odds-article .brief-article__facts strong {
  color: var(--radar-paper);
  font-family: var(--font-display);
  text-transform: uppercase;
}

body.arena-body .odds-article .brief-article__layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 320px;
  gap: 18px;
}

body.arena-body .odds-article .brief-article__rail,
body.arena-body .odds-article .brief-article__side,
body.arena-body .odds-article .source-note,
body.arena-body .odds-article .article-body,
body.arena-body .odds-article .discussion-box,
body.arena-body .odds-article .rail-card,
body.arena-body .odds-article .article-next-panel {
  color: var(--radar-paper);
  background: #050606;
  border: 1px solid var(--radar-line);
  border-radius: 0;
  box-shadow: none;
}

body.arena-body .odds-article .source-note span,
body.arena-body .odds-article .article-next-panel span,
body.arena-body .odds-article .rail-card h2 {
  color: var(--radar-lime);
  font-family: var(--font-display);
  text-transform: uppercase;
}

body.arena-body .odds-article .article-body p,
body.arena-body .odds-article .article-body li {
  color: rgba(255, 244, 209, 0.84);
}

@media (max-width: 1180px) {
  body.arena-body .arena-header,
  .odds-news-top,
  .odds-news-shell,
  body.arena-body .odds-article .brief-article__layout {
    grid-template-columns: 1fr;
  }

  .odds-hero,
  .odds-betting-floor {
    grid-template-columns: 1fr;
  }

  .odds-board {
    min-height: 0;
  }

  .odds-market-grid,
  .odds-news-grid,
  .odds-mosaic,
  .odds-category-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .odds-news-menu {
    position: static;
  }

  body.arena-body .odds-article .brief-article__hero,
  .odds-index-lead,
  .odds-ticket {
    grid-template-columns: 1fr;
  }

  body.arena-body .odds-article .brief-article__visual,
  .odds-ticket__media,
  .odds-index-lead__media {
    min-height: 340px;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--radar-ink);
  }
}

@media (max-width: 760px) {
  body.arena-body main,
  body.arena-body .site-footer {
    width: min(100% - 18px, 1540px);
  }

  body.arena-body .arena-header {
    grid-template-columns: minmax(0, 1fr) 48px;
    min-height: 118px;
    padding: 8px 10px 0;
  }

  body.arena-body .arena-brand {
    margin: 0;
    min-height: 50px;
    padding: 0 12px;
  }

  body.arena-body .arena-brand strong {
    font-size: 1.45rem;
  }

  body.arena-body .arena-nav a {
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  body.arena-body .arena-sponsor {
    grid-template-columns: 44px minmax(0, 1fr);
    width: min(100% - 18px, 1540px);
  }

  .odds-livebar {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .odds-livebar__all {
    display: none;
  }

  .odds-live-chip {
    flex-basis: 250px;
  }

  .odds-ticket {
    min-height: 0;
  }

  .odds-ticket::before {
    display: none;
  }

  .odds-ticket__copy,
  .odds-index-lead__copy,
  body.arena-body .odds-article .brief-article__copy {
    padding: 22px;
  }

  .odds-ticket h1,
  .odds-news-top h1,
  .odds-index-lead h2,
  body.arena-body .odds-article .brief-article__copy h1 {
    font-size: 2.35rem;
    line-height: 1;
  }

  .odds-ticket__media,
  .odds-ticket__media .article-image,
  .odds-index-lead__media,
  .odds-index-lead__media .article-image,
  body.arena-body .odds-article .brief-article__visual,
  body.arena-body .odds-article .brief-article__visual .article-image {
    min-height: 245px;
  }

  .odds-ticket__prices {
    grid-template-columns: 1fr;
  }

  .odds-ticket__prices span,
  .odds-ticket__prices span:last-child {
    border-right: 0;
    border-bottom: 1px solid currentColor;
  }

  .odds-ticket__prices span:last-child {
    border-bottom: 0;
  }

  .odds-section-head,
  .odds-filter,
  .odds-market-grid,
  .odds-news-grid,
  .odds-mosaic,
  .odds-category-panel,
  body.arena-body .odds-article .brief-article__facts {
    grid-template-columns: 1fr;
  }

  .odds-section-head h2 {
    font-size: 1.75rem;
  }

  .odds-story--wide,
  .odds-story--poster,
  .odds-news-grid .odds-story--tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }

  .odds-story--wide {
    grid-template-columns: 1fr;
  }

  .odds-story--wide .odds-story__media {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--radar-line);
  }

  .odds-story--wide h3,
  .odds-story--poster h3 {
    font-size: 1.45rem;
  }

  .odds-ledger-row {
    grid-template-columns: 58px minmax(0, 1fr) 58px;
  }

  .odds-ledger-row > a {
    display: none;
  }

  .odds-ledger-row h3 {
    font-size: 0.94rem;
  }

  .odds-news-top {
    padding: 16px;
  }

  .odds-index-lead {
    min-height: 0;
  }

  body.arena-body .odds-article .brief-article__facts article {
    border-right: 0;
    border-bottom: 1px solid var(--radar-line);
  }

  body.arena-body .odds-article .brief-article__facts article:last-child {
    border-bottom: 0;
  }
}

/* Odds Radar compatibility for legacy public pages */
body.arena-body .page-hero,
body.arena-body .fixture-hero,
body.arena-body .entity-hero,
body.arena-body .search-page,
body.arena-body .topics-board,
body.arena-body .archive-section,
body.arena-body .broadcast-board,
body.arena-body .activity-desk,
body.arena-body .info-grid {
  color: var(--radar-paper);
}

body.arena-body .page-hero,
body.arena-body .fixture-hero,
body.arena-body .entity-hero {
  overflow: hidden;
  color: var(--radar-ink);
  background:
    linear-gradient(120deg, rgba(202, 255, 63, 0.18), transparent 42%),
    var(--radar-paper);
  border: 1px solid var(--radar-dark-line);
  border-radius: 0;
  box-shadow: none;
}

body.arena-body .page-hero--dark,
body.arena-body .fixture-hero,
body.arena-body .entity-hero {
  color: var(--radar-paper);
  background:
    linear-gradient(120deg, rgba(255, 75, 46, 0.16), transparent 42%),
    #050606;
  border-color: var(--radar-line);
}

body.arena-body .page-hero span,
body.arena-body .fixture-hero > span,
body.arena-body .entity-hero span,
body.arena-body .desk-section-head span,
body.arena-body .section-title span,
body.arena-body .section-title a,
body.arena-body .broadcast-card span,
body.arena-body .archive-day span,
body.arena-body .topic-card span,
body.arena-body .entity-card span,
body.arena-body .info-panel span {
  color: var(--radar-lime);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

body.arena-body .page-hero:not(.page-hero--dark) span,
body.arena-body .page-hero:not(.page-hero--dark) h1,
body.arena-body .page-hero:not(.page-hero--dark) p {
  color: var(--radar-ink);
}

body.arena-body .page-hero h1,
body.arena-body .fixture-hero h1,
body.arena-body .entity-hero h1,
body.arena-body .desk-section-head h2,
body.arena-body .section-title h1,
body.arena-body .section-title h2,
body.arena-body .match-day h2,
body.arena-body .topics-board h2,
body.arena-body .archive-section h2,
body.arena-body .broadcast-board h2,
body.arena-body .activity-desk h2 {
  color: currentColor;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

body.arena-body .page-hero p,
body.arena-body .fixture-hero p,
body.arena-body .entity-hero p {
  color: rgba(255, 244, 209, 0.72);
}

body.arena-body .page-hero:not(.page-hero--dark) p {
  color: rgba(12, 15, 11, 0.7);
}

body.arena-body .hub-tabs,
body.arena-body .date-tabs {
  gap: 8px;
  padding: 10px;
  color: var(--radar-paper);
  background: #050606;
  border: 1px solid var(--radar-line);
  border-radius: 0;
}

body.arena-body .hub-tabs a,
body.arena-body .date-tabs a,
body.arena-body .pager a,
body.arena-body .pager strong,
body.arena-body .fixture-actions a,
body.arena-body .section-link,
body.arena-body .read-link {
  color: var(--radar-paper);
  background: rgba(255, 244, 209, 0.06);
  border: 1px solid var(--radar-line);
  border-radius: 0;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
}

body.arena-body .hub-tabs a:hover,
body.arena-body .date-tabs a:hover,
body.arena-body .date-tabs a.is-active,
body.arena-body .fixture-actions a:hover,
body.arena-body .section-link:hover {
  color: var(--radar-ink);
  background: var(--radar-lime);
  border-color: var(--radar-ink);
}

body.arena-body .media-layout,
body.arena-body .matches-layout,
body.arena-body .sport-desk-grid {
  gap: 18px;
}

body.arena-body .story-mosaic,
body.arena-body .news-feed,
body.arena-body .hub-feed,
body.arena-body .match-day,
body.arena-body .rail-card,
body.arena-body .desk-rail,
body.arena-body .discussion-box,
body.arena-body .source-note,
body.arena-body .article-next-panel,
body.arena-body .info-panel,
body.arena-body .empty-panel,
body.arena-body .tag-cloud,
body.arena-body .today-board {
  color: var(--radar-paper);
  background: #050606;
  border: 1px solid var(--radar-line);
  border-radius: 0;
  box-shadow: none;
}

body.arena-body .story-mosaic,
body.arena-body .news-feed,
body.arena-body .hub-feed,
body.arena-body .match-day {
  padding: 18px;
}

body.arena-body .desk-story,
body.arena-body .news-card,
body.arena-body .river-item,
body.arena-body .hub-story-tile,
body.arena-body .hub-news-row,
body.arena-body .fixture-card,
body.arena-body .broadcast-card,
body.arena-body .archive-day,
body.arena-body .topic-card,
body.arena-body .entity-card,
body.arena-body .activity-item,
body.arena-body .comment-item {
  color: var(--radar-paper);
  background:
    linear-gradient(180deg, rgba(255, 244, 209, 0.045), transparent),
    #050606;
  border: 1px solid var(--radar-line);
  border-radius: 0;
  box-shadow: none;
}

body.arena-body .desk-story:hover,
body.arena-body .news-card:hover,
body.arena-body .river-item:hover,
body.arena-body .hub-story-tile:hover,
body.arena-body .hub-news-row:hover,
body.arena-body .fixture-card:hover,
body.arena-body .broadcast-card:hover,
body.arena-body .archive-day:hover,
body.arena-body .topic-card:hover,
body.arena-body .entity-card:hover {
  transform: none;
  border-color: rgba(202, 255, 63, 0.58);
  box-shadow: inset 0 0 0 1px rgba(202, 255, 63, 0.18);
}

body.arena-body .desk-story h1,
body.arena-body .desk-story h3,
body.arena-body .news-card h3,
body.arena-body .river-item h3,
body.arena-body .hub-story-tile h3,
body.arena-body .hub-news-row h3,
body.arena-body .fixture-card strong,
body.arena-body .fixture-card span,
body.arena-body .broadcast-card strong,
body.arena-body .archive-day strong,
body.arena-body .topic-card strong,
body.arena-body .entity-card strong,
body.arena-body .compact-news strong,
body.arena-body .activity-item strong,
body.arena-body .comment-item strong,
body.arena-body .info-panel p {
  color: var(--radar-paper);
}

body.arena-body .desk-story h1 a,
body.arena-body .desk-story h3 a,
body.arena-body .news-card h3 a,
body.arena-body .river-item h3 a,
body.arena-body .hub-story-tile h3 a,
body.arena-body .hub-news-row h3 a,
body.arena-body .compact-news strong {
  color: inherit;
}

body.arena-body .desk-story h1,
body.arena-body .desk-story h3,
body.arena-body .news-card h3,
body.arena-body .river-item h3,
body.arena-body .hub-story-tile h3,
body.arena-body .hub-news-row h3,
body.arena-body .broadcast-card strong,
body.arena-body .archive-day strong,
body.arena-body .topic-card strong,
body.arena-body .entity-card strong,
body.arena-body .compact-news strong {
  font-family: var(--font-display);
  line-height: 1.08;
  text-transform: uppercase;
  text-wrap: balance;
}

body.arena-body .desk-story p,
body.arena-body .news-card p,
body.arena-body .river-item p,
body.arena-body .hub-news-row p,
body.arena-body .card-meta,
body.arena-body .compact-news small,
body.arena-body .fixture-card small,
body.arena-body .broadcast-card small,
body.arena-body .archive-day small,
body.arena-body .topic-card small,
body.arena-body .entity-card small,
body.arena-body .activity-item small,
body.arena-body .comment-item p,
body.arena-body .muted {
  color: rgba(255, 244, 209, 0.68);
}

body.arena-body .category-pill,
body.arena-body .tag-list a,
body.arena-body .topic-chip-list a,
body.arena-body .topic-rail-list a,
body.arena-body .briefing-tags a {
  color: var(--radar-paper);
  background: rgba(255, 244, 209, 0.06);
  border: 1px solid var(--radar-line);
  border-radius: 0;
}

body.arena-body .category-pill:hover,
body.arena-body .tag-list a:hover,
body.arena-body .topic-chip-list a:hover,
body.arena-body .topic-rail-list a:hover {
  color: var(--radar-ink);
  background: var(--category-accent, var(--radar-lime));
}

body.arena-body .compact-news {
  color: var(--radar-paper);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--radar-line);
  border-radius: 0;
}

body.arena-body .compact-news__index {
  color: var(--radar-ink);
  background: var(--category-accent, var(--radar-lime));
  border-radius: 0;
}

body.arena-body .fixture-card {
  grid-template-columns: 86px minmax(0, 1fr) minmax(150px, 0.42fr);
}

body.arena-body .fixture-card__teams em,
body.arena-body .status-badge {
  color: var(--radar-ink);
  background: var(--radar-lime);
  border-radius: 0;
}

body.arena-body small.status-badge {
  color: var(--radar-ink);
}

body.arena-body .status-badge small {
  color: inherit;
}

body.arena-body .match-state-grid > div,
body.arena-body .match-state-grid > a,
body.arena-body .topic-stat-grid > div,
body.arena-body .topic-stat-grid > a {
  color: var(--radar-paper);
  background: #050606;
  border: 1px solid var(--radar-line);
  border-radius: 0;
  box-shadow: none;
}

body.arena-body .match-state-grid strong,
body.arena-body .topic-stat-grid strong {
  color: var(--radar-lime);
  font-family: var(--font-display);
}

body.arena-body .broadcast-grid,
body.arena-body .archive-grid,
body.arena-body .topic-grid,
body.arena-body .entity-grid,
body.arena-body .news-grid {
  gap: 18px;
}

body.arena-body .article-image,
body.arena-body .article-image--wide {
  border-radius: 0;
}

body.arena-body .search-panel {
  color: var(--radar-paper);
  background: #050606;
  border: 1px solid var(--radar-line);
  border-radius: 0;
}

body.arena-body .search-page {
  padding: 18px;
  color: var(--radar-paper);
  background: #050606;
  border: 1px solid var(--radar-line);
  border-radius: 0;
  box-shadow: none;
}

body.arena-body .search-panel label,
body.arena-body .comment-form input,
body.arena-body .comment-form textarea {
  color: var(--radar-paper);
  background: rgba(255, 244, 209, 0.06);
  border: 1px solid var(--radar-line);
  border-radius: 0;
}

body.arena-body .search-panel input {
  color: var(--radar-paper);
}

body.arena-body .search-panel button,
body.arena-body .comment-form button,
body.arena-body .reaction-row button,
body.arena-body .poll-option button {
  color: var(--radar-ink);
  background: var(--radar-lime);
  border: 1px solid var(--radar-ink);
  border-radius: 0;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
}

body.arena-body .sponsor-card,
body.arena-body .sponsor-card a {
  border-radius: 0;
}

body.arena-body .sponsor-card {
  overflow: hidden;
  border: 1px solid rgba(202, 255, 63, 0.65);
  box-shadow: none;
}

body.arena-body .archive-day::after,
body.arena-body .broadcast-card::after,
body.arena-body .topic-card::after,
body.arena-body .entity-card::after {
  display: none;
}

body.arena-body .scorebar {
  color: var(--radar-paper);
  background: #050606;
  border: 1px solid var(--radar-line);
  border-radius: 0;
  box-shadow: none;
}

body.arena-body .scorebar__label,
body.arena-body .scorebar__all {
  color: var(--radar-lime);
}

body.arena-body .score-chip {
  color: var(--radar-paper);
  background: rgba(255, 244, 209, 0.06);
  border: 1px solid var(--radar-line);
  border-radius: 0;
}

body.arena-body .score-chip span,
body.arena-body .score-chip small {
  color: rgba(255, 244, 209, 0.64);
}

body.arena-body .score-chip strong {
  color: var(--radar-paper);
}

body.arena-body .watch-card {
  background: var(--radar-yellow);
  color: var(--radar-ink);
  border-color: var(--radar-ink);
}

body.arena-body .watch-card span,
body.arena-body .watch-card strong,
body.arena-body .watch-card p {
  color: var(--radar-ink);
}

body.arena-body .watch-card a {
  color: var(--radar-ink);
  background: var(--radar-lime);
  border-radius: 0;
}

@media (max-width: 1180px) {
  body.arena-body .fixture-card {
    grid-template-columns: 86px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  body.arena-body .page-hero,
  body.arena-body .fixture-hero,
  body.arena-body .entity-hero,
  body.arena-body .story-mosaic,
  body.arena-body .news-feed,
  body.arena-body .hub-feed,
  body.arena-body .match-day {
    padding: 16px;
  }

  body.arena-body .page-hero h1,
  body.arena-body .fixture-hero h1,
  body.arena-body .entity-hero h1 {
    font-size: 2.45rem;
  }

  body.arena-body .fixture-card {
    grid-template-columns: 1fr;
  }
}

/* Editorial typography reset: this site must not read like the prior bookmaker skin. */
body.arena-body {
  --font-display: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
}

body.arena-body .arena-brand,
body.arena-body .arena-brand strong,
body.arena-body .arena-nav a,
body.arena-body .arena-search input,
body.arena-body .arena-search button,
body.arena-body .odds-board__cta,
body.arena-body .odds-ticket__cta,
body.arena-body .odds-read-link,
body.arena-body .odds-side-card--telegram a,
body.arena-body .odds-side-card--score > a,
body.arena-body .odds-news-top__archive,
body.arena-body .odds-filter button,
body.arena-body .hub-tabs a,
body.arena-body .date-tabs a,
body.arena-body .pager a,
body.arena-body .pager strong,
body.arena-body .fixture-actions a,
body.arena-body .section-link,
body.arena-body .read-link {
  font-family: var(--font-body);
}

body.arena-body .arena-brand strong {
  font-weight: 800;
  line-height: 1;
  text-transform: none;
}

body.arena-body .arena-nav a,
body.arena-body .arena-search button,
body.arena-body .odds-board__cta,
body.arena-body .odds-ticket__cta,
body.arena-body .odds-read-link,
body.arena-body .odds-side-card--telegram a,
body.arena-body .odds-side-card--score > a,
body.arena-body .odds-news-top__archive,
body.arena-body .odds-filter button {
  font-weight: 800;
}

body.arena-body .odds-ticket h1,
body.arena-body .odds-news-top h1,
body.arena-body .odds-index-lead h2,
body.arena-body .odds-section-head h2,
body.arena-body .odds-story h3,
body.arena-body .odds-ledger-row h3,
body.arena-body .odds-article .brief-article__copy h1,
body.arena-body .page-hero h1,
body.arena-body .fixture-hero h1,
body.arena-body .entity-hero h1,
body.arena-body .desk-section-head h2,
body.arena-body .section-title h1,
body.arena-body .section-title h2,
body.arena-body .match-day h2,
body.arena-body .topics-board h2,
body.arena-body .archive-section h2,
body.arena-body .broadcast-board h2,
body.arena-body .activity-desk h2,
body.arena-body .desk-story h1,
body.arena-body .desk-story h3,
body.arena-body .news-card h3,
body.arena-body .river-item h3,
body.arena-body .hub-story-tile h3,
body.arena-body .hub-news-row h3,
body.arena-body .broadcast-card strong,
body.arena-body .archive-day strong,
body.arena-body .topic-card strong,
body.arena-body .entity-card strong,
body.arena-body .compact-news strong,
body.arena-body .activity-item strong,
body.arena-body .comment-item strong {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
  text-transform: none;
}

body.arena-body .odds-ticket h1,
body.arena-body .odds-news-top h1 {
  line-height: 0.98;
}

body.arena-body .odds-index-lead h2 {
  font-size: clamp(2.25rem, 3.1vw, 2.85rem);
}

body.arena-body .odds-ticket__prices strong,
body.arena-body .odds-ledger-row > span,
body.arena-body .odds-board__head strong,
body.arena-body .odds-live-chip small,
body.arena-body .odds-fixture-row em,
body.arena-body .fixture-card__teams em,
body.arena-body .status-badge {
  font-family: var(--font-mono);
}

/* NewsBK direction: live-score app surface inspired by Sofascore, not a bookmaker skin. */
body.arena-body {
  --radar-bg: #07111b;
  --radar-ink: #07111b;
  --radar-paper: #f8fafc;
  --radar-paper-soft: #d9e3ee;
  --radar-lime: #17c964;
  --radar-red: #ff4d5f;
  --radar-cyan: #3b82f6;
  --radar-yellow: #f6c453;
  --radar-line: rgba(148, 163, 184, 0.2);
  --radar-dark-line: rgba(15, 23, 42, 0.12);
  --score-panel: #0c1722;
  --score-card: #111f2c;
  --score-card-soft: #162635;
  --score-text: #eaf2fb;
  --score-muted: #93a4b7;
  --font-display: "Manrope", "Golos Text", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Golos Text", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
  color: var(--score-text);
  background:
    linear-gradient(90deg, rgba(23, 201, 100, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #08131d 0%, #07111b 42%, #050b11 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

body.arena-body main,
body.arena-body .site-footer,
body.arena-body .arena-sponsor {
  width: min(1240px, calc(100% - 28px));
}

body.arena-body .arena-header {
  grid-template-columns: minmax(178px, 220px) minmax(0, 1fr) minmax(210px, 310px);
  min-height: 72px;
  padding: 0 max(14px, calc((100vw - 1240px) / 2));
  background: rgba(7, 17, 27, 0.94);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

body.arena-body .arena-brand {
  gap: 0;
  min-height: 48px;
  margin: 10px 0;
  padding: 0;
  color: var(--score-text);
  background: transparent;
}

body.arena-body .arena-brand span,
body.arena-body .arena-brand small {
  color: var(--score-muted);
  font-family: var(--font-body);
  font-size: 0.66rem;
}

body.arena-body .arena-brand strong {
  color: var(--score-text);
  font-size: 1.32rem;
  font-weight: 800;
}

body.arena-body .arena-brand::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background: var(--radar-lime);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(23, 201, 100, 0.13);
}

body.arena-body .arena-nav {
  gap: 6px;
  align-items: center;
}

body.arena-body .arena-nav a {
  min-height: 40px;
  padding: 0 12px;
  color: var(--score-muted);
  border: 0;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: none;
}

body.arena-body .arena-nav a:hover,
body.arena-body .arena-nav a.is-active,
body.arena-body .arena-nav a.arena-nav__hot {
  color: #ffffff;
  background: rgba(59, 130, 246, 0.2);
}

body.arena-body .arena-nav a.is-active {
  box-shadow: inset 0 -2px 0 var(--radar-cyan);
}

body.arena-body .arena-search {
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 6px;
}

body.arena-body .arena-search label,
body.arena-body .arena-search button {
  min-height: 42px;
  border-radius: 12px;
}

body.arena-body .arena-search label {
  color: var(--score-muted);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(148, 163, 184, 0.2);
}

body.arena-body .arena-search input {
  color: var(--score-text);
}

body.arena-body .arena-search button {
  color: #ffffff;
  background: var(--radar-cyan);
  border-color: var(--radar-cyan);
}

body.arena-body .arena-sponsor {
  max-height: 74px;
  margin-top: 10px;
  overflow: hidden;
  background: var(--score-panel);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  box-shadow: none;
  filter: saturate(0.82);
}

body.arena-body .arena-sponsor::before {
  content: "18+";
  color: #07111b;
  background: var(--radar-yellow);
  font-family: var(--font-mono);
}

body.arena-body .site-ad--header picture,
body.arena-body .site-ad--header img {
  height: 72px;
  object-fit: cover;
}

body.arena-body .catfish-ad {
  width: min(360px, calc(100% - 28px));
  opacity: 0.9;
}

body.arena-body .catfish-ad a,
body.arena-body .catfish-ad img {
  border-radius: 12px;
}

.odds-home,
.odds-news-page,
.odds-category-page {
  gap: 14px;
}

.odds-livebar {
  grid-template-columns: 112px minmax(0, 1fr) 96px;
  min-height: 66px;
  color: var(--score-text);
  background: var(--score-panel);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
}

.odds-livebar__label,
.odds-livebar__all {
  color: #07111b;
  background: var(--radar-lime);
  border: 0;
  font-family: var(--font-body);
  text-transform: none;
}

.odds-livebar__label::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 7px;
  background: currentColor;
  border-radius: 999px;
  animation: scorePulse 1.4s ease-in-out infinite;
}

.odds-livebar__all {
  color: #ffffff;
  background: var(--radar-cyan);
}

.odds-live-chip {
  min-width: 230px;
  color: var(--score-text);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(148, 163, 184, 0.18);
}

.odds-live-chip span,
.odds-live-chip em {
  color: var(--score-muted);
}

.odds-live-chip small,
.odds-fixture-row em,
.odds-ledger-row > span {
  color: var(--radar-lime);
  background: rgba(23, 201, 100, 0.12);
  border: 1px solid rgba(23, 201, 100, 0.28);
  border-radius: 999px;
}

.odds-hero,
.odds-betting-floor,
.odds-news-shell {
  gap: 14px;
}

.odds-board,
.odds-ticket,
.odds-news-top,
.odds-index-lead,
.odds-story,
.odds-ledger,
.odds-side-card,
.odds-news-menu,
body.arena-body .page-hero,
body.arena-body .fixture-hero,
body.arena-body .entity-hero,
body.arena-body .match-day,
body.arena-body .broadcast-board,
body.arena-body .archive-section,
body.arena-body .topics-board {
  color: var(--score-text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--score-panel);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.odds-ticket {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
  min-height: 560px;
  overflow: hidden;
}

.odds-ticket::before,
.odds-ticket::after {
  display: none;
}

.odds-ticket h1,
.odds-news-top h1,
.odds-index-lead h2,
.odds-section-head h2,
.odds-story h3 {
  color: var(--score-text);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: none;
}

.odds-ticket h1 {
  max-width: 680px;
  font-size: clamp(2.7rem, 5.6vw, 5.5rem);
}

.odds-ticket p,
.odds-index-lead p,
.odds-story p {
  color: var(--score-muted);
}

.odds-kicker,
.odds-story__copy span,
.odds-section-head span,
.odds-news-top__copy .odds-kicker {
  color: var(--radar-cyan);
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: none;
}

.odds-ticket .category-pill,
.odds-index-lead .category-pill,
body.arena-body .category-pill {
  color: var(--score-text);
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.26);
  border-radius: 999px;
}

.odds-ticket__prices,
.odds-index-lead .odds-ticket__prices {
  max-width: 560px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
}

.odds-ticket__prices span,
.odds-index-lead .odds-ticket__prices span {
  border-color: rgba(148, 163, 184, 0.18);
}

.odds-ticket__prices small,
.odds-index-lead .odds-ticket__prices small {
  color: var(--score-muted);
  text-transform: none;
}

.odds-ticket__prices strong {
  color: var(--score-text);
  font-family: var(--font-mono);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.odds-ticket__cta,
.odds-board__cta,
.odds-read-link,
.odds-side-card--score > a,
.odds-news-top__archive,
.odds-filter button {
  color: #ffffff;
  background: var(--radar-cyan);
  border: 0;
  border-radius: 12px;
  text-transform: none;
}

.odds-ticket__cta {
  background: var(--radar-lime);
  color: #07111b;
}

.odds-ticket__media {
  min-height: 560px;
  border-left: 1px solid rgba(148, 163, 184, 0.18);
}

.odds-ticket__media .article-image,
.odds-index-lead__media .article-image,
.odds-story__media .article-image {
  filter: saturate(0.98) contrast(1.04);
}

.odds-board__head strong {
  color: var(--radar-lime);
  font-size: 2.2rem;
}

.odds-fixture-row {
  border-color: rgba(148, 163, 184, 0.16);
}

.odds-fixture-row strong,
.odds-ledger-row h3,
.compact-news strong {
  color: var(--score-text);
}

.odds-fixture-row span,
.odds-fixture-row small,
.compact-news small,
.odds-ledger-row time,
.odds-ledger-row > a {
  color: var(--score-muted);
}

.odds-market-grid,
.odds-news-grid,
.odds-mosaic {
  gap: 14px;
}

.odds-story {
  min-height: 320px;
  background: var(--score-card);
}

.odds-story__media {
  border-color: rgba(148, 163, 184, 0.16);
}

.odds-story h3 {
  font-size: 1.18rem;
}

.odds-story--wide {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
}

.odds-story--wide h3 {
  font-size: 2.05rem;
}

.odds-story--poster h3 {
  font-size: 1.55rem;
}

.odds-story,
.odds-fixture-row,
.odds-ledger-row,
.compact-news,
.odds-news-menu > a,
.odds-side-card--topics a,
.odds-category-panel a {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.odds-story:hover,
.odds-fixture-row:hover,
.odds-ledger-row:hover,
.compact-news:hover,
.odds-news-menu > a:hover,
.odds-category-panel a:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.42);
}

.odds-ledger {
  overflow: hidden;
}

.odds-ledger-row {
  grid-template-columns: 68px 96px minmax(0, 1fr) 112px;
  border-color: rgba(148, 163, 184, 0.14);
}

.odds-ledger-row h3 {
  font-family: var(--font-body);
  font-weight: 800;
}

.odds-ledger-row > span {
  justify-self: end;
  padding: 7px 10px;
  font-size: 0.66rem;
  text-transform: none;
}

.odds-news-top {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr) auto;
  min-height: 0;
  padding: clamp(22px, 4vw, 38px);
}

.odds-news-top h1 {
  font-size: clamp(2.2rem, 4vw, 4.8rem);
}

.odds-filter input,
.odds-filter select {
  color: var(--score-text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(148, 163, 184, 0.2);
  border-radius: 12px;
}

.odds-news-menu {
  overflow: hidden;
}

.odds-news-menu strong {
  color: var(--score-muted);
}

.odds-news-menu > a {
  color: var(--score-muted);
  border-color: rgba(148, 163, 184, 0.14);
  font-family: var(--font-body);
  text-transform: none;
}

.odds-news-menu > a.is-active {
  color: #ffffff;
  background: rgba(59, 130, 246, 0.18);
}

.odds-side-card .compact-news,
.odds-side-card--score > .odds-fixture-row {
  background: transparent;
}

.odds-side-card--topics a,
body.arena-body .tag-list a,
body.arena-body .topic-chip-list a,
body.arena-body .topic-rail-list a,
body.arena-body .briefing-tags a {
  color: var(--score-text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(148, 163, 184, 0.16);
  border-radius: 999px;
}

.odds-category-panel {
  gap: 12px;
}

.odds-category-panel a {
  color: var(--score-text);
  background: var(--score-card);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
}

.odds-category-panel em {
  color: var(--radar-lime);
  background: rgba(23, 201, 100, 0.12);
  border-radius: 999px;
}

body.arena-body .page-hero:not(.page-hero--dark) span,
body.arena-body .page-hero:not(.page-hero--dark) h1,
body.arena-body .page-hero:not(.page-hero--dark) p {
  color: inherit;
}

@keyframes scorePulse {
  0%, 100% {
    opacity: 0.55;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .odds-livebar__label::before {
    animation: none;
  }

  .odds-story,
  .odds-fixture-row,
  .odds-ledger-row,
  .compact-news,
  .odds-news-menu > a,
  .odds-side-card--topics a,
  .odds-category-panel a {
    transition: none;
  }
}

@media (max-width: 1180px) {
  body.arena-body .arena-header,
  .odds-ticket,
  .odds-news-top {
    grid-template-columns: 1fr;
  }

  body.arena-body .arena-search {
    display: none;
  }

  .odds-ticket__media {
    min-height: 320px;
    border-left: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
  }
}

@media (max-width: 760px) {
  body.arena-body main,
  body.arena-body .site-footer,
  body.arena-body .arena-sponsor {
    width: min(100% - 18px, 1240px);
  }

  body.arena-body .arena-header {
    min-height: 64px;
    padding: 0 10px;
  }

  body.arena-body .arena-brand strong {
    font-size: 1.14rem;
  }

  .odds-livebar {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .odds-livebar__all {
    display: none;
  }

  .odds-live-chip {
    min-width: 210px;
  }

  .odds-ticket {
    min-height: 0;
  }

  .odds-ticket h1 {
    font-size: clamp(2.1rem, 12vw, 3.25rem);
  }

  .odds-ticket__prices,
  .odds-index-lead .odds-ticket__prices {
    grid-template-columns: 1fr;
  }

  .odds-ledger-row {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .odds-ledger-row > a,
  .odds-ledger-row > span {
    grid-column: 2;
    justify-self: start;
  }
}

/* NewsBK refinement loop: denser match-center rhythm, less hero poster, more product UI. */
body.arena-body {
  background:
    linear-gradient(90deg, rgba(23, 201, 100, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #07121d 0%, #08111a 48%, #050a10 100%);
  background-size: 88px 88px, 88px 88px, auto;
}

body.arena-body main {
  margin-top: 14px;
}

body.arena-body .arena-header {
  grid-template-columns: minmax(170px, 208px) minmax(0, 1fr) minmax(210px, 288px);
}

body.arena-body .arena-brand strong,
body.arena-body .site-footer__brand strong {
  font-family: var(--font-display);
  letter-spacing: 0;
}

body.arena-body .arena-brand::before {
  box-shadow: 0 0 0 4px rgba(23, 201, 100, 0.12);
}

body.arena-body .arena-nav a {
  min-width: 0;
  white-space: nowrap;
}

.odds-livebar {
  border-radius: 14px;
}

.odds-live-chip strong,
.odds-fixture-row strong,
.compact-news strong,
.odds-ledger-row h3 a,
.odds-story h3 a,
.odds-ticket h1,
.odds-index-lead h2,
body.arena-body .brief-article__copy h1 {
  overflow-wrap: anywhere;
}

.odds-hero {
  grid-template-columns: minmax(300px, 348px) minmax(0, 1fr);
  gap: 14px;
}

.odds-board {
  min-height: 430px;
  border-radius: 16px;
}

.odds-board__head {
  padding: 16px;
}

.odds-board__head strong {
  font-size: 2rem;
}

.odds-board__cta {
  margin: 14px;
}

.odds-fixture-row {
  min-height: 62px;
}

.odds-ticket {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
  min-height: 430px;
  border-radius: 16px;
}

.odds-ticket__copy {
  gap: 13px;
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
}

body.arena-body .odds-ticket .odds-kicker {
  color: var(--radar-cyan);
}

body.arena-body .odds-ticket .category-pill {
  color: var(--score-text);
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.28);
}

.odds-ticket h1 {
  max-width: 760px;
  font-size: clamp(2.05rem, 3.65vw, 3.72rem);
  line-height: 1.03;
}

.odds-ticket p {
  max-width: 650px;
  font-size: 1rem;
  line-height: 1.58;
}

.odds-ticket__prices {
  max-width: 460px;
  min-width: 0;
}

.odds-ticket__prices span {
  padding: 11px 13px;
}

.odds-ticket__prices strong {
  font-size: clamp(1.08rem, 1.4vw, 1.45rem);
}

.odds-ticket__cta,
.odds-board__cta,
.odds-read-link,
.odds-side-card--telegram a,
.odds-side-card--score > a,
.odds-news-top__archive,
.odds-filter button {
  min-height: 42px;
}

.odds-ticket__media {
  min-height: 430px;
}

.odds-section-head h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
}

.odds-market-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.odds-story {
  min-height: 300px;
  border-radius: 16px;
}

.odds-story__copy {
  padding: 16px;
}

.odds-story h3 {
  font-size: 1.12rem;
  line-height: 1.18;
}

.odds-story--wide {
  grid-column: span 3;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1fr);
  min-height: 330px;
}

.odds-story--wide h3 {
  font-size: clamp(1.6rem, 2.45vw, 2.25rem);
}

.odds-story--poster {
  min-height: 430px;
}

.odds-story--poster h3 {
  font-size: 1.42rem;
}

.odds-betting-floor {
  grid-template-columns: minmax(0, 1fr) minmax(286px, 320px);
}

.odds-ledger-row {
  min-height: 58px;
  grid-template-columns: 64px 92px minmax(0, 1fr) 102px;
}

.odds-ledger-row h3 {
  font-size: 0.98rem;
  line-height: 1.2;
  white-space: normal;
}

.odds-side-card {
  border-radius: 16px;
}

.odds-side-card--telegram {
  background:
    linear-gradient(135deg, rgba(23, 201, 100, 0.18), rgba(59, 130, 246, 0.16)),
    var(--score-card);
  border-color: rgba(23, 201, 100, 0.24);
}

.odds-side-card--telegram span,
.odds-side-card--telegram strong {
  color: var(--score-text);
}

.odds-side-card--telegram strong {
  font-size: 1.28rem;
  line-height: 1.16;
}

.odds-news-top {
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.22fr) minmax(112px, auto);
  border-radius: 16px;
}

.odds-news-top p {
  max-width: 100%;
  color: var(--score-muted);
  overflow-wrap: anywhere;
}

.odds-filter {
  grid-template-columns: minmax(135px, 1fr) minmax(128px, 0.72fr) minmax(118px, 0.58fr) minmax(112px, auto);
  min-width: 0;
}

.odds-filter label,
.odds-filter button {
  min-width: 0;
}

.odds-filter button {
  white-space: nowrap;
}

.odds-news-shell {
  grid-template-columns: 190px minmax(0, 1fr) 310px;
  gap: 14px;
}

.odds-news-menu {
  border-radius: 16px;
}

.odds-index-lead {
  min-height: 360px;
  border-radius: 16px;
}

.odds-index-lead__media {
  min-height: 360px;
}

.odds-index-lead__copy {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
}

.odds-index-lead h2 {
  font-size: clamp(1.85rem, 3vw, 3.05rem);
  line-height: 1.08;
}

body.arena-body .odds-article .brief-article__hero {
  min-height: 480px;
  border-radius: 18px;
}

body.arena-body .odds-article .brief-article__copy {
  padding: clamp(26px, 4vw, 46px);
}

body.arena-body .odds-article .brief-article__copy h1 {
  font-size: clamp(2.1rem, 4.6vw, 4.35rem);
  line-height: 1.03;
}

body.arena-body .odds-article .brief-article__visual,
body.arena-body .odds-article .brief-article__visual .article-image {
  min-height: 480px;
}

body.arena-body .catfish-ad {
  right: max(18px, calc((100vw - 1240px) / 2 + 18px));
  width: min(340px, calc(100% - 36px));
}

body.arena-body .catfish-ad__close {
  top: 4px;
  right: 4px;
  border-radius: 8px;
}

body.arena-body .site-footer {
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  border-radius: 16px;
}

body.arena-body .site-footer__brand {
  min-width: 0;
}

@keyframes scoreWireIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.arena-body main > section {
  animation: scoreWireIn 420ms ease both;
}

body.arena-body main > section:nth-child(2) {
  animation-delay: 60ms;
}

body.arena-body main > section:nth-child(3) {
  animation-delay: 120ms;
}

body.arena-body main > section:nth-child(4) {
  animation-delay: 180ms;
}

@media (prefers-reduced-motion: reduce) {
  body.arena-body main > section {
    animation: none;
  }
}

@media (max-width: 1180px) {
  .odds-hero,
  .odds-betting-floor,
  .odds-news-shell,
  .odds-ticket,
  .odds-index-lead,
  body.arena-body .odds-article .brief-article__hero {
    grid-template-columns: 1fr;
  }

  .odds-market-grid,
  .odds-news-grid,
  .odds-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .odds-story--wide {
    grid-column: span 2;
  }

  .odds-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.arena-body {
    overflow-x: hidden;
  }

  body.arena-body .arena-nav {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .odds-news-top__copy {
    min-width: 0;
    max-width: calc(100vw - 64px);
  }

  .odds-news-top h1,
  .odds-news-top p,
  .odds-news-top .odds-ticket__prices {
    max-width: calc(100vw - 64px);
  }

  .odds-news-top__archive {
    max-width: calc(100vw - 64px);
    width: 100%;
  }

  .odds-filter {
    grid-template-columns: 1fr;
  }

  .odds-market-grid,
  .odds-news-grid,
  .odds-mosaic,
  .odds-category-panel {
    grid-template-columns: 1fr;
  }

  .odds-story--wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .odds-ticket__media,
  .odds-index-lead__media {
    min-height: 240px;
  }

  .odds-live-chip {
    flex-basis: 220px;
  }
}

/* Image/grid repair: avoid skinny masonry columns and repeated cropped fallback media. */
.odds-news-grid {
  align-items: start;
  grid-auto-flow: row;
}

.odds-news-grid .odds-story--tall {
  grid-row: auto;
  min-height: 0;
}

.odds-category-shell {
  grid-template-columns: minmax(218px, 248px) minmax(0, 1fr);
}

.odds-category-shell > .odds-news-rail {
  display: none;
}

.odds-category-shell .odds-news-main {
  min-width: 0;
}

.odds-category-shell .odds-news-grid {
  grid-template-columns: repeat(3, minmax(230px, 1fr));
}

.odds-story {
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 0;
}

.odds-story__media {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.odds-story__media .article-image {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(23, 201, 100, 0.08)),
    var(--score-card-soft);
}

.odds-story__media .article-image img {
  object-fit: cover;
  object-position: center 48%;
}

.odds-story__media .article-image--curated img {
  filter: saturate(0.92) contrast(1.02);
}

.odds-story h3 a,
.odds-story p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.odds-story h3 a {
  -webkit-line-clamp: 3;
}

.odds-story p {
  -webkit-line-clamp: 4;
}

.odds-story--wide .odds-story__media {
  aspect-ratio: auto;
}

.odds-story--wide .article-image {
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
}

@media (max-width: 1180px) {
  .odds-category-shell {
    grid-template-columns: 1fr;
  }

  .odds-category-shell > .odds-news-menu {
    position: static;
  }

  .odds-category-shell .odds-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .odds-news-top,
  .odds-category-top {
    grid-template-columns: 1fr;
  }

  .odds-category-shell > .odds-news-main {
    order: 1;
  }

  .odds-category-shell > .odds-news-menu {
    order: 2;
  }

  .odds-category-shell .odds-index-lead {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .odds-category-shell .odds-index-lead__media {
    min-height: 220px;
  }

  .odds-category-shell .odds-index-lead__copy {
    padding: 18px;
  }

  .odds-category-shell .odds-index-lead h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .odds-category-shell .odds-news-grid {
    grid-template-columns: 1fr;
  }
}

/* Design stack layer: GSAP scan motion + ECharts density panel. */
.newsbk-stack-ready .odds-livebar__track {
  --newsbk-scan: 0%;
  position: relative;
}

.newsbk-stack-ready .odds-livebar__track::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 var(--newsbk-scan), rgba(79, 132, 255, 0.18) var(--newsbk-scan), transparent calc(var(--newsbk-scan) + 14%));
  mix-blend-mode: screen;
}

.newsbk-spark {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(92px, 0.7fr) minmax(130px, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 12px 14px;
  overflow: hidden;
  border-top: 1px solid rgba(47, 61, 82, 0.9);
  background:
    linear-gradient(135deg, rgba(79, 132, 255, 0.11), rgba(23, 201, 100, 0.05)),
    rgba(11, 20, 32, 0.7);
}

.newsbk-spark small,
.newsbk-spark strong {
  display: block;
}

.newsbk-spark small {
  color: var(--score-blue, #4f84ff);
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.newsbk-spark strong {
  margin-top: 4px;
  color: var(--score-ink, #eef5ff);
  font-size: 0.92rem;
}

.newsbk-spark__chart {
  width: 100%;
  min-height: 54px;
  background:
    linear-gradient(140deg, transparent 0 18%, rgba(124, 167, 255, 0.46) 18% 20%, transparent 21% 37%, rgba(124, 167, 255, 0.5) 37% 39%, transparent 40% 58%, rgba(23, 201, 100, 0.5) 58% 60%, transparent 61% 100%),
    linear-gradient(rgba(124, 167, 255, 0.12) 1px, transparent 1px);
  background-size: 100% 100%, 100% 18px;
  border-radius: 8px;
  filter: drop-shadow(0 0 12px rgba(79, 132, 255, 0.16));
}

@media (max-width: 760px) {
  .newsbk-spark {
    grid-template-columns: 1fr;
    min-height: 118px;
  }
}

/* NewsBK mobile clamp: keep the app surface inside the viewport. */
@media (max-width: 760px) {
  html,
  body,
  body.arena-body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.arena-body .site-header,
  body.arena-body .arena-header,
  body.arena-body main,
  body.arena-body .site-footer,
  body.arena-body .arena-sponsor,
  .odds-home,
  .odds-news-page,
  .odds-category-page,
  .odds-hero,
  .odds-news-shell,
  .odds-news-top,
  .odds-category-top,
  .odds-category-shell,
  .odds-index-lead,
  .odds-livebar {
    max-width: 100%;
    min-width: 0;
  }

  body.arena-body .site-header {
    padding-right: 10px;
    padding-left: 10px;
    overflow: hidden;
  }

  body.arena-body main,
  body.arena-body .site-footer,
  body.arena-body .arena-sponsor {
    width: calc(100% - 18px);
  }

  body.arena-body .arena-nav,
  .odds-livebar__track {
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
  }

  .odds-livebar {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .odds-live-chip {
    min-width: 188px;
    flex-basis: 188px;
  }

  .odds-news-top,
  .odds-category-top,
  .odds-category-shell .odds-index-lead {
    overflow: hidden;
  }

  .odds-news-top__copy,
  .odds-news-top h1,
  .odds-news-top p,
  .odds-news-top .odds-ticket__prices,
  .odds-news-top__archive,
  .odds-category-shell .odds-index-lead__copy,
  .odds-category-shell .odds-index-lead h2 {
    max-width: 100%;
    min-width: 0;
  }

  .odds-news-top__archive {
    justify-content: center;
    box-sizing: border-box;
    width: min(100%, calc(100vw - 64px));
    max-width: calc(100vw - 64px);
  }

  .odds-category-shell .odds-index-lead h2,
  .odds-index-lead h2 {
    font-size: clamp(1.58rem, 8vw, 2rem);
  }

  body.arena-body .catfish-ad {
    right: 12px;
    width: min(340px, calc(100vw - 24px));
  }
}
