/* ==========================================================================
   voetbalzender.nl
   Vormgeving als een wedstrijdprogramma: wit papier, zware smalle kapitalen,
   pitch-groen als structuurkleur, oranje alleen voor Oranje en Nederlandse
   clubs in Europa. Het programma staat als "thuis | tijd | uit", op een
   telefoon als scorebord met de tijd links.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  color-scheme: light;     /* bewust alleen licht, zoals het KNVB-programma */
  --paper: #f7f5f5;        /* papier met een zweem warmte */
  --surface: #ffffff;
  --ink: #17100f;          /* warm zwart */
  --ink-2: #4a3f41;
  --ink-3: #7d7174;
  --rule: #e2dadc;
  --rule-2: #cdc1c4;
  --pitch: #7a1533;        /* bordeaux, de structuurkleur */
  --pitch-deep: #4e0b21;
  --pitch-tint: #f6e9ed;
  --band: linear-gradient(100deg, #4e0b21 0%, #7a1533 55%, #931c42 100%);
  --chalk: #ffffff;
  --oranje: #f26a1b;       /* alleen voor Oranje en NL-clubs in Europa */
  --oranje-tint: #fdeee4;
  --ucl: #1f4fb2;
  --uel: #b86a05;
  --uecl: #0e8f7e;
  --ticket-bg: #17100f;    /* zenderkaartje */
  --ticket-ink: #ffffff;
  --shadow: 0 1px 0 rgba(23, 16, 15, .06);
}


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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Barlow", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

/* De smalle kapitaal die het programma draagt. */
.display,
h1, h2, h3,
.brand-text, .week-date, .week-label,
.tab, .day-date, .day-name, .day-mark,
.fx-time, .fx-score, .rating-value, .channel-tag,
.section-header, .next-week-title, .standings h2, .standings th {
  font-family: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

a { color: inherit; }
button { font: inherit; color: inherit; }
img { max-width: 100%; }

:focus-visible { outline: 2px solid var(--pitch); outline-offset: 2px; }

/* Emoji als pictogram leest als een sjabloon; de tekst zegt genoeg. */
.flag { display: none; }

/* Container: de kopbalk is randloos, de rest staat op een kolom. */
.hero, .tabs, #content, .footer, .homescreen {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

/* ---------- Kopbalk ---------- */
.topbar {
  background: var(--ink);
  color: var(--chalk);
  border-bottom: 4px solid var(--pitch);
  border-image: var(--band) 1;
}
.topbar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px max(clamp(16px, 4vw, 40px), calc((100% - 1120px) / 2 + clamp(16px, 4vw, 40px)));
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.logo {
  width: 30px;
  height: 30px;
  flex: none;
  display: inline-grid;
  place-items: center;
  background: var(--band);
  color: var(--chalk);
}
.logo svg { width: 22px; height: 22px; display: block; }
.brand-text {
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  letter-spacing: .01em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, .62);
  white-space: nowrap;
}
.week-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}
.week-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}
.week-date {
  font-size: 19px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ---------- Homescreen-uitnodiging (alleen op een telefoon) ---------- */
.homescreen {
  display: none;
  margin-top: 12px;
}
.homescreen-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--pitch-tint);
  border: 1px solid var(--pitch);
  color: var(--ink);
}
.homescreen-icon {
  width: 36px;
  height: 36px;
  flex: none;
  background: var(--band);
  display: grid;
  place-items: center;
}
.homescreen-icon svg { width: 26px; height: 26px; }
.homescreen-text { flex: 1; min-width: 0; font-size: 13px; line-height: 1.3; }
.homescreen-text strong { display: block; font-weight: 700; }
.homescreen-btn {
  flex: none;
  padding: 8px 10px;
  background: var(--pitch);
  color: var(--chalk);
  border: 0;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.homescreen-close {
  flex: none;
  margin-left: -6px;
  width: 28px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
/* iOS kent geen installatieprompt; daar tonen we de stappen in plaats van een knop. */
.homescreen-steps { display: none; font-size: 13px; color: var(--ink-2); }
.homescreen.ios .homescreen-steps { display: block; }
.homescreen.ios .homescreen-btn { display: none; }
@media (max-width: 720px) and (hover: none) {
  .homescreen.tonen { display: block; }
}

/* ---------- Kop ---------- */
.hero { padding-top: 30px; padding-bottom: 14px; }
.hero-inner { max-width: 62ch; }
.kicker { display: none; }
h1 {
  margin: 0;
  font-weight: 800;
  font-size: clamp(46px, 8.5vw, 84px);
  line-height: .92;
  letter-spacing: -.005em;
  text-transform: uppercase;
  text-wrap: balance;
}
.titel-datum {
  display: block;
  margin-top: 6px;
  font-size: .4em;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--pitch);
  white-space: nowrap;
}
.subtitle:empty { display: none; }
.hero-lead {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
}

/* ---------- Tabs: onderstreepte koppen, zoals een sportkrant ---------- */
.tabs {
  display: flex;
  gap: 22px;
  border-bottom: 1px solid var(--rule-2);
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tabs-main { margin-top: 18px; }
.tab {
  flex: none;
  padding: 10px 0 8px;
  margin-bottom: -1px;
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  letter-spacing: .01em;
  color: var(--ink-3);
  transition: color .12s ease, border-color .12s ease;
}
.tab:hover { color: var(--ink); }
.tab.active { color: var(--ink); border-bottom-color: var(--pitch); }
.tabs-sub { border-bottom-color: var(--rule); gap: 18px; }
.tabs-sub .tab { font-size: 16px; font-weight: 700; padding: 9px 0 7px; border-bottom-width: 2px; }
.tabs-sub[hidden] { display: none; }

/* ---------- Filterchips ---------- */
.tv-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 20px;
}
.tv-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--rule-2);
  border-radius: 2px;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .12s ease, color .12s ease, border-color .12s ease;
}
.tv-chip:hover { border-color: var(--ink); color: var(--ink); }
.tv-chip-n {
  font-size: 11px;
  font-weight: 700;
  padding: 1px 5px;
  background: var(--paper);
  border-radius: 2px;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.tv-chip.actief {
  background: var(--comp-c, var(--ink));
  border-color: var(--comp-c, var(--ink));
  color: var(--paper);
}
.tv-chip.actief.comp-ucl, .tv-chip.actief.comp-uel,
.tv-chip.actief.comp-uecl, .tv-chip.actief.comp-oranje { color: var(--chalk); }
.tv-chip.actief .tv-chip-n { background: rgba(127, 127, 127, .28); color: inherit; }
.comp-ered   { --comp-c: var(--ink); }
.comp-ucl    { --comp-c: var(--ucl); }
.comp-uel    { --comp-c: var(--uel); }
.comp-uecl   { --comp-c: var(--uecl); }
.comp-oranje { --comp-c: var(--oranje); }

/* ---------- Dagkop: een groene baan over de volle breedte ---------- */
.day-group { margin-bottom: 22px; }
.day-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 14px;
  background: var(--band);
  color: var(--chalk);
}
.day-date {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .005em;
}
.day-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .82;
}
.day-mark {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 7px;
  background: var(--chalk);
  color: var(--pitch-deep);
}
.day-count {
  margin-left: auto;
  font-size: 12px;
  opacity: .78;
  font-variant-numeric: tabular-nums;
}
.day-group.is-today .day-head { box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .3); }

.match-list { display: flex; flex-direction: column; }

/* ---------- De wedstrijdrij ---------- */
.match-row {
  display: grid;
  /* De zijkolom heeft een vaste breedte: anders schuift een breed zenderkaartje
     de middenkolom op en staan de tijden per rij anders uitgelijnd. */
  grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr) 210px;
  column-gap: 14px;
  row-gap: 4px;
  align-items: center;
  padding: 12px 14px;
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: background .12s ease;
}
.match-list > .match-row:first-child { border-top: 1px solid var(--rule); }
a.match-row:hover { background: var(--pitch-tint); }

.fx-home, .fx-away {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  grid-row: 1;
}
.fx-home { grid-column: 1; justify-content: flex-end; text-align: right; }
.fx-away { grid-column: 3; }
.team-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.team-logo {
  width: 28px;
  height: 28px;
  flex: none;
  object-fit: contain;
}
.team-logo.placeholder {
  display: inline-block;
  border: 1px dashed var(--rule-2);
  border-radius: 50%;
}

.fx-centre {
  grid-column: 2;
  grid-row: 1;
  text-align: center;
}
.fx-time, .fx-score {
  display: inline-block;
  min-width: 68px;
  padding: 4px 8px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: var(--ink);
  color: var(--paper);
}
.fx-score { letter-spacing: .04em; }
/* Gespeeld: alleen een streepje tussen de clubs. De datum staat er al onder. */
.fx-dash {
  display: inline-block;
  width: 22px;
  height: 3px;
  background: var(--ink);
  vertical-align: middle;
}

.fx-info {
  grid-column: 1 / 4;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 10px;
  font-size: 12.5px;
  color: var(--ink-3);
  text-align: center;
}
.fx-date { color: var(--ink-2); }
/* De heenwedstrijd op een eigen regel onder de competitie, gecentreerd. */
.row-note {
  flex-basis: 100%;
  text-align: center;
  color: var(--oranje);
  font-weight: 600;
}

.fx-side {
  grid-column: 4;
  grid-row: 1 / span 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.row-dutch, .row-stars {
  grid-column: 1 / 4;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-3);
}
.row-dutch { grid-row: 3; }
.row-stars { grid-row: 4; }
.dutch-flag {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 1px 4px;
  background: var(--oranje);
  color: var(--chalk);
}
.row-side.away { text-align: left; }

/* ---------- Labels ---------- */
.comp-tag {
  display: inline-block;
  padding: 3px 7px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--comp-c, var(--ink-2));
  border: 1px solid currentColor;
  border-radius: 2px;
  line-height: 1.1;
}

/* Het zenderkaartje: vol vlak, smalle kapitalen. Leest als een programmablad. */
.channel-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--ink);
}
.ch-logo { height: 20px; width: auto; display: block; }
.channel-tag.tbd { border-style: dashed; border-color: var(--rule-2); color: var(--ink-3); }
.channel-tag.tbd .ch-logo { opacity: .55; }
.tbd-mark { opacity: .7; }

.rating-value {
  display: inline-block;
  min-width: 40px;
  padding: 5px 7px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: var(--ink);
  color: var(--paper);
}
.rating-elite { background: var(--pitch); color: var(--chalk); }
.rating-good  { background: var(--ink); }
.rating-mid   { background: var(--ink-3); color: var(--chalk); }
.rating-low   { background: var(--rule); color: var(--ink-2); }
.row-play { color: var(--ink-3); display: inline-flex; }
a.match-row:hover .row-play { color: var(--pitch); }

.remind-btn {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--rule-2);
  border-radius: 2px;
  color: var(--ink-3);
  cursor: pointer;
  transition: color .12s ease, border-color .12s ease, background .12s ease;
}
.remind-btn:hover { color: var(--pitch); border-color: var(--pitch); }
.remind-btn.gezet { color: var(--chalk); background: var(--pitch); border-color: var(--pitch); }

/* ---------- Nadruk: Nederlandse clubs in Europa, en Oranje ---------- */
/* De oranje rand als schaduw aan de binnenkant, niet als border: een border
   schuift de hele rij 4px op en dan staan de tijden niet meer op een as. */
.match-row.row-featured {
  box-shadow: inset 4px 0 0 var(--oranje);
  background: var(--oranje-tint);
}
.team-name.nl-club { color: var(--oranje); font-weight: 800; }
.match-row.row-oranje {
  box-shadow: inset 4px 0 0 var(--oranje);
  background: var(--oranje-tint);
}
.team-name.oranje-club { color: var(--oranje); font-weight: 800; text-transform: uppercase; }
.row-oranje .comp-tag { background: var(--oranje); border-color: var(--oranje); color: var(--chalk); }
.row-oranje .fx-time { background: var(--oranje); color: var(--chalk); }

/* ---------- Volgende week, ingeklapt ---------- */
.next-week { margin-top: 8px; }
.next-week > summary {
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--ink);
  cursor: pointer;
  background: var(--surface);
}
.next-week > summary::-webkit-details-marker { display: none; }
.next-week > summary::after {
  content: "";
  margin-left: auto;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg) translateY(-3px);
  transition: transform .15s ease;
}
.next-week[open] > summary::after { transform: rotate(225deg) translateY(-2px); }
.next-week-title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}
.next-week-sub { font-size: 13px; color: var(--ink-3); }
.next-week-body { padding-top: 18px; }

.leeg { padding: 28px 0; color: var(--ink-3); }

/* ---------- Samenvattingen ---------- */
.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;   /* anders rekt het kaartenraster mee met de stand en krijgen kaarten loze ruimte */
  gap: 28px;
  margin-top: 22px;
}
.layout.no-standings { grid-template-columns: minmax(0, 1fr); }

.section-header {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.section-header.upcoming { color: var(--pitch); }
.match-section + .match-section { margin-top: 26px; }

/* Eredivisie: kaarten met de samenvatting als beeld. */
.matches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.match-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
}
.match-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
}
.teams {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.vs-sep { color: var(--ink-3); font-weight: 400; padding: 0 3px; text-transform: none; }
.meta { margin-top: 3px; font-size: 12px; color: var(--ink-3); }
.rating { text-align: right; flex: none; }
.rating-label {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.video-wrap { position: relative; aspect-ratio: 16 / 9; background: var(--ink); }
.video-thumb { position: absolute; inset: 0; display: block; overflow: hidden; }
.thumb-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .2s ease;
}
.video-thumb:hover .thumb-bg { transform: scale(1.03); }
.thumb-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .55));
}
.play-btn { position: absolute; right: 10px; bottom: 10px; }
.play-btn svg { display: block; }
.yt-bg { fill: #212121; fill-opacity: .85; }
.tag {
  display: inline-block;
  margin: 8px 0 0 12px;
  font-size: 12px;
  color: var(--ink-2);
}

/* Stand: een krantentabel. */
.standings {
  align-self: start;
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: 12px 14px 10px;
}
.standings h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.standings table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.standings th {
  padding: 4px 6px 6px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-bottom: 2px solid var(--ink);
}
.standings td { padding: 6px; border-bottom: 1px solid var(--rule); }
.standings td.pos { width: 24px; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.standings td.team { font-weight: 600; }
.standings .numeric { text-align: right; font-variant-numeric: tabular-nums; }
.standings td.pts { font-weight: 800; }
.standings tr.zone-cl   td.pos { box-shadow: inset 3px 0 0 var(--ucl); }
.standings tr.zone-el   td.pos { box-shadow: inset 3px 0 0 var(--uel); }
.standings tr.zone-conf td.pos { box-shadow: inset 3px 0 0 var(--uecl); }
.standings tr.zone-rel  td.pos { box-shadow: inset 3px 0 0 #c0392b; }
.zone-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--ink-3);
}
.zone-legend span { display: inline-flex; align-items: center; gap: 6px; }
.zone-dot { width: 8px; height: 8px; display: inline-block; }
.zone-cl-dot { background: var(--ucl); }
.zone-el-dot { background: var(--uel); }
.zone-conf-dot { background: var(--uecl); }
.zone-rel-dot { background: #c0392b; }

/* ---------- Voet ---------- */
.footer {
  margin-top: 40px;
  padding-top: 14px;
  padding-bottom: 40px;
  border-top: 1px solid var(--rule-2);
  font-size: 12.5px;
  color: var(--ink-3);
}
.footer p { margin: 0; }

/* De statische lijst, zichtbaar tot de app laadt. */
.optv-static h2 {
  margin: 22px 0 6px;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}
.optv-static ul { margin: 0; padding: 0; list-style: none; }
.optv-static li { padding: 7px 0; border-bottom: 1px solid var(--rule); }

/* ---------- Kleinere schermen ---------- */
@media (max-width: 920px) {
  .layout, .layout.no-standings { grid-template-columns: minmax(0, 1fr); }
  .matches { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .topbar { grid-template-columns: 1fr; gap: 6px; padding-block: 10px; }
  .brand-tagline { display: none; }
  .week-info { flex-direction: row; align-items: baseline; gap: 8px; }
  .matches { grid-template-columns: minmax(0, 1fr); }
  .tab { font-size: 19px; }
  .venue-los { display: none; }
}

/* Het scorebord: tijd links, thuis boven uit, zender rechts. */
@media (max-width: 640px) {
  .match-row {
    grid-template-columns: 60px minmax(0, 1fr) auto;
    column-gap: 12px;
    row-gap: 6px;
    padding: 10px 12px;
  }
  .fx-centre { grid-column: 1; grid-row: 1 / span 2; }
  .fx-time, .fx-score { min-width: 60px; padding: 6px 6px; font-size: 20px; }
  .fx-dash { width: 16px; }
  .fx-home, .fx-away { grid-column: 2; justify-content: flex-start; text-align: left; }
  /* row-reverse zet het logo voorop; flex-end is dan de linkerkant. */
  .fx-home { grid-row: 1; flex-direction: row-reverse; justify-content: flex-end; }
  .fx-away { grid-row: 2; }
  .team-logo { width: 22px; height: 22px; }
  .team-name { font-size: 15px; }
  .fx-info { grid-column: 2 / 4; grid-row: 3; justify-content: flex-start; text-align: left; }
  .row-dutch { grid-column: 2 / 4; grid-row: 4; justify-content: flex-start; }
  .row-stars { grid-column: 2 / 4; grid-row: 5; justify-content: flex-start; }
  .fx-side {
    grid-column: 3;
    grid-row: 1 / span 2;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
  }
  /* Het kaartje mag afbreken, de clubnaam liever niet: die krijgt de ruimte. */
  .channel-tag { font-size: 13px; padding: 4px 7px; white-space: normal; text-align: right; max-width: 110px; line-height: 1.15; flex-wrap: wrap; justify-content: flex-end; }
  .ch-logo { height: 16px; }
  .team-name { overflow-wrap: normal; hyphens: manual; }
  .row-note { text-align: left; }
  .day-head { padding: 7px 12px; }
  .day-date { font-size: 21px; }
  .day-name { font-size: 12px; }
  h1 { font-size: clamp(40px, 12vw, 56px); }
  .hero { padding-top: 22px; }
  .hero-lead { font-size: 15px; }
  .next-week-title { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
