/*
Theme Name: WilliNet 2026
Theme URI: https://willinet.org/
Author: Roman Sheydvasser
Description: A lightweight custom theme implementing the August 2026 WilliNet design system.
Version: 0.4.6
Requires at least: 6.6
Requires PHP: 8.1
Text Domain: willinet-2026
*/

:root {
  --navy-700: #0f2440;
  --navy-600: #16305c;
  --navy-500: #2b5ca6;
  --navy-100: #d3dcea;
  --gold-600: #d89a1e;
  --gold-500: #f4b333;
  --gold-200: #fbe6bd;
  --series-civic: #1c578f;
  --series-producer: #16305c;
  --series-community: #2e5d3a;
  --series-create: #d2691e;
  --series-story: #be811a;
  --series-team: #1f7a7a;
  --series-watch: #a83a16;
  --cream: #efeae0;
  --canvas: #e7e3db;
  --sand: #ded7c8;
  --white: #fff;
  --ink: #0f2440;
  --ink-2: #2c3a4e;
  --ink-3: #5b6675;
  --font-display: "Archivo", "Libre Franklin", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Archivo", "Libre Franklin", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Newsreader", "Source Serif Pro", Georgia, serif;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --content-width: 1180px;
  --measure-body: 62ch;
  --radius-sm: 10px;
  --radius-card: 12px;
  --radius-photo: 30px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgb(15 36 64 / 10%);
  --shadow-md: 0 6px 22px rgb(0 0 0 / 16%);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
}

body.admin-bar .site-header {
  top: 32px;
}

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

a {
  color: var(--navy-500);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--navy-700);
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.screen-reader-text:focus,
.skip-link:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  left: var(--space-4);
  padding: var(--space-3) var(--space-4);
  top: var(--space-4);
  width: auto;
  z-index: 100000;
}

.skip-link {
  background: var(--gold-500);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 800;
  position: absolute;
}

.site-container {
  margin-inline: auto;
  max-width: calc(var(--content-width) + 88px);
  padding-inline: 44px;
  width: 100%;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--sand);
  position: relative;
  z-index: 100;
}

.site-header__inner {
  align-items: center;
  display: flex;
  gap: var(--space-5);
  min-height: 84px;
}

.site-branding {
  flex: 0 0 auto;
}

.custom-logo-link,
.site-logo-link {
  display: block;
}

.custom-logo,
.site-logo {
  height: auto;
  width: 86px;
}

.primary-navigation {
  align-items: center;
  display: flex;
  flex: 1;
  gap: var(--space-4);
  justify-content: space-between;
}

.primary-navigation ul {
  align-items: center;
  display: flex;
  gap: clamp(12px, 1.4vw, 24px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-navigation a {
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a,
.primary-navigation a:hover {
  color: var(--series-watch);
}

.header-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: var(--space-3);
}

.button,
.wp-element-button,
button,
input[type="submit"] {
  align-items: center;
  background: var(--navy-600);
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font: 800 15px/1.2 var(--font-body);
  justify-content: center;
  min-height: 44px;
  --button-label-offset: 0.067em;
  padding: calc(12px + var(--button-label-offset)) 22px calc(12px - var(--button-label-offset));
  text-decoration: none;
  transition: background-color 140ms var(--ease-out), transform 140ms var(--ease-out);
}

.button:hover,
.wp-element-button:hover,
button:hover,
input[type="submit"]:hover {
  background: var(--navy-700);
  color: var(--white);
}

.button:active,
.wp-element-button:active,
button:active,
input[type="submit"]:active {
  transform: scale(0.97);
}

.button--watch {
  background: var(--cream);
  border-color: var(--sand);
  color: var(--ink);
}

.button--donate {
  background: var(--series-watch);
}

.button--shop {
  background: transparent;
  border-color: var(--gold-600);
  color: var(--gold-600);
}

.menu-toggle {
  display: none;
}

.site-main {
  min-height: 55vh;
}

.staging-notice {
  background: var(--gold-500);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 16px;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding-block: var(--space-8);
}

.section--canvas {
  background: var(--canvas);
}

.section--navy {
  background: var(--navy-700);
  color: var(--white);
}

.section-heading {
  align-items: center;
  display: flex;
  gap: var(--space-3);
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

.section-heading h2 {
  font-size: 16px;
  letter-spacing: 0.2em;
  margin: 0;
  text-transform: uppercase;
}

.section-heading h2::before {
  background: var(--gold-500);
  border-radius: var(--radius-pill);
  content: "";
  display: inline-block;
  height: 4px;
  margin-right: var(--space-3);
  vertical-align: middle;
  width: 28px;
}

.section-link {
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  background: var(--navy-700);
  color: var(--white);
  overflow: hidden;
  padding-block: clamp(64px, 9vw, 112px);
  position: relative;
}

.hero::after {
  background: rgb(244 179 51 / 7%);
  border-radius: 50%;
  bottom: -190px;
  content: "";
  height: 430px;
  position: absolute;
  right: -150px;
  width: 430px;
}

.hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(44px, 7vw, 100px);
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold-500);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin: 0 0 var(--space-5);
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(48px, 6vw, 78px);
  margin: 0;
  max-width: 10ch;
}

.hero h1 strong {
  color: var(--gold-500);
  display: block;
}

.hero__tagline {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-style: italic;
  margin: var(--space-5) 0 var(--space-6);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.button--create {
  background: var(--series-create);
}

.button--ghost {
  background: rgb(255 255 255 / 10%);
  border-color: rgb(255 255 255 / 24%);
}

.featured-carousel {
  min-width: 0;
}

.featured-slide {
  background: linear-gradient(150deg, var(--slide-color, var(--navy-600)), var(--navy-700));
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  display: none;
  min-height: 330px;
  overflow: hidden;
  padding: var(--space-6);
  position: relative;
}

.featured-slide.is-active {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-slide__badge,
.card-badge {
  align-self: flex-start;
  background: var(--white);
  border-radius: var(--radius-pill);
  color: var(--slide-color, var(--navy-600));
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 14px;
}

.featured-slide__play,
.video-card__play {
  align-items: center;
  background: rgb(255 255 255 / 90%);
  border-radius: 50%;
  color: var(--navy-700);
  display: flex;
  font-size: 24px;
  height: 66px;
  justify-content: center;
  margin: auto;
  width: 66px;
}

.featured-slide h2 {
  color: var(--white);
  font-size: 26px;
  margin: 0 0 var(--space-1);
}

.featured-slide p {
  margin: 0;
}

.carousel-controls {
  align-items: center;
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.carousel-control {
  background: transparent;
  border: 1px solid rgb(255 255 255 / 30%);
  min-height: 36px;
  padding: 8px;
  width: 36px;
}

.carousel-dots {
  display: flex;
  gap: 7px;
}

.carousel-dot {
  background: rgb(255 255 255 / 42%);
  border: 0;
  min-height: 0;
  padding: 0;
  height: 8px;
  width: 8px;
}

.carousel-dot.is-active {
  background: var(--gold-500);
  width: 24px;
}

.card-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-card,
.news-card,
.pathway-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-card);
  color: var(--ink-2);
  overflow: hidden;
  text-decoration: none;
}

.video-card__image {
  align-items: center;
  background: linear-gradient(145deg, var(--card-color, var(--navy-600)), var(--navy-700));
  display: flex;
  min-height: 190px;
  padding: var(--space-4);
}

.video-card__play {
  background: rgb(0 0 0 / 30%);
  color: var(--white);
  font-size: 16px;
  height: 44px;
  width: 44px;
}

.video-card__body,
.news-card,
.pathway-card {
  padding: var(--space-5);
}

.video-card h3,
.news-card h3,
.pathway-card h3 {
  font-size: 20px;
  margin: 0 0 var(--space-1);
}

.video-card p,
.news-card p,
.pathway-card p {
  color: var(--ink-3);
  margin: 0;
}

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

.news-card {
  border-left: 4px solid var(--card-color, var(--gold-500));
}

.news-card__meta {
  align-items: center;
  display: flex;
  font-size: 12px;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}

.news-card__link,
.pathway-card__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  margin-top: var(--space-4);
}

.pathways-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pathway-card {
  border-bottom: 5px solid var(--card-color, var(--gold-500));
}

.pathway-card h3 {
  color: var(--card-color, var(--navy-600));
}

.watch-hero {
  background: var(--navy-700);
  color: var(--white);
  padding-block: var(--space-8);
}

.watch-layout {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.85fr);
}

.live-player {
  background: linear-gradient(145deg, #234361, #102840);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  min-height: 500px;
  overflow: hidden;
}

.live-player__top,
.live-player__footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: var(--space-5);
}

.live-player__stage {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
}

.live-player__footer {
  background: rgb(5 20 38 / 55%);
}

.live-player__footer h1 {
  color: var(--white);
  font-size: 24px;
  margin: 0;
}

.live-player__footer p {
  margin: 0;
}

.live-badge {
  background: var(--series-watch);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 800;
  padding: 9px 16px;
}

.schedule h2 {
  color: var(--gold-500);
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.schedule-list {
  list-style: none;
  margin: var(--space-5) 0;
  padding: 0;
}

.schedule-list li {
  background: rgb(255 255 255 / 7%);
  border-radius: var(--radius-sm);
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 80px 1fr;
  margin-bottom: var(--space-3);
  padding: var(--space-4);
}

.schedule-list time {
  color: var(--gold-200);
  font-family: monospace;
}

.archive-tools {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.archive-search {
  border: 1px solid var(--sand);
  border-radius: var(--radius-pill);
  font: inherit;
  min-height: 44px;
  padding: 10px 20px;
}

.filter-button {
  background: transparent;
  border-color: var(--navy-500);
  color: var(--navy-500);
}

.filter-button.is-active {
  background: var(--navy-700);
  color: var(--white);
}

.prototype-note {
  background: var(--gold-200);
  border-left: 5px solid var(--gold-600);
  color: var(--ink);
  font-size: 14px;
  padding: var(--space-4) var(--space-5);
}

.content-area {
  padding-block: var(--space-8) var(--space-9);
}

.entry-header,
.entry-content,
.entry-footer,
.page-header {
  margin-inline: auto;
  max-width: var(--measure-body);
}

.entry-title,
.page-title,
h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.entry-title,
.page-title,
h1 {
  font-size: clamp(42px, 6vw, 72px);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: clamp(23px, 2.5vw, 34px);
}

.entry-meta {
  color: var(--ink-3);
  font-size: 15px;
}

.entry-content > * + * {
  margin-block-start: 1.4em;
}

.entry-content blockquote {
  border-left: 7px solid var(--gold-500);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.5em;
  font-style: italic;
  margin-inline: 0;
  padding-left: var(--space-5);
}

.site-footer {
  background: var(--navy-700);
  color: var(--white);
  padding-block: var(--space-6);
}

.site-footer__inner {
  align-items: center;
  display: flex;
  gap: var(--space-5);
  justify-content: space-between;
}

.footer-navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer a {
  color: var(--white);
}

.site-footer__details {
  font-size: 14px;
  margin: 0;
  text-align: right;
}

@media (max-width: 1080px) {
  .site-container {
    padding-inline: 28px;
  }

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

  .primary-navigation {
    align-items: stretch;
    background: var(--white);
    border-top: 1px solid var(--sand);
    box-shadow: var(--shadow-md);
    display: none;
    flex-direction: column;
    left: 0;
    padding: var(--space-5) 28px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .primary-navigation.is-open {
    display: flex;
  }

  .primary-navigation ul {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-navigation a {
    display: block;
    font-size: 18px;
    padding-block: var(--space-2);
  }

  .header-actions {
    flex-wrap: wrap;
  }

  .hero__grid,
  .watch-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 600px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-container {
    padding-inline: 20px;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__details {
    text-align: left;
  }

  .section {
    padding-block: var(--space-7);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero__grid {
    gap: var(--space-7);
  }

  .featured-slide,
  .live-player {
    min-height: 390px;
  }

  .live-player__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-4);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* September 14 homepage direction, simplified for the approved staging review. */
.hero {
  background: radial-gradient(ellipse at top left, #153a5b, transparent 65%), linear-gradient(120deg, var(--navy-700), #102039);
  padding-block: clamp(48px, 6vw, 84px);
}
.hero::before {
  background-image: radial-gradient(rgb(244 179 51 / 22%) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  content: "";
  position: absolute;
  inset: 35% 0 0 68%;
}
.hero__grid { gap: clamp(32px, 4vw, 64px); grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr); }
.hero h1 { font-size: clamp(44px, 5.4vw, 78px); max-width: 15ch; letter-spacing: -0.045em; }
.hero__tagline::before { background: var(--gold-500); content: ""; display: block; height: 5px; width: 76px; margin-bottom: 20px; }
.button--gold { background: var(--gold-500); color: var(--navy-700); border-color: var(--gold-500); }
.featured-slide { box-shadow: 12px 14px 0 var(--gold-600); min-height: 350px; }
.weekly-caption { color: var(--ink-3); font-size: 13px; letter-spacing: 0.1em; margin: 10px 0 0; text-transform: uppercase; }
.weekly-note { color: var(--ink-3); font-size: 13px; margin: -8px 0 20px; }
.weekly-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.weekly-feature, .program-card { display: flex; align-items: center; gap: 20px; border-radius: var(--radius-card); text-decoration: none; }
.weekly-feature { background: radial-gradient(circle at right, #254262, transparent 50%), var(--navy-700); color: white; padding: 28px; margin-bottom: 20px; }
.program-date { flex: 0 0 54px; text-align: center; }
.program-date span { display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.program-date strong { display: block; font-size: 32px; line-height: 1.15; }
.program-details { border-left: 4px solid var(--card-color, var(--gold-500)); padding: 4px 0 4px 20px; flex: 1; min-width: 0; }
.program-details h3 { font-size: 20px; margin: 10px 0 6px; }
.program-details p { color: var(--ink-3); font-size: 14px; margin: 0; }
.weekly-feature h3 { color: white; font-size: clamp(24px, 3vw, 32px); }
.weekly-feature p { color: var(--navy-100); }
.program-category { background: color-mix(in srgb, var(--card-color, var(--gold-500)) 15%, white); color: var(--card-color, var(--navy-700)); border-radius: 30px; display: inline-block; padding: 5px 10px; font-size: 12px; font-weight: 700; }
.weekly-feature .program-category { background: transparent; color: var(--gold-500); padding: 0; letter-spacing: 0.12em; text-transform: uppercase; }
.program-card { border: 1px solid var(--sand); background: white; color: var(--ink); padding: 18px; gap: 14px; }
.program-card .program-date { flex-basis: 40px; }
.program-card .program-details { padding-left: 14px; }
.program-art { align-self: stretch; flex: 0 0 25%; display: grid; place-items: center; border-radius: 8px; background: linear-gradient(145deg, var(--card-color), var(--navy-700)); color: white; min-height: 130px; }
.program-art span { border: 1px solid rgb(255 255 255 / 40%); border-radius: 50%; padding: 12px; }
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 18ch; }
  .program-art { display: none; }
}
@media (max-width: 600px) {
  .weekly-grid { grid-template-columns: 1fr; }
  .weekly-feature { flex-wrap: wrap; padding: 20px; gap: 14px; }
  .weekly-feature .program-details { flex-basis: calc(100% - 80px); }
  .weekly-feature .button { margin-left: 68px; }
  .hero h1 { font-size: clamp(40px, 10vw, 58px); }
  .featured-slide { min-height: 320px; margin-right: 12px; }
  .program-card { padding: 16px; }
}

.featured-slide__thumbnail { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; opacity: 0.25; pointer-events: none; }
.featured-slide > *:not(.featured-slide__thumbnail) { position: relative; z-index: 1; }
.featured-slide h2 a { color: white; text-decoration: none; }
.program-art img, .video-card__image img { width: 100%; height: 140px; object-fit: cover; border-radius: 8px; }
.cablecast-live iframe { width: 100%; min-height: 400px; border: 0; }
.cablecast-vod { width: 100%; max-height: 75vh; background: black; }
.watch-layout { margin-top: 24px; }

/* Keep the Watch heading visible and its controls close to the page title. */
.watch-hero { padding-block: clamp(24px, 3vw, 40px); }
.watch-hero > .site-container > h1 { color: var(--white); margin: 0 0 24px; font-size: clamp(32px, 4vw, 48px); }

/* Keep the daily schedule from stretching the live video row. */
.watch-layout { align-items: start; }
.watch-layout > .schedule { display: flex; flex-direction: column; max-height: 500px; min-height: 0; }
.watch-layout > .schedule h2 { margin: 0 0 12px; }
.watch-layout > .schedule > p { margin: 0 0 16px; }
.watch-layout .schedule-list { overflow-y: auto; min-height: 0; margin: 0; padding-right: 10px; scrollbar-gutter: stable; }
.watch-layout .schedule-list:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 4px; }
@media (max-width: 600px) { .watch-layout > .schedule { max-height: 380px; } }

/* The player sets the desktop row height; the schedule scrolls inside that row. */
.watch-layout { align-items: stretch; }
.watch-layout > .cablecast-live { position: relative; display: grid; place-items: center; aspect-ratio: 16 / 9; min-height: 0; background: #000; }
.cablecast-live iframe { position: absolute; inset: 0; display: block; width: 100%; height: 100%; min-height: 0; }
.cablecast-live > p { padding: 24px; text-align: center; }
.watch-layout > .schedule { contain: size; max-height: none; overflow: hidden; }
.watch-layout .schedule-list li { grid-template-columns: 72px minmax(0, 1fr); gap: 12px; padding: 12px 14px; margin-bottom: 8px; font-size: 14px; line-height: 1.4; }
.watch-layout .schedule-list strong { font-weight: 600; overflow-wrap: anywhere; }
.watch-layout .schedule-list time { white-space: nowrap; }
.watch-layout .schedule-list:focus-visible { outline-offset: -2px; }
.channel-switcher .channel-switcher__link { background: transparent; border: 1px solid rgb(255 255 255 / 30%); color: var(--white); }
.channel-switcher .channel-switcher__link.is-active { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-700); }
.channel-switcher .channel-switcher__link:hover { border-color: var(--gold-500); }
@media (max-width: 1080px) {
  .watch-layout > .schedule { contain: none; height: 380px; max-height: 380px; }
}

/* Shared return navigation; surrounding spacing belongs to each page layout. */
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-500); font-size: 14px; font-weight: 600; line-height: 1.5; text-decoration: none; }
.back-link:hover { color: var(--navy-700); text-decoration: underline; text-underline-offset: 3px; }
.back-link:focus-visible { outline: 2px solid var(--navy-500); outline-offset: 4px; border-radius: 2px; }
.program-page { padding-top: clamp(24px, 3vw, 40px); }
.program-page .back-link { margin-bottom: 18px; }
.program-page__title { font-size: clamp(28px, 3.5vw, 44px); line-height: 1.18; margin: 0 0 28px; max-width: 36ch; }
.header-actions .button--watch { background: var(--white); border-color: var(--navy-600); color: var(--navy-600); }
.header-actions .button--donate { background: var(--navy-600); border-color: var(--navy-600); color: var(--white); }
.header-actions .button--shop { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-700); }
.header-actions .button--watch:hover, .header-actions .button--donate:hover { background: var(--navy-700); border-color: var(--navy-700); color: var(--white); }
.header-actions .button--shop:hover { background: var(--gold-200); border-color: var(--gold-600); color: var(--navy-700); }

.watch-layout .schedule-list li.is-current { background: rgb(244 179 51 / 16%); box-shadow: inset 4px 0 0 var(--gold-500); }
