:root {
  color-scheme: light;
  --paper: #f4f0e5;
  --paper-deep: #eae1cf;
  --card: #fffdf7;
  --ink: #17312a;
  --muted: #6e7468;
  --evergreen: #17392f;
  --evergreen-soft: #285346;
  --amber: #d88b2f;
  --amber-bright: #f0b64c;
  --amber-pale: #f8e4b8;
  --lantern-accent: #C67331;
  --line: rgba(33, 57, 48, .14);
  --shadow: 0 18px 46px rgba(45, 42, 31, .11);
  --font-ui: "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-editorial: Baskerville, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sidebar-width: 276px;
  --topbar-height: 73px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: #202120;
  color: var(--ink);
  font-family: var(--font-ui);
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

.program-card,
.program-page-video,
.result-video,
.favorite-episode-card {
  content-visibility: auto;
  contain-intrinsic-size: auto 360px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--topbar-height);
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(280px, 1fr) auto;
  align-items: start;
  gap: 2px 18px;
  padding: 14px clamp(16px, 3vw, 34px);
  border-bottom: 1px solid var(--line);
  background: rgb(72 70 66);
  box-shadow: 0 8px 28px rgba(38, 42, 32, .055);
  backdrop-filter: blur(18px) saturate(1.2);
}

.brand-block {
  --brand-icon-layout-size: 42px;
  --brand-lockup-gap: 13px;
  position: relative;
  display: grid;
  grid-column: 1;
  align-content: start;
  align-items: start;
  min-width: 0;
}

.brand,
.brand-lockup {
  display: flex;
  align-items: center;
  gap: var(--brand-lockup-gap);
  width: fit-content;
  text-decoration: none;
}

.brand-icon {
  width: var(--brand-icon-layout-size);
  height: var(--brand-icon-layout-size);
  flex: 0 0 auto;
}

.brand-copy,
.brand-lockup-text {
  position: relative;
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand-copy strong,
.brand-wordmark {
  margin: 0;
  color: #102c2d;
  font-family: "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(29px, 1.35vw, 40px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.brand-name,
.brand-tagline {
  color: var(--lantern-accent);
  font-family: "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(9px, .82vw, 11px);
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-icon-link,
.brand-wordmark-link {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1a2223;
  cursor: pointer;
  text-decoration: none;
}

.brand-icon-link {
  display: flex;
  width: fit-content;
  flex: 0 0 auto;
  border-radius: 10px;
}

.brand-wordmark-link {
  display: block;
  width: fit-content;
  border-radius: 6px;
  font: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.brand-icon-link:focus-visible,
.brand-wordmark-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(23, 57, 47, .14);
}

.app-switcher-placeholder {
  visibility: hidden;
}

.app-switcher {
  position: absolute;
  z-index: 100;
  bottom: 0;
  left: 0;
  width: fit-content;
  line-height: 0;
}

.app-switcher summary {
  list-style: none;
}

.app-switcher summary::-webkit-details-marker {
  display: none;
}

.app-switcher-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
}

.app-switcher-trigger svg {
  width: 8px;
  height: 6px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 150ms ease;
}

.app-switcher-trigger:hover {
  color: var(--evergreen);
}

.app-switcher-trigger:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(23, 57, 47, .14);
}

.app-switcher[open] .app-switcher-trigger svg {
  transform: rotate(180deg);
}

.app-switcher-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: calc(-1 * (var(--brand-icon-layout-size) + var(--brand-lockup-gap)));
  display: grid;
  width: min(360px, calc(100vw - 24px));
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(23, 49, 42, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 48px rgba(31, 37, 33, .2), 0 4px 14px rgba(31, 37, 33, .08);
  line-height: 1.2;
  backdrop-filter: blur(18px) saturate(1.08);
}

.app-switcher-menu::before {
  position: absolute;
  top: -6px;
  left: 98px;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(23, 49, 42, .14);
  border-left: 1px solid rgba(23, 49, 42, .14);
  background: rgba(255, 255, 255, .98);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.app-switcher-option {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 8px;
  border-radius: 10px;
  color: #211f1d;
  text-decoration: none;
  transition: background 130ms ease, transform 130ms ease;
}

.app-switcher-option:hover,
.app-switcher-option:focus-visible {
  outline: 0;
  transform: translateX(2px);
}

.app-switcher-option-home {
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23, 49, 42, .09);
  border-radius: 10px 10px 5px 5px;
  background: #ececeb;
}

.app-switcher-option-home:hover,
.app-switcher-option-home:focus-visible { background: #e3e8e7; }
.app-switcher-option-explore:hover,
.app-switcher-option-explore:focus-visible { background: #fff3c4; }
.app-switcher-option-cooking:hover,
.app-switcher-option-cooking:focus-visible { background: #fde9e6; }
.app-switcher-option-story:hover,
.app-switcher-option-story:focus-visible { background: #e6f0f2; }
.app-switcher-option-workbench:hover,
.app-switcher-option-workbench:focus-visible { background: #f3e6dd; }
.app-switcher-option-lantern:hover,
.app-switcher-option-lantern:focus-visible { background: #fff0e5; }
.app-switcher-option-homebook:hover,
.app-switcher-option-homebook:focus-visible { background: #e9f0ea; }
.app-switcher-option-labelwise:hover,
.app-switcher-option-labelwise:focus-visible { background: #efeaf2; }
.app-switcher-option-tabletop:hover,
.app-switcher-option-tabletop:focus-visible { background: #f0f5df; }

.app-switcher-option.is-active {
  background: #fff0e5;
}

.app-switcher-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border: 1px solid rgba(23, 49, 42, .09);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 3px 9px rgba(31, 37, 33, .06);
}

.app-switcher-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.app-switcher-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.app-switcher-copy strong {
  color: #211f1d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
}

.app-switcher-copy small {
  overflow-wrap: anywhere;
  color: #756f69;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  white-space: normal;
}

.app-switcher-check,
.app-switcher-arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.app-switcher-check { color: var(--lantern-accent); }
.app-switcher-arrow { color: #a7a1a8; }

.youtube-attribution {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  color: #969592;
  font-size: 11px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.youtube-attribution:hover {
  background: rgba(255, 255, 255, .3);
}

.youtube-attribution svg {
  width: 24px;
  height: auto;
  flex: 0 0 auto;
}

.youtube-attribution strong {
  font-weight: 800;
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  min-width: 0;
  align-self: center;
}

.search-navigation {
  width: 100%;
  max-width: 812px;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 16px;
  align-self: center;
}

.channels-home-button {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(29, 63, 51, .16);
  border-radius: 50%;
  background: rgba(255, 253, 247, .8);
  box-shadow: 0 3px 10px rgba(22, 43, 35, .08);
  color: var(--evergreen);
  transition: background .16s, color .16s, transform .16s, box-shadow .16s;
}

.channels-home-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.channels-home-button:hover {
  background: var(--evergreen);
  color: #fff9e9;
  transform: translateY(-1px);
}

.channels-home-button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(216, 139, 47, .15);
}

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

.channel-stepper {
  display: grid;
  grid-template-columns: 40px 42px 40px;
  align-items: center;
  flex: 0 0 auto;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(29, 63, 51, .16);
  border-radius: 14px;
  background: rgba(255, 253, 247, .76);
  box-shadow: 0 3px 10px rgba(22, 43, 35, .08), inset 0 1px 0 rgba(255, 255, 255, .7);
}

.current-channel-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 38px;
  min-width: 0;
  border: 0;
  border-right: 1px solid rgba(29, 63, 51, .1);
  border-left: 1px solid rgba(29, 63, 51, .1);
  background: transparent;
  color: var(--evergreen);
  font-family: var(--font-ui);
  font-size: 18px;
  font-variant-numeric: tabular-nums;
  font-weight: 850;
  line-height: 1;
  text-align: center;
}

.channel-step-button {
  width: 40px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 10px;
  outline: 0;
  background: transparent;
  color: var(--evergreen);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 19px;
  line-height: 1;
  transition: background .16s, color .16s, transform .16s, box-shadow .16s;
}

.channel-step-button:hover:not(:disabled) {
  background: rgba(29, 63, 51, .1);
  color: #173c30;
  transform: translateY(-1px);
}

.channel-step-button:disabled {
  opacity: .28;
  cursor: default;
}

.channel-step-button:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(216, 139, 47, .72), 0 0 0 3px rgba(216, 139, 47, .12);
}

.channel-autoplay-toggle,
.channel-mute-toggle {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(29, 63, 51, .18);
  border-radius: 50%;
  outline: 0;
  background: #c77331;
  color: #fff9e9;
  cursor: pointer;
  transition: border-color .16s, background .16s, color .16s, transform .16s;
}

.channel-autoplay-toggle[hidden] {
  display: none;
}

.channel-autoplay-toggle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.channel-autoplay-toggle.is-enabled {
  background: #c77331;
  color: #fff9e9;
}

.channel-autoplay-toggle:not(.is-enabled) {
  background: var(--amber-bright);
  color: var(--evergreen);
}

.channel-autoplay-toggle:not(.is-enabled)::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-45deg);
}

.channel-mute-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.channel-mute-toggle.is-muted {
  border: 1px solid rgba(29, 63, 51, .18);
  background: var(--amber-bright);
  color: var(--evergreen);
}

.channel-mute-toggle.is-muted::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-45deg);
}

.channel-autoplay-toggle:hover,
.channel-mute-toggle:hover {
  transform: translateY(-1px);
}

.channel-autoplay-toggle:focus-visible,
.channel-mute-toggle:focus-visible {
  border-color: rgba(216, 139, 47, .72);
  box-shadow: 0 0 0 4px rgba(216, 139, 47, .12);
}

.search {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 640px;
  min-width: 0;
  flex: 1 1 420px;
}

.search svg {
  position: absolute;
  left: 16px;
  width: 19px;
  fill: none;
  stroke: #657168;
  stroke-linecap: round;
  stroke-width: 1.7;
  pointer-events: none;
}

.search input {
  width: 100%;
  height: 44px;
  padding: 0 46px;
  border: 1px solid rgba(29, 63, 51, .16);
  border-radius: 999px;
  outline: 0;
  background: rgba(255, 253, 247, .8);
  box-shadow: inset 0 1px 2px rgba(26, 40, 33, .04);
  color: var(--ink);
  transition: border-color .16s, box-shadow .16s, background .16s;
}

.search input::placeholder {
  color: #858a80;
}

.search input:focus {
  border-color: rgba(216, 139, 47, .72);
  background: #fffefa;
  box-shadow: 0 0 0 4px rgba(216, 139, 47, .12);
}

.search button {
  position: absolute;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 21px;
}

.search #clearSearch {
  right: 42px;
}

.search .search-submit {
  right: 8px;
  background: var(--evergreen);
  color: #fff9e9;
  font-size: 15px;
}

.search .search-submit:hover {
  background: var(--evergreen-soft);
}

.app-shell {
  min-height: 100vh;
  padding-top: var(--topbar-height);
  background: #171918;
}

.sidebar {
  position: fixed;
  z-index: 40;
  inset: var(--topbar-height) auto 0 0;
  width: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, .11);
  background: #40433f;
  color: #d8ded9;
  backdrop-filter: blur(12px);
}

.sidebar-heading {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 24px 22px 14px;
}

.sidebar-heading p {
  color: #aeb8b1;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.channel-nav {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 18px 12px 26px;
  background: #323736;
}

.channel-nav::-webkit-scrollbar {
  width: 6px;
}

.channel-nav::-webkit-scrollbar-track {
  background: transparent;
}

.channel-nav::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, .32);
}

.nav-section-label {
  margin: 24px 6px 8px;
  padding: 9px 12px 8px;
  border-radius: 0 8px 8px 0;
  background: #4c574f;
  color: #efc47c;
  font-family: var(--font-editorial);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.15;
}

.nav-section-label:first-child {
  margin-top: 6px;
}

.channel-link {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 37px;
  padding: 8px 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #e0e3df;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  font-family: var(--font-editorial);
  font-size: 15px;
  font-weight: 600;
  transition: background .15s, color .15s, transform .15s;
}

.channel-link-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.channel-code {
  color: #b2b9b4;
  font-family: var(--font-ui);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.6;
  text-align: right;
}

.channel-link.active .channel-code {
  color: #f0b64c;
}

.channel-link:hover {
  background: #50544f;
  color: #f7f2e7;
  transform: translateX(2px);
}

.channel-link.active {
  background: #252825;
  box-shadow: 0 7px 20px rgba(0, 0, 0, .26), inset 3px 0 0 #c9953a;
  color: #fff9e9;
}

.favorites-channel-link {
  display: grid;
  margin: 0 0 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: #705329;
  color: #f7f2e7;
  font-weight: 750;
}

.favorites-channel-link + .nav-section-label {
  margin-top: 0;
}

.custom-channel-nav-label {
  margin-top: 6px;
}

.custom-channel-new {
  width: calc(100% - 12px);
  margin: 7px 6px 16px;
  padding: 9px 11px;
  border: 1px dashed rgba(239, 196, 124, .42);
  border-radius: 9px;
  background: transparent;
  color: #efc47c;
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
  text-align: left;
}

.custom-channel-new:hover:not(:disabled) {
  background: rgba(239, 196, 124, .1);
}

.custom-channel-new:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.main {
  min-height: calc(100vh - var(--topbar-height));
  margin-left: var(--sidebar-width);
  outline: 0;
  background: #202120;
}

#view {
  --view-top-pad: clamp(20px, 2.4vw, 36px);
  --view-inline-pad: clamp(24px, 5vw, 76px);
  padding: var(--view-top-pad) var(--view-inline-pad) 72px;
  background: #202120;
}

.loading-state {
  min-height: 65vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  color: #7d7c70;
  font-family: var(--font-editorial);
}

.loading-state img {
  animation: lanternPulse 1.7s ease-in-out infinite;
}

@keyframes lanternPulse {
  50% {
    filter: drop-shadow(0 0 22px rgba(230, 158, 53, .55));
    transform: translateY(-2px);
  }
}

.eyebrow {
  color: #9b672a;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.channel-hero h1 {
  margin-top: 12px;
  max-width: 760px;
  font-family: var(--font-editorial);
  font-size: clamp(42px, 6.3vw, 88px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 22px;
  padding-top: 18px;
}

.section-heading h2 {
  font-family: var(--font-editorial);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: -.025em;
}

.section-heading p {
  color: var(--muted);
  font-size: 13px;
}

.dashboard-sections {
  display: grid;
  gap: 32px;
  width: calc(100% + (2 * var(--view-inline-pad)));
  margin-top: calc(-1 * var(--view-top-pad));
  margin-left: calc(-1 * var(--view-inline-pad));
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
  gap: 18px;
}

.channel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--card);
  box-shadow: 0 8px 22px rgba(53, 48, 34, .05);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.channel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 139, 47, .34);
  box-shadow: var(--shadow);
}

.channel-card > div {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
}

.channel-card .thumb-stack {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 1;
  margin: -22px -22px 20px;
  overflow: hidden;
  background: var(--paper-deep);
}

.channel-card .thumb-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.channel-card:hover .thumb-stack img {
  transform: scale(1.035);
}

.channel-card .thumb-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 37, 31, .26), transparent 58%);
}

.channel-card-heading {
  display: grid;
  min-height: 0;
  flex: 1;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  align-content: center;
  gap: 10px;
  margin-bottom: 0;
}

.channel-card-number {
  display: grid;
  min-width: 27px;
  height: 27px;
  padding: 0 7px;
  place-items: center;
  border: 1px solid rgba(29, 63, 51, .16);
  border-radius: 8px;
  background: var(--paper-deep);
  color: #766953;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.channel-card h3 {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.08;
}

.channel-card.kids {
  background: #fffaf0;
}

@media (min-width: 761px) {
  .dashboard-sections .channel-grid {
    display: grid;
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(var(--channel-columns, 4), minmax(0, 220px));
    justify-content: start;
    gap: 13px;
    margin-inline: 0;
  }

  .dashboard-sections .channel-card {
    width: auto;
    min-width: 0;
    padding: 15px;
    border-radius: 13px;
  }

  .dashboard-sections .channel-card .thumb-stack {
    margin: -15px -15px 14px;
  }

  .dashboard-sections .channel-card h3 {
    margin: 0;
    font-size: 18px;
  }

}

.home-guide-loading,
.home-guide-unavailable {
  display: grid;
  min-height: 320px;
  place-content: center;
  justify-items: center;
  gap: 10px;
  padding: 24px;
  border-radius: 16px;
  background: #202120;
  color: #aeb8b1;
  text-align: center;
}

.home-guide-loading > span {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, .18);
  border-top-color: #efc47c;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.home-guide-loading p {
  margin: 0;
  font-size: 12px;
}

.home-guide-scroll {
  overflow: auto;
  height: calc(100vh - var(--topbar-height));
  height: calc(100dvh - var(--topbar-height));
  background: #202120;
  color: #f7f2e7;
  box-shadow: 0 12px 30px rgba(24, 26, 22, .12);
  scrollbar-color: rgba(255, 255, 255, .25) transparent;
  scrollbar-width: thin;
}

.home-guide-table {
  display: grid;
  isolation: isolate;
  width: max-content;
  min-width: 100%;
  grid-template-columns: 232px var(--home-guide-timeline-width);
}

.home-guide-now-table {
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(108px, 38%) minmax(0, 1fr);
}

.home-guide-now-heading {
  position: sticky;
  z-index: 25;
  top: 0;
  display: flex;
  height: 54px;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  background: #171918;
  color: #efc47c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-guide-now-table .home-guide-channel {
  position: static;
  grid-template-columns: minmax(0, 1fr);
}

.home-guide-now-table .home-guide-lane {
  min-width: 0;
  background-image: none;
}

.home-guide-now-program {
  right: 6px;
  left: 6px;
  width: auto;
}

.home-guide-corner,
.home-guide-time-axis {
  position: sticky;
  z-index: 25;
  top: 0;
  height: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  background: #171918;
}

.home-guide-corner {
  z-index: 30;
  left: 0;
  display: flex;
  align-items: center;
  padding: 0 17px;
  border-right: 1px solid rgba(255, 255, 255, .13);
  color: #efc47c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-guide-time-axis {
  position: sticky;
  top: 0;
}

.home-guide-time {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, .07);
}

.home-guide-time.is-hour {
  background: rgba(255, 255, 255, .16);
}

.home-guide-time time {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 90px;
  color: #d8ded9;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.home-guide-now {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #f0a63c;
  pointer-events: none;
}

.home-guide-now.is-header {
  z-index: 26;
}

.home-guide-now.is-header span {
  position: absolute;
  top: 5px;
  left: 6px;
  padding: 2px 5px;
  border-radius: 5px;
  background: #f0a63c;
  color: #15251f;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-guide-group,
.home-guide-group-line {
  min-height: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: #29342f;
}

.home-guide-group-line {
  position: relative;
}

.home-guide-group {
  position: sticky;
  z-index: 21;
  left: 0;
  display: flex;
  align-items: center;
  padding: 0 17px;
  border-right: 1px solid rgba(255, 255, 255, .13);
  color: #efc47c;
  font-family: var(--font-editorial);
  font-size: 18px;
}

.home-guide-channel {
  position: sticky;
  z-index: 20;
  left: 0;
  display: grid;
  overflow: hidden;
  min-height: 94px;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px 24px 10px 13px;
  border-right: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: #171918;
  color: #f7f2e7;
  text-decoration: none;
  transition: background .16s ease;
}

.home-guide-channel:hover {
  background: #242825;
}

.home-guide-channel > img {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 10px;
  background: #29342f;
  object-fit: cover;
}

.home-guide-custom-mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 10px;
  background: #29342f;
  color: #efc47c;
  font-family: var(--font-editorial);
  font-size: 28px;
  line-height: 1;
}

.home-guide-channel-copy {
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.home-guide-channel-copy strong {
  color: #f7f2e7;
  font-family: var(--font-editorial);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.06;
}

.home-guide-channel-copy .channel-card-number {
  border-color: rgba(239, 196, 124, .28);
  background: #29342f;
  color: #efc47c;
}

.home-guide-lane {
  position: relative;
  min-height: 94px;
  content-visibility: auto;
  contain-intrinsic-size: auto 94px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, .07) 0 1px, transparent 1px 240px);
}

.home-guide-programs {
  position: absolute;
  inset: 0;
}

.home-guide-program {
  position: absolute;
  top: 7px;
  bottom: 7px;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 9px;
  background: #2b2c2b;
  color: inherit;
  cursor: default;
  font: inherit;
  text-align: left;
  text-decoration: none;
}

.home-guide-program:hover {
  z-index: 2;
  border-color: rgba(255, 199, 100, .48);
  background: #343634;
}

.home-guide-program.is-current {
  z-index: 1;
  border-color: #c9953a;
  background: #705329;
}

.home-guide-program img {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 15%;
  object-fit: cover;
  background: #0e1714;
}

.home-guide-program-summary {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.home-guide-program-summary strong,
.home-guide-program-summary small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-guide-program-summary strong {
  font-size: 12px;
}

.home-guide-program-summary small {
  color: #9ea9a2;
  font-size: 9px;
}

.home-guide-program.is-current .home-guide-program-summary small {
  color: #d4d9d5;
}

.home-guide-live-program {
  cursor: pointer;
  text-decoration: none;
}

.home-guide-on-demand-program {
  cursor: pointer;
  border-color: rgba(240, 182, 76, .32);
  background: rgba(67, 54, 32, .78);
  color: #f6c77f;
  text-decoration: none;
}

.home-guide-on-demand-program:hover {
  border-color: rgba(240, 182, 76, .62);
  background: #594525;
}

.home-guide-live-indicator {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: #e45c47;
  box-shadow: 0 0 0 5px rgba(228, 92, 71, .14);
}

.home-guide-live-program:hover .home-guide-live-indicator {
  background: #ff735c;
  box-shadow: 0 0 0 6px rgba(255, 115, 92, .18);
}

.home-guide-row-unavailable {
  position: absolute;
  top: 36px;
  left: 18px;
  color: #9ea9a2;
  font-size: 11px;
}

.home-guide-on-demand {
  position: sticky;
  left: 18px;
  top: 20px;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(240, 182, 76, .45);
  border-radius: 999px;
  background: rgba(67, 54, 32, .9);
  color: #f6c77f;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-guide-on-demand:hover {
  border-color: #f0b64c;
  background: #705329;
  color: #fff4df;
}

.home-guide-tooltip {
  position: fixed;
  z-index: 120;
  width: min(360px, calc(100vw - 24px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  background: #202321;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .55);
  color: #f7f2e7;
  pointer-events: none;
}

.home-guide-tooltip[hidden] {
  display: none;
}

.home-guide-tooltip-thumbnail {
  display: block;
  width: calc(100% + 36px);
  max-width: none;
  aspect-ratio: 16 / 9;
  margin: -18px -18px 16px;
  border-radius: 13px 13px 0 0;
  background: #171918;
  object-fit: cover;
}

.home-guide-tooltip-status {
  display: block;
  color: #efc47c;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.home-guide-tooltip-title {
  display: block;
  margin-top: 9px;
  font-family: var(--font-editorial);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.12;
}

.home-guide-tooltip-program {
  display: block;
  margin-top: 7px;
  color: #aeb8b1;
  font-size: 12px;
  font-weight: 650;
}

.home-guide-tooltip-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 9px;
  background: rgba(255, 255, 255, .12);
}

.home-guide-tooltip-facts > span {
  display: grid;
  gap: 4px;
  padding: 10px 11px;
  background: #292c2a;
}

.home-guide-tooltip-facts small {
  color: #8f9992;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.home-guide-tooltip-facts b {
  font-size: 11px;
  line-height: 1.25;
}

.home-guide-tooltip-channel {
  display: block;
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .11);
  color: #d8ded9;
  font-family: var(--font-editorial);
  font-size: 14px;
}

.custom-channel-dialog {
  width: min(520px, calc(100vw - 30px));
  max-height: min(760px, calc(100dvh - 30px));
  margin: auto;
  padding: 0;
  overflow: hidden auto;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  background: #202321;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .62);
  color: #f7f2e7;
}

.custom-channel-dialog::backdrop {
  background: rgba(10, 13, 12, .76);
  backdrop-filter: blur(7px);
}

.custom-channel-dialog-content {
  padding: 32px;
}

.custom-channel-kicker {
  margin: 0 44px 8px 0;
  color: #efc47c;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.custom-channel-dialog h2 {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.08;
}

.custom-channel-dialog-copy {
  margin: 10px 0 0;
  color: #aeb8b1;
  font-size: 13px;
  line-height: 1.45;
}

.custom-channel-options {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.custom-channel-option {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 11px;
  background: #292c2a;
  cursor: pointer;
}

.custom-channel-option:hover {
  border-color: rgba(239, 196, 124, .46);
  background: #323633;
}

.custom-channel-option.is-manage {
  grid-template-columns: 28px minmax(0, 1fr) auto;
  cursor: default;
}

.custom-channel-option-actions {
  display: flex;
  align-items: center;
  gap: 3px;
}

.custom-channel-option-actions button {
  padding: 6px 8px;
  border: 0;
  background: transparent;
  color: #aeb8b1;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.custom-channel-option-actions button:hover {
  color: #efc47c;
}

.custom-channel-option-actions [data-delete-custom-channel] {
  color: #d29b87;
}

.custom-channel-option-actions [data-delete-custom-channel]:hover {
  color: #ffc2aa;
}

.custom-channel-rename-form {
  border-color: rgba(239, 196, 124, .46);
  background: #323633;
}

.custom-channel-rename-editor {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.custom-channel-rename-editor input {
  width: 100%;
  min-width: 0;
  height: 38px;
  padding: 0 11px;
  border: 1px solid rgba(239, 196, 124, .5);
  border-radius: 8px;
  background: #171918;
  color: #f7f2e7;
  font-family: var(--font-editorial);
  font-size: 17px;
}

.custom-channel-rename-editor input:focus-visible {
  border-color: #efc47c;
  box-shadow: 0 0 0 3px rgba(239, 196, 124, .12);
  outline: none;
}

.custom-channel-rename-editor small {
  min-height: 13px;
  color: #ffc2aa;
  font-size: 9px;
}

.custom-channel-rename-form .custom-channel-option-actions button {
  border-radius: 999px;
}

.custom-channel-rename-form .custom-channel-option-actions button[type="submit"] {
  padding-inline: 12px;
  background: #c67331;
  color: #fff9e9;
}

.custom-channel-rename-form .custom-channel-option-actions button[type="submit"]:hover {
  background: #d48748;
  color: #fff;
}

.custom-channel-option > input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #c67a31;
}

.custom-channel-option-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.custom-channel-option strong {
  font-family: var(--font-editorial);
  font-size: 17px;
  font-weight: 400;
}

.custom-channel-option small,
.custom-channel-options-empty,
.custom-channel-limit {
  color: #9da69f;
  font-size: 10px;
}

.custom-channel-option-mark {
  color: #efc47c;
  text-align: center;
}

.custom-channel-create-form {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.custom-channel-create-form label {
  display: block;
  margin-bottom: 7px;
  color: #aeb8b1;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.custom-channel-create-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.custom-channel-create-form input,
.custom-channel-create-form button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
}

.custom-channel-create-form input {
  min-width: 0;
  padding: 0 13px;
  border-radius: 10px 0 0 10px;
  background: #171918;
  color: #f7f2e7;
  font: inherit;
}

.custom-channel-create-form button {
  padding: 0 16px;
  border-radius: 0 10px 10px 0;
  background: #c67a31;
  color: #fff9e9;
  cursor: pointer;
  font-weight: 800;
}

.custom-channel-limit {
  margin: 10px 0 0;
}

.channel-hero {
  padding: 10px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.channel-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.channel-hero-title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(18px, 2.4vw, 30px);
}

.mobile-channel-hero-title {
  display: none;
}

.channel-hero-heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(12px, 1.5vw, 20px);
}

.channel-hero-number {
  display: grid;
  min-width: 48px;
  height: 48px;
  padding: 0 10px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(239, 196, 124, .3);
  border-radius: 11px;
  background: #29342f;
  color: #efc47c;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.channel-hero-image {
  width: clamp(88px, 9vw, 116px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}

.channel-hero h1 {
  margin-top: 0;
  color: #f7f2e7;
  font-size: clamp(34px, 4.2vw, 56px);
}

.favorites-channel-mark {
  display: grid;
  width: clamp(72px, 7vw, 92px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--card);
  color: var(--rust);
  box-shadow: 0 10px 26px rgba(53, 48, 34, .08);
}

.favorites-channel-mark svg {
  width: 42%;
  height: 42%;
  fill: rgba(198, 115, 49, .12);
  stroke: currentColor;
  stroke-width: 1.5;
}

.custom-channel-mark {
  font-family: var(--font-editorial);
  font-size: 28px;
}

.custom-channel-artwork {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: #283c36;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    0 12px 26px rgba(0, 0, 0, .2);
}

.custom-channel-artwork > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.favorites-live-note {
  margin: -4px 0 20px;
  color: #aeb8b1;
  font-family: var(--font-editorial);
  font-size: 16px;
}

.custom-video-add-section {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(320px, 1.3fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  padding: 26px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.custom-video-add-copy h2 {
  color: #f7f2e7;
  font-family: var(--font-editorial);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
}

.custom-video-add-copy p,
.custom-video-add-form > p {
  color: #aeb8b1;
  font-size: 11px;
}

.custom-video-add-copy p {
  margin-top: 7px;
  line-height: 1.45;
}

.custom-video-add-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.custom-video-add-form input,
.custom-video-add-form button {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, .18);
}

.custom-video-add-form input {
  min-width: 0;
  padding: 0 14px;
  border-radius: 11px 0 0 11px;
  background: #171918;
  color: #f7f2e7;
}

.custom-video-add-form button {
  padding: 0 20px;
  border-radius: 0 11px 11px 0;
  background: #c67331;
  color: #fff9e9;
  cursor: pointer;
  font-weight: 800;
}

.custom-video-add-form input:focus-visible,
.custom-video-add-form button:focus-visible {
  position: relative;
  z-index: 1;
  border-color: #efc47c;
  outline: 2px solid rgba(239, 196, 124, .24);
  outline-offset: 1px;
}

.custom-video-add-form :disabled {
  cursor: not-allowed;
  opacity: .55;
}

.custom-video-add-form > p {
  min-height: 16px;
  margin-top: 8px;
}

@media (max-width: 720px) {
  .custom-video-add-section {
    grid-template-columns: 1fr;
  }
}

.favorites-empty {
  display: grid;
  max-width: 560px;
  justify-items: start;
  gap: 14px;
  padding: clamp(42px, 8vw, 96px) 0;
}

.favorites-empty > span {
  color: #efc47c;
}

.favorites-empty svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
}

.favorites-empty h2 {
  color: #f7f2e7;
  font-family: var(--font-editorial);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
}

.favorites-empty p {
  color: #aeb8b1;
  font-size: 16px;
  line-height: 1.55;
}

.favorites-empty a {
  margin-top: 8px;
  color: #efc47c;
  font-weight: 750;
  text-underline-offset: 4px;
}

.favorite-episodes-section {
  margin-top: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.favorite-episodes-section + .favorites-program-section {
  margin-top: 38px;
}

.favorite-episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
  gap: 18px;
}

.added-playlists-section,
.added-playlist-list {
  min-width: 0;
  max-width: 100%;
}

.added-playlist-list {
  display: grid;
  gap: 22px;
}

.added-playlist-card {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 17px;
  background: #292c2a;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .2);
}

.added-playlist-card > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.added-playlist-card .favorite-episode-grid {
  display: flex;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 0 12px;
  scroll-snap-type: inline proximity;
  scrollbar-color: rgba(239, 196, 124, .56) rgba(255, 255, 255, .08);
  scrollbar-width: thin;
}

.added-playlist-card .favorite-episode-card {
  flex: 0 0 min(100%, 290px);
  scroll-snap-align: start;
}

.added-playlist-card h3 {
  margin: 0;
  color: #f7f2e7;
  font-family: var(--font-editorial);
  font-size: 21px;
  font-weight: 400;
}

.added-playlist-card p {
  margin: 4px 0 0;
  color: #aeb7b1;
  font-size: 10px;
}

.added-playlist-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.playlist-schedule-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c6cec8;
  cursor: pointer;
}

.playlist-schedule-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.playlist-schedule-toggle > span {
  position: relative;
  width: 30px;
  height: 17px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  transition: background .16s ease, border-color .16s ease;
}

.playlist-schedule-toggle > span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #aeb7b1;
  content: '';
  transition: background .16s ease, transform .16s ease;
}

.playlist-schedule-toggle input:checked + span {
  border-color: rgba(239, 196, 124, .65);
  background: rgba(198, 115, 49, .38);
}

.playlist-schedule-toggle input:checked + span::after {
  background: #efc47c;
  transform: translateX(13px);
}

.playlist-schedule-toggle input:focus-visible + span {
  outline: 2px solid rgba(239, 196, 124, .42);
  outline-offset: 2px;
}

.playlist-schedule-toggle strong {
  font-size: 10px;
  font-weight: 700;
}

.added-playlist-actions button {
  flex: 0 0 auto;
  color: #efc47c;
  font-size: 10px;
  font-weight: 750;
  text-decoration: none;
}

.added-playlist-actions button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #dfa28e;
  cursor: pointer;
}

.added-playlist-actions [data-play-custom-playlist] {
  color: #efc47c;
}

.added-playlist-actions button:hover {
  color: #fff0cf;
}

@media (max-width: 720px) {
  .added-playlist-card > header {
    align-items: flex-start;
    flex-direction: column;
  }

  .added-playlist-actions {
    justify-content: flex-start;
  }
}

.video-playlist-progress {
  display: grid;
  width: min(100%, 620px);
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0;
  margin: 0 auto 18px;
  overflow: hidden;
  border: 1px solid rgba(239, 196, 124, .36);
  border-radius: 999px;
  background: rgba(239, 196, 124, .045);
}

.video-playlist-progress p {
  min-width: 0;
  margin: 0;
  padding: 8px 16px;
  overflow: hidden;
  color: #efc47c;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .04em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-playlist-progress button {
  min-width: 90px;
  align-self: stretch;
  padding: 8px 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #efc47c;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
}

.video-playlist-progress [data-playlist-previous] {
  border-right: 1px solid rgba(239, 196, 124, .24);
}

.video-playlist-progress [data-playlist-next] {
  border-left: 1px solid rgba(239, 196, 124, .24);
}

.video-playlist-progress button:is(:hover, :focus-visible):not(:disabled) {
  background: rgba(239, 196, 124, .13);
  outline: none;
}

.video-playlist-progress button:disabled {
  cursor: default;
  opacity: .35;
}

.favorite-episode-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 15px;
  background: #303331;
  color: #f7f2e7;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
}

.favorite-episode-play {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.favorite-episode-play img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.favorite-episode-copy {
  display: grid;
  gap: 7px;
  padding: 15px 54px 17px 16px;
}

.favorite-episode-copy strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.favorite-episode-copy small {
  color: #aeb7b1;
  font-size: 10px;
  line-height: 1.4;
}

.favorite-episode-card > .episode-favorite-button {
  position: absolute;
  right: 12px;
  bottom: 14px;
  box-shadow: 0 3px 12px rgba(23, 38, 31, .12);
}

.movie-library-section {
  display: grid;
  gap: 20px;
}

.movie-episode-card .favorite-episode-copy {
  min-height: 132px;
  align-content: start;
}

.movie-type-badge {
  position: absolute;
  z-index: 2;
  top: calc(var(--topbar-height) + 12px);
  left: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(239, 196, 124, .5);
  border-radius: 999px;
  background: rgba(20, 25, 22, .88);
  color: #efc47c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.movie-ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.movie-rating {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  min-height: 25px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(239, 196, 124, .12);
  color: #efc47c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .025em;
  line-height: 1;
}

.movie-rating.rt-rating {
  background: rgba(227, 83, 68, .15);
  color: #f19a8f;
}

.movie-rating.consensus-rating {
  border: 1px solid currentColor;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
}

.movie-rating.consensus-rating > span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.movie-rating.consensus-rating.grade-a {
  background: rgba(46, 157, 93, .25);
  color: #8ce4ae;
}

.movie-rating.consensus-rating.grade-b {
  background: rgba(42, 145, 158, .24);
  color: #8edce2;
}

.movie-rating.consensus-rating.grade-c {
  background: rgba(201, 151, 48, .25);
  color: #f3cd78;
}

.movie-rating.consensus-rating.grade-d {
  background: rgba(205, 106, 39, .25);
  color: #ffad72;
}

.movie-rating.consensus-rating.grade-e {
  background: rgba(190, 68, 45, .26);
  color: #ff967f;
}

.movie-rating.consensus-rating.grade-f {
  background: rgba(151, 45, 54, .3);
  color: #ff8991;
}

.movie-rating.unrated {
  background: rgba(185, 194, 188, .08);
  color: rgba(225, 230, 226, .62);
}

.movie-load-more {
  justify-self: center;
  margin-top: 4px;
}

.movie-sources-section {
  margin-top: 52px;
}

.live-feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
  gap: 18px;
}

.live-feed-card {
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.live-feed-card:hover {
  transform: translateY(-2px);
}

.live-feed-card.is-current {
  border-color: rgba(240, 182, 76, .8);
  box-shadow: 0 0 0 2px rgba(240, 182, 76, .16), 0 12px 32px rgba(0, 0, 0, .3);
}

.live-feed-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #b62f28;
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .28);
}

.live-feed-empty {
  color: #aeb7b1;
}

.daily-channel {
  width: calc(100% + (2 * var(--view-inline-pad)));
  margin-top: calc(-1 * var(--view-top-pad));
  margin-left: calc(-1 * var(--view-inline-pad));
  overflow: hidden;
  border: 1px solid rgba(23, 57, 47, .2);
  border-radius: 0;
  background: #222222;
  box-shadow: 0 18px 46px rgba(28, 37, 31, .14);
  color: #fffaf0;
}

.weather-local-panel {
  width: calc(100% + (2 * var(--view-inline-pad)));
  margin-top: calc(-1 * var(--view-top-pad));
  margin-left: calc(-1 * var(--view-inline-pad));
  padding: clamp(30px, 4vw, 52px) var(--view-inline-pad) clamp(34px, 4vw, 48px);
  border-bottom: 1px solid rgba(23, 57, 47, .22);
  background: #3e4241;
  margin-bottom: 32px;
}

.daily-channel:not([hidden])+.weather-local-panel {
  margin-top: 0;
}

.weather-location-bar {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(23, 57, 47, .25);
}

.weather-eyebrow {
  color: #8b542c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.weather-location-bar h2 {
  margin-top: 8px;
  font-family: var(--font-editorial);
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .95;
}

.weather-change-location,
.weather-location-form button,
.weather-location-results button {
  border: 1px solid rgba(23, 57, 47, .2);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: 700 12px/1 var(--font-ui);
}

.weather-change-location {
  padding: 7px 0 6px;
  border-width: 0 0 1px;
  font-size: 11px;
  letter-spacing: .04em;
}

.weather-location-intro {
  max-width: 700px;
  margin-top: 18px;
  color: var(--muted);
  font-family: var(--font-editorial);
  font-size: 17px;
  line-height: 1.5;
}

.weather-location-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-top: 22px;
}

.weather-location-form input {
  flex: 1 1 280px;
  min-width: 0;
  padding: 13px 16px;
  border: 0;
  border-bottom: 1px solid rgba(23, 57, 47, .35);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: 500 14px/1 var(--font-ui);
}

.weather-location-form button {
  padding: 13px 18px;
  background: var(--ink);
  color: #fffaf0;
}

.weather-location-form .weather-use-location {
  background: transparent;
  color: var(--ink);
}

.weather-location-results {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.weather-location-results button {
  display: flex;
  gap: 7px;
  align-items: baseline;
  padding: 10px 14px;
}

.weather-location-results button span,
.weather-location-results p,
.weather-location-credit,
.weather-source {
  color: var(--muted);
  font-size: 11px;
}

.weather-location-credit {
  display: block;
  margin-top: 14px;
}

.weather-snapshot-loading,
.weather-snapshot-empty {
  min-height: 140px;
  display: grid;
  place-content: center;
  justify-items: center;
  color: var(--muted);
  font-family: var(--font-editorial);
}

.weather-snapshot-loading span {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(23, 57, 47, .16);
  border-top-color: #a45f27;
  border-radius: 50%;
  animation: dailyChannelSpin .8s linear infinite;
}

.weather-request-error {
  gap: 14px;
  text-align: center;
}

.weather-request-error button {
  padding: 10px 15px;
  border: 1px solid rgba(23, 57, 47, .2);
  border-radius: 999px;
  background: var(--ink);
  color: #fffaf0;
  cursor: pointer;
  font: 700 12px/1 var(--font-ui);
}

.weather-current {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  padding: clamp(24px, 3vw, 34px) 0 18px;
}

.weather-current-temp {
  color: var(--ink);
  font-family: var(--font-editorial);
  font-size: clamp(66px, 8vw, 104px);
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -.055em;
  line-height: .78;
}

.weather-current-temp sup {
  font-family: var(--font-ui);
  font-size: .28em;
  font-weight: 700;
  vertical-align: top;
}

.weather-current-summary {
  display: grid;
  gap: 5px;
  padding-left: clamp(18px, 2.5vw, 32px);
  border-left: 1px solid rgba(23, 57, 47, .28);
}

.weather-current-summary span {
  color: #8b542c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.weather-current-summary strong {
  font-family: var(--font-editorial);
  font-size: clamp(23px, 2.5vw, 34px);
  font-weight: 400;
}

.weather-current-summary small,
.weather-no-alerts {
  color: var(--muted);
  font-size: 11px;
}

.weather-current-icon {
  width: 78px;
  height: 78px;
  border: 1px solid rgba(23, 57, 47, .18);
  border-radius: 0;
  object-fit: cover;
}

.weather-alerts {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.weather-alerts details {
  padding: 11px 14px;
  border: 1px solid rgba(164, 95, 39, .3);
  border-radius: 0;
  background: #f5e5c2;
}

.weather-alerts summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.weather-alerts summary span {
  margin-right: 9px;
  color: #a45f27;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.weather-alerts p {
  margin-top: 9px;
  color: var(--muted);
  font-family: var(--font-editorial);
  line-height: 1.45;
}

.weather-no-alerts {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
  padding-bottom: 20px;
}

.weather-no-alerts span {
  width: 6px;
  height: 6px;
  background: #718273;
}

.weather-hourly-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 0 9px;
  border-top: 1px solid rgba(23, 57, 47, .25);
}

.weather-hourly-heading span {
  font-family: var(--font-editorial);
  font-size: 18px;
}

.weather-hourly-heading small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.weather-hourly {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(23, 57, 47, .18);
  border-bottom: 1px solid rgba(23, 57, 47, .18);
}

.weather-hourly>div {
  display: grid;
  grid-template-columns: auto 28px;
  gap: 5px 10px;
  min-width: 0;
  padding: 13px clamp(9px, 1.4vw, 18px) 15px;
  border-left: 1px solid rgba(23, 57, 47, .18);
}

.weather-hourly>div:first-child {
  border-left: 0;
}

.weather-hourly img {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  object-fit: cover;
}

.weather-hourly time,
.weather-hourly small {
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.weather-hourly strong {
  grid-column: 1;
  font-family: var(--font-editorial);
  font-size: 25px;
  font-weight: 400;
}

.weather-hourly small {
  grid-column: 1 / -1;
}

.weather-source {
  display: block;
  margin-top: 12px;
  font-family: var(--font-editorial);
  font-style: italic;
}

.weather-updates-empty {
  grid-column: 1 / -1;
  padding: 22px 0;
  color: #aeb8b1;
  font-family: var(--font-editorial);
  font-size: 16px;
}

.daily-channel+.channel-hero {
  margin-top: 28px;
}

.daily-channel-loading,
.daily-channel-unavailable {
  min-height: 180px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  color: #c7d0c9;
  font-family: var(--font-editorial);
}

.daily-channel-loading span {
  width: 25px;
  height: 25px;
  border: 2px solid rgba(255, 255, 255, .2);
  border-top-color: var(--amber-bright);
  border-radius: 50%;
  animation: dailyChannelSpin .8s linear infinite;
}

@keyframes dailyChannelSpin {
  to {
    transform: rotate(360deg);
  }
}

.daily-channel-now {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(270px, .75fr);
  border-top: 1px solid rgba(255, 255, 255, .11);
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.daily-channel-player-stage {
  position: relative;
  min-width: 0;
  aspect-ratio: 16/9;
  background: #07110e;
}

.daily-channel-player {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: #07110e;
}

.daily-channel-player.is-floating {
  position: fixed;
  z-index: 60;
  right: 20px;
  bottom: 20px;
  width: min(380px, calc(100vw - 40px));
  height: auto;
  aspect-ratio: 16/9;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, .42);
  animation: floatingLivePlayerIn .18s ease-out both;
}

@keyframes floatingLivePlayerIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.97);
  }
}

.floating-live-close {
  position: absolute;
  z-index: 5;
  top: 8px;
  right: 8px;
  display: none;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0 0 2px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  background: rgba(7, 17, 14, .82);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .28);
  color: #fff;
  cursor: pointer;
  font-size: 21px;
  line-height: 1;
}

.daily-channel-player.is-floating .floating-live-close {
  display: grid;
}

.daily-channel-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.shorts-swipe-surface {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.shorts-navigation-button {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 58px;
  padding: 0 0 5px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  background: rgba(7, 17, 14, .62);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .24);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 36px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: background-color .16s ease, border-color .16s ease, opacity .16s ease, transform .16s ease;
}

.shorts-navigation-button.is-previous {
  left: 14px;
}

.shorts-navigation-button.is-next {
  right: 14px;
}

.daily-channel-player:hover .shorts-navigation-button:not(:disabled),
.daily-channel-player:focus-within .shorts-navigation-button:not(:disabled) {
  opacity: .76;
  pointer-events: auto;
}

.shorts-navigation-button:hover,
.shorts-navigation-button:focus-visible {
  border-color: rgba(240, 182, 76, .8);
  background: rgba(7, 17, 14, .88);
  opacity: 1;
  transform: translateY(-50%) scale(1.04);
}

.shorts-navigation-button:disabled {
  pointer-events: none;
  opacity: 0;
}

@media (pointer: coarse) {
  .daily-channel-now.is-shorts-on-demand .shorts-swipe-surface {
    pointer-events: auto;
    touch-action: pan-y;
  }
}

@media (hover: none) {
  .daily-channel-now.is-shorts-on-demand .daily-channel-player .shorts-navigation-button:not(:disabled) {
    opacity: 0;
    pointer-events: none;
  }

  .daily-channel-now.is-shorts-on-demand .daily-channel-player.shows-shorts-navigation .shorts-navigation-button:not(:disabled) {
    opacity: .8;
    pointer-events: auto;
  }
}

.daily-channel-player.has-channel-break iframe {
  position: absolute;
  inset: 0;
  visibility: hidden;
}

.daily-channel-player.has-channel-break .daily-channel-break {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.daily-channel-player.has-shorts-transition iframe {
  visibility: hidden;
}

.daily-channel-shorts-loading {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  background:
    radial-gradient(circle at 50% 44%, rgba(240, 182, 76, .08), transparent 34%),
    #07110e;
  color: #aebbb3;
  text-align: center;
}

.daily-channel-shorts-loading span {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(240, 182, 76, .48);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(240, 182, 76, .14);
  animation: shortsLoadingBreath 1.8s ease-in-out infinite;
}

.daily-channel-shorts-loading p {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: 15px;
  letter-spacing: .025em;
}

@keyframes shortsLoadingBreath {
  50% {
    border-color: rgba(240, 182, 76, .8);
    box-shadow: 0 0 0 12px rgba(240, 182, 76, 0);
    transform: scale(.92);
  }
}

.daily-channel-startup-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #07110e;
  pointer-events: none;
  animation: dailyChannelCover 3.2s ease forwards;
}

.daily-channel-startup-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes dailyChannelCover {
  0%,
  78% {
    visibility: visible;
    opacity: 1;
  }

  100% {
    visibility: hidden;
    opacity: 0;
  }
}

.daily-channel-break {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: grid;
  place-content: center;
  overflow: hidden;
  text-align: center;
}

.daily-channel-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 14, .68);
  backdrop-filter: blur(5px);
}

.daily-channel-break>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.daily-channel-break>div {
  position: relative;
  z-index: 1;
  max-width: 500px;
  display: grid;
  gap: 9px;
  padding: 30px;
}

.daily-channel-break span {
  color: var(--amber-bright);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.daily-channel-break strong {
  font-family: var(--font-editorial);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.1;
}

.daily-channel-break small {
  color: #c4cec7;
  font-size: 12px;
}

.daily-channel-break .daily-channel-countdown {
  display: inline-flex;
  align-items: baseline;
  justify-self: center;
  gap: 8px;
  margin-top: 13px;
  padding: 8px 14px;
  border: 1px solid rgba(240, 182, 76, .36);
  border-radius: 999px;
  background: rgba(7, 17, 14, .42);
  color: #d6ded8;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .02em;
}

.daily-channel-break .daily-channel-countdown strong {
  color: #ffd18c;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
}

.daily-channel-current {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(22px, 3vw, 36px);
  background: linear-gradient(145deg, #303b38, #1c2622);
}

.daily-channel-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.daily-channel-episode-favorite {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  color: #f7f1e7;
}

.daily-channel-episode-favorite:hover {
  border-color: rgba(244, 194, 127, .65);
  color: #f4c27f;
}

.daily-channel-episode-favorite.is-favorite {
  border-color: rgba(240, 182, 76, .55);
  background: rgba(240, 182, 76, .16);
  color: #f0b64c;
}

.daily-channel-kicker {
  color: #f4c27f;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .035em;
}

.daily-channel-current h3 {
  margin-top: 13px;
  font-family: var(--font-editorial);
  font-size: clamp(22px, 2.25vw, 32px);
  font-weight: 400;
  line-height: 1.12;
}

.daily-channel-movie-rating {
  margin-top: 14px;
}

.daily-channel-program {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
}

.daily-channel-program img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  object-fit: cover;
}

.daily-channel-program a {
  width: fit-content;
  color: #c8d3cc;
  font-size: 12px;
  font-weight: 700;
  text-decoration-color: rgba(200, 211, 204, .42);
  text-underline-offset: 3px;
}

.daily-channel-time {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin-top: 20px;
  color: #91a49a;
  font-size: 10px;
  font-weight: 750;
}

.live-rotation-control {
  display: grid;
  gap: 7px;
  width: min(100%, 230px);
  margin-top: 22px;
  color: #b8c5bd;
  font-size: 10px;
  font-weight: 750;
}

.live-rotation-control select {
  width: 100%;
  padding: 10px 34px 10px 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 9px;
  background: #17201c;
  color: #f7f2e7;
  font: 700 12px/1.2 var(--font-ui);
}

.daily-channel-next {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .11);
}

.daily-channel-next span {
  color: #f4c27f;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .035em;
}

.daily-channel-next strong {
  display: -webkit-box;
  overflow: hidden;
  font-family: var(--font-editorial);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.daily-channel-next small {
  color: #91a49a;
  font-size: 10px;
}

.daily-lineup {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 20px 24px 22px;
  scroll-snap-type: x proximity;
}

.daily-lineup::-webkit-scrollbar {
  height: 6px;
}

.daily-lineup::-webkit-scrollbar-track {
  background: transparent;
}

.daily-lineup::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(240, 182, 76, .45);
}

@supports (-moz-appearance: none) {
  .channel-nav {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, .32) transparent;
  }

  .daily-lineup {
    scrollbar-width: thin;
    scrollbar-color: rgba(240, 182, 76, .45) transparent;
  }
}

.daily-lineup-item {
  flex: 0 0 min(290px, 78vw);
  display: grid;
  grid-template-columns: auto 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 74px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  background: rgba(255, 255, 255, .055);
  color: #fffaf0;
  cursor: pointer;
  scroll-snap-align: start;
  scroll-margin: 14px;
  text-align: left;
  transition: background .16s ease, border-color .16s ease;
}

.daily-lineup-item.has-no-program-icon {
  grid-template-columns: auto minmax(0, 1fr);
}

.daily-lineup-item:hover {
  border-color: rgba(240, 182, 76, .5);
  background: rgba(255, 255, 255, .09);
}

.daily-lineup-item.is-current {
  border-color: rgba(240, 182, 76, .5);
  background: rgb(113 83 41);
}

.daily-lineup-item time {
  display: grid;
  gap: 2px;
  min-width: 64px;
  color: #f6c77f;
  font-size: 12px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
  line-height: 1.2;
  white-space: nowrap;
}

.daily-lineup-date {
  color: #a8aaa3;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.daily-lineup-item .daily-lineup-program-icon {
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  object-fit: cover;
  background: #07110e;
}

.daily-lineup-item>span {
  min-width: 0;
}

.daily-lineup-item strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 10px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.daily-lineup-item small {
  display: block;
  overflow: hidden;
  margin-top: 5px;
  color: #91a49a;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.daily-past-item {
  opacity: .78;
}

.daily-past-item:hover {
  opacity: 1;
}

.channel-program-section {
  margin-top: 24px;
  color: #f7f2e7;
}

.channel-program-section+.channel-program-section {
  margin-top: 44px;
}

.curated-topic-browser {
  position: sticky;
  z-index: 5;
  top: var(--topbar-height);
  display: grid;
  gap: 14px;
  width: calc(100% + var(--view-inline-pad) + var(--view-inline-pad));
  min-width: 0;
  margin: 0 calc(-1 * var(--view-inline-pad));
  padding: 18px var(--view-inline-pad) 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: rgba(35, 38, 36, .96);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
}

.curated-topic-tier-group > span,
.curated-topic-select > span {
  color: rgba(247, 242, 231, .62);
  font: 750 10px/1.2 var(--font-ui);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.curated-topic-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .38fr);
  gap: 20px;
  align-items: end;
}

.curated-topic-tier-group,
.curated-topic-select {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.curated-topic-select select {
  width: 100%;
  min-height: 42px;
  padding: 0 38px 0 13px;
  border: 1px solid rgba(239, 196, 124, .32);
  border-radius: 11px;
  background: #202421;
  color: #f7f2e7;
  font: 650 12px/1.2 var(--font-ui);
}

.curated-topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.curated-topic-links button {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(239, 196, 124, .25);
  border-radius: 999px;
  background: transparent;
  color: #efc47c;
  cursor: pointer;
  font: 700 11px/1.2 var(--font-ui);
  transition: background .18s ease, border-color .18s ease;
  text-transform: capitalize;
}

.curated-topic-links button:is(:hover, :focus-visible) {
  border-color: rgba(239, 196, 124, .55);
  background: rgba(239, 196, 124, .1);
  outline: none;
}

.curated-topic-section {
  scroll-margin-top: 118px;
}

.curated-topic-browser + .curated-topic-section {
  margin-top: 0;
  padding-top: 24px;
}

.curated-topic-section .favorite-episode-card {
  content-visibility: visible;
  contain-intrinsic-size: none;
}

.curated-topic-section .program-section-heading h2 {
  text-transform: capitalize;
}

.curated-topic-section + .curated-topic-section {
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

@media (max-width: 1120px) {
  .curated-topic-browser {
    top: 0;
  }
}

@media (max-width: 760px) {
  .curated-topic-browser {
    top: 0;
    margin-inline: calc(-1 * var(--view-inline-pad));
    padding: 16px var(--view-inline-pad);
  }

  .curated-topic-controls {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .curated-topic-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .curated-topic-links button {
    white-space: normal;
  }
}

.archive-year-browser {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 17px;
  background: #303331;
  color: #f7f2e7;
}

.archive-year-browser span {
  color: rgba(247, 242, 231, .66);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.archive-year-browser h2 {
  margin-top: 5px;
  font-family: var(--font-editorial);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 400;
  letter-spacing: -.02em;
}

.archive-year-browser select {
  min-width: 150px;
  padding: 11px 42px 11px 15px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 10px;
  background: #232624;
  color: #f7f2e7;
  font: 700 18px/1.2 var(--font-sans);
}

.archive-browser-controls {
  display: flex;
  align-items: end;
  justify-content: end;
  gap: 12px;
}

.archive-browser-controls label {
  display: grid;
  gap: 7px;
}

.archive-browser-controls label > span {
  padding-left: 2px;
  font-size: 10px;
}

.movie-browser-controls select {
  min-width: min(24vw, 310px);
}

@media (max-width: 600px) {
  .archive-year-browser {
    align-items: stretch;
    flex-direction: column;
  }

  .archive-year-browser select {
    width: 100%;
  }

  .archive-browser-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .movie-browser-controls select {
    min-width: 0;
  }
}

.program-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
  margin-bottom: 14px;
}

.program-section-heading h2 {
  color: #f7f2e7;
  font-family: var(--font-editorial);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 400;
  letter-spacing: -.02em;
}

.program-section-heading>p {
  flex: 0 0 auto;
  margin: 0 0 2px auto;
  color: rgba(247, 242, 231, .68);
  font: 600 14px/1.2 var(--font-ui);
  text-align: right;
  white-space: nowrap;
}

.channel-favorites {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 24px;
  margin-top: 16px;
}

.program-section-heading+.program-grid {
  margin-top: 0;
}

.program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 17px;
  background: #303331;
  color: #f7f2e7;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
  transition: transform .2s ease, box-shadow .2s ease;
}

.favorite-button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  background: #1d201e;
  color: #9da69f;
  cursor: pointer;
  line-height: 1;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.favorite-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.program-card>.favorite-button {
  position: absolute;
  z-index: 4;
  top: 21px;
  right: 18px;
}

.favorite-live-toggle {
  position: absolute;
  z-index: 4;
  top: 21px;
  right: 58px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  background: #1d201e;
  color: #9da69f;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.favorite-live-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.favorite-live-toggle:hover {
  border-color: rgba(239, 196, 124, .5);
  color: #efc47c;
  transform: scale(1.07);
}

.favorite-live-toggle.is-enabled {
  border-color: var(--evergreen);
  background: var(--evergreen);
  color: #fffaf0;
}

.favorite-live-slash {
  position: absolute;
  width: 23px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(-45deg);
}

.program-card.has-live-toggle .program-identity-link {
  padding-right: 104px;
}

.program-card.has-live-toggle.no-videos>.program-body:first-of-type {
  padding-right: 104px;
}

.favorite-button:hover {
  border-color: rgba(198, 115, 49, .5);
  color: var(--lantern-accent);
  transform: scale(1.07);
}

.favorite-button.is-favorite {
  border-color: rgba(239, 196, 124, .5);
  background: rgba(198, 115, 49, .22);
  color: #efc47c;
}

.favorite-button.is-favorite svg {
  fill: currentColor;
}

.favorite-episode-card > .episode-favorite-button {
  border-color: rgba(239, 196, 124, .5);
  background: rgba(198, 115, 49, .22);
  color: #efc47c;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .24);
}

.program-card.is-favorite-program {
  border-color: rgba(239, 196, 124, .38);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .2), inset 0 3px 0 rgba(198, 115, 49, .78);
}

.program-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .3);
}

.lead-video {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 0;
  background: #171918;
  cursor: pointer;
}

.lead-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.program-card:hover .lead-video img {
  transform: scale(1.025);
}

.lead-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 25, 21, .42), transparent 52%);
}

.program-body {
  padding: 17px 18px 18px;
}

.program-identity {
  padding-bottom: 15px;
  background: #292c2a;
}

.program-identity-link {
  display: block;
  padding-right: 62px;
  color: inherit;
  text-decoration: none;
  transition: background .16s ease;
}

.program-identity-link:hover {
  background: #343835;
}

.program-identity-link:focus-visible {
  outline: 2px solid var(--lantern-accent);
  outline-offset: -3px;
}

.program-videos {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 0;
  background: #303331;
}

.program-head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
}

.program-head-link {
  color: inherit;
  text-decoration: none;
}

.program-avatar {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  object-fit: cover;
  background: #303330;
}

.program-head h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-editorial);
  font-size: 17px;
  font-weight: 400;
}

.program-movie-count {
  margin: 3px 0 0;
  color: #aeb8b1;
  font-size: 11px;
  font-weight: 700;
}

.program-external-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.program-card-links {
  min-height: 42px;
  padding: 0 18px 12px;
  background: #292c2a;
}

.program-card.no-videos .program-card-links {
  margin-top: 14px;
  padding: 0;
  background: transparent;
}

.program-external-link {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 50%;
  background: #202321;
  color: #b8c1bb;
  text-decoration: none;
  transition: color .16s ease, border-color .16s ease, background .16s ease, transform .16s ease;
}

.program-external-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-external-link:is(:hover, :focus-visible) {
  border-color: rgba(239, 196, 124, .62);
  background: #38342b;
  color: #efc47c;
  outline: none;
  transform: translateY(-1px);
}

.program-external-link.is-youtube:is(:hover, :focus-visible) {
  border-color: #ff4565;
  background: #ff1744;
  color: white;
}

.program-external-link.is-patreon {
  border-color: rgba(239, 196, 124, .4);
  background: rgba(198, 115, 49, .18);
  color: #efc47c;
}

.program-external-link.is-patreon:is(:hover, :focus-visible) {
  border-color: #efc47c;
  background: #c67331;
  color: #fffaf0;
}

.video-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .11);
}

.video-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: transparent;
  color: #d8ded9;
  cursor: pointer;
  text-align: left;
}

.video-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.video-row-title {
  display: -webkit-box;
  overflow: hidden;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.video-row-play {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: #d8ded9;
  font-size: 8px;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.video-row time {
  color: #8f9992;
  font-size: 9px;
  white-space: nowrap;
}

.video-row:hover .video-row-title {
  color: var(--amber);
}

.video-row:hover .video-row-play {
  border-color: var(--lantern-accent);
  background: var(--lantern-accent);
  color: #fffaf0;
  transform: scale(1.08);
}

.lead-video:is(:hover, :focus-visible)+.program-videos .video-row:first-child .video-row-title {
  color: var(--amber);
}

.lead-video:is(:hover, :focus-visible)+.program-videos .video-row:first-child .video-row-play {
  border-color: var(--lantern-accent);
  background: var(--lantern-accent);
  color: #fffaf0;
  transform: scale(1.08);
}

.program-open {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  margin: 14px -18px -18px;
  padding: 15px 18px 17px;
  border-top: 1px solid rgba(255, 255, 255, .11);
  background: #292c2a;
  color: #f7f2e7;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .01em;
  line-height: 1.35;
  text-decoration: none;
  transition: background .16s ease, color .16s ease;
}

.program-open span {
  color: #efc47c;
  font-size: 17px;
  transition: transform .18s ease;
}

.program-open:hover {
  background: #343835;
  color: #efc47c;
}

.program-open:hover span {
  transform: translateX(4px);
}

.program-card.no-videos .program-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 180px;
}

.no-video-note {
  margin-top: 18px;
  padding: 14px;
  border-radius: 10px;
  background: #292c2a;
  color: #aeb8b1;
  font-family: var(--font-editorial);
  font-size: 12px;
  line-height: 1.5;
}

.program-page {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.program-page-header {
  padding: 4px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.program-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: #c5cdc7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 650;
  letter-spacing: -.01em;
  line-height: 1.3;
  text-decoration: none;
}

.program-back:hover {
  color: var(--lantern-accent);
}

.program-page-identity {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.program-page-favorite {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
}

.program-page-favorite svg {
  width: 24px;
  height: 24px;
}

.program-page-identity .eyebrow {
  margin-bottom: 8px;
  color: #efc47c;
}

.program-page-identity h1 {
  color: #f7f2e7;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: .98;
}

.program-page-links {
  justify-content: flex-end;
  margin-top: 20px;
}

.program-page-links .program-external-link {
  width: 38px;
  height: 38px;
}

.program-page-links .program-external-link svg {
  width: 18px;
  height: 18px;
}

.program-page-links .program-external-link.is-patreon {
  width: auto;
  padding: 0 15px;
  display: inline-flex;
  gap: 8px;
  border-radius: 999px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -.005em;
  white-space: nowrap;
}

.program-page-overview {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  margin-top: 32px;
}

.program-page-overview>img {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 5%;
  background: #292c2a;
  object-fit: cover;
}

.program-page-overview-copy {
  min-width: 0;
}

.program-page-description {
  max-width: 850px;
  margin: 0;
  color: #b9c2bc;
  font-family: var(--font-editorial);
  font-size: 16px;
  line-height: 1.65;
  white-space: pre-line;
}

.program-page-description a,
.program-video-description a {
  color: #efc47c;
  text-decoration-color: rgba(198, 115, 49, .42);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.program-page-description a:hover,
.program-video-description a:hover {
  text-decoration-color: currentColor;
}

.program-page-feed {
  margin-top: 24px;
}

.program-page-video-list {
  display: grid;
  gap: 22px;
}

.program-page-video {
  display: grid;
  grid-template-columns: minmax(280px, 43%) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 17px;
  background: #303331;
  color: #f7f2e7;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.program-page-video:hover {
  border-color: rgba(239, 196, 124, .48);
  background: #363a37;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .34);
}

.program-page-thumbnail {
  position: relative;
  width: 100%;
  min-height: 255px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #d9d4c7;
  cursor: pointer;
}

.program-page-thumbnail img {
  width: 100%;
  height: 100%;
  min-height: 255px;
  object-fit: cover;
  transition: transform .4s ease;
}

.program-page-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 25, 21, .38), transparent 52%);
}

.program-page-thumbnail:hover img {
  transform: scale(1.025);
}

.program-page-video-copy {
  padding: 25px 27px 28px;
}

.program-video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  color: #aeb8b1;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.35;
}

.program-video-meta-stack {
  display: grid;
  justify-items: start;
  gap: 10px;
  min-width: 0;
}

.program-video-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.program-video-heading-row .episode-favorite-button {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .16);
}

.program-page-video-copy h2 {
  margin-top: 10px;
  color: #f7f2e7;
  font-family: var(--font-editorial);
  font-size: clamp(22px, 2.25vw, 31px);
  font-weight: 400;
  line-height: 1.13;
}

.program-video-description {
  margin-top: 17px;
  color: #b9c2bc;
  font-size: 12px;
  line-height: 1.58;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.video-youtube-link {
  display: flex;
  width: fit-content;
  margin: 9px 0 0 auto;
  color: #b32d2e;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.video-youtube-link:hover {
  text-decoration: underline;
}

.program-feed-footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 92px;
  padding: 24px 0;
}

.program-load-more {
  min-width: 160px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: #303331;
  color: #f7f2e7;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.program-load-more:hover:not(:disabled) {
  border-color: rgba(239, 196, 124, .55);
  background: #393d3a;
  color: #efc47c;
}

.program-load-more:disabled {
  cursor: wait;
  opacity: .65;
}

.program-feed-footer p {
  color: #aeb8b1;
  font-family: var(--font-editorial);
  font-size: 12px;
}

.search-grid {
  margin-top: 0px;
  color: #f7f2e7;
}

.search-grid .section-heading {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding-bottom: 12px;
}

.search-grid .section-heading h2 {
  color: #f7f2e7;
}

.search-grid .section-heading p {
  color: #aeb8b1;
}

.search-video-heading-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-video-heading-controls select {
  min-width: 154px;
  height: 38px;
  padding: 0 34px 0 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: #303331;
  color: #f7f2e7;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.search-video-heading-controls select:is(:hover, :focus-visible) {
  border-color: rgba(239, 196, 124, .58);
  outline: none;
}

.search-loading {
  min-height: 45vh;
  display: grid;
  place-items: center;
  color: #d8ded9;
  font-family: var(--font-editorial);
  font-size: 18px;
}

.result-groups {
  display: grid;
  gap: 44px;
}

.result-program-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
}

.search-grid .channel-card,
.compact-program,
.result-video {
  border-color: rgba(255, 255, 255, .16);
  background: #303331;
  color: #f7f2e7;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
}

.search-grid .channel-card.kids {
  background: #303331;
}

.search-grid .channel-card-number {
  border-color: rgba(239, 196, 124, .28);
  background: #252825;
  color: #efc47c;
}

.search-grid .channel-card:is(:hover, :focus-visible),
.compact-program:is(:hover, :focus-visible),
.result-video:is(:hover, :focus-visible) {
  border-color: rgba(239, 196, 124, .58);
  background: #393d3a;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .34);
  outline: none;
}

.compact-program {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 13px;
  text-decoration: none;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.compact-program:hover {
  transform: translateY(-2px);
}

.compact-program img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .14);
  background: #1d201e;
}

.compact-program h3 {
  color: #f7f2e7;
  font-family: var(--font-editorial);
  font-size: 16px;
  font-weight: 400;
}

.compact-program p {
  display: grid;
  gap: 2px;
  margin-top: 5px;
  color: #aeb8b1;
  font-size: 10px;
  line-height: 1.35;
}

.result-video-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.search-feed-footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 92px;
  padding: 24px 0 0;
}

.search-feed-footer p {
  color: #aeb8b1;
  font-family: var(--font-editorial);
  font-size: 12px;
}

@media (max-width: 560px) {
  .search-video-heading {
    align-items: start;
  }

  .search-video-heading-controls {
    align-items: end;
    flex-direction: column;
    gap: 7px;
  }
}

.result-video {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 13px;
  color: #f7f2e7;
  cursor: pointer;
  text-align: left;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.result-video:hover {
  transform: translateY(-2px);
}

.result-video img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.result-video div {
  padding: 13px;
}

.result-video strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.35;
  color: #f7f2e7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.result-video small {
  display: block;
  margin-top: 7px;
  color: #aeb8b1;
}

.empty-state {
  min-height: 55vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.empty-state>span {
  color: #efc47c;
  font-size: 26px;
}

.empty-state h2 {
  color: #f7f2e7;
  font-family: var(--font-editorial);
  font-size: 30px;
  font-weight: 400;
}

.empty-state p {
  color: #aeb8b1;
}

.empty-state a {
  margin-top: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #c67a31;
  color: #fff9e9;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.video-dialog {
  width: min(1040px, calc(100vw - 34px), calc((100dvh - 230px) * 16 / 9));
  max-height: calc(100dvh - 34px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #121212;
  box-shadow: 0 28px 90px rgba(13, 21, 18, .52);
  color: #fffaf0;
}

.video-dialog[open] {
  display: flex;
  flex-direction: column;
}

.video-dialog::backdrop {
  background: rgba(17, 26, 22, .72);
  backdrop-filter: blur(6px);
}

.dialog-close {
  position: absolute;
  z-index: 4;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: rgba(13, 25, 21, .78);
  color: white;
  cursor: pointer;
  font-size: 25px;
}

.video-frame {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed-unavailable {
  min-height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 34px;
  text-align: center;
}

.video-embed-unavailable strong {
  font-family: var(--font-editorial);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 400;
}

.video-embed-unavailable p {
  color: #bfc8c1;
  font-size: 14px;
}

.video-alternative-button {
  max-width: min(620px, 100%);
  padding: 12px 18px;
  border: 1px solid rgba(240, 182, 76, .55);
  border-radius: 999px;
  background: #c67a31;
  color: #fff9e9;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.video-alternative-button:hover {
  background: #d8893c;
}

.video-meta {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 20px 70px 24px 22px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.video-meta-header {
  display: block;
  flex: 0 0 auto;
  padding-right: 270px;
}

.video-meta-toolbar {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 70px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 0;
}

.video-meta-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.episode-share-control {
  position: relative;
}

.episode-share-menu {
  position: absolute;
  z-index: 12;
  top: calc(100% + 9px);
  right: 0;
  left: auto;
  transform: none;
  display: grid;
  min-width: 142px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background: #202421;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .42);
}

.episode-share-menu[hidden] {
  display: none;
}

.episode-share-menu button {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fffaf0;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  text-align: left;
  white-space: nowrap;
}

.episode-share-menu button:is(:hover, :focus-visible) {
  outline: none;
  background: rgba(240, 182, 76, .14);
  color: #f0c77a;
}

.video-meta-details {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 16px 28px;
  min-height: 0;
  margin-top: 13px;
}

.video-meta-youtube-link {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  color: #ff4e45;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}

.video-meta-youtube-link svg {
  width: 21px;
  height: 21px;
}

.video-meta-youtube-link:is(:hover, :focus-visible) {
  border-color: rgba(255, 78, 69, .62);
  background: rgba(255, 78, 69, .1);
  outline: none;
  text-decoration: none;
  transform: scale(1.07);
}

.video-meta-actions .episode-favorite-button,
.episode-share-button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 50%;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  color: #fffaf0;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.episode-share-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.episode-share-button:is(:hover, :focus-visible) {
  border-color: rgba(240, 182, 76, .55);
  color: #f0b64c;
  transform: scale(1.07);
}

.episode-share-button.did-copy {
  border-color: rgba(134, 194, 156, .6);
  background: rgba(70, 129, 91, .28);
  color: #b9e1c7;
}

.video-meta-actions .episode-favorite-button.is-favorite {
  border-color: rgba(240, 182, 76, .55);
  background: rgba(240, 182, 76, .16);
  color: #f0b64c;
}

.video-meta h2 {
  min-width: 0;
  flex: 0 1 auto;
  font-family: var(--font-editorial);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.25;
}

.video-meta-toolbar + .video-playlist-progress {
  margin-top: 20px;
}

.video-meta .video-program {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: baseline;
  margin-top: 7px;
  color: #bfc8c1;
  font-size: 12px;
  font-weight: 650;
}

.video-meta .video-program time {
  color: #98a39b;
  font-weight: 500;
}

.video-meta .video-program a {
  color: inherit;
  text-decoration: none;
}

.video-meta .video-program a:is(:hover, :focus-visible) {
  color: #efc47c;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.video-meta .video-description {
  max-width: 860px;
  min-height: 0;
  margin-top: 0;
  overflow: hidden;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  color: #d9dfda;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-line;
}

.video-description-shell:not(.is-expanded) .video-description {
  max-height: calc(1.55em * 3);
}

.video-description-toggle {
  margin-top: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #efc47c;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.video-description-toggle:is(:hover, :focus-visible) {
  color: #fff1cf;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.video-description-toggle[hidden] {
  display: none;
}

.video-meta .video-description a {
  color: #f0b64c;
  text-decoration-color: rgba(240, 182, 76, .5);
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.icon-button {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-button,
#closeMenuButton {
  display: none;
}

.menu-button svg {
  width: 22px;
  fill: none;
  stroke: rgb(197 114 49);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.sidebar-scrim {
  position: fixed;
  z-index: 35;
  inset: var(--topbar-height) 0 0;
  background: rgba(22, 33, 28, .38);
  backdrop-filter: blur(2px);
}

@media (max-width: 1280px) {
  .daily-channel-now {
    grid-template-columns: 1fr;
  }

  .daily-channel-current {
    min-height: 0;
  }

  .daily-channel-next {
    margin-top: 22px;
  }
}

@media (max-width: 1120px) {
  :root {
    --sidebar-width: 244px;
  }

  .topbar {
    grid-template-columns: var(--sidebar-width) minmax(240px, 1fr) auto;
    gap: 18px;
  }

  .dashboard-sections .channel-grid {
    grid-template-columns: repeat(2, minmax(0, 220px));
  }
}

@media (hover: none) and (pointer: coarse) {
  .home-guide-tooltip {
    pointer-events: auto;
    cursor: pointer;
    touch-action: manipulation;
  }
}

@media (max-width: 1120px) {
  :root {
    --topbar-height: 68px;
    --mobile-brand-row-height: 68px;
    --mobile-navigation-height: 58px;
  }

  .topbar {
    position: relative;
    inset: auto;
    height: var(--mobile-brand-row-height);
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-rows: var(--mobile-brand-row-height);
    align-items: center;
    gap: 0 11px;
    padding: 0 13px;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .brand-block {
    grid-column: 1;
    grid-row: 1;
  }

  .search-navigation {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: calc(var(--mobile-navigation-height) + env(safe-area-inset-bottom));
    max-width: 100vw;
    margin: 0;
    justify-self: stretch;
    box-sizing: border-box;
    justify-content: center;
    gap: 7px;
    padding: 8px 13px max(8px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: rgb(72 70 66);
    box-shadow: 0 -10px 30px rgba(8, 10, 9, .28);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .menu-button {
    display: grid;
    grid-column: 3;
    grid-row: 1;
    width: 38px;
    height: 38px;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong,
  .brand-wordmark {
    font-size: 18px;
  }

  .brand-name,
  .brand-tagline {
    font-size: 9px;
  }

  .youtube-attribution {
    gap: 6px;
    padding: 7px 2px;
    font-size: 10px;
  }

  .youtube-attribution svg {
    width: 22px;
  }

  .topbar-actions {
    grid-column: 2;
    grid-row: 1;
    gap: 4px;
  }

  .channel-step-button {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .channel-autoplay-toggle,
  .channel-mute-toggle {
    width: 36px;
    height: 36px;
  }

  .channels-home-button {
    width: 36px;
    height: 36px;
  }

  .channels-home-button svg {
    width: 17px;
    height: 17px;
  }

  .channel-stepper {
    grid-template-columns: 34px 36px 34px;
    gap: 2px;
    padding: 2px;
    border-radius: 12px;
  }

  .current-channel-number {
    width: 36px;
    height: 34px;
    min-width: 0;
    font-size: 14px;
  }

  .search input {
    height: 40px;
    padding: 0 39px;
    font-size: 13px;
  }

  .search svg {
    left: 13px;
    width: 17px;
  }

  .sidebar {
    z-index: 60;
    inset: 0 auto 0 0;
    height: 100vh;
    height: 100dvh;
    transform: translateX(-104%);
    width: min(320px, 88vw);
    box-shadow: 22px 0 50px rgba(28, 37, 31, .22);
    transition: transform .22s ease;
  }

  .sidebar-scrim {
    z-index: 55;
    inset: 0;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar-heading {
    display: flex;
    justify-content: flex-end;
    flex: 0 0 auto;
    min-height: 54px;
    padding: max(10px, env(safe-area-inset-top)) 12px 4px;
  }

  .channel-nav {
    padding-top: 0;
  }

  #closeMenuButton {
    display: grid;
    width: 34px;
    height: 34px;
    font-size: 24px;
    color: #e0e2df;
  }

  .main {
    margin-left: 0;
  }

  .app-shell {
    padding-top: 0;
  }

  #view {
    --view-top-pad: 26px;
    --view-inline-pad: 17px;
    padding: var(--view-top-pad) var(--view-inline-pad) calc(70px + var(--mobile-navigation-height) + env(safe-area-inset-bottom));
  }

  .dashboard-sections {
    gap: 24px;
  }

  .home-guide-scroll {
    border-radius: 13px;
  }

  .home-guide-table {
    grid-template-columns: 176px var(--home-guide-timeline-width);
  }

  .home-guide-corner {
    padding-inline: 10px;
  }

  .home-guide-group {
    padding-inline: 10px;
    font-size: 15px;
  }

  .home-guide-channel {
    min-height: 82px;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
  }

  .home-guide-channel > img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }

.home-guide-custom-mark {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    font-size: 21px;
  }

  .home-guide-channel-copy {
    align-content: center;
    gap: 5px;
  }

  .home-guide-channel-copy .channel-card-number {
    min-width: 22px;
    height: 22px;
    padding-inline: 4px;
    font-size: 9px;
  }

  .home-guide-channel-copy strong {
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .home-guide-lane {
    min-height: 82px;
    contain-intrinsic-size: auto 82px;
  }

  .home-guide-program {
    top: 6px;
    bottom: 6px;
    gap: 7px;
    padding: 7px;
  }

  .home-guide-program img {
    width: 32px;
    height: 32px;
  }

  .home-guide-program strong {
    font-size: 11px;
  }

  .channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .channel-card {
    padding: 15px;
    border-radius: 14px;
  }

  .channel-card .thumb-stack {
    margin: -15px -15px 15px;
  }

  .channel-card h3 {
    font-size: 18px;
  }

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

  .channel-hero {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mobile-channel-hero-title {
    display: block;
    padding-bottom: 18px;
  }

  .mobile-channel-hero-title h1 {
    min-width: 0;
    flex: 1 1 auto;
    margin: 0;
    overflow: hidden;
    color: #f7f2e7;
    font-family: var(--font-editorial);
    font-size: clamp(17px, 4.8vw, 27px);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-channel-hero-title .channel-hero-heading {
    flex: 1 1 auto;
    width: 100%;
    gap: 10px;
  }

  .mobile-channel-hero-title .channel-hero-heading h1 {
    order: 1;
  }

  .mobile-channel-hero-title .channel-hero-number {
    order: 2;
    min-width: 34px;
    height: 34px;
    margin-left: auto;
    padding: 0 8px;
    font-size: 16px;
  }

  .channel-hero > .channel-hero-title {
    display: none;
  }

  .mobile-channel-hero-title + .daily-channel {
    margin-top: 0;
  }

  .channel-hero-title {
    gap: 12px;
  }

  .mobile-channel-hero-title .channel-hero-image {
    width: 60px;
    border-radius: 14px;
  }

  .daily-channel-now {
    order: 1;
    grid-template-columns: 1fr;
  }

  .daily-channel {
    display: flex;
    flex-direction: column;
  }

  .daily-channel > .daily-lineup {
    order: 2;
  }

  .weather-location-bar {
    align-items: flex-start;
  }

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

  .weather-current-icon {
    display: none;
  }

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

  .weather-hourly>div:nth-child(3n+1) {
    border-left: 0;
  }

  .weather-hourly>div:nth-child(n+4) {
    border-top: 1px solid rgba(23, 57, 47, .18);
  }

  .daily-channel-current {
    min-height: 270px;
  }

  .daily-channel-player.is-floating {
    right: 12px;
    bottom: calc(var(--mobile-navigation-height) + env(safe-area-inset-bottom) + 12px);
    width: min(320px, calc(100vw - 24px));
    border-radius: 10px;
  }

  .daily-lineup {
    padding: 18px;
  }

  .program-page-overview {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    margin-top: 24px;
  }

  .program-page-overview>img {
    width: 112px;
    height: 112px;
  }

  .program-page-description {
    font-size: 14px;
  }

  .program-page-video {
    grid-template-columns: 1fr;
  }

  .program-page-thumbnail,
  .program-page-thumbnail img {
    min-height: 0;
    aspect-ratio: 16/9;
  }

  .program-page-video-copy {
    padding: 20px 20px 23px;
  }

  .video-dialog {
    width: min(calc(100vw - 16px), calc((100dvh - 120px) * 16 / 9));
    max-width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 14px;
  }

  .video-meta {
    min-height: 0;
    max-height: 52dvh;
    padding: 20px 18px 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .video-meta-header {
    padding-right: 42px;
  }

  .video-meta h2 {
    font-size: 22px;
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  .video-meta .video-program {
    margin-top: 9px;
    gap: 4px 7px;
    font-size: 12px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .video-meta-toolbar {
    position: static;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .video-meta-actions .episode-favorite-button,
  .video-meta-actions .episode-share-button,
  .video-dialog > .dialog-close {
    width: 44px;
    height: 44px;
  }

  .video-dialog > .dialog-close {
    top: 12px;
    right: 12px;
  }

  .video-meta-youtube-link {
    width: 44px;
    height: 44px;
    margin-left: 0;
  }

  .video-meta-details {
    display: block;
    flex: 0 0 auto;
    margin-top: 14px;
  }

  .video-meta .video-description {
    overflow: hidden;
    font-size: 13px;
    line-height: 1.6;
    overflow-wrap: anywhere;
  }

  .video-description-shell:not(.is-expanded) .video-description {
    max-height: calc(1.6em * 3);
  }

  .video-meta .video-playlist-progress {
    flex: 0 0 auto;
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .home-guide-now-table {
    grid-template-columns: minmax(108px, 38%) minmax(0, 1fr);
  }

  .home-guide-channel {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-guide-channel > img,
  .home-guide-custom-mark {
    display: none;
  }
}

@media (max-width: 470px) {
  .video-meta .episode-share-menu {
    top: 50%;
    right: calc(100% + 10px);
    left: auto;
    transform: translateY(-50%);
  }

  .custom-channel-dialog-content {
    padding: 27px 20px 22px;
  }

  .custom-channel-dialog h2 {
    font-size: 27px;
  }

  .topbar {
    gap: 0 8px;
    padding-inline: 9px;
  }

  .search-navigation {
    gap: 5px;
  }

  .menu-button {
    width: 34px;
    height: 34px;
  }

  .brand-block {
    --brand-icon-layout-size: 36px;
    --brand-lockup-gap: 8px;
  }

  .brand-wordmark {
    font-size: 17px;
  }

  .brand-tagline {
    font-size: 8px;
  }

  .youtube-attribution {
    gap: 4px;
    padding-inline: 0;
    font-size: 9px;
  }

  .youtube-attribution svg {
    width: 20px;
  }

  .channels-home-button,
  .channel-autoplay-toggle,
  .channel-mute-toggle {
    width: 34px;
    height: 34px;
  }

  .channel-stepper {
    grid-template-columns: 28px 32px 28px;
  }

  .channel-step-button {
    width: 28px;
  }

  .current-channel-number {
    width: 32px;
  }

  .search input {
    padding-right: 35px;
    padding-left: 34px;
    font-size: 12px;
  }

  .search svg {
    left: 11px;
  }

  .search .search-submit {
    right: 5px;
    width: 28px;
    height: 28px;
  }

  .brand-copy {
    display: none;
  }

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

  .weather-location-bar {
    display: grid;
  }

  .weather-change-location {
    justify-self: start;
  }

  .weather-current {
    grid-template-columns: 1fr;
  }

  .weather-current-summary {
    padding: 14px 0 0;
    border-top: 1px solid rgba(23, 57, 47, .22);
    border-left: 0;
  }

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

  .weather-hourly>div:nth-child(3n+1) {
    border-left: 1px solid rgba(23, 57, 47, .18);
  }

  .weather-hourly>div:nth-child(odd) {
    border-left: 0;
  }

  .weather-hourly>div:nth-child(n+3) {
    border-top: 1px solid rgba(23, 57, 47, .18);
  }

  .program-page-overview {
    grid-template-columns: 1fr;
  }

  .program-page-overview>img {
    width: 132px;
    height: 132px;
  }
}

/* Weather dashboard — horizontally composed on desktop, stacked on mobile. */
.weather-local-panel {
  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-editorial: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  padding: clamp(24px, 3vw, 42px) var(--view-inline-pad) clamp(32px, 4vw, 52px);
  background: #191919;
  color: #f4f1eb;
}

.weather-location-bar {
  align-items: center;
  padding-bottom: 18px;
  border-color: rgba(255, 255, 255, .13);
}

.weather-eyebrow {
  color: #a9a9a9;
  font: 750 10px/1 var(--font-ui);
  letter-spacing: .14em;
}

.weather-location-bar h2 {
  margin-top: 0;
  color: #f4f1eb;
  font-family: var(--font-ui);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1;
}

.home-guide-custom-mark.custom-channel-artwork {
  display: grid;
  padding: 0;
  border-color: rgba(239, 196, 124, .36);
  border-radius: 14px;
  font-size: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    inset 0 -10px 18px rgba(0, 0, 0, .1),
    0 5px 12px rgba(0, 0, 0, .18);
}

.weather-change-location {
  border-color: rgba(255, 255, 255, .4);
  color: #f4f1eb;
}

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

.weather-local-panel .weather-location-intro {
  max-width: 820px;
  margin-top: 28px;
  color: #d7d9d4;
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

.weather-local-panel .weather-location-form {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  gap: 12px;
  max-width: 930px;
  margin-top: 24px;
}

.weather-local-panel .weather-location-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 9px;
  outline: none;
  background: #252525;
  color: #fffdf7;
  caret-color: #f4c27f;
  font: 600 16px/1 var(--font-ui);
}

.weather-local-panel .weather-location-form input::placeholder {
  color: #a9ada7;
  opacity: 1;
}

.weather-local-panel .weather-location-form input:focus {
  border-color: #f4c27f;
  box-shadow: 0 0 0 3px rgba(244, 194, 127, .2);
}

.weather-local-panel .weather-location-form button {
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid #f4c27f;
  border-radius: 9px;
  background: #f4c27f;
  color: #17251f;
  font-size: 14px;
  font-weight: 750;
}

.weather-local-panel .weather-location-form button:hover {
  border-color: #ffd59b;
  background: #ffd59b;
}

.weather-local-panel .weather-location-form .weather-use-location {
  border-color: rgba(255, 255, 255, .32);
  background: transparent;
  color: #f4f1eb;
}

.weather-local-panel .weather-location-form .weather-use-location:hover {
  border-color: rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .08);
}

.weather-local-panel .weather-location-results button {
  border-color: rgba(255, 255, 255, .3);
  border-radius: 8px;
  background: #292929;
  color: #fffdf7;
}

.weather-local-panel .weather-location-results button span,
.weather-local-panel .weather-location-results p {
  color: #c7cbc5;
}

.weather-local-panel .weather-location-credit {
  margin-top: 18px;
  color: #9da29b;
  font-family: var(--font-ui);
  font-size: 11px;
}

.weather-snapshot {
  margin-top: 18px;
}

.weather-dashboard {
  --weather-accent: #ffd21c;
  display: grid;
  grid-template-columns: minmax(290px, .8fr) minmax(0, 1.55fr);
  grid-template-areas:
    "current hourly"
    "daily daily"
    "details details";
  gap: 18px;
}

.weather-module {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 17px;
  background: #303030;
  color: #f4f1eb;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .16);
}

.weather-module-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 52px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .055);
}

.weather-module-heading>span {
  color: #b9b9b9;
  font-size: 17px;
}

.weather-module-heading h3 {
  font: 700 14px/1 var(--font-ui);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.weather-condition-card {
  grid-area: current;
  position: relative;
  min-height: 330px;
  display: grid;
  align-content: start;
  padding: 23px 24px 22px;
  isolation: isolate;
  background: #17392f;
}

.weather-dashboard[data-weather-mood="night"] .weather-condition-card {
  --weather-accent: #e8b75d;
  background: #19343a;
}

.weather-dashboard[data-weather-mood="sun"] .weather-condition-card {
  --weather-accent: #f1c463;
  background: #74552c;
}

.weather-dashboard[data-weather-mood="cloud"] .weather-condition-card {
  --weather-accent: #d8c393;
  background: #4c615a;
}

.weather-dashboard[data-weather-mood="rain"] .weather-condition-card {
  --weather-accent: #a9d2d3;
  background: #2b5057;
}

.weather-dashboard[data-weather-mood="storm"] .weather-condition-card {
  --weather-accent: #edbc5c;
  background: #373c43;
}

.weather-dashboard[data-weather-mood="snow"] .weather-condition-card {
  --weather-accent: #f7f3e7;
  background: #657e7f;
}

.weather-condition-main {
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 32px;
}

.weather-condition-symbol {
  width: 82px;
  height: 82px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--weather-accent) 72%, transparent);
  border-radius: 50%;
  color: var(--weather-accent);
  font: 400 48px/.8 var(--font-editorial);
}

.weather-condition-reading {
  display: grid;
  gap: 2px;
}

.weather-temperature-row {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
}

.weather-temperature-row>strong {
  font: 700 clamp(58px, 6vw, 84px)/.86 var(--font-ui);
  letter-spacing: -.045em;
}

.weather-feels-like {
  display: grid;
  gap: 4px;
  padding-left: clamp(14px, 2vw, 22px);
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.weather-feels-like small {
  color: var(--weather-accent);
  font: 700 9px/1 var(--font-ui);
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.weather-feels-like strong {
  color: #fff;
  font: 700 clamp(22px, 2vw, 30px)/1 var(--font-ui);
  font-variant-numeric: tabular-nums;
}

.weather-condition-reading sup {
  margin-left: 2px;
  font-size: .27em;
  letter-spacing: 0;
  vertical-align: top;
}

.weather-condition-reading>span {
  margin-top: 7px;
  color: rgba(255, 255, 255, .84);
  font: 600 15px/1.3 var(--font-ui);
}

.weather-condition-card .weather-voice {
  z-index: 2;
  max-width: none;
  margin: 26px 0 0;
  padding-left: 13px;
  border-left: 2px solid var(--weather-accent);
  color: rgba(255, 255, 255, .86);
  font: 500 15px/1.45 var(--font-ui);
  text-align: left;
}

.weather-condition-facts {
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  gap: 28px;
  margin-top: 25px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.weather-condition-facts>span {
  display: grid;
  gap: 3px;
  text-align: left;
}

.weather-condition-facts small {
  color: var(--weather-accent);
  font: 700 10px/1 var(--font-ui);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.weather-condition-facts strong {
  font: 700 14px/1.2 var(--font-ui);
}

.weather-observation-heading {
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.weather-observation-heading span {
  color: var(--weather-accent);
  font: 700 10px/1 var(--font-ui);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.weather-observation-heading time {
  color: rgba(255, 255, 255, .58);
  font: 600 11px/1 var(--font-ui);
  font-variant-numeric: tabular-nums;
}

.weather-scene-stars {
  position: absolute;
  z-index: -1;
  inset: 0 0 58px;
  opacity: .72;
}

.weather-scene-stars i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  box-shadow: 52px 34px 0 rgba(255, 208, 38, .7), 119px 78px 0 rgba(79, 225, 255, .7), 184px 22px 0 rgba(255, 255, 255, .45);
}

.weather-scene-stars i:nth-child(1) { left: 7%; top: 15%; }
.weather-scene-stars i:nth-child(2) { left: 24%; top: 35%; transform: scale(.6); }
.weather-scene-stars i:nth-child(3) { left: 48%; top: 12%; transform: scale(1.25); }
.weather-scene-stars i:nth-child(4) { left: 72%; top: 30%; transform: scale(.7); }
.weather-scene-stars i:nth-child(5) { left: 87%; top: 10%; }
.weather-scene-stars i:nth-child(6) { left: 57%; top: 53%; transform: scale(.5); }
.weather-scene-stars i:nth-child(7) { left: 16%; top: 63%; transform: scale(.8); }
.weather-scene-stars i:nth-child(8) { left: 81%; top: 68%; transform: scale(.55); }

.weather-dashboard:not([data-weather-mood="night"]) .weather-scene-stars {
  opacity: .2;
}

.weather-scene-landscape {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 76px;
  overflow: hidden;
}

.weather-scene-landscape::before,
.weather-scene-landscape::after {
  content: "";
  position: absolute;
  width: 75%;
  height: 80px;
  border-radius: 50% 50% 0 0;
  background: color-mix(in srgb, var(--weather-accent) 34%, #471aa2);
  transform: rotate(-4deg);
}

.weather-scene-landscape::before { left: -13%; top: 20px; }
.weather-scene-landscape::after { right: -18%; top: 29px; opacity: .7; transform: rotate(5deg); }

.weather-scene-landscape i {
  position: absolute;
  z-index: 2;
  bottom: 7px;
  left: 13%;
  width: 0;
  height: 0;
  border-right: 15px solid transparent;
  border-bottom: 43px solid var(--weather-accent);
  border-left: 15px solid transparent;
  filter: drop-shadow(0 6px 0 rgba(22, 8, 69, .45));
  opacity: .7;
}

.weather-scene-landscape i:nth-child(2) { left: 31%; bottom: 1px; transform: scale(.65); }
.weather-scene-landscape i:nth-child(3) { left: 70%; bottom: 0; transform: scale(.85); }
.weather-scene-landscape i:nth-child(4) { left: 87%; bottom: 9px; transform: scale(.55); }

.weather-hourly-card {
  grid-area: hourly;
  min-height: 330px;
}

.weather-hourly-scroll {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: rgba(255, 255, 255, .24) transparent;
}

.weather-hourly-chart {
  width: var(--weather-chart-width);
  height: 116px;
  padding: 12px 0 0;
  border: 0;
}

.weather-hourly-chart svg {
  display: block;
  height: 100%;
  overflow: visible;
}

.weather-hourly-chart path {
  fill: color-mix(in srgb, var(--weather-accent) 12%, transparent);
}

.weather-hourly-chart polyline {
  fill: none;
  stroke: var(--weather-accent);
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.weather-hourly-chart circle {
  fill: #303030;
  stroke: var(--weather-accent);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.weather-hourly {
  display: grid;
  gap: 0;
  border: 0;
}

.weather-hourly>div,
.weather-hourly>div:first-child {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 6px;
  padding: 4px 6px 18px;
  border: 0;
}

.weather-hourly time {
  color: #c5c5c5;
  font: 600 12px/1 var(--font-ui);
}

.weather-hourly img {
  grid-column: 1;
  grid-row: auto;
  width: 27px;
  height: 27px;
  border-radius: 50%;
}

.weather-hourly strong {
  grid-column: 1;
  color: #f4f1eb;
  font: 700 20px/1 var(--font-ui);
}

.weather-hourly small {
  grid-column: 1;
  min-height: 10px;
  color: #5fc4ff;
  font: 700 10px/1 var(--font-ui);
}

.weather-daily-card {
  grid-area: daily;
}

.weather-daily-list {
  padding: 10px 20px 17px;
}

.weather-daily-row {
  display: grid;
  grid-template-columns: minmax(94px, 1.3fr) 34px 42px minmax(110px, 3fr) 42px minmax(120px, 1.5fr);
  align-items: center;
  gap: 12px;
  min-height: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.weather-daily-row:last-child {
  border-bottom: 0;
}

.weather-daily-row>strong {
  font: 700 15px/1 var(--font-ui);
}

.weather-daily-row img {
  width: 29px;
  height: 29px;
  border-radius: 50%;
}

.weather-daily-low,
.weather-daily-high {
  color: #c2c2c2;
  font: 700 16px/1 var(--font-ui);
  font-variant-numeric: tabular-nums;
}

.weather-daily-high {
  color: #f4f1eb;
}

.weather-daily-range {
  position: relative;
  height: 6px;
  border-radius: 99px;
  background: #292929;
}

.weather-daily-range i {
  position: absolute;
  inset: 0 var(--range-end) 0 var(--range-start);
  min-width: 6px;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffd21c, #ff9d16 55%, #ff335f);
}

.weather-daily-row>small {
  overflow: hidden;
  color: #999;
  font: 500 11px/1.3 var(--font-ui);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.weather-daily-empty {
  padding: 28px 20px;
  color: #aaa;
}

.weather-details-card {
  grid-area: details;
}

.weather-detail-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.weather-detail-grid>div {
  display: grid;
  gap: 6px;
  padding: 17px 20px;
  border-right: 1px solid rgba(255, 255, 255, .06);
}

.weather-detail-grid>div:last-child {
  border-right: 0;
}

.weather-detail-grid span {
  color: #8f8f8f;
  font: 700 10px/1 var(--font-ui);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.weather-detail-grid strong {
  overflow: hidden;
  color: #f4f1eb;
  font: 650 15px/1.3 var(--font-ui);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.weather-details-card .weather-alerts {
  margin: 0;
  padding: 0 20px 16px;
}

.weather-details-card .weather-alerts details {
  border-color: rgba(255, 202, 28, .3);
  background: #3a3223;
}

.weather-clear-status {
  margin: 0 20px 16px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: #9d9d9d;
  font: 500 11px/1.35 var(--font-ui);
}

.weather-details-card .weather-source {
  display: block;
  margin: 0;
  padding: 0 20px 18px;
  color: #777;
  font: 500 10px/1.3 var(--font-ui);
  font-style: normal;
}

@media (max-width: 980px) {
  .weather-dashboard {
    grid-template-columns: 1fr;
    grid-template-areas: "current" "hourly" "daily" "details";
  }

  .weather-condition-card {
    min-height: 300px;
  }
}

@media (max-width: 600px) {
  .weather-local-panel {
    padding-inline: 12px;
  }

  .weather-location-bar {
    display: flex;
  }

  .weather-location-bar h2 {
    font-size: 28px;
  }

  .weather-dashboard {
    gap: 12px;
  }

  .weather-local-panel .weather-location-intro {
    margin-top: 22px;
    font-size: 15px;
  }

  .weather-local-panel .weather-location-form {
    grid-template-columns: 1fr;
  }

  .weather-local-panel .weather-location-form button {
    width: 100%;
  }

  .weather-module {
    border-radius: 14px;
  }

  .weather-condition-card {
    min-height: 310px;
    padding-inline: 18px;
  }

  .weather-condition-main {
    gap: 12px;
  }

  .weather-temperature-row {
    align-items: flex-end;
    gap: 10px;
  }

  .weather-feels-like {
    gap: 3px;
    padding-left: 10px;
  }

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

  .weather-detail-grid>div:nth-child(even) {
    border-right: 0;
  }

  .weather-detail-grid>div:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, .06);
  }

  .weather-daily-list {
    padding-inline: 13px;
  }

  .weather-daily-row {
    grid-template-columns: 76px 28px 34px minmax(74px, 1fr) 34px;
    gap: 7px;
  }

  .weather-daily-row>small {
    display: none;
  }

  .daily-channel-now.is-shorts-on-demand {
    border-top: 0;
  }

  .daily-channel-now.is-shorts-on-demand .daily-channel-player-stage {
    width: auto;
    max-width: 100vw;
    height: min(177.7778vw, calc(100dvh - var(--mobile-brand-row-height) - var(--mobile-navigation-height) - env(safe-area-inset-bottom)));
    aspect-ratio: 9 / 16;
    justify-self: center;
    background: #000;
  }

  .daily-channel-now.is-shorts-on-demand .daily-channel-player {
    background: #000;
  }

  .daily-channel-now.is-shorts-on-demand .shorts-navigation-button {
    width: 42px;
    height: 52px;
    background: rgba(7, 17, 14, .52);
    font-size: 32px;
  }

  .daily-channel-now.is-shorts-on-demand .shorts-navigation-button.is-previous {
    left: max(10px, env(safe-area-inset-left));
  }

  .daily-channel-now.is-shorts-on-demand .shorts-navigation-button.is-next {
    right: max(10px, env(safe-area-inset-right));
  }

  .daily-channel-now.is-shorts-on-demand .daily-channel-current {
    min-height: 0;
    padding: 20px 18px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {

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