/*
Theme Name: Astra Child
Template: astra
Version: 1.0
*/
:root {
  --tvguide-blue: #2f6cff;
  --tvguide-blue-hover: #3d78ff;
  --tvguide-blue-pressed: #4a83ff;
  --tvguide-blue-shadow: 0 12px 24px rgba(47,108,255,.24),0 2px 8px rgba(0,0,0,.08);
  --tvguide-blue-shadow-hover: 0 14px 28px rgba(47,108,255,.28),0 3px 10px rgba(0,0,0,.08);
  --tvguide-blue-shadow-active: 0 8px 18px rgba(47,108,255,.25),0 2px 6px rgba(0,0,0,.1);
  --brand-red: #fe4437;
  --accent: var(--tvguide-blue);
  --text: #0f172a;
  --muted: #475569;
  --bg: #ffffff;
  --hairline: rgba(15,23,42,.08);
  --footer-bg: #0b1220;
  --footer-fg: #e5e7eb;
  --footer-muted: #9aa3b2;
  --footer-hairline: rgba(255,255,255,.08);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --radius: 16px;
  --radius-lg: 28px;
  --fs-sm: clamp(14px,1.5vw,20px);
  --fs-base: 20px;
  --fs-lg: clamp(18px,2vw,20px)
;
}

.ott-nav,
.ott-nav *,
.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.ott-nav,
.site-footer {
  width: 100%;
  font: 400 16px/1.5 system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial,sans-serif;
}

.ott-nav a,
.site-footer a {
  color: inherit;
  text-decoration: none;
}

.ott-nav img,
.ott-nav svg,
.site-footer img {
  max-width: 100%;
  height: auto;
  box-shadow: none;
}

.ott-nav a:focus-visible,
.ott-nav button:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

.ott-nav__inner > * {
  min-width: 0;
}

.ott-nav {
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
}

.ott-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px var(--space-6);
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 16px;
}

.ott-nav__brand {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
}

.ott-nav__brand img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  aspect-ratio: 594 / 160;
  object-fit: contain;
}

.ott-nav__links {
  grid-column: 2;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  white-space: nowrap;
}

.ott-nav__links a:not(.ott-nav__search-link) {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 900;
  letter-spacing: .02em;
  opacity: .95;
}

.ott-nav__links a:not(.ott-nav__search-link):hover {
  text-decoration: underline;
}

.ott-nav__search-link,
.ott-nav__search-mobile {
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 0!important;
  border-radius: 999px;
  color: #64748b;
  background: linear-gradient(rgba(248,250,252,0.94),rgba(248,250,252,0.94)) padding-box, conic-gradient(from 180deg,var(--brand-red),#ffd54a,#34d399,var(--tvguide-blue),#c084fc,var(--brand-red)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 8px 18px rgba(15,23,42,0.08),inset 0 1px 0 rgba(255,255,255,0.76);
  transition: transform .08s ease-out,box-shadow .12s ease-out,background .12s ease-out,color .12s ease-out;
}

.ott-nav__search-link {
  display: inline-flex!important;
  flex: 0 0 auto;
  margin-left: 0;
}

.ott-nav__search-mobile {
  grid-column: 2;
  display: inline-flex;
  justify-self: end;
}

.ott-nav__search-link:hover,
.ott-nav__search-mobile:hover,
.ott-nav__search-link:focus-visible,
.ott-nav__search-mobile:focus-visible {
  color: var(--tvguide-blue);
  background: linear-gradient(#ffffff,#ffffff) padding-box, conic-gradient(from 180deg,var(--brand-red),#ffd54a,#34d399,var(--tvguide-blue),#c084fc,var(--brand-red)) border-box;
  box-shadow: 0 12px 24px rgba(47,108,255,0.14),inset 0 1px 0 rgba(255,255,255,0.9);
  text-decoration: none!important;
  transform: translateY(-1px);
}

.ott-nav__search-link:active,
.ott-nav__search-mobile:active {
  transform: translateY(0);
}

.ott-nav__search-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ott-nav__toggle {
  grid-column: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 10px 18px rgba(254,68,55,.22),0 2px 6px rgba(0,0,0,.10);
  cursor: pointer;
  margin-left: 8px;
}

.ott-nav__burger {
  display: block;
  position: relative;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .18s ease,opacity .18s ease;
}

.ott-nav__burger::before,
.ott-nav__burger::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .18s ease,opacity .18s ease;
}

.ott-nav__burger::before {
  position: absolute;
  top: -6px;
}

.ott-nav__burger::after {
  position: absolute;
  top: 6px;
}

.ott-nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(92vw,380px);
  height: 100vh;
  max-height: 100dvh;
  background: #fff;
  border: 0;
  border-left: 1px solid var(--hairline);
  border-radius: 0;
  box-shadow: none;
  overflow-y: auto;
  z-index: 1200;
  transform: translate3d(100%,0,0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: transform,opacity;
  transition: transform .36s cubic-bezier(.16,1,.3,1),opacity .36s cubic-bezier(.16,1,.3,1),visibility 0s linear .36s;
  padding: var(--space-5) var(--space-5) calc(var(--space-5) + env(safe-area-inset-bottom));
}

.ott-nav.is-open .ott-nav__drawer {
  transform: translate3d(0,0,0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.ott-nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.42);
  transition: opacity .25s ease;
  opacity: 0;
  z-index: 1190;
}

.ott-nav__backdrop.is-visible {
  opacity: 1;
}

.ott-nav__close {
  position: absolute;
  top: max(12px,env(safe-area-inset-top));
  right: max(12px,env(safe-area-inset-right));
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: #111827;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
  cursor: pointer;
  z-index: 5;
}

.ott-nav__close::before,
.ott-nav__close::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.ott-nav__close::before {
  transform: rotate(45deg);
}

.ott-nav__close::after {
  transform: rotate(-45deg);
}

.ott-nav__list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: calc(56px + max(12px,env(safe-area-inset-top))) 0 0;
  display: grid;
  gap: 14px;
}

.ott-nav__list > li > a:not(.ott-btn) {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--text);
  font-weight: 900;
}

.ott-nav__list > li > a:not(.ott-btn):hover {
  background: #f7f7fb;
}

.ott-nav.is-open .ott-nav__toggle {
  background: #111827;
}

.ott-nav.is-open .ott-nav__burger {
  background: transparent;
}

.ott-nav.is-open .ott-nav__burger::before {
  transform: translateY(6px) rotate(45deg);
}

.ott-nav.is-open .ott-nav__burger::after {
  transform: translateY(-6px) rotate(-45deg);
}

.ott-nav.is-open .ott-nav__brand,
.ott-nav.is-open .ott-nav__links a,
.ott-nav.is-open .ott-nav__search-mobile {
  pointer-events: none;
}

.ott-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 18px;
  border-radius: 15px;
  font-weight: 800;
  letter-spacing: .02em;
  border: 1px solid transparent;
  line-height: 1;
  transition: transform .08s ease-out,box-shadow .12s ease-out,background-color .12s ease-out,color .12s ease-out,border-color .12s ease-out;
}

.ott-btn--primary {
  background: var(--tvguide-blue);
  color: #fff!important;
  border-color: rgba(0,0,0,.05);
  box-shadow: var(--tvguide-blue-shadow);
}

.ott-btn--primary:hover {
  background: var(--tvguide-blue-hover);
  transform: translateY(-1px);
  box-shadow: var(--tvguide-blue-shadow-hover);
}

.ott-btn--primary:active {
  background: var(--tvguide-blue-pressed);
  transform: translateY(0);
  box-shadow: var(--tvguide-blue-shadow-active);
}

.ott-btn--ghost {
  background: #fff;
  color: var(--tvguide-blue)!important;
  border-color: rgba(47,108,255,.25);
  box-shadow: 0 2px 10px rgba(47,108,255,.12);
}

.ott-btn--ghost:hover {
  background: #f7f9ff;
  transform: translateY(-1px);
}

.ott-btn--ghost:active {
  transform: translateY(0);
}

@media (min-width:1024px) {
  .ott-nav__links {
    display: flex;
  }

  .ott-nav__search-mobile,
  .ott-nav__toggle {
    display: none!important;
  }

  .ott-nav__inner {
    width: min(100%,1290px);
    max-width: 1290px;
    padding-left: clamp(20px,2vw,32px);
    padding-right: clamp(20px,2vw,32px);
    grid-template-columns: auto minmax(0,1fr);
    column-gap: clamp(28px,4vw,64px);
  }

  .ott-nav__links {
    width: min(100%,760px);
    justify-self: end;
    justify-content: space-between;
    gap: clamp(18px,3vw,52px);
    min-width: 0;
  }

  .ott-nav__brand img {
    width: clamp(220px,18vw,285px);
    max-width: none;
    max-height: none;
  }

  .ott-nav__links a:not(.ott-nav__search-link) {
    padding: 9px clamp(6px,.7vw,12px);
    font-size: clamp(14px,.95vw,17px);
  }

}

@media (min-width:1440px) {
  .ott-nav__inner {
    max-width: 1290px;
    padding-left: 24px;
    padding-right: 24px;
    column-gap: 22px;
  }

  .ott-nav__links {
    width: min(100%,820px);
    gap: clamp(18px,2vw,36px);
  }

  .ott-nav__links a:not(.ott-nav__search-link) {
    padding-left: 6px;
    padding-right: 6px;
    font-size: 15px;
    letter-spacing: .016em;
  }

}

@media (min-width:1024px) and (max-width:1279px) {
  .ott-nav__inner {
    column-gap: clamp(12px,1.5vw,18px);
  }

  .ott-nav__links {
    width: min(100%,650px);
    justify-self: end;
    justify-content: space-between;
    gap: clamp(10px,1.4vw,18px);
    white-space: nowrap;
  }

  .ott-nav__links a:not(.ott-nav__search-link) {
    padding: 6px;
    font-size: 14px;
    letter-spacing: .01em;
  }

  .ott-nav__brand img {
    width: clamp(190px,20vw,245px);
    max-width: none;
    max-height: none;
  }
}

@media (max-width:1023.98px) {
  .ott-nav__search-link--desktop {
    display: none!important;
  }

  .ott-nav__inner {
    padding-left: max(12px,env(safe-area-inset-left));
    padding-right: max(12px,env(safe-area-inset-right));
    gap: 10px;
  }

  .ott-nav__brand img {
    width: clamp(148px,34vw,156px);
    max-width: none;
    max-height: none;
  }

  .ott-nav__search-mobile {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .ott-nav__toggle {
    margin-left: 4px;
  }
}

@media (max-width:420px) {
  .ott-nav__inner {
    gap: 6px;
  }

  .ott-nav__brand img {
    width: clamp(134px,35vw,142px);
    max-width: none;
    max-height: none;
  }

  .ott-nav__search-mobile {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .ott-nav__search-icon {
    width: 18px;
    height: 18px;
  }

  .ott-nav__toggle {
    width: 40px;
    height: 38px;
    margin-left: 0;
  }
}

@media (max-width:360px) {
  .ott-nav__brand img {
    width: 124px;
    max-width: none;
    max-height: none;
  }

  .ott-nav__search-mobile {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .ott-nav__toggle {
    width: 42px;
    height: 38px;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion:reduce) {
  .ott-nav__drawer,
  .ott-nav__backdrop {
    transition: none!important;
  }
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-fg);
  border-top: 1px solid var(--footer-hairline);
}

.site-footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-7) var(--space-5);
}

.site-footer__top {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand__logo img {
  height: 80px;
  width: auto;
  display: block;
}

.footer-brand__tagline,
.footer-help__tagline,
.footer-apps__tagline {
  margin-top: var(--space-3);
  color: #ffb855;
  font-size: 22px;
  font-weight: 900;
}

.footer-brand__tagline {
  margin-bottom: 5px;
}

.footer-help__tagline,
.footer-apps__tagline {
  margin: 0;
}

.footer-brand__text {
  max-width: 360px;
  margin: var(--space-2) auto 0;
  color: var(--footer-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.footer-links {
  width: 100%;
}

.footer-links .footer-help {
  margin-bottom: 20px;
}

.footer-links__list {
  display: grid;
  gap: 10px 16px;
  grid-template-columns: repeat(2,minmax(140px,1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links__list a {
  color: var(--footer-fg);
  opacity: .9;
}

.footer-links__list a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-apps {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}

.footer-help {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
}

.footer-help__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.footer-help__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 3px solid transparent;
  padding: .26rem .72rem;
  border-radius: 999px;
  color: rgba(15,23,42,.88)!important;
  background-image: linear-gradient(rgba(250,250,250,.88),#ffffff), linear-gradient(90deg,var(--brand-red),#ffd54a,#34d399,var(--tvguide-blue),#c084fc);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: inset -5px 14px 22px rgba(2,6,23,.16);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  opacity: .98;
  transition: transform .08s ease-out,background-image .12s ease-out,box-shadow .12s ease-out,color .12s ease-out;
}

.footer-help__button:hover {
  color: var(--tvguide-blue)!important;
  background-image: linear-gradient(#ffffff,#ffffff), linear-gradient(90deg,var(--brand-red),#ffd54a,#34d399,var(--tvguide-blue),#c084fc);
  box-shadow: 0 8px 20px rgba(47,108,255,.16), inset -5px 14px 22px rgba(2,6,23,.12);
  text-decoration: none;
  transform: translateY(-1px);
}

.footer-help__button:active {
  transform: translateY(0);
}

.footer-apps__badges {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.footer-apps__tagline--global {
  margin-top: var(--space-3);
}

.footer-apps .app-link {
  display: inline-flex;
  align-items: center;
  border-radius: 14px;
  padding: 0;
  background: transparent;
  box-shadow: 0 4px 18px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .08s ease-out,box-shadow .12s ease-out;
}

.footer-apps .app-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,0,0,.32),inset 0 1px 0 rgba(255,255,255,.06);
}

.footer-apps .app-link:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(0,0,0,.26),inset 0 1px 0 rgba(255,255,255,.05);
}

.footer-apps .app-badge {
  height: var(--footer-badge-h,56px);
  width: auto;
  display: block;
}

.footer-global {
  width: 100%;
}

.footer-global__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-global__list li {
  flex: 0 0 auto;
  line-height: 0;
}

.footer-global__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: transparent;
  opacity: .95;
  line-height: 0;
  transition: transform .08s ease-out,opacity .12s ease-out,filter .12s ease-out;
}

.footer-global__link:hover {
  opacity: 1;
  text-decoration: none;
  transform: translateY(-1px);
  filter: saturate(1.08) brightness(1.05);
}

.footer-global__link:active {
  transform: translateY(0);
}

.footer-global__flag {
  display: block;
  flex: 0 0 auto;
  width: 36px;
  height: 24px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 6px 14px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.22);
}

.site-footer__bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  align-items: center;
  border-top: 0;
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  grid-column: 1 / -1;
}

.site-footer__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg,var(--brand-red),#ffd54a,#34d399,var(--tvguide-blue),#c084fc,var(--brand-red));
  opacity: .95;
}

.footer-legal__copy {
  margin: 0;
  font-size: 14px;
  color: var(--footer-muted);
}

.footer-legal__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: var(--space-4);
}

.footer-legal__links a {
  color: var(--footer-fg);
  opacity: .9;
  font-size: 14px;
}

.footer-legal__links a:hover {
  opacity: 1;
  text-decoration: underline;
}

@media (min-width:720px) {
  .site-footer__top {
    grid-template-columns: 1.2fr 1fr 1.2fr;
  }
}

@media (max-width:540px) {
  .footer-links__list {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
}

/* Weekly TV highlights page ------------------------------------------------ */
.temp-week-site {
  --temp-week-navy: var(--text, #0f172a);
  --temp-week-blue: var(--muted, #475569);
  --temp-week-soft-blue: rgba(47, 108, 255, 0.18);
  --temp-week-red: var(--brand-red, #fe4437);
  --temp-week-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
  --temp-week-card-shadow: 0 20px 55px rgba(20, 41, 91, 0.09);
  background: var(--bg, #ffffff);
  color: var(--text, #0f172a);
  font: 400 16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  padding: clamp(1.5rem, 2vw + 1rem, 3rem) 1.5rem 4rem;
}

.temp-week-site,
.temp-week-site * {
  box-sizing: border-box;
}

.temp-week-site a {
  color: inherit;
  text-decoration: none;
}

.temp-week-site a:focus-visible {
  outline: 3px solid var(--accent, var(--tvguide-blue, #2f6cff));
  outline-offset: 3px;
  border-radius: 8px;
}

.temp-week-site .temp-week-shell {
  width: min(980px, 100%);
  margin: 0 auto;
}

.temp-week-site .temp-week-intro {
  position: relative;
  margin: 0 0 var(--space-5, 24px);
  padding: clamp(1.5rem, 1vw + 1.2rem, 2rem);
  border: 1px solid var(--hairline, rgba(15,23,42,.08));
  border-radius: var(--radius-lg, 28px);
  background: rgba(248,249,251,0.7);
  text-align: center;
  box-shadow: 0 0 7px 2px rgba(0,0,0,0.04), inset 1px 1px 11px 6px rgba(47,108,255,0.06);
}

@supports (backdrop-filter: blur(4px)) {
  .temp-week-site .temp-week-intro {
    backdrop-filter: saturate(140%) blur(4px);
    -webkit-backdrop-filter: saturate(140%) blur(4px);
  }
}

.temp-week-site .temp-week-kicker {
  margin: 0 0 0.75rem;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.temp-week-site .temp-week-title {
  margin: 0 0 0.6rem;
  color: #252525 !important;
  font: 400 16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.55rem, 5.25vw, 4.15rem) !important;
  font-weight: 950 !important;
  letter-spacing: -0.055em !important;
  line-height: 1 !important;
  text-shadow: 0 0 12px #adadadc7 !important;
}

.temp-week-site .temp-week-subtitle {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--text, #0f172a);
  font-size: 1.3rem;
  line-height: 1.4;
}

.temp-week-site .temp-listing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.temp-week-site .temp-listing-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 26px 34px;
  align-items: start;
  overflow: hidden;
  border: 1px solid rgba(12, 35, 87, 0.08);
  border-radius: 28px;
  background: radial-gradient(circle at top right, rgba(94, 167, 255, 0.18), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  box-shadow: 0 20px 55px rgba(20, 41, 91, 0.09);
  padding: clamp(22px, 3.6vw, 38px);
}

.temp-week-site .temp-airing-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  width: 170px;
  min-height: 260px;
  padding: 24px 16px;
  border: 12px solid transparent;
  border-radius: 30px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #ffafa2 0%, #ffdca6 28%, #c9f2e0 52%, #c9d9ff 74%, #d3b9ff 100%) border-box;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
  text-align: center;
}

.temp-week-site .temp-airing-badge > span {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}

.temp-week-site .temp-airing-day {
  display: block;
  color: #60749f;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.temp-week-site .temp-airing-date {
  display: block;
  color: #60749f;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.temp-week-site .temp-airing-time {
  display: block;
  color: #071c57;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1;
  white-space: nowrap;
}

.temp-week-site .temp-airing-network {
  display: block;
  color: #60749f;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.temp-week-site .temp-listing-content {
  min-width: 0;
}

.temp-week-site .temp-listing-image {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: transparent;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.13);
  line-height: 0;
  text-align: left;
  vertical-align: top;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.temp-week-site .temp-listing-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 400px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: inherit;
  object-fit: contain;
  object-position: left center;
  vertical-align: top;
}

.temp-week-site .temp-listing-body {
  padding-top: 24px;
}

.temp-week-site .temp-listing-body h3 {
  margin: 0 0 14px;
  color: #fe4437 !important;
  font-size: clamp(1.35rem, 1.4vw + 1rem, 1.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
}

.temp-week-site .temp-listing-body h3 a {
  color: #fe4437 !important;
}

.temp-week-site .temp-listing-body h3 a,
.temp-week-site .temp-listing-body h3 a:hover,
.temp-week-site .temp-listing-body h3 a:focus,
.temp-week-site .temp-listing-body h3 a:visited {
  text-decoration: none !important;
}

.temp-week-site .temp-listing-image,
.temp-week-site .temp-listing-image:hover,
.temp-week-site .temp-listing-image:focus,
.temp-week-site .temp-more-link,
.temp-week-site .temp-more-link:hover,
.temp-week-site .temp-more-link:focus {
  text-decoration: none !important;
}

.temp-week-site .temp-listing-body p {
  margin: 0;
  color: var(--muted, #475569);
  font-size: 20px;
  line-height: 1.72;
}

.temp-week-site .temp-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 52px;
  margin-top: 28px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(201, 216, 246, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(246, 250, 255, 0.72) 100%);
  box-shadow: 0 16px 28px rgba(18, 48, 113, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #10295f;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.temp-week-site .temp-more-link::after {
  content: "\203A";
  flex: 0 0 auto;
  color: currentColor;
  font-size: 30px;
  font-weight: 900;
  line-height: 0.8;
}

.temp-week-site .temp-more-link:hover,
.temp-week-site .temp-more-link:focus {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 255, 0.9) 100%);
  border-color: rgba(47, 108, 255, 0.45);
  box-shadow: 0 18px 34px rgba(18, 48, 113, 0.12);
  color: #10295f;
  text-decoration: none;
  transform: translateY(-1px);
}

@media (max-width: 780px) {
  .temp-week-site {
    padding: 18px 12px 38px;
  }

  .temp-week-site .temp-week-title {
    text-shadow: 4px 2px 10px #a4a4a4;
  }

  .temp-week-site .temp-week-subtitle {
    font-size: 1.05rem;
  }

  .temp-week-site .temp-listing-card {
    grid-template-columns: 1fr;
    gap: 18px;
    border-radius: 24px;
    padding: 18px;
  }

  .temp-week-site .temp-airing-badge {
    width: min(100%, 170px);
    min-height: 240px;
    margin: 0 auto;
    padding: 22px 14px;
    border-width: 12px;
    border-radius: 30px;
  }

  .temp-week-site .temp-airing-badge > span {
    gap: 4px;
  }

  .temp-week-site .temp-listing-image {
    max-width: 100%;
    border-radius: 20px;
  }

  .temp-week-site .temp-listing-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 260px;
  }

  .temp-week-site .temp-listing-body {
    padding-top: 20px;
  }

  .temp-week-site .temp-listing-body p {
    font-size: 18px;
    line-height: 1.58;
  }
}

/* Weekly TV guide link box and airing badge overrides */
.temp-week-site .temp-airing-badge {
  min-height: 0;
  padding: 28px 18px;
}

.temp-week-site .temp-airing-badge > span {
  width: auto;
  gap: 8px;
  justify-content: center;
}

.temp-week-site .temp-airing-badge br {
  display: none;
}

.temp-week-site .temp-airing-day {
  font-size: 34px;
  line-height: 1;
  margin-top: 0;
}

.temp-week-site .temp-airing-date,
.temp-week-site .temp-airing-time,
.temp-week-site .temp-airing-network {
  font-size: 16px;
  line-height: 1;
  margin-top: 0;
}

.temp-week-site .temp-airing-time {
  letter-spacing: 0;
}

.temp-week-site .temp-airing-network {
  letter-spacing: 0.14em;
}

.temp-week-site .temp-guide-links {
  margin-top: 46px;
  border: 1.5px solid #dce7fb;
  border-radius: 28px;
  background: #f8fbff;
  box-shadow:
    inset 0 0 42px rgba(216, 229, 255, 0.52),
    0 16px 34px rgba(16, 43, 95, 0.08);
  padding: clamp(28px, 4vw, 46px);
  text-align: center;
}

.temp-week-site .temp-guide-links h2 {
  margin: 0 0 16px;
  color: var(--temp-week-navy);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.16;
}

.temp-week-site .temp-guide-links p {
  max-width: 760px;
  margin: 0 auto;
  color: #15213a;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.temp-week-site .temp-guide-links ul {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 10px 28px;
  margin: 24px auto 0;
  padding: 0;
  color: var(--temp-week-blue);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
  list-style-position: inside;
  text-align: left;
}

.temp-week-site .temp-guide-links a {
  color: var(--temp-week-navy);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.temp-week-site .temp-guide-links a:hover,
.temp-week-site .temp-guide-links a:focus {
  color: var(--temp-week-red);
  text-decoration-color: var(--temp-week-red);
}

@media (max-width: 780px) {
  .temp-week-site .temp-airing-badge {
    min-height: 0;
    padding: 28px 18px;
  }

  .temp-week-site .temp-airing-badge > span {
    gap: 4px;
  }

  .temp-week-site .temp-guide-links {
    border-radius: 24px;
    padding: 18px;
  }

  .temp-week-site .temp-guide-links p {
    line-height: 1.52;
  }

  .temp-week-site .temp-guide-links ul {
    grid-template-columns: 1fr;
  }
}

/* What to Watch home page -------------------------------------------------- */
.temp-week-site.what-watch-home .temp-week-shell {
  width: min(980px, 100%);
}

.temp-week-site.what-watch-home .what-watch-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.temp-week-site.what-watch-home .what-watch-home-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(12, 35, 87, 0.08);
  border-radius: 24px;
  background: radial-gradient(circle at top right, rgba(94, 167, 255, 0.14), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  box-shadow: 0 20px 55px rgba(20, 41, 91, 0.09);
  padding: clamp(22px, 3.6vw, 38px);
}

.temp-week-site.what-watch-home .what-watch-home-image {
  display: block;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 26px;
  background: #eef3fb;
  line-height: 0;
}

.temp-week-site.what-watch-home .what-watch-home-image img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  object-fit: cover;
}

.temp-week-site.what-watch-home .what-watch-home-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 0 0;
}

.temp-week-site.what-watch-home .what-watch-home-label {
  margin: 0 0 10px;
  color: #60749f;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.temp-week-site.what-watch-home .what-watch-home-body h2 {
  margin: 0 0 12px;
  color: #fe4437 !important;
  font-size: clamp(1.3rem, 1.1vw + 1rem, 1.65rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.temp-week-site.what-watch-home .what-watch-home-body h2 a,
.temp-week-site.what-watch-home .what-watch-home-body h2 a:hover,
.temp-week-site.what-watch-home .what-watch-home-body h2 a:focus,
.temp-week-site.what-watch-home .what-watch-home-body h2 a:visited {
  color: #fe4437 !important;
  text-decoration: none !important;
}

.temp-week-site.what-watch-home .what-watch-home-body p {
  margin: 0;
  color: var(--muted, #475569);
  font-size: 16px;
  line-height: 1.55;
}

.temp-week-site.what-watch-home .what-watch-home-body > p:not(.what-watch-home-label) {
  margin-bottom: 22px;
}

.temp-week-site.what-watch-home .what-watch-home-body .temp-more-link {
  margin-top: auto;
  font-size: 1rem;
}

@media (max-width: 780px) {
  .temp-week-site.what-watch-home .what-watch-home-card {
    padding: 18px;
  }

  .temp-week-site.what-watch-home .what-watch-home-body {
    padding: 20px 0 0;
  }
}

/* Breadcrumbs -------------------------------------------------------------- */
.breadcrumbs {
  margin: 0 0 24px;
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  font-size: 14px;
  font-weight: 600;
  color: #60749f;
}

.breadcrumbs ol li {
  display: flex;
  align-items: center;
}

.breadcrumbs ol li + li::before {
  content: "›";
  margin-right: 6px;
  color: #9ca3af;
  font-size: 16px;
  line-height: 1;
}

.breadcrumbs ol li a {
  color: var(--tvguide-blue, #2f6cff);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumbs ol li a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs ol li[aria-current="page"] {
  color: #60749f;
}