/* Oranje News — Sport module (site theme) */
:root {
  --sport-accent: var(--nl-orange, #c45c26);
  --sport-accent-dark: var(--nl-orange-hover, #a84d1f);
  --sport-surface: #1a1a1a;
  --sport-surface-2: #262626;
  --sport-card-bg: #fff;
  --sport-drawer-width: min(920px, 100vw);
}

.sport-page { min-height: 50vh; }

/* Homepage strip */
.sport-home-strip {
  background: linear-gradient(135deg, var(--sport-surface) 0%, var(--sport-surface-2) 55%, #3a2418 100%);
  color: #fff;
  padding: 28px 0 32px;
  margin-bottom: 0;
  border-bottom: 3px solid var(--sport-accent);
}
.sport-home-strip-inner { position: relative; }
.sport-home-strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.sport-home-strip-head h1,
.sport-home-strip-head h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
}
.sport-home-strip-head h1 a,
.sport-home-strip-head h2 a { color: #fff; text-decoration: none; }
.sport-home-strip-more {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 0.875rem;
  white-space: nowrap;
}
.sport-home-strip-more:hover { color: #fff; }
.sport-wc-badge {
  display: inline-block;
  background: var(--sport-accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.sport-wc-badge-lg { font-size: 1rem; padding: 8px 14px; }
.sport-home-strip-sub { display: block; font-size: 0.75rem; opacity: .8; margin-top: 4px; }

/* Carousel */
.sport-carousel-wrap {
  position: relative;
  padding: 0 48px;
}
.sport-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.sport-carousel::-webkit-scrollbar { display: none; }
.sport-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--nl-border);
  background: #fff;
  color: var(--sport-surface);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.sport-carousel-prev { left: 0; }
.sport-carousel-next { right: 0; }
.sport-carousel-btn:hover {
  border-color: var(--sport-accent);
  color: var(--sport-accent);
}
.sport-match-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--sport-card-bg);
  color: var(--nl-text);
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: transform .15s, box-shadow .15s;
  min-height: 118px;
  position: relative;
}
.sport-match-card.is-live {
  box-shadow: 0 2px 12px rgba(34, 197, 94, .25);
}
.sport-match-card .sport-live-badge {
  position: absolute;
  top: 10px;
  right: 10px;
}
.sport-match-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.sport-match-card-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--nl-text-muted);
  margin-bottom: 10px;
}
.sport-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: sport-pulse 1.2s infinite;
}
@keyframes sport-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.sport-match-card-teams {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.3;
}
.sport-match-card-teams-inline {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.sport-team-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.sport-team-inline span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
}
.sport-match-card-teams-inline .sport-vs {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--nl-text-muted);
}
.sport-team { display: flex; align-items: center; gap: 8px; }
.sport-vs { font-weight: 500; color: var(--nl-text-muted); font-size: 0.8125rem; }
.sport-match-card-group { margin-top: 8px; font-size: 0.8125rem; color: var(--nl-text-muted); }
.sport-flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,.08);
}

/* Hero pages */
.sport-hero {
  background: linear-gradient(135deg, var(--sport-surface), var(--sport-surface-2));
  color: #fff;
  padding: 32px 0 40px;
  border-bottom: 3px solid var(--sport-accent);
}
.sport-hero-wc { padding-bottom: 36px; }
.sport-hero-top h1 { margin: 0 0 12px; font-size: 2rem; }
.sport-hero-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.sport-hero-official { font-size: 0.875rem; opacity: .85; }
.sport-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.sport-subnav a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
}
.sport-subnav a:hover,
.sport-subnav a.active { background: var(--sport-accent); color: #fff; }

.sport-content { padding: 32px 0 48px; }
.sport-news-section { margin-top: 40px; }

/* Nav grid */
.sport-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.sport-nav-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px;
  background: #fff;
  border: 1px solid var(--nl-border);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  color: var(--nl-text);
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}
.sport-nav-tile:hover {
  border-color: var(--sport-accent);
  box-shadow: var(--nl-card-shadow-hover);
}
.sport-nav-tile-arrow { color: var(--nl-text-muted); font-size: 1.25rem; }

/* Follow banner */
.sport-follow-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 32px 0;
  padding: 18px 22px;
  background: linear-gradient(90deg, var(--sport-surface), var(--sport-accent-dark));
  border: 0;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}
.sport-follow-banner-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 0.75rem;
  opacity: .9;
}
.sport-follow-banner-text {
  flex: 1;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: center;
}
.sport-follow-banner-arrow { font-size: 1.5rem; opacity: .9; }

/* Match page / player */
.sport-match-page { padding: 24px 0 48px; }
.sport-match-container { max-width: 900px; }
.sport-player-wrap {
  position: relative;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.sport-player-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}
.sport-player-iframe,
.sport-player-video {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  display: block;
  background: #000;
}
.sport-player-external {
  margin: 0;
  padding: 10px 14px;
  font-size: 0.8125rem;
  background: #111827;
  color: #cbd5e1;
  text-align: center;
}
.sport-player-external a,
.sport-player-link {
  color: #fff;
  font-weight: 600;
}
.sport-player-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 12px 0;
  background: #0b1220;
}
.sport-player-tab {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
}
.sport-player-tab.is-active {
  background: var(--sport-accent);
  border-color: var(--sport-accent);
  color: #fff;
}
.sport-player-tab-lang {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.6875rem;
  opacity: 0.85;
  font-weight: 500;
}
.sport-player-geo-note,
.sport-player-hint {
  margin: 0;
  padding: 10px 14px;
  font-size: 0.8125rem;
  background: #111827;
  color: #cbd5e1;
  text-align: center;
}
.sport-player-hint {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #94a3b8;
}
.sport-player-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}
.sport-player-upcoming-box {
  background: rgba(255,255,255,.95);
  border-radius: 12px;
  padding: 24px 28px;
  text-align: center;
  max-width: 360px;
  color: var(--nl-text);
}
.sport-player-upcoming-box svg { margin: 0 auto 12px; color: var(--sport-accent); }
.sport-player-upcoming-box p { margin: 0 0 6px; }
.sport-player-sub { font-size: 0.875rem; color: var(--nl-text-muted); }
.sport-player-flags {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
}
.sport-player-flags img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}
.sport-match-meta { color: var(--nl-text-muted); font-size: 0.875rem; margin: 0 0 8px; }
.sport-match-title { font-size: 1.75rem; margin: 0 0 12px; line-height: 1.2; }
.sport-match-desc { color: var(--nl-text-muted); line-height: 1.6; margin: 0 0 8px; }
.sport-match-related { margin-top: 40px; }
.sport-match-related h2 { font-size: 1.25rem; margin-bottom: 16px; }

/* Live index */
.sport-live-page { padding: 32px 0 48px; }
.sport-live-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.sport-live-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--nl-border);
  text-decoration: none;
  color: var(--nl-text);
  font-size: 0.875rem;
  font-weight: 500;
}
.sport-live-pill.active,
.sport-live-pill:hover {
  background: var(--nl-header-bg);
  color: #fff;
  border-color: var(--nl-header-bg);
}
.sport-live-section-title {
  font-size: 1.25rem;
  margin: 0 0 16px;
}
.sport-live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}
.sport-live-card {
  display: block;
  text-decoration: none;
  color: var(--nl-text);
  background: #fff;
  border: 1px solid var(--nl-border);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sport-live-card:hover {
  border-color: var(--sport-accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.sport-live-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
  min-height: 20px;
}
.sport-live-card-head time {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--nl-text-muted);
}
.sport-live-card-group {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sport-accent);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.sport-live-card-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}
.sport-live-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.sport-live-home { align-items: flex-start; }
.sport-live-away { align-items: flex-end; }
.sport-live-flag {
  width: 40px;
  height: 28px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.sport-live-team {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sport-live-home .sport-live-team { text-align: left; }
.sport-live-away .sport-live-team { text-align: right; }
.sport-live-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 0 4px;
}
.sport-live-score {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.sport-live-vs {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--nl-text-muted);
  text-transform: uppercase;
}
.sport-live-badge[hidden] {
  display: none !important;
}
.sport-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34, 197, 94, 0.14);
  color: #15803d;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sport-live-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: sport-pulse 1.2s infinite;
}
.sport-live-card.is-live {
  border-color: rgba(34, 197, 94, 0.35);
}

.sport-live-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sport-highlights-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: #0f172a;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, transform .15s;
  text-decoration: none;
}
.sport-highlights-btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
  color: #fff;
}
.sport-highlights-player {
  margin-bottom: 24px;
}
.sport-highlights-wrap {
  margin-bottom: 0;
}
.sport-highlights-label {
  color: #fff;
}
.sport-highlights-label .sport-live-dot {
  display: none;
}
.sport-highlights-media {
  aspect-ratio: 16 / 9;
  background: #020f2a;
  overflow: hidden;
}
.sport-highlights-fifa-tile {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
.sport-highlights-fifa-tile:hover,
.sport-highlights-fifa-tile:focus-visible {
  color: #fff;
}
.sport-highlights-fifa-tile:hover .sport-highlights-fifa-play-overlay,
.sport-highlights-fifa-tile:focus-visible .sport-highlights-fifa-play-overlay {
  background: linear-gradient(180deg, rgba(2, 15, 42, 0.2), rgba(2, 15, 42, 0.82));
}
.sport-highlights-fifa-tile:hover .sport-highlights-fifa-play-icon,
.sport-highlights-fifa-tile:focus-visible .sport-highlights-fifa-play-icon {
  transform: scale(1.06);
}
.sport-highlights-fifa-thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.sport-highlights-fifa-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  text-align: center;
  background: linear-gradient(180deg, rgba(2, 15, 42, 0.12), rgba(2, 15, 42, 0.72));
  transition: background .15s ease;
}
.sport-highlights-fifa-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(4px);
  transition: transform .15s ease;
}
.sport-highlights-fifa-play-label {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}
.sport-highlights-fifa-status {
  margin: 0;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: #cbd5e1;
  text-align: center;
}
.sport-highlights-fifa-source {
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.9;
}
.sport-highlights-pending {
  min-height: 280px;
}

/* Drawers */
.sport-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
}
.sport-drawer:not([hidden]) { pointer-events: auto; }
.sport-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .25s;
}
.sport-drawer:not([hidden]) .sport-drawer-backdrop { opacity: 1; }
.sport-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--sport-drawer-width);
  max-width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 32px rgba(0,0,0,.15);
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sport-drawer:not([hidden]) .sport-drawer-panel { transform: translateX(0); }
.sport-drawer-panel-wide { width: min(1100px, 100vw); }
.sport-drawer-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--nl-text-muted);
  z-index: 2;
}
.sport-drawer-title {
  margin: 0;
  padding: 24px 24px 12px;
  font-size: 1.5rem;
  color: var(--sport-surface);
  font-weight: 700;
}
.sport-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px 32px;
}
.sport-drawer-empty { padding: 24px; color: var(--nl-text-muted); }

/* Group standings */
.sport-group-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 0 24px 16px;
  border-bottom: 1px solid var(--nl-border);
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 3;
}
.sport-group-nav::-webkit-scrollbar { display: none; }
.sport-group-nav a {
  flex: 0 0 auto;
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--nl-text);
  background: #f3f4f6;
}
.sport-group-nav a:hover,
.sport-group-nav a.is-active {
  background: var(--sport-accent);
  color: #fff;
}
.sport-standings-group { margin-bottom: 28px; }
.sport-standings-group h3 {
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  margin: 20px 0 8px;
}
.sport-standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}
.sport-standings-table th,
.sport-standings-table td {
  padding: 8px 6px;
  border-bottom: 1px solid var(--nl-border);
  text-align: center;
}
.sport-standings-table th:first-child,
.sport-standings-table td:first-child { text-align: left; }
.sport-standings-table th:nth-child(2),
.sport-standings-table td:nth-child(2) { text-align: left; }
.sport-standings-table thead th {
  background: #f9fafb;
  color: var(--nl-text-muted);
  font-weight: 600;
  font-size: 0.75rem;
}
.sport-standings-team {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  min-width: 120px;
}

/* Knockout */
.sport-knockout-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px 16px;
}
.sport-knockout-tab {
  border: 0;
  background: #f3f4f6;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  font-family: inherit;
}
.sport-knockout-tab.active {
  background: var(--sport-surface);
  color: #fff;
}
.sport-knockout-body { overflow-x: auto; }
.sport-bracket {
  display: flex;
  gap: 20px;
  min-width: max-content;
  padding-bottom: 16px;
}
.sport-bracket-match {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--nl-border);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: var(--nl-text);
  position: relative;
}
.sport-bracket-match.is-placeholder {
  background: #fafafa;
}
.sport-bracket-match.is-placeholder span {
  color: var(--nl-text-muted);
  font-style: italic;
}
.sport-bracket-match:hover:not(.is-placeholder) {
  border-color: var(--sport-accent);
  box-shadow: var(--nl-card-shadow-hover);
}
.sport-bracket-team {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.875rem;
}
.sport-bracket-team span {
  line-height: 1.3;
}
.sport-bracket-dot {
  width: 18px;
  height: 14px;
  border-radius: 2px;
  background: #e5e7eb;
  flex-shrink: 0;
}
.sport-bracket-time {
  font-size: 0.75rem;
  color: var(--nl-text-muted);
  margin-top: 4px;
}

/* Program */
.sport-program-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 24px 16px;
  padding: 10px 16px;
  border: 1px solid var(--nl-border);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
}
.sport-program-date {
  background: #f3f4f6;
  padding: 12px 24px;
  margin: 0 -24px 0;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sport-program-grid { margin-bottom: 8px; }
.sport-program-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--nl-border);
  text-decoration: none;
  color: var(--nl-text);
}
.sport-program-row:hover { background: #f9fafb; }
.sport-program-team {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.9375rem;
}
.sport-program-away { justify-content: flex-end; text-align: right; }
.sport-program-center {
  text-align: center;
  min-width: 80px;
}
.sport-program-phase {
  display: block;
  font-size: 0.75rem;
  color: var(--nl-text-muted);
}
.sport-program-center time { font-weight: 700; font-size: 1rem; }
.sport-program-score { display: block; font-size: 0.875rem; color: var(--sport-accent); font-weight: 600; }

body.sport-drawer-open { overflow: hidden; }

@media (max-width: 768px) {
  .sport-carousel-btn { right: 4px; }
  .sport-match-card { flex: 0 0 210px; }
  .sport-follow-banner { flex-wrap: wrap; }
  .sport-follow-banner-text { text-align: left; width: 100%; order: 3; }
  .sport-program-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sport-program-away { justify-content: center; }
  .sport-standings-table { font-size: 0.7rem; }
}
