@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("../fonts/barlow-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --stvt-accent: #00a7e1;
  --stvt-navy: #00263a;
  --stvt-navy-deep: #001c2d;
  --stvt-cyan: var(--stvt-accent);
  --stvt-cyan-soft: #c9f0ff;
  --stvt-yellow: #ffc400;
  --stvt-red: #e31937;
  --stvt-orange: #f26419;
  --stvt-ink: #001c2d;
  --stvt-copy: #3e4d56;
  --stvt-muted: #9ca9b0;
  --stvt-line: #e3e7e9;
  --stvt-line-strong: #cfd6da;
  --stvt-bg: #f4f4f4;
  --stvt-card: #ffffff;
  --stvt-radius: 7px;
  --stvt-container: 1324px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--stvt-ink);
  background: var(--stvt-bg);
  font-family: "Barlow", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: "Barlow", Arial, sans-serif;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
.stvt-brand-name,
.stvt-menu a,
.stvt-sport-link,
.stvt-date-pill,
.stvt-event-card,
.stvt-button {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
}

.stvt-container {
  width: min(calc(100% - 40px), var(--stvt-container));
  margin-inline: auto;
}

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

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 16px;
  color: var(--stvt-navy);
  background: #fff;
}

.stvt-svg {
  display: block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

.stvt-svg--brand {
  stroke: none;
}

/* Scoreboard */

.stvt-scoreboard {
  position: relative;
  z-index: 15;
  background: #fff;
  border-bottom: 1px solid var(--stvt-line);
}

.stvt-scoreboard-inner {
  display: flex;
  min-height: 88px;
}

.stvt-scoreboard-label {
  display: flex;
  flex: 0 0 132px;
  align-items: center;
  gap: 9px;
  padding-right: 22px;
  color: var(--stvt-cyan);
  border-right: 1px solid var(--stvt-line);
}

.stvt-scoreboard-label .stvt-svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.2;
}

.stvt-scoreboard-label strong {
  color: var(--stvt-ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
}

.stvt-scoreboard-scroll {
  display: flex;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.stvt-scoreboard-scroll::-webkit-scrollbar {
  display: none;
}

.stvt-score-item {
  display: grid;
  flex: 0 0 228px;
  align-content: center;
  gap: 7px;
  padding: 10px 15px;
  border-right: 1px solid var(--stvt-line);
  transition: background 160ms ease;
}

a.stvt-score-item:hover {
  background: #f7fbfd;
}

.stvt-score-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--stvt-muted);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.stvt-score-meta strong {
  color: #77858c;
}

.stvt-score-teams {
  display: grid;
  gap: 3px;
}

.stvt-score-teams > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.stvt-score-teams i {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--stvt-navy);
  background: #eef2f4;
  border: 1px solid #dce3e6;
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

/* Header */

.stvt-header {
  position: relative;
  z-index: 20;
}

.stvt-topbar,
.stvt-sportsbar {
  color: #fff;
  background: var(--stvt-navy);
}

.stvt-topbar {
  min-height: 66px;
}

.stvt-topbar-inner {
  display: flex;
  min-height: 66px;
  align-items: center;
  gap: 26px;
}

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

.stvt-brand .custom-logo {
  width: auto;
  max-width: 200px;
  max-height: 38px;
}

.stvt-brand-mark {
  display: grid;
  width: 29px;
  height: 34px;
  place-items: center;
  color: var(--stvt-cyan);
}

.stvt-brand-mark .stvt-svg {
  width: 100%;
  height: 100%;
  stroke: none;
}

.stvt-brand-name {
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.stvt-primary-nav {
  min-width: 0;
  margin-left: auto;
}

.stvt-menu,
.stvt-footer-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.stvt-menu a {
  display: block;
  padding: 10px 14px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.stvt-menu a:hover,
.stvt-menu .current-menu-item > a {
  color: var(--stvt-cyan);
}

.stvt-menu li:last-child a {
  padding-inline: 18px;
  color: var(--stvt-navy);
  background: var(--stvt-yellow);
  border-radius: 6px;
}

.stvt-search-toggle,
.stvt-menu-toggle {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.stvt-search-toggle:hover,
.stvt-menu-toggle:hover {
  color: var(--stvt-navy);
  background: var(--stvt-cyan);
  border-color: var(--stvt-cyan);
}

.stvt-search-toggle .stvt-svg {
  width: 20px;
  height: 20px;
}

.stvt-menu-toggle {
  display: none;
  align-content: center;
  gap: 4px;
}

.stvt-menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.stvt-search-panel {
  padding: 14px 0;
  color: var(--stvt-ink);
  background: #fff;
  border-bottom: 1px solid var(--stvt-line);
}

.stvt-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 700px;
  margin-left: auto;
}

.stvt-search-form input[type="search"] {
  min-width: 0;
  padding: 12px 14px;
  color: var(--stvt-ink);
  background: #f4f6f7;
  border: 1px solid var(--stvt-line-strong);
  border-right: 0;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.stvt-search-form input[type="search"]:focus {
  border-color: var(--stvt-cyan);
}

.stvt-search-form button,
.search-submit {
  padding: 10px 20px;
  color: #fff;
  background: var(--stvt-cyan);
  border: 0;
  border-radius: 0 5px 5px 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.stvt-sportsbar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stvt-sports-scroll {
  display: flex;
  min-height: 47px;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}

.stvt-sports-scroll::-webkit-scrollbar {
  display: none;
}

.stvt-sport-link {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.stvt-sport-link:first-child {
  padding-left: 0;
}

.stvt-sport-link > span {
  color: var(--stvt-cyan);
  font-size: 18px;
}

.stvt-sport-link::after {
  position: absolute;
  right: 17px;
  bottom: 0;
  left: 17px;
  height: 3px;
  content: "";
  background: transparent;
}

.stvt-sport-link:hover,
.stvt-sport-link.is-active {
  color: var(--stvt-cyan);
}

.stvt-sport-link.is-active::after {
  background: var(--stvt-cyan);
}

/* Hero and dates */

.stvt-main {
  min-height: 60vh;
}

.stvt-hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(232, 93, 126, 0.28) 0%, rgba(255, 255, 255, 0.1) 24%, rgba(255, 255, 255, 0.96) 50%, rgba(255, 255, 255, 0.1) 76%, rgba(235, 133, 79, 0.3) 100%),
    #f5f5f5;
  border-bottom: 1px solid #ebebeb;
}

.stvt-hero-inner {
  display: grid;
  min-height: 208px;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: center;
  gap: 50px;
}

.stvt-eyebrow,
.stvt-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--stvt-cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stvt-live-dot {
  width: 7px;
  height: 7px;
  background: var(--stvt-red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(227, 25, 55, 0.1);
}

.stvt-hero h1,
.stvt-page-hero h1 {
  max-width: 850px;
  margin: 8px 0 8px;
  color: var(--stvt-navy-deep);
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.025em;
}

.stvt-hero p,
.stvt-page-hero p {
  max-width: 740px;
  margin-bottom: 0;
  color: #53626a;
  font-size: 16px;
}

.stvt-hero-date {
  display: grid;
  justify-items: center;
  padding: 30px 20px;
  text-align: center;
}

.stvt-hero-date::before {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 12px;
  place-items: center;
  color: #fff;
  background: var(--stvt-navy);
  border: 8px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  content: "TV";
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.stvt-hero-date span {
  color: var(--stvt-muted);
  font-size: 12px;
  font-weight: 600;
}

.stvt-hero-date strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 29px;
  font-weight: 800;
  line-height: 1.1;
}

.stvt-date-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin: 24px 0 26px;
}

.stvt-date-pill {
  display: grid;
  min-width: 0;
  min-height: 60px;
  place-items: center;
  align-content: center;
  padding: 7px 9px;
  color: #8c999f;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transition: 150ms ease;
}

.stvt-date-pill small {
  margin-top: 3px;
  color: #b2bbc0;
  font-family: "Barlow", sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.stvt-date-pill:hover {
  color: var(--stvt-ink);
  background: #fff;
  border-color: var(--stvt-line-strong);
}

.stvt-date-pill.is-active {
  color: var(--stvt-navy);
  background: var(--stvt-cyan-soft);
  border-color: var(--stvt-cyan);
}

.stvt-date-pill.is-active small {
  color: #3788a5;
}

/* Main content */

.stvt-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 18px;
  padding-bottom: 54px;
}

.stvt-content-column {
  min-width: 0;
}

.stvt-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 14px;
}

.stvt-section-heading h2 {
  margin: 2px 0 0;
  color: var(--stvt-navy-deep);
  font-size: 31px;
  font-weight: 800;
  line-height: 1.05;
}

.stvt-event-count {
  padding: 5px 10px;
  color: #6f7d84;
  background: #fff;
  border: 1px solid var(--stvt-line);
  border-radius: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.stvt-preview-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 13px;
  color: #44616c;
  background: #eef9fd;
  border-left: 3px solid var(--stvt-cyan);
  font-size: 13px;
}

.stvt-preview-notice strong {
  color: var(--stvt-navy);
}

.stvt-sport-group {
  margin-bottom: 24px;
}

.stvt-group-header {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: #fff;
  background: var(--stvt-navy);
  border-radius: 6px 6px 0 0;
}

.stvt-group-title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.stvt-group-title > span {
  color: var(--stvt-cyan);
  font-size: 21px;
}

.stvt-group-title h2,
.stvt-group-title h3 {
  margin: 0;
  color: inherit;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
}

.stvt-group-header > span:last-child {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  color: var(--stvt-navy);
  background: var(--stvt-cyan);
  border-radius: 3px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.stvt-event-list {
  background: #fff;
  border: 1px solid var(--stvt-line);
  border-top: 0;
  border-radius: 0 0 6px 6px;
}

.stvt-event-card {
  position: relative;
  display: grid;
  min-height: 104px;
  grid-template-columns: 92px minmax(270px, 1fr) minmax(210px, 290px) 38px;
  align-items: stretch;
  border-bottom: 1px solid var(--stvt-line);
  background: #fff;
}

.stvt-event-card:last-child {
  border-bottom: 0;
  border-radius: 0 0 6px 6px;
}

.stvt-event-card:hover {
  z-index: 1;
  background: #fbfdfe;
  box-shadow: inset 3px 0 0 var(--stvt-cyan);
}

.stvt-event-time {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 10px 7px;
  border-right: 1px solid var(--stvt-line);
  text-align: center;
}

.stvt-event-time > strong {
  color: var(--stvt-navy-deep);
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
}

.stvt-event-time small {
  margin-top: 5px;
  color: var(--stvt-muted);
  font-family: "Barlow", sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.stvt-event-main {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
}

a.stvt-event-main:hover .stvt-team-row strong {
  color: var(--stvt-cyan);
}

.stvt-event-sport-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--stvt-cyan);
  background: #ecf9fe;
  border-radius: 50%;
  font-size: 20px;
}

.stvt-event-sport-icon .stvt-svg {
  width: 21px;
  height: 21px;
}

.stvt-event-teams {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.stvt-team-row {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.stvt-team-row strong,
.stvt-single-event-title strong {
  overflow: hidden;
  color: var(--stvt-navy-deep);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.05;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color 150ms ease;
}

.stvt-event-teams > small {
  overflow: hidden;
  margin-top: 2px;
  color: #91a0a7;
  font-family: "Barlow", sans-serif;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.stvt-badge {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  color: var(--stvt-navy);
  background: #eef2f4;
  border: 1px solid #dfe5e7;
  border-radius: 50%;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.stvt-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stvt-event-channels {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding: 10px 8px;
}

.stvt-channel-pill,
.stvt-channel-missing {
  display: inline-flex;
  min-width: 0;
  max-width: 148px;
  min-height: 34px;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  color: var(--stvt-navy);
  background: #f0f3f4;
  border: 1px solid #d8dee1;
  border-radius: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

a.stvt-channel-pill:hover {
  color: #fff;
  background: var(--stvt-cyan);
  border-color: var(--stvt-cyan);
}

.stvt-channel-pill img {
  width: 22px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
}

.stvt-channel-pill span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.stvt-channel-missing {
  color: #8b979d;
  background: transparent;
  border-style: dashed;
}

.stvt-more-channels {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--stvt-cyan);
  background: #ecf9fe;
  border-radius: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
}

.stvt-event-arrow {
  display: grid;
  align-self: stretch;
  place-items: center;
  color: #9aa7ad;
  border-left: 1px solid var(--stvt-line);
  font-size: 20px;
}

.stvt-event-arrow .stvt-svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

a.stvt-event-arrow:hover {
  color: #fff;
  background: var(--stvt-cyan);
}

.stvt-status-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--stvt-red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.stvt-status-live i {
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(227, 25, 55, 0.11);
  animation: stvt-pulse 1.7s infinite;
}

.stvt-event-score,
.stvt-event-state {
  color: var(--stvt-navy);
}

.is-postponed .stvt-event-state,
.is-cancelled .stvt-event-state {
  color: var(--stvt-red);
  font-size: 17px;
}

@keyframes stvt-pulse {
  50% {
    opacity: 0.42;
  }
}

/* Sidebar and ads */

.stvt-sidebar {
  display: grid;
  gap: 16px;
}

.stvt-side-card,
.stvt-ad-box,
.stvt-ad-widget {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--stvt-line);
  border-radius: var(--stvt-radius);
}

.stvt-side-card {
  padding: 0 14px 8px;
}

.stvt-side-heading,
.widget-title {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  color: var(--stvt-navy);
  border-bottom: 2px solid var(--stvt-navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.stvt-side-heading h2 {
  margin: 0;
  font-size: inherit;
  line-height: 1;
}

.stvt-side-heading > span {
  color: var(--stvt-cyan);
  font-size: 26px;
}

.stvt-mini-list {
  display: grid;
}

.stvt-mini-event {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 11px 0;
  border-bottom: 1px solid var(--stvt-line);
}

.stvt-mini-event:last-child {
  border-bottom: 0;
}

.stvt-mini-event > span:first-child {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--stvt-cyan);
  background: #ecf9fe;
  border-radius: 50%;
}

.stvt-mini-event strong,
.stvt-mini-event small {
  display: block;
}

.stvt-mini-event strong {
  overflow: hidden;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.stvt-mini-event small {
  margin-top: 3px;
  color: var(--stvt-muted);
  font-size: 10px;
}

.stvt-mini-event:hover strong {
  color: var(--stvt-cyan);
}

.stvt-channel-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 14px 0 8px;
}

.stvt-channel-cloud a {
  padding: 5px 8px;
  color: #55656d;
  background: #f3f5f6;
  border: 1px solid var(--stvt-line);
  border-radius: 3px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.stvt-channel-cloud a:hover {
  color: #fff;
  background: var(--stvt-cyan);
  border-color: var(--stvt-cyan);
}

.stvt-ad-box {
  display: grid;
  min-height: 250px;
  place-items: center;
  align-content: center;
  color: #b0b8bc;
  background:
    linear-gradient(135deg, transparent 49.5%, #eef0f1 50%, transparent 50.5%),
    #fafafa;
  text-align: center;
}

.stvt-ad-box span {
  font-size: 9px;
  letter-spacing: 0.18em;
}

.stvt-ad-box strong {
  color: #98a3a9;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
}

.stvt-ad-box small {
  font-size: 11px;
}

.stvt-content-ad {
  min-height: 90px;
  margin: 20px 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--stvt-line);
}

.stvt-muted {
  color: var(--stvt-muted);
}

/* Empty and news */

.stvt-empty-state {
  display: grid;
  min-height: 260px;
  place-items: center;
  align-content: center;
  padding: 34px;
  color: var(--stvt-muted);
  background: #fff;
  border: 1px solid var(--stvt-line);
  border-radius: var(--stvt-radius);
  text-align: center;
}

.stvt-empty-state > span {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  place-items: center;
  color: var(--stvt-cyan);
  background: #ebf9fe;
  border-radius: 50%;
  font-size: 28px;
}

.stvt-empty-state h2,
.stvt-empty-state h3 {
  margin-bottom: 5px;
  color: var(--stvt-navy);
  font-size: 25px;
}

.stvt-empty-state p {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 14px;
}

.stvt-news-section {
  margin-top: 38px;
}

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

.stvt-news-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--stvt-line);
  border-radius: var(--stvt-radius);
}

.stvt-news-thumb {
  display: grid;
  height: 172px;
  overflow: hidden;
  place-items: center;
  color: var(--stvt-cyan);
  background: #e9f7fc;
  font-size: 48px;
}

.stvt-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.stvt-news-card:hover .stvt-news-thumb img {
  transform: scale(1.035);
}

.stvt-news-body {
  padding: 15px 16px 18px;
}

.stvt-news-meta {
  color: var(--stvt-cyan);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stvt-news-body h2,
.stvt-news-body h3 {
  margin: 5px 0 7px;
  color: var(--stvt-navy);
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
}

.stvt-news-body h2 a:hover,
.stvt-news-body h3 a:hover {
  color: var(--stvt-cyan);
}

.stvt-news-body p {
  margin-bottom: 0;
  color: #68767d;
  font-size: 13px;
  line-height: 1.5;
}

/* Page and taxonomy headers */

.stvt-page-hero {
  padding: 52px 0 46px;
  background:
    linear-gradient(90deg, rgba(0, 167, 225, 0.13), transparent 36%),
    #fff;
  border-bottom: 1px solid var(--stvt-line);
}

.stvt-page-hero h1 {
  font-size: clamp(38px, 4vw, 56px);
}

.stvt-page-layout {
  padding-top: 28px;
}

.stvt-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 0;
  overflow: hidden;
  color: #9aa6ac;
  font-size: 12px;
  white-space: nowrap;
}

.stvt-breadcrumb a {
  color: var(--stvt-cyan);
}

.stvt-breadcrumb > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Event detail */

.stvt-single-event-page .stvt-layout {
  grid-template-columns: minmax(0, 1fr) 330px;
}

.stvt-event-detail {
  min-width: 0;
}

.stvt-event-detail-top {
  padding: 20px 26px 18px;
  background: #fff;
  border: 1px solid var(--stvt-line);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.stvt-detail-sport {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--stvt-cyan);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.stvt-detail-sport .stvt-svg {
  width: 18px;
  height: 18px;
}

.stvt-event-detail-top .stvt-status-live {
  float: right;
  margin-top: 4px;
}

.stvt-event-detail-top h1 {
  margin: 7px 0 2px;
  color: var(--stvt-navy-deep);
  font-size: clamp(32px, 3.8vw, 49px);
  font-weight: 800;
  line-height: 0.96;
}

.stvt-event-detail-top p {
  margin-bottom: 0;
  color: var(--stvt-muted);
  font-size: 13px;
}

.stvt-match-panel {
  display: grid;
  min-height: 242px;
  grid-template-columns: 1fr 210px 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px 34px;
  background:
    linear-gradient(90deg, rgba(232, 93, 126, 0.24), rgba(255, 255, 255, 0.96) 32%, #fff 50%, rgba(255, 255, 255, 0.96) 68%, rgba(235, 133, 79, 0.27));
  border: 1px solid var(--stvt-line);
}

.stvt-match-panel.is-single-event {
  grid-template-columns: 1fr 1fr;
}

.stvt-match-team {
  display: grid;
  justify-items: center;
  gap: 11px;
  text-align: center;
}

.stvt-large-badge {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  overflow: hidden;
  color: var(--stvt-navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(207, 214, 218, 0.74);
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0, 28, 45, 0.06);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 31px;
  font-weight: 800;
}

.stvt-large-badge img {
  width: 68%;
  height: 68%;
  object-fit: contain;
}

.stvt-match-team strong {
  max-width: 240px;
  color: var(--stvt-navy-deep);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 27px;
  font-weight: 800;
  line-height: 0.98;
}

.stvt-match-time {
  display: grid;
  justify-items: center;
  text-align: center;
}

.stvt-match-time > span {
  color: #69767d;
  font-size: 12px;
  font-weight: 600;
}

.stvt-match-time > strong {
  margin: 4px 0;
  color: var(--stvt-navy-deep);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.stvt-match-time small {
  color: var(--stvt-muted);
  font-size: 10px;
}

.stvt-match-time .stvt-match-state {
  color: var(--stvt-red);
  font-size: 26px;
}

.stvt-detail-tabs {
  display: flex;
  gap: 10px;
  padding: 16px 0;
}

.stvt-detail-tabs a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: #8e9aa0;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.stvt-detail-tabs a:hover {
  color: var(--stvt-navy);
  background: #fff;
}

.stvt-detail-tabs a.is-active {
  color: var(--stvt-navy);
  background: var(--stvt-cyan-soft);
  border-color: var(--stvt-cyan);
}

.stvt-detail-tabs a span {
  display: grid;
  min-width: 23px;
  height: 22px;
  place-items: center;
  color: var(--stvt-navy);
  background: #fff;
  border: 1px solid var(--stvt-cyan);
  border-radius: 4px;
  font-size: 13px;
}

.stvt-watch-section,
.stvt-event-copy,
.stvt-article {
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--stvt-line);
  border-radius: var(--stvt-radius);
}

.stvt-watch-section {
  margin-bottom: 16px;
}

.stvt-watch-section h2,
.stvt-event-copy h2 {
  margin-bottom: 17px;
  color: var(--stvt-navy-deep);
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
}

.stvt-watch-options {
  display: grid;
  gap: 9px;
}

.stvt-watch-option {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 69px;
  padding: 9px 10px;
  background: #f8f9f9;
  border: 1px solid var(--stvt-line);
  border-radius: 5px;
}

.stvt-channel-logo {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  color: var(--stvt-cyan);
  background: #fff;
  border: 1px solid var(--stvt-line);
  border-radius: 50%;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
}

.stvt-channel-logo img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}

.stvt-channel-logo .stvt-svg {
  width: 23px;
  height: 23px;
}

.stvt-watch-option > span:nth-child(2) {
  min-width: 0;
}

.stvt-watch-option strong,
.stvt-watch-option small {
  display: block;
}

.stvt-watch-option strong {
  overflow: hidden;
  color: var(--stvt-navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 800;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.stvt-watch-option small {
  color: var(--stvt-muted);
  font-size: 11px;
}

.stvt-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  color: #fff;
  background: var(--stvt-cyan);
  border: 1px solid var(--stvt-cyan);
  border-radius: 5px;
  font-size: 16px;
  font-weight: 800;
}

.stvt-button .stvt-svg {
  width: 16px;
  height: 16px;
}

.stvt-button:hover {
  color: var(--stvt-navy);
  background: var(--stvt-yellow);
  border-color: var(--stvt-yellow);
}

.stvt-button--muted {
  color: #88949a;
  background: #eef1f2;
  border-color: #dfe4e6;
}

.stvt-info-box,
.stvt-disclaimer {
  padding: 13px 14px;
  color: #52646d;
  background: #eef9fd;
  border-left: 3px solid var(--stvt-cyan);
  font-size: 13px;
}

.stvt-event-copy {
  color: var(--stvt-copy);
}

.stvt-event-copy p {
  font-size: 15px;
}

.stvt-disclaimer {
  margin: 18px 0;
  color: #78868d;
  background: #f4f5f5;
  border-color: #b6c0c5;
}

/* Articles and common WordPress content */

.stvt-article-hero {
  padding: 50px 0 36px;
  background: #fff;
  border-bottom: 1px solid var(--stvt-line);
}

.stvt-article > h1 {
  margin: 7px 0 22px;
  color: var(--stvt-navy);
  font-size: clamp(36px, 4.8vw, 57px);
  font-weight: 800;
  line-height: 0.98;
}

.stvt-article-hero h1 {
  max-width: 900px;
  margin: 8px 0 10px;
  color: var(--stvt-navy);
  font-size: clamp(39px, 5vw, 64px);
  font-weight: 800;
  line-height: 0.98;
}

.stvt-article-content {
  color: var(--stvt-copy);
  font-size: 17px;
  line-height: 1.75;
}

.stvt-article-content h2,
.stvt-article-content h3 {
  color: var(--stvt-navy);
  line-height: 1.05;
}

.stvt-article-content a {
  color: var(--stvt-cyan);
  text-decoration: underline;
}

.stvt-article-content blockquote {
  padding: 15px 20px;
  margin-inline: 0;
  color: var(--stvt-navy);
  background: #eef9fd;
  border-left: 4px solid var(--stvt-cyan);
}

.stvt-article-content table {
  width: 100%;
  border-collapse: collapse;
}

.stvt-article-content th,
.stvt-article-content td {
  padding: 9px 10px;
  border: 1px solid var(--stvt-line);
}

.pagination,
.nav-links {
  display: flex;
  gap: 6px;
  margin-top: 24px;
}

.page-numbers {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--stvt-navy);
  background: #fff;
  border: 1px solid var(--stvt-line);
  border-radius: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
}

.page-numbers.current,
.page-numbers:hover {
  color: #fff;
  background: var(--stvt-cyan);
  border-color: var(--stvt-cyan);
}

.stvt-404 {
  display: grid;
  min-height: 55vh;
  place-items: center;
  padding: 50px 20px;
  text-align: center;
}

.stvt-empty-state.stvt-404 > span {
  width: auto;
  height: auto;
  margin: 0;
  color: var(--stvt-cyan);
  background: transparent;
  border-radius: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 110px;
  font-weight: 800;
  line-height: 0.8;
}

.stvt-404 h1 {
  font-size: 34px;
}

/* Footer */

.stvt-footer {
  padding-top: 42px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--stvt-navy-deep);
  border-top: 5px solid var(--stvt-cyan);
}

.stvt-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 40px;
  padding-bottom: 32px;
}

.stvt-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 23px;
  font-weight: 800;
  text-transform: uppercase;
}

.stvt-footer p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 13px;
}

.stvt-footer-menu {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.stvt-footer-menu a {
  display: block;
  padding: 8px 10px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.stvt-footer-menu a:hover {
  color: var(--stvt-cyan);
}

.stvt-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
}

/* Responsive */

@media (max-width: 1100px) {
  .stvt-scoreboard-label {
    display: none;
  }

  .stvt-topbar-inner {
    gap: 14px;
  }

  .stvt-menu a {
    padding-inline: 9px;
  }

  .stvt-layout,
  .stvt-single-event-page .stvt-layout {
    grid-template-columns: minmax(0, 1fr) 290px;
  }

  .stvt-event-card {
    grid-template-columns: 84px minmax(250px, 1fr) 190px 36px;
  }

  .stvt-event-channels .stvt-channel-pill:nth-child(n + 2) {
    display: none;
  }
}

@media (max-width: 900px) {
  .stvt-scoreboard-inner {
    width: 100%;
  }

  .stvt-score-item {
    flex-basis: 210px;
  }

  .stvt-menu-toggle {
    display: inline-grid;
    margin-left: auto;
  }

  .stvt-primary-nav {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    padding: 12px 20px 18px;
    color: #fff;
    background: var(--stvt-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 30px rgba(0, 28, 45, 0.22);
  }

  .stvt-primary-nav.is-open {
    display: block;
  }

  .stvt-menu {
    display: grid;
  }

  .stvt-menu a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stvt-menu li:last-child a {
    margin-top: 6px;
    padding-inline: 12px;
    border-bottom: 0;
  }

  .stvt-hero-inner {
    min-height: 190px;
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 20px;
  }

  .stvt-layout,
  .stvt-single-event-page .stvt-layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .stvt-event-card {
    grid-template-columns: 84px minmax(0, 1fr) 215px 36px;
  }

  .stvt-match-panel {
    grid-template-columns: 1fr 160px 1fr;
  }
}

@media (max-width: 700px) {
  .stvt-container {
    width: min(calc(100% - 24px), var(--stvt-container));
  }

  .stvt-scoreboard {
    display: none;
  }

  .stvt-topbar-inner,
  .stvt-topbar {
    min-height: 60px;
  }

  .stvt-primary-nav {
    top: 60px;
  }

  .stvt-brand-name {
    font-size: 20px;
  }

  .stvt-brand-mark {
    width: 25px;
    height: 30px;
  }

  .stvt-sports-scroll {
    min-height: 44px;
  }

  .stvt-sport-link {
    padding-inline: 13px;
    font-size: 15px;
  }

  .stvt-hero {
    background:
      linear-gradient(135deg, rgba(0, 167, 225, 0.13), transparent 55%),
      #fff;
  }

  .stvt-hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 35px 27px;
  }

  .stvt-hero h1 {
    font-size: 43px;
  }

  .stvt-hero p {
    font-size: 14px;
  }

  .stvt-hero-date {
    display: flex;
    justify-items: start;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    padding: 0;
    text-align: left;
  }

  .stvt-hero-date::before {
    width: 43px;
    height: 43px;
    margin: 0;
    border-width: 6px;
    font-size: 12px;
  }

  .stvt-hero-date span,
  .stvt-hero-date strong {
    display: block;
  }

  .stvt-hero-date strong {
    font-size: 22px;
  }

  .stvt-date-strip {
    display: flex;
    gap: 7px;
    margin: 15px 0 22px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .stvt-date-strip::-webkit-scrollbar {
    display: none;
  }

  .stvt-date-pill {
    min-width: 78px;
    min-height: 54px;
    flex: 0 0 auto;
    font-size: 16px;
  }

  .stvt-section-heading {
    align-items: start;
  }

  .stvt-section-heading h2 {
    font-size: 27px;
  }

  .stvt-event-count {
    flex: 0 0 auto;
  }

  .stvt-preview-notice {
    display: grid;
    gap: 2px;
  }

  .stvt-event-card {
    min-height: 122px;
    grid-template-columns: 67px minmax(0, 1fr) 34px;
  }

  .stvt-event-time {
    grid-row: 1;
    grid-column: 1;
  }

  .stvt-event-time > strong {
    font-size: 20px;
  }

  .stvt-event-main {
    grid-row: 1;
    grid-column: 2;
    gap: 9px;
    padding: 10px;
  }

  .stvt-event-sport-icon {
    display: none;
  }

  .stvt-team-row strong,
  .stvt-single-event-title strong {
    font-size: 17px;
  }

  .stvt-event-channels {
    grid-row: 2;
    grid-column: 1 / 4;
    justify-content: flex-start;
    padding: 7px 9px;
    border-top: 1px solid var(--stvt-line);
  }

  .stvt-event-channels .stvt-channel-pill {
    display: inline-flex;
    max-width: 180px;
    min-height: 28px;
    padding: 4px 8px;
  }

  .stvt-event-arrow {
    grid-row: 1;
    grid-column: 3;
  }

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

  .stvt-ad-box {
    min-height: 180px;
  }

  .stvt-match-panel,
  .stvt-match-panel.is-single-event {
    min-height: 215px;
    grid-template-columns: 1fr 105px 1fr;
    gap: 8px;
    padding: 25px 10px;
  }

  .stvt-match-panel.is-single-event {
    grid-template-columns: 1fr 1fr;
  }

  .stvt-large-badge {
    width: 58px;
    height: 58px;
    font-size: 25px;
  }

  .stvt-match-team strong {
    font-size: 21px;
  }

  .stvt-match-time > strong {
    font-size: 27px;
  }

  .stvt-event-detail-top {
    padding-inline: 18px;
  }

  .stvt-event-detail-top h1 {
    font-size: 34px;
  }

  .stvt-detail-tabs {
    gap: 6px;
    overflow-x: auto;
  }

  .stvt-detail-tabs a {
    flex: 0 0 auto;
    min-height: 39px;
    padding-inline: 11px;
    font-size: 18px;
  }

  .stvt-watch-section,
  .stvt-event-copy,
  .stvt-article {
    padding: 20px 16px;
  }

  .stvt-watch-option {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .stvt-watch-option .stvt-button {
    grid-column: 1 / 3;
  }

  .stvt-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stvt-footer-menu {
    justify-content: flex-start;
  }

  .stvt-footer-bottom {
    display: grid;
  }
}

@media (max-width: 390px) {
  .stvt-brand-name {
    max-width: 160px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .stvt-search-toggle,
  .stvt-menu-toggle {
    width: 34px;
    height: 34px;
  }

  .stvt-match-panel,
  .stvt-match-panel.is-single-event {
    grid-template-columns: 1fr;
  }

  .stvt-match-time {
    grid-row: 1;
  }
}

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