:root {
  --ctv-ink: #17191d;
  --ctv-paper: #f2f3f4;
  --ctv-white: #ffffff;
  --ctv-line: #dcdfe3;
  --ctv-muted: #6f7480;
  --ctv-cyan: #22c4df;
  --ctv-magenta: #fa0878;
  --ctv-lime: #d7e600;
  --ctv-max: 1180px;
  --ctv-gutter: clamp(18px, 4vw, 48px);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ctv-paper);
  color: var(--ctv-ink);
  font-family: Arial, Helvetica, sans-serif;
}

.woocommerce-store-notice,
p.demo_store {
  position: relative !important;
  margin: 0 !important;
  padding: 14px var(--ctv-gutter) 16px !important;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--ctv-cyan), var(--ctv-magenta), #ff7b22, var(--ctv-lime)) 1;
  background: var(--ctv-ink) !important;
  color: var(--ctv-white) !important;
  font-size: 14px !important;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  box-shadow: none !important;
}

.woocommerce-store-notice__dismiss-link,
p.demo_store a {
  margin-left: 10px;
  color: var(--ctv-cyan) !important;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-transform: uppercase;
  white-space: nowrap;
}

.woocommerce-store-notice__dismiss-link:hover,
.woocommerce-store-notice__dismiss-link:focus-visible,
p.demo_store a:hover {
  color: var(--ctv-lime) !important;
}

@media (max-width: 640px) {
  .woocommerce-store-notice,
  p.demo_store {
    padding: 12px 16px 14px !important;
    font-size: 13px !important;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

.ctv-container {
  width: min(var(--ctv-max), calc(100% - (var(--ctv-gutter) * 2)));
  margin: 0 auto;
}

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

.utility-bar {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto auto;
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
  min-height: 46px;
  padding: 0 var(--ctv-gutter);
  background: var(--ctv-magenta);
  color: var(--ctv-white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-button,
.search-button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: inline-block;
  width: 14px;
  height: 2px;
  background: currentColor;
  vertical-align: middle;
}

.menu-button span {
  position: relative;
  margin-left: 8px;
}

.menu-button span::before,
.menu-button span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-button span::before {
  top: -5px;
}

.menu-button span::after {
  top: 5px;
}

.search-button::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow: 5px 5px 0 -3px currentColor;
}

.account-link {
  justify-self: end;
}

.account-icon-link {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ctv-magenta);
  transition: transform 0.2s ease, background 0.2s ease;
}

.account-icon-link svg {
  display: block;
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.account-icon-link:hover,
.account-icon-link:focus-visible {
  background: var(--ctv-white);
  transform: translateY(-1px);
}

.utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 24px);
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.utility-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--ctv-white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  opacity: 0.92;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.utility-links a:hover,
.utility-links a:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.subscribe-link,
.ctv-advertise-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 18px;
  border-radius: 4px;
  background: var(--ctv-white);
  color: var(--ctv-magenta);
  text-transform: uppercase;
}

.brand-band {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  gap: clamp(18px, 3vw, 46px);
  align-items: center;
  padding: 12px var(--ctv-gutter) 14px;
  background: var(--ctv-white);
}

.brand-mark {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.brand-mark img,
.ctv-logo-image {
  width: clamp(128px, 11vw, 156px);
  height: auto;
}

.ctv-brand-title {
  display: block;
  font-size: clamp(34px, 7vw, 82px);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark span {
  margin: 0;
  color: var(--ctv-cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}

.header-ad-slot {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 74px;
  overflow: hidden;
  padding: 12px 18px;
  border: 1px dashed rgba(23, 25, 29, 0.24);
  background: #fbfaf3;
  color: var(--ctv-ink);
}

.header-ad-slot span {
  color: var(--ctv-magenta);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-ad-slot strong {
  margin-top: 4px;
  font-size: 17px;
  line-height: 1.1;
}

.header-ad-slot small {
  margin-top: 4px;
  color: var(--ctv-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.header-ad-slot--image,
.header-ad-slot--carousel,
.header-ad-slot--adsense {
  padding: 0;
  border-style: solid;
  background: #f8f8f2;
}

.header-ad-slot--image img,
.header-ad-slot--carousel img {
  width: 100%;
  height: 100%;
  min-height: 74px;
  object-fit: cover;
}

.header-ad-slot--carousel img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.header-ad-slot--carousel img.is-active {
  opacity: 1;
}

.header-ad-slot--adsense {
  align-items: center;
  justify-items: center;
  min-width: 0;
}

.header-ad-slot--adsense ins {
  max-width: 100%;
}

.category-nav {
  overflow-x: auto;
  border-top: 1px solid var(--ctv-line);
  border-bottom: 1px solid var(--ctv-line);
  background: var(--ctv-white);
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  user-select: none;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-nav.is-dragging {
  cursor: grabbing;
}

.category-menu,
.ctv-menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: max-content;
  min-width: 100%;
  margin: 0;
  padding: 14px var(--ctv-gutter);
  list-style: none;
  font-weight: 900;
  white-space: nowrap;
}

.category-menu a,
.ctv-menu a {
  display: inline-flex;
  align-items: center;
}

.category-menu .current-menu-item > a,
.category-menu a:hover,
.ctv-menu .current-menu-item > a,
.ctv-menu a:hover {
  color: var(--ctv-magenta);
}

.ctv-primary-nav {
  position: relative;
}

.ctv-mega-menu-item > a {
  position: relative;
  z-index: 4;
}

.ctv-mega-menu-item > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.35;
}

/* "TV en vivo" es una llamada a la acción, no una categoría más: se separa visualmente
   del resto del menú con un botón sólido en vez de un link de texto plano. */
.ctv-menu-live {
  margin-left: 6px;
}

.ctv-menu-live > a {
  min-height: 32px;
  padding: 0 18px;
  background: var(--ctv-magenta);
  border-radius: 999px;
  color: var(--ctv-white);
}

.ctv-menu-live > a:hover,
.ctv-menu-live > a:focus-visible {
  background: var(--ctv-ink);
  color: var(--ctv-white);
}

.ctv-mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 45;
  width: 100%;
  min-width: min(100vw, 100%);
  padding: 0 var(--ctv-gutter) clamp(24px, 2.8vw, 38px);
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.ctv-mega-panel-inner {
  display: grid;
  grid-template-columns: minmax(170px, 0.22fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(22px, 2.6vw, 38px);
  width: min(100%, 1720px);
  margin: 0 auto;
  padding: clamp(22px, 2.5vw, 34px);
  border-top: 5px solid;
  border-image: linear-gradient(90deg, var(--ctv-cyan), var(--ctv-magenta), #ff8a1f, var(--ctv-lime)) 1;
  background:
    linear-gradient(110deg, rgba(34, 196, 223, 0.06), transparent 38%),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.ctv-mega-summary {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 4px;
}

.ctv-mega-summary span,
.ctv-mega-post span {
  color: var(--ctv-magenta);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ctv-mega-summary strong {
  color: var(--ctv-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.5vw, 44px);
  line-height: 0.95;
}

.ctv-mega-summary a {
  width: max-content;
  margin-top: 6px;
  padding: 11px 14px;
  background: var(--ctv-ink);
  color: var(--ctv-white);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ctv-mega-post-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(18px, 2vw, 30px);
}

.ctv-mega-post a {
  display: grid;
  gap: 11px;
  min-width: 0;
}

.ctv-mega-post img {
  width: 100%;
  height: clamp(130px, 11vw, 180px);
  object-fit: cover;
  background: #d9dde2;
}

.ctv-mega-post h3 {
  margin: 0;
  color: var(--ctv-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.15vw, 22px);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.ctv-mega-post time {
  color: var(--ctv-muted);
  font-size: 12px;
  font-weight: 900;
}

.ctv-mega-menu-item:hover > .ctv-mega-panel,
.ctv-mega-menu-item:focus-within > .ctv-mega-panel,
.ctv-mega-menu-item.is-mega-open > .ctv-mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 901px) {
  .ctv-primary-nav {
    overflow: visible;
  }

  .ctv-primary-nav .ctv-menu {
    position: static;
  }

  .ctv-site-header--compact {
    overflow: visible;
  }

  .single-header-nav .ctv-mega-panel {
    position: fixed;
    top: 92px;
  }
}

.ctv-main {
  position: relative;
  z-index: 2;
  padding: 52px 0;
  background: var(--ctv-paper);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.ctv-hero {
  display: grid;
  gap: 14px;
  min-height: 340px;
  align-content: center;
  border-top: 5px solid var(--ctv-cyan);
  background: var(--ctv-white);
  padding: clamp(28px, 6vw, 68px);
}

.ctv-hero span,
.ctv-dev-grid span,
.ctv-post-card span {
  color: var(--ctv-magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ctv-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 8vw, 96px);
  line-height: 0.95;
}

.ctv-hero p {
  max-width: 640px;
  margin: 0;
  color: var(--ctv-muted);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
}

.ctv-dev-grid,
.ctv-post-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: var(--ctv-line);
}

.ctv-dev-grid article,
.ctv-post-card,
.ctv-empty {
  min-height: 220px;
  padding: 28px;
  background: var(--ctv-white);
}

.ctv-dev-grid h2,
.ctv-post-card h2,
.ctv-empty h1 {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.04;
}

.ctv-dev-grid p,
.ctv-post-card p,
.ctv-empty p {
  color: var(--ctv-muted);
  font-weight: 800;
  line-height: 1.45;
}

.ctv-home-editorial {
  width: min(1880px, calc(100% - (var(--ctv-gutter) * 1.4)));
  margin: 0 auto;
}

.home-topline {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(16px, 2vw, 34px);
  align-items: center;
  margin-bottom: 26px;
}

.home-story-rail {
  display: grid;
  grid-template-columns: 44px repeat(3, minmax(180px, 1fr)) 44px;
  gap: clamp(16px, 2vw, 34px);
  align-items: center;
}

.home-topline-arrow {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #dde1e6;
  color: var(--ctv-white);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.home-weather-card {
  position: relative;
  display: grid;
  min-height: 106px;
  padding: 16px 92px 16px 18px;
  overflow: hidden;
  border: 1px solid var(--ctv-line);
  background: var(--ctv-white);
  color: var(--ctv-ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(20, 25, 31, 0.04);
}

.home-weather-card::before,
.home-main-story b,
.home-live-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--ctv-cyan), var(--ctv-magenta), #ff7b22, var(--ctv-lime));
}

.home-weather-card span,
.home-main-story span,
.home-program-card span,
.home-popular-card span,
.home-latest-list article span,
.home-topline-item span {
  color: var(--ctv-magenta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-weather-card span {
  display: inline-flex;
  width: max-content;
  margin-top: 2px;
  padding: 4px 8px;
  border-radius: 3px;
  background: var(--ctv-magenta);
  color: var(--ctv-white);
}

.home-weather-card strong {
  margin-top: 4px;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 0.85;
}

.home-weather-card small {
  color: var(--ctv-muted);
  font-weight: 900;
}

.home-weather-card i {
  position: absolute;
  top: 31px;
  right: 24px;
  width: 56px;
  height: 56px;
  border: 0;
  opacity: 0.78;
}

.home-weather-card i::before,
.home-weather-card i::after {
  content: none;
}

.weather-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.home-topline-item {
  display: grid;
  gap: 6px;
  align-content: start;
  min-height: 106px;
  padding: 4px 0;
}

.home-topline-item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.04;
}

.home-topline-item time {
  color: var(--ctv-ink);
  font-size: 13px;
}

.home-news-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(520px, 1.75fr) minmax(280px, 0.9fr) minmax(310px, 0.95fr);
  gap: clamp(22px, 2vw, 34px);
  align-items: start;
}

.home-latest-list h2,
.home-popular-card > h2 {
  margin: 0;
  font-size: clamp(36px, 3vw, 52px);
  line-height: 0.95;
}

.home-latest-list > p {
  margin: 10px 0 22px;
  max-width: 310px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.home-latest-list article {
  border-top: 1px solid var(--ctv-line);
}

.home-latest-list article a {
  display: grid;
  gap: 8px;
  padding: 18px 0;
}

.home-latest-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.05;
}

.home-latest-list article time {
  display: inline;
  color: var(--ctv-ink);
  font-size: 13px;
}

.home-main-story {
  position: relative;
  display: grid;
  min-height: clamp(560px, 48vw, 760px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(37, 198, 217, 0.18), transparent 30%),
    linear-gradient(135deg, #07131b 0%, #111820 52%, #4a102d 100%);
  color: var(--ctv-white);
}

.home-main-story-carousel {
  isolation: isolate;
}

.home-program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 8, 13, 0) 0%, rgba(3, 8, 13, 0.35) 32%, rgba(3, 8, 13, 0.96) 68%, rgba(3, 8, 13, 0.97) 100%),
    linear-gradient(90deg, rgba(3, 8, 13, 0.72) 0%, rgba(3, 8, 13, 0.28) 46%, rgba(3, 8, 13, 0.08) 100%);
  pointer-events: none;
  z-index: 1;
}

.home-main-story-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 8, 13, 0.1) 0%, rgba(3, 8, 13, 0.12) 38%, rgba(3, 8, 13, 0.88) 100%),
    linear-gradient(90deg, rgba(3, 8, 13, 0.64) 0%, rgba(3, 8, 13, 0.25) 46%, rgba(3, 8, 13, 0.05) 100%);
  pointer-events: none;
}

.home-main-story img,
.home-program-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-main-story img {
  filter: saturate(1.05) contrast(1.05) brightness(0.86);
}

.home-main-story-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  color: inherit;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.025);
  transition: opacity 420ms ease, transform 900ms ease;
}

.home-main-story-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.home-main-story-slide > div {
  position: relative;
  z-index: 3;
  align-self: end;
  width: min(680px, 68%);
  padding: clamp(26px, 4vw, 52px);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.home-main-story-slide > div::before {
  content: "";
  position: absolute;
  inset: 12px 12px 10px;
  z-index: -1;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(2, 8, 14, 0.68), rgba(2, 8, 14, 0.14));
  filter: blur(20px);
}

.home-main-story span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 12px;
  background: var(--ctv-magenta);
  color: var(--ctv-white) !important;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.home-main-story h1 {
  display: -webkit-box;
  max-width: 15ch;
  margin: 16px 0 0;
  overflow: hidden;
  color: var(--ctv-white) !important;
  font-size: clamp(32px, 2.7vw, 48px);
  line-height: 1.04;
  text-wrap: balance;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.78);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-main-story p {
  display: -webkit-box;
  max-width: 560px;
  margin: 16px 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: clamp(15px, 1.05vw, 19px);
  font-weight: 900;
  line-height: 1.35;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.72);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-main-story-meta {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78) !important;
  font-family: var(--ctv-sans);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.72);
}

.home-main-story-controls {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(13, 19, 26, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.home-main-story-controls button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--ctv-white);
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
}

.home-main-story-controls > div {
  display: flex;
  gap: 6px;
}

.home-main-story-controls > div button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.42);
  font-size: 0;
}

.home-main-story-controls button.is-active {
  background: var(--ctv-magenta);
}

.home-side-stack {
  display: grid;
  gap: 24px;
}

.home-live-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(34, 196, 223, 0.7);
  background: var(--ctv-ink);
  color: var(--ctv-white);
}

.home-live-shell {
  background: #0b1118;
}

.home-live-head,
.home-live-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
}

.home-live-head strong {
  font-size: 22px;
  font-weight: 900;
}

.home-live-head span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-live-head span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--ctv-magenta);
  box-shadow: 0 0 0 8px rgba(250, 8, 120, 0.17);
  animation: ctvLivePulse 1.15s ease-in-out infinite;
}

@keyframes ctvLivePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.72);
    opacity: 0.58;
  }
}

.home-live-shell img,
.home-live-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #05070a;
  object-fit: cover;
}

.live-error {
  margin: 0;
  padding: 10px 14px;
  background: rgba(250, 8, 120, 0.14);
  color: var(--ctv-white);
  font-size: 12px;
  font-weight: 900;
}

.home-live-actions button,
.home-live-actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-live-actions button {
  background: var(--ctv-white);
  color: var(--ctv-ink);
}

.home-live-actions a {
  background: var(--ctv-lime);
  color: var(--ctv-ink);
}

.home-live-card h2 {
  margin: 22px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 0.95;
}

.home-live-card p {
  margin: 14px 0 0;
  color: #d8dde4;
  font-weight: 900;
  line-height: 1.35;
}

.home-program-card {
  position: relative;
  display: grid;
  min-height: 300px;
  overflow: hidden;
  color: var(--ctv-white);
}

.home-program-card div {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 24px;
}

.home-program-card span {
  display: inline-flex;
  width: max-content;
  padding: 4px 8px;
  background: var(--ctv-lime);
  color: var(--ctv-ink);
}

.home-program-card strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.3vw, 38px);
  line-height: 0.95;
  text-shadow: 0 2px 14px rgba(3, 8, 13, 0.9), 0 1px 3px rgba(3, 8, 13, 0.95);
}

.home-popular-card article {
  border-top: 1px solid var(--ctv-line);
  background: var(--ctv-white);
}

.home-popular-card > h2 {
  margin-bottom: 20px;
}

.home-popular-card article a {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  padding: 18px;
}

.home-popular-card img {
  width: 86px;
  aspect-ratio: 1;
  object-fit: cover;
}

.home-popular-card h3 {
  margin: 6px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.05vw, 22px);
  line-height: 1.05;
}

.home-popular-card time {
  color: var(--ctv-muted);
  font-size: 13px;
}

.home-commercial-strip {
  display: grid;
  grid-template-columns: minmax(440px, 1.7fr) repeat(3, minmax(160px, 0.62fr)) minmax(170px, 0.55fr);
  margin-top: clamp(52px, 6vw, 96px);
  border: 1px solid var(--ctv-line);
  background: #2e3032;
  color: var(--ctv-white);
}

.home-commercial-strip > * {
  min-height: clamp(210px, 18vw, 320px);
  border-right: 1px solid rgba(255, 255, 255, 0.52);
}

.home-commercial-strip > *:last-child {
  border-right: 0;
}

.home-commercial-intro {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(28px, 4vw, 56px);
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 196, 223, 0.18), transparent 38%),
    radial-gradient(circle at 92% 100%, rgba(250, 8, 120, 0.2), transparent 42%),
    #161c23;
}

.home-commercial-intro span,
.home-commercial-stat span {
  color: var(--ctv-cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-commercial-intro h2 {
  max-width: 620px;
  margin: 0;
  color: var(--ctv-white);
  font-size: clamp(34px, 3vw, 52px);
  line-height: 0.96;
}

.home-commercial-stat {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
  background: #303234;
}

.home-commercial-stat:nth-of-type(2) span {
  color: var(--ctv-magenta);
}

.home-commercial-stat:nth-of-type(4) span {
  color: var(--ctv-lime);
}

.home-commercial-stat strong {
  color: var(--ctv-white);
  font-size: clamp(52px, 4.6vw, 82px);
  line-height: 0.82;
}

.home-commercial-stat p {
  max-width: 210px;
  margin: 0;
  color: #d1d5db;
  font-size: clamp(19px, 1.5vw, 28px);
  font-weight: 800;
  line-height: 1.08;
}

.home-commercial-cta {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(22px, 3vw, 36px);
  background: var(--ctv-lime);
  color: var(--ctv-ink);
  font-size: clamp(22px, 1.7vw, 32px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.home-commercial-cta:hover {
  background: var(--ctv-magenta);
  color: var(--ctv-white);
}

.home-ad-banner {
  position: relative;
  display: grid;
  min-height: clamp(120px, 12vw, 190px);
  align-content: center;
  margin: clamp(24px, 3vw, 42px) 0 clamp(48px, 5vw, 80px);
  overflow: hidden;
  border: 1px dashed rgba(23, 25, 29, 0.24);
  background:
    linear-gradient(120deg, rgba(34, 196, 223, 0.08), transparent 32%),
    #fbfaf3;
  color: var(--ctv-ink);
  padding: clamp(24px, 4vw, 48px);
}

.home-ad-banner span {
  color: var(--ctv-magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-ad-banner strong {
  max-width: 980px;
  margin-top: 8px;
  font-size: clamp(26px, 3vw, 52px);
  line-height: 0.98;
}

.home-ad-banner small {
  margin-top: 10px;
  color: var(--ctv-muted);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-ad-banner--image,
.home-ad-banner--carousel,
.home-ad-banner--adsense {
  padding: 0;
  border-style: solid;
  background: #f8f8f2;
}

.home-ad-banner--image img,
.home-ad-banner--carousel img {
  width: 100%;
  height: 100%;
  min-height: clamp(120px, 12vw, 190px);
  object-fit: cover;
}

.home-ad-banner--carousel img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.home-ad-banner--carousel img.is-active {
  opacity: 1;
}

.home-ad-banner--adsense {
  align-items: center;
  justify-items: center;
  min-width: 0;
}

.home-ad-banner--adsense ins {
  max-width: 100%;
}

.programming-ad-section {
  width: min(1600px, calc(100% - (var(--ctv-gutter) * 2)));
  margin: clamp(26px, 4vw, 58px) auto;
}

.programming-ad-section + .home-epg-section {
  margin-top: clamp(26px, 4vw, 58px);
}

.programming-ad-section .programming-ad {
  margin: 0;
}

.programming-ad-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  width: min(1600px, calc(100% - (var(--ctv-gutter) * 2)));
  margin: clamp(32px, 5vw, 70px) auto;
}

.programming-ad-pair .programming-ad-section {
  width: 100%;
  margin: 0;
}

.programming-ad-pair .home-ad-banner {
  min-height: clamp(170px, 15vw, 250px);
}

.ctv-programming-page .home-epg-section + .programming-ad-section {
  margin-top: clamp(32px, 5vw, 70px);
}

.home-agenda-section {
  margin-top: clamp(44px, 6vw, 96px);
  padding-top: clamp(42px, 5vw, 82px);
  border-top: 1px solid var(--ctv-line);
}

.home-agenda-head {
  display: grid;
  grid-template-columns: minmax(210px, 0.58fr) minmax(520px, 1.42fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 56px);
}

.home-agenda-head span,
.home-agenda-feature span,
.home-agenda-card span {
  color: var(--ctv-magenta);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-agenda-head > span {
  color: var(--ctv-cyan);
  transform: translateY(-10px);
}

.home-agenda-head h2 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(54px, 5vw, 92px);
  line-height: 0.94;
}

.home-agenda-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(640px, 1.12fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--ctv-line);
  background: var(--ctv-line);
}

.home-agenda-feature,
.home-agenda-card {
  min-width: 0;
  background: var(--ctv-white);
}

.home-agenda-feature a,
.home-agenda-card a {
  display: grid;
  height: 100%;
  color: inherit;
}

.home-agenda-feature a {
  grid-template-rows: auto 1fr;
  background:
    radial-gradient(circle at 18% 12%, rgba(34, 196, 223, 0.11), transparent 34%),
    linear-gradient(135deg, #f1fbff 0%, #fff0f8 100%);
}

.home-agenda-feature img,
.home-agenda-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.home-agenda-feature div {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(28px, 4vw, 54px);
}

.home-agenda-feature h3,
.home-agenda-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
}

.home-agenda-feature h3 {
  max-width: 760px;
  font-size: clamp(34px, 3.6vw, 60px);
}

.home-agenda-feature p {
  max-width: 720px;
  margin: 0;
  color: var(--ctv-muted);
  font-size: clamp(18px, 1.45vw, 25px);
  font-weight: 900;
  line-height: 1.32;
}

.home-agenda-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--ctv-line);
}

.home-agenda-card a {
  grid-template-rows: auto 1fr;
}

.home-agenda-card div {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: clamp(250px, 19vw, 380px);
  padding: clamp(26px, 3vw, 44px);
}

.home-agenda-card h3 {
  font-size: clamp(26px, 2.2vw, 42px);
}

.home-agenda-card:hover h3,
.home-agenda-feature:hover h3 {
  color: var(--ctv-magenta);
}

.home-inline-ads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 34px);
  margin: clamp(52px, 6vw, 96px) 0 clamp(70px, 8vw, 132px);
}

.home-inline-ad {
  position: relative;
  display: grid;
  min-height: clamp(150px, 13vw, 240px);
  align-content: center;
  overflow: hidden;
  border: 1px dashed rgba(23, 25, 29, 0.24);
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 196, 223, 0.12), transparent 34%),
    linear-gradient(135deg, #fffef8, #f7fbfb);
  color: var(--ctv-ink);
  padding: clamp(24px, 3.2vw, 46px);
}

.home-inline-ad span {
  color: var(--ctv-magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-inline-ad strong {
  max-width: 620px;
  margin-top: 8px;
  font-size: clamp(25px, 2.5vw, 44px);
  line-height: 0.98;
}

.home-inline-ad small {
  margin-top: 10px;
  color: var(--ctv-muted);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-inline-ad--image,
.home-inline-ad--carousel,
.home-inline-ad--adsense {
  padding: 0;
  border-style: solid;
  background: #f8f8f2;
}

.home-inline-ad--image img,
.home-inline-ad--carousel img {
  width: 100%;
  height: 100%;
  min-height: clamp(150px, 13vw, 240px);
  object-fit: cover;
}

.home-inline-ad--carousel img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.home-inline-ad--carousel img.is-active {
  opacity: 1;
}

.home-inline-ad--adsense {
  align-items: center;
  justify-items: center;
  min-width: 0;
}

.home-radar-section {
  margin-top: clamp(60px, 8vw, 140px);
  padding-top: clamp(54px, 7vw, 118px);
  border-top: 1px solid var(--ctv-line);
}

.home-radar-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(560px, 1.42fr);
  gap: clamp(34px, 6vw, 104px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 72px);
}

.home-radar-head span,
.home-radar-card span {
  color: var(--ctv-magenta);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-radar-head > span {
  color: var(--ctv-cyan);
  transform: translateY(-12px);
}

.home-radar-head h2 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(50px, 4.8vw, 86px);
  line-height: 0.94;
}

.home-radar-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, minmax(0, 0.78fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--ctv-line);
  background: var(--ctv-line);
}

.home-radar-card {
  min-width: 0;
  background: var(--ctv-white);
}

.home-radar-card a {
  position: relative;
  display: grid;
  height: 100%;
  min-height: clamp(370px, 30vw, 520px);
  color: inherit;
}

.home-radar-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.home-radar-card div {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(24px, 2.8vw, 42px);
}

.home-radar-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 1.95vw, 36px);
  line-height: 0.98;
}

.home-radar-card p {
  margin: 0;
  color: var(--ctv-muted);
  font-size: clamp(16px, 1.12vw, 20px);
  font-weight: 900;
  line-height: 1.36;
}

.home-radar-card--lead {
  grid-column: span 1;
}

.home-radar-card--lead a,
.home-radar-card--wide a {
  overflow: hidden;
  color: var(--ctv-white);
}

.home-radar-card--lead img,
.home-radar-card--wide img {
  position: absolute;
  inset: 0;
  height: 100%;
  aspect-ratio: auto;
  filter: brightness(0.58);
}

.home-radar-card--lead div,
.home-radar-card--wide div {
  position: relative;
  z-index: 1;
  align-self: end;
}

.home-radar-card--lead span,
.home-radar-card--wide span {
  color: var(--ctv-lime);
}

.home-radar-card--lead h3,
.home-radar-card--wide h3 {
  color: var(--ctv-white);
  font-size: clamp(34px, 3.1vw, 54px);
}

.home-radar-card--lead p,
.home-radar-card--wide p {
  max-width: 760px;
  color: #e5e7eb;
}

.home-radar-card--wide {
  grid-column: span 2;
}

.home-radar-card:hover h3 {
  color: var(--ctv-magenta);
}

.home-radar-card--lead:hover h3,
.home-radar-card--wide:hover h3 {
  color: var(--ctv-white);
}

.home-triple-ads {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 30px);
  margin: clamp(52px, 6vw, 98px) 0 clamp(58px, 7vw, 116px);
}

.home-triple-ad {
  position: relative;
  display: grid;
  min-height: clamp(140px, 12vw, 220px);
  align-content: center;
  overflow: hidden;
  border: 1px dashed rgba(23, 25, 29, 0.24);
  background:
    radial-gradient(circle at 0% 0%, rgba(250, 8, 120, 0.09), transparent 38%),
    #fffef8;
  color: var(--ctv-ink);
  padding: clamp(22px, 2.8vw, 38px);
}

.home-triple-ad span {
  color: var(--ctv-magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-triple-ad strong {
  max-width: 460px;
  margin-top: 8px;
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 0.98;
}

.home-triple-ad small {
  margin-top: 10px;
  color: var(--ctv-muted);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-triple-ad--image,
.home-triple-ad--carousel,
.home-triple-ad--adsense {
  padding: 0;
  border-style: solid;
  background: #f8f8f2;
}

.home-triple-ad--image img,
.home-triple-ad--carousel img {
  width: 100%;
  height: 100%;
  min-height: clamp(140px, 12vw, 220px);
  object-fit: cover;
}

.home-triple-ad--carousel img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.home-triple-ad--carousel img.is-active {
  opacity: 1;
}

.home-triple-ad--adsense {
  align-items: center;
  justify-items: center;
  min-width: 0;
}

.home-triple-ads--post-faith {
  margin-top: clamp(38px, 5vw, 72px);
}

.home-category-carousel-section {
  margin: clamp(52px, 7vw, 118px) 0 clamp(58px, 7vw, 116px);
  padding: clamp(22px, 2.6vw, 38px);
  background: #e8eaec;
}

.home-category-carousel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(22px, 2.4vw, 36px);
}

.home-category-carousel-head span,
.home-category-carousel-card span {
  color: var(--ctv-magenta);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-category-carousel-head h2 {
  max-width: 980px;
  margin: 10px 0 0;
  font-size: clamp(34px, 4vw, 72px);
  line-height: 0.95;
}

.home-category-carousel-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.home-category-carousel-actions button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ctv-white);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  background: var(--ctv-ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.home-category-carousel-actions button:hover,
.home-category-carousel-actions button:focus-visible {
  color: var(--ctv-ink);
  background: var(--ctv-lime);
}

.home-category-carousel {
  display: grid;
  grid-auto-columns: minmax(360px, calc((100% - 2px) / 3));
  grid-auto-flow: column;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border: 1px solid var(--ctv-line);
  background: var(--ctv-line);
  cursor: grab;
}

.home-category-carousel::-webkit-scrollbar {
  display: none;
}

.home-category-carousel.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.home-category-carousel-card {
  min-width: 0;
  scroll-snap-align: start;
  background: var(--ctv-white);
}

.home-category-carousel-card a {
  display: grid;
  height: 100%;
  min-height: clamp(520px, 36vw, 650px);
  color: inherit;
}

.home-category-carousel-card img {
  width: 100%;
  aspect-ratio: 16 / 6.2;
  object-fit: cover;
}

.home-category-carousel-card div {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(28px, 3.1vw, 54px);
}

.home-category-carousel-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 52px);
  line-height: 0.96;
}

.home-category-carousel-card p {
  margin: 0;
  color: var(--ctv-muted);
  font-size: clamp(17px, 1.35vw, 24px);
  font-weight: 900;
  line-height: 1.34;
}

.home-category-carousel-card:hover h3 {
  color: var(--ctv-magenta);
}

.home-international-section {
  padding: clamp(24px, 3vw, 44px);
  background:
    linear-gradient(135deg, rgba(34, 196, 223, 0.06), rgba(250, 8, 120, 0.04) 48%, rgba(218, 242, 0, 0.05)),
    #eceeef;
}

.home-international-section .home-category-carousel-head {
  align-items: center;
  margin-bottom: clamp(20px, 2.2vw, 32px);
}

.home-international-section .home-category-carousel-head h2 {
  max-width: 760px;
  font-size: clamp(34px, 3.1vw, 56px);
  line-height: 0.98;
}

.home-international-carousel {
  grid-auto-columns: minmax(260px, calc((100% - 3px) / 4));
  border: 0;
  gap: 1px;
  background: rgba(23, 25, 29, 0.12);
}

.home-international-card {
  min-height: 0;
  border: 1px solid rgba(23, 25, 29, 0.08);
  box-shadow: 0 18px 44px rgba(23, 25, 29, 0.04);
}

.home-international-card a {
  min-height: clamp(420px, 31vw, 500px);
  grid-template-rows: auto 1fr;
  text-decoration: none;
}

.home-international-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  background: #dfe3e7;
}

.home-international-card div {
  gap: 14px;
  padding: clamp(20px, 2vw, 30px);
}

.home-international-card h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: clamp(22px, 1.55vw, 30px);
  line-height: 1.02;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.home-international-card p {
  display: -webkit-box;
  overflow: hidden;
  color: #737985;
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-international-card time {
  align-self: end;
  color: #8c929c;
  font-size: 13px;
  font-weight: 900;
}

.programming-latest-section {
  margin: clamp(64px, 8vw, 118px) 0 clamp(46px, 7vw, 86px);
  padding: clamp(18px, 2.2vw, 30px);
  background:
    linear-gradient(135deg, rgba(34, 196, 223, 0.08), rgba(250, 8, 120, 0.06) 42%, rgba(218, 242, 0, 0.09)),
    #eef0f2;
  border-top: 1px solid rgba(23, 25, 29, 0.08);
}

.programming-latest-section .home-category-carousel-head h2 {
  max-width: 780px;
  font-size: clamp(34px, 4.4vw, 64px);
}

.programming-latest-carousel {
  grid-auto-columns: minmax(320px, calc((100% - 2px) / 3));
  border-color: rgba(23, 25, 29, 0.12);
  background: rgba(23, 25, 29, 0.12);
}

.programming-latest-card a {
  min-height: clamp(430px, 31vw, 560px);
}

.programming-latest-card img {
  aspect-ratio: 16 / 7.3;
}

.programming-latest-card div {
  gap: 14px;
  padding: clamp(24px, 2.7vw, 42px);
}

.programming-latest-card h3 {
  font-size: clamp(28px, 2.55vw, 44px);
}

.programming-latest-card p {
  font-size: clamp(15px, 1.15vw, 20px);
}

.programming-latest-card time {
  color: var(--ctv-muted);
  font-size: 14px;
  font-weight: 900;
}

.home-faith-section {
  margin: clamp(64px, 8vw, 136px) 0 clamp(64px, 8vw, 128px);
  padding-top: clamp(44px, 5vw, 76px);
  border-top: 1px solid var(--ctv-line);
}

.home-faith-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 90px);
  align-items: end;
  margin-bottom: clamp(30px, 3.8vw, 54px);
}

.home-faith-head > span,
.home-faith-lead span,
.home-faith-program span {
  color: var(--ctv-cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-faith-head h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(42px, 4.7vw, 82px);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.home-faith-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1.68fr);
  gap: 1px;
  overflow: clip;
  border: 1px solid var(--ctv-line);
  background: var(--ctv-line);
}

.home-faith-lead,
.home-faith-posts,
.home-faith-program {
  min-width: 0;
}

.home-faith-lead {
  background: #111316;
}

.home-faith-lead a {
  position: relative;
  display: grid;
  min-height: clamp(560px, 39vw, 740px);
  height: 100%;
  overflow: hidden;
  color: var(--ctv-white);
}

.home-faith-lead img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.56) saturate(0.92);
}

.home-faith-lead div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(30px, 4.2vw, 58px);
}

.home-faith-lead span,
.home-faith-program span {
  color: var(--ctv-lime);
}

.home-faith-lead h3 {
  max-width: 740px;
  margin: 0;
  color: var(--ctv-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.15vw, 74px);
  line-height: 0.94;
  overflow-wrap: anywhere;
}

.home-faith-lead p {
  max-width: 720px;
  margin: 0;
  color: #eef2f7;
  font-size: clamp(17px, 1.35vw, 23px);
  font-weight: 900;
  line-height: 1.38;
}

.home-faith-posts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1px;
  background: var(--ctv-line);
}

.home-faith-post-card {
  background: #fffdf8;
}

.home-faith-post-card a {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 14px;
  height: 100%;
  padding: clamp(14px, 1.4vw, 20px);
  color: var(--ctv-ink);
}

.home-faith-post-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.home-faith-post-card span {
  color: var(--ctv-magenta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-faith-post-card h3 {
  margin: 6px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.home-faith-post-card:hover h3 {
  color: var(--ctv-magenta);
}

.home-faith-programs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  border: 1px solid var(--ctv-line);
  border-top: 0;
  background: var(--ctv-line);
}

.home-faith-program {
  background: #15171a;
}

.home-faith-program a {
  display: grid;
  align-content: center;
  min-height: clamp(190px, 15vw, 260px);
  height: 100%;
  padding: clamp(30px, 3.2vw, 52px);
  color: var(--ctv-white);
}

.home-faith-program--2 a {
  background:
    radial-gradient(circle at 0% 0%, rgba(250, 8, 120, 0.18), transparent 42%),
    #071120;
}

.home-faith-program h3 {
  margin: 16px 0 14px;
  color: var(--ctv-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 3.8vw, 68px);
  line-height: 0.94;
  overflow-wrap: anywhere;
}

.home-faith-program p {
  max-width: 680px;
  margin: 0;
  color: #d7dde5;
  font-size: clamp(16px, 1.25vw, 22px);
  font-weight: 900;
  line-height: 1.36;
}

.ctv-site-header--compact {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.single-header-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(22px, 3vw, 54px);
  align-items: center;
  min-height: 92px;
  padding: 0 var(--ctv-gutter);
}

.single-header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.single-header-brand .ctv-logo-image {
  width: 74px;
  flex: 0 0 auto;
}

.single-header-brand span {
  color: var(--ctv-cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.single-header-nav {
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.single-header-nav::-webkit-scrollbar {
  display: none;
}

.single-header-nav .category-menu,
.single-header-nav .ctv-menu {
  justify-content: center;
  min-width: max-content;
  padding: 0;
  border: 0;
  gap: clamp(18px, 2.1vw, 34px);
}

.single-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 30px);
  white-space: nowrap;
}

.single-header-actions .search-button,
.single-header-actions .account-link {
  color: var(--ctv-ink);
  font-size: 14px;
  font-weight: 900;
  text-transform: none;
}

.single-post-page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: clamp(42px, 4vw, 70px) 0 clamp(100px, 9vw, 150px);
  background: var(--ctv-paper);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.single-prelude {
  display: grid;
  gap: clamp(24px, 3vw, 42px);
  width: min(1800px, calc(100% - (var(--ctv-gutter) * 2)));
  margin: 0 auto clamp(36px, 4vw, 62px);
}

.single-back-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 22px;
  background: var(--ctv-ink);
  color: var(--ctv-white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.single-back-link:hover,
.single-back-link:focus-visible {
  background: var(--ctv-magenta);
  color: var(--ctv-white);
}

.single-top-ad {
  min-height: clamp(100px, 8vw, 150px);
  margin: 0;
  justify-items: center;
  text-align: center;
}

.single-top-ad strong {
  max-width: 960px;
  font-size: clamp(20px, 1.8vw, 34px);
  line-height: 1.05;
}

.single-top-ad--image img,
.single-top-ad--carousel img {
  min-height: clamp(100px, 8vw, 150px);
}

.single-post-grid {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(28px, 4vw, 64px);
  width: min(1520px, calc(100% - (var(--ctv-gutter) * 2)));
  margin: 0 auto;
}

.single-share-rail {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 16px;
  align-self: start;
  justify-items: center;
}

.single-share-rail a {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 999px;
  background: var(--ctv-white);
  color: var(--ctv-ink);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(20, 25, 31, 0.08);
}

.single-share-rail a:hover,
.single-share-rail a:focus-visible {
  background: var(--ctv-magenta);
  color: var(--ctv-white);
}

.single-article {
  min-width: 0;
}

.single-article-header {
  display: grid;
  gap: clamp(18px, 2vw, 30px);
}

.single-date {
  color: var(--ctv-muted);
  font-size: clamp(15px, 1.1vw, 21px);
  font-weight: 900;
}

.single-article h1 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(44px, 4.85vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.single-deck {
  max-width: 960px;
  margin: 0;
  color: #5f6570;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 900;
  line-height: 1.28;
}

.single-author {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}

.single-author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
}

.single-author div {
  display: grid;
  gap: 4px;
}

.single-author strong {
  font-size: 18px;
  font-weight: 900;
}

.single-author span {
  color: var(--ctv-muted);
  font-size: 16px;
  font-weight: 700;
}

.single-featured {
  margin: clamp(34px, 4vw, 58px) 0;
}

.single-featured img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.single-featured figcaption {
  border-left: 4px solid var(--ctv-pink);
  color: var(--ctv-muted);
  font-family: var(--ctv-sans);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  margin-top: 14px;
  padding-left: 14px;
}

.single-entry-content {
  max-width: 980px;
  color: #262a31;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 1.55vw, 28px);
  line-height: 1.62;
}

.single-entry-content .unitasco-rss-external-note,
.single-entry-content .ctv-rss-external-note,
.single-article.tag-rss-externo .single-entry-content > p:last-child {
  max-width: 760px;
  color: #7b828d;
  font-family: var(--ctv-sans);
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.single-entry-content .unitasco-rss-external-note em,
.single-entry-content .ctv-rss-external-note em,
.single-article.tag-rss-externo .single-entry-content > p:last-child em {
  font-style: normal;
}

.single-entry-content .unitasco-rss-image-credit {
  max-width: 760px;
  color: #7b828d;
  font-family: var(--ctv-sans);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.45;
  text-transform: none;
}

.single-entry-content .unitasco-rss-image-credit strong {
  font-weight: 850;
}

.single-entry-content .unitasco-ai-original-disclosure {
  max-width: 760px;
  color: #7b828d;
  font-family: var(--ctv-sans);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.single-entry-content > * {
  margin-top: 0;
  margin-bottom: 1.3em;
}

.single-entry-content h2,
.single-entry-content h3 {
  margin-top: 1.6em;
  color: var(--ctv-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
}

.single-entry-content h2 {
  font-size: clamp(38px, 4vw, 72px);
}

.single-entry-content h3 {
  font-size: clamp(30px, 3vw, 52px);
}

.single-entry-content blockquote {
  margin-left: 0;
  padding: clamp(24px, 3vw, 38px);
  border-left: 8px solid var(--ctv-magenta);
  background: var(--ctv-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 900;
  line-height: 1.12;
}

.single-editorial-footer {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  max-width: 980px;
  margin-top: clamp(42px, 5vw, 76px);
}

.single-taxonomy {
  display: grid;
  gap: 12px;
}

.single-taxonomy div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.single-taxonomy span {
  color: var(--ctv-magenta);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.single-taxonomy a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(20, 23, 28, 0.11);
  background: var(--ctv-white);
  color: var(--ctv-ink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 0 12px;
  text-decoration: none;
  text-transform: uppercase;
}

.single-taxonomy a:hover,
.single-taxonomy a:focus-visible {
  border-color: var(--ctv-magenta);
  color: var(--ctv-magenta);
}

.single-rss-context {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: stretch;
  margin-top: 4px;
}

.single-rss-context > span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: var(--ctv-cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.single-rss-context b {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(20, 23, 28, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ctv-ink);
  font-family: var(--ctv-sans);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  padding: 0 12px;
  text-transform: uppercase;
}

.single-rss-context small {
  color: var(--ctv-magenta);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.single-post-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(20, 23, 28, 0.12);
  border: 1px solid rgba(20, 23, 28, 0.1);
}

.single-post-navigation div {
  min-width: 0;
  background: var(--ctv-white);
}

.single-post-navigation a {
  display: grid;
  gap: 10px;
  min-height: 150px;
  align-content: end;
  color: var(--ctv-ink);
  padding: clamp(20px, 3vw, 34px);
  text-decoration: none;
}

.single-post-navigation span,
.single-related-posts > span {
  color: var(--ctv-magenta);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.single-post-navigation strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1;
}

.single-post-navigation a:hover strong,
.single-post-navigation a:focus-visible strong {
  color: var(--ctv-magenta);
}

.single-related-posts {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin-top: clamp(54px, 6vw, 92px);
}

.single-related-posts h2 {
  margin: 0;
  color: var(--ctv-ink);
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 950;
  line-height: 0.92;
}

.single-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(20, 23, 28, 0.12);
  border: 1px solid rgba(20, 23, 28, 0.1);
}

.single-related-grid .ctv-editorial-card-body {
  padding: 22px;
}

.single-related-grid .ctv-editorial-card h2 {
  font-size: clamp(20px, 2vw, 28px);
}

.ctv-comments-area {
  max-width: 980px;
  margin-top: clamp(58px, 6vw, 96px);
  border-top: 6px solid transparent;
  border-image: linear-gradient(90deg, var(--ctv-cyan), var(--ctv-magenta), #ff7b22, var(--ctv-lime)) 1;
  background: var(--ctv-white);
  font-family: Arial, Helvetica, sans-serif;
}

.ctv-comments-header {
  display: grid;
  gap: 14px;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid var(--ctv-line);
  border-top: 0;
}

.ctv-comments-header span,
.ctv-comment-status,
.ctv-comment-notes,
.ctv-comment-login-state,
.ctv-comment-form label {
  font-weight: 950;
}

.ctv-comments-header span,
.ctv-comment-status {
  color: var(--ctv-magenta);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ctv-comments-header h2 {
  margin: 0;
  color: var(--ctv-ink);
  font-size: clamp(36px, 4vw, 70px);
  line-height: 0.95;
}

.ctv-comments-header p {
  max-width: 720px;
  margin: 0;
  color: var(--ctv-muted);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.45;
}

.ctv-comment-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--ctv-line);
  border-inline: 1px solid var(--ctv-line);
}

.ctv-comment-list .children {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0 0 0 clamp(18px, 4vw, 58px);
  list-style: none;
  background: var(--ctv-line);
}

.ctv-comment-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: clamp(22px, 2.4vw, 34px);
  background: #fffef8;
}

.ctv-comment-avatar {
  overflow: hidden;
  width: 72px;
  height: 72px;
  border: 3px solid var(--ctv-cyan);
  border-radius: 999px;
  background: #eef3f5;
}

.ctv-comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ctv-comment-body {
  min-width: 0;
}

.ctv-comment-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.ctv-comment-head strong {
  display: block;
  color: var(--ctv-ink);
  font-size: 20px;
  font-weight: 950;
}

.ctv-comment-head time {
  display: block;
  margin-top: 4px;
  color: var(--ctv-muted);
  font-size: 13px;
  font-weight: 850;
}

.ctv-comment-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 0, 123, 0.1);
  padding: 5px 12px;
}

.ctv-comment-text {
  margin-top: 16px;
  color: #262a31;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.55;
}

.ctv-comment-text > * {
  margin-top: 0;
  margin-bottom: 1em;
}

.ctv-comment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.ctv-comment-actions a {
  color: var(--ctv-magenta);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ctv-comment-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--ctv-line);
  border-top: 0;
  background: var(--ctv-white);
}

.ctv-comment-pagination a,
.ctv-comment-pagination span {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ctv-line);
  padding: 0 14px;
  color: var(--ctv-ink);
  font-size: 13px;
  font-weight: 950;
}

.ctv-comment-pagination .current,
.ctv-comment-pagination a:hover {
  border-color: var(--ctv-magenta);
  background: var(--ctv-magenta);
  color: var(--ctv-white);
}

.ctv-comments-empty,
.ctv-comments-closed,
.ctv-comment-login-state {
  border: 1px solid var(--ctv-line);
  border-top: 0;
  background: #fffef8;
  padding: clamp(22px, 2.4vw, 34px);
}

.ctv-comments-empty strong {
  display: block;
  color: var(--ctv-ink);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 950;
  line-height: 1;
}

.ctv-comments-empty p,
.ctv-comments-closed {
  margin: 8px 0 0;
  color: var(--ctv-muted);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.45;
}

.ctv-comment-form-wrap {
  border: 1px solid var(--ctv-line);
  border-top: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 196, 223, 0.09), transparent 34%),
    #fffef8;
}

.ctv-comment-login-state {
  margin: 0;
  border-inline: 0;
  color: var(--ctv-muted);
  font-size: 15px;
  line-height: 1.45;
}

.ctv-comment-login-state strong,
.ctv-comment-login-state a {
  color: var(--ctv-magenta);
}

.ctv-comment-form-container {
  padding: clamp(26px, 3vw, 42px);
}

.ctv-comment-reply-title {
  margin: 0 0 12px;
  color: var(--ctv-ink);
  font-size: clamp(30px, 3vw, 52px);
  line-height: 1;
}

.ctv-comment-notes {
  margin: 0 0 22px;
  color: var(--ctv-muted);
  font-size: 14px;
  line-height: 1.45;
}

.ctv-comment-form {
  display: grid;
  gap: 18px;
}

.ctv-comment-form p {
  margin: 0;
}

.ctv-comment-form .comment-form-author,
.ctv-comment-form .comment-form-email,
.ctv-comment-form .comment-form-url {
  display: grid;
  gap: 8px;
}

.ctv-comment-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ctv-ink);
  font-size: 14px;
}

.ctv-comment-form input[type="text"],
.ctv-comment-form input[type="email"],
.ctv-comment-form input[type="url"],
.ctv-comment-form textarea {
  width: 100%;
  border: 2px solid #d7d7d2;
  border-radius: 0;
  background: var(--ctv-white);
  padding: 16px 18px;
  color: var(--ctv-ink);
  font: inherit;
  font-size: 17px;
  font-weight: 850;
}

.ctv-comment-form textarea {
  min-height: 180px;
  resize: vertical;
}

.ctv-comment-form input:focus,
.ctv-comment-form textarea:focus {
  outline: 3px solid rgba(34, 196, 223, 0.22);
  border-color: var(--ctv-cyan);
}

.ctv-comment-form .comment-form-cookies-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ctv-muted);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.ctv-comment-form .comment-form-cookies-consent label {
  margin: 0;
  color: inherit;
}

.ctv-comment-form .form-submit {
  margin-top: 8px;
}

.ctv-comment-form .submit {
  min-height: 58px;
  border: 0;
  border-radius: 5px;
  background: var(--ctv-magenta);
  padding: 0 28px;
  color: var(--ctv-white);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.ctv-comment-form .submit:hover,
.ctv-comment-form .submit:focus-visible {
  background: var(--ctv-ink);
}

.single-sidebar {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 28px;
  align-self: start;
  min-width: 0;
}

.single-live-card {
  margin: 0;
}

.single-latest-card,
.single-newsletter-card {
  background: var(--ctv-white);
  border: 1px solid var(--ctv-line);
  padding: clamp(24px, 2.6vw, 34px);
}

.single-latest-card h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1;
}

.single-latest-card article {
  border-top: 1px solid var(--ctv-line);
}

.single-latest-card a {
  display: grid;
  gap: 10px;
  padding: 22px 0;
}

.single-latest-card time {
  color: var(--ctv-magenta);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.single-latest-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 1.55vw, 28px);
  line-height: 1.05;
}

.single-latest-card a:hover strong,
.single-latest-card a:focus-visible strong {
  color: var(--ctv-magenta);
}

.single-newsletter-card {
  display: grid;
  gap: 14px;
  background:
    radial-gradient(circle at 0% 0%, rgba(250, 8, 120, 0.08), transparent 34%),
    #fffef8;
}

.single-newsletter-card span {
  color: var(--ctv-magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.single-newsletter-card h2 {
  margin: 0;
  font-size: clamp(28px, 2.5vw, 42px);
  line-height: 0.98;
}

.single-newsletter-card p {
  margin: 0;
  color: var(--ctv-muted);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
}

.ctv-page {
  position: relative;
  z-index: 2;
  padding: clamp(54px, 7vw, 120px) 0 clamp(90px, 9vw, 150px);
  background: var(--ctv-paper);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.ctv-page-article {
  width: min(1380px, calc(100% - (var(--ctv-gutter) * 2)));
  margin: 0 auto;
}

.ctv-page-header {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin-bottom: clamp(30px, 4vw, 58px);
}

.ctv-page-header span {
  color: var(--ctv-cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ctv-page-header h1 {
  margin: 0;
  font-size: clamp(50px, 6vw, 96px);
  line-height: 0.94;
}

.ctv-page-content > *:first-child {
  margin-top: 0;
}

.ctv-programming-page {
  padding-top: 0;
}

.ctv-programming-page .ctv-page-article {
  width: 100%;
}

.ctv-programming-page .ctv-page-header {
  width: min(1380px, calc(100% - (var(--ctv-gutter) * 2)));
  margin: 0 auto clamp(18px, 3vw, 34px);
  padding-top: clamp(30px, 5vw, 58px);
}

.ctv-auth-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border-top: 6px solid transparent;
  border-image: linear-gradient(90deg, var(--ctv-cyan), var(--ctv-magenta), #ff7b22, var(--ctv-lime)) 1;
  background: var(--ctv-white);
  box-shadow: 0 28px 90px rgba(20, 25, 31, 0.08);
}

.ctv-auth-intro {
  display: grid;
  align-content: end;
  gap: clamp(18px, 2vw, 28px);
  min-height: clamp(520px, 42vw, 720px);
  padding: clamp(32px, 4.2vw, 70px);
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 196, 223, 0.16), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(250, 8, 120, 0.26), transparent 44%),
    #15181d;
  color: var(--ctv-white);
}

.ctv-auth-intro span,
.ctv-auth-panel > span {
  color: var(--ctv-lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ctv-auth-intro h1 {
  max-width: 680px;
  margin: 0;
  color: var(--ctv-white);
  font-size: clamp(48px, 5.4vw, 98px);
  line-height: 0.92;
}

.ctv-auth-intro p {
  max-width: 560px;
  margin: 0;
  color: #dbe1e8;
  font-size: clamp(18px, 1.45vw, 25px);
  font-weight: 900;
  line-height: 1.35;
}

.ctv-auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--ctv-line);
  gap: 1px;
}

.ctv-auth-panel {
  display: grid;
  align-content: center;
  gap: 22px;
  min-width: 0;
  min-height: clamp(520px, 42vw, 720px);
  padding: clamp(30px, 4vw, 64px);
  background: #fffef8;
}

.ctv-auth-panel--register {
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 196, 223, 0.08), transparent 34%),
    #fff;
}

.ctv-auth-panel > span {
  color: var(--ctv-magenta);
}

.ctv-auth-panel h2 {
  margin: 0;
  font-size: clamp(34px, 3vw, 56px);
  line-height: 0.96;
}

.ctv-auth-panel form {
  display: grid;
  gap: 16px;
  margin: 0;
}

.ctv-auth-panel p {
  margin: 0;
}

.ctv-auth-panel label {
  display: block;
  margin-bottom: 8px;
  color: var(--ctv-ink);
  font-size: 14px;
  font-weight: 900;
}

.ctv-auth-panel input[type="text"],
.ctv-auth-panel input[type="email"],
.ctv-auth-panel input[type="password"] {
  width: 100%;
  min-height: 56px;
  border: 2px solid rgba(23, 25, 29, 0.24);
  border-radius: 0;
  background: var(--ctv-white);
  color: var(--ctv-ink);
  padding: 0 16px;
  font-size: 18px;
  font-weight: 800;
}

.ctv-auth-panel input:focus {
  border-color: var(--ctv-cyan);
  outline: 3px solid rgba(34, 196, 223, 0.18);
}

.ctv-auth-panel .login-remember label {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0;
}

.ctv-auth-panel input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--ctv-magenta);
}

.ctv-auth-panel .button,
.ctv-auth-submit {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 5px;
  background: var(--ctv-ink);
  color: var(--ctv-white);
  padding: 0 24px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.ctv-auth-panel .button:hover,
.ctv-auth-submit:hover,
.ctv-auth-panel .button:focus-visible,
.ctv-auth-submit:focus-visible {
  background: var(--ctv-magenta);
}

.ctv-auth-link,
.ctv-auth-secondary {
  color: var(--ctv-magenta);
  font-size: 14px;
  font-weight: 900;
}

.ctv-auth-note,
.ctv-auth-disabled p {
  color: var(--ctv-muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.ctv-auth-disabled {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-left: 6px solid var(--ctv-magenta);
  background: rgba(250, 8, 120, 0.06);
}

.ctv-auth-disabled strong {
  font-size: 18px;
  font-weight: 900;
}

.ctv-about-shell {
  display: grid;
  gap: clamp(44px, 6vw, 96px);
}

.ctv-about-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  overflow: hidden;
  border-top: 6px solid transparent;
  border-image: linear-gradient(90deg, var(--ctv-cyan), var(--ctv-magenta), #ff7b22, var(--ctv-lime)) 1;
  background: var(--ctv-white);
  box-shadow: 0 28px 90px rgba(20, 25, 31, 0.08);
}

.ctv-about-hero-copy {
  display: grid;
  align-content: end;
  gap: clamp(22px, 3vw, 36px);
  min-height: clamp(520px, 43vw, 760px);
  padding: clamp(34px, 5vw, 80px);
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 196, 223, 0.18), transparent 32%),
    radial-gradient(circle at 100% 100%, rgba(250, 8, 120, 0.27), transparent 46%),
    linear-gradient(135deg, #10202a 0%, #17191e 46%, #351224 100%);
  color: var(--ctv-white);
}

.ctv-about-hero-copy span,
.ctv-about-story span,
.ctv-about-section-head span,
.ctv-about-commercial span,
.ctv-about-program-grid span {
  color: var(--ctv-magenta);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ctv-about-hero-copy span {
  color: var(--ctv-lime);
}

.ctv-about-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ctv-white);
  font-size: clamp(54px, 6vw, 112px);
  line-height: 0.9;
}

.ctv-about-hero-card {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(34px, 5vw, 80px);
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 196, 223, 0.09), transparent 34%),
    #fffef8;
}

.ctv-about-hero-card p,
.ctv-about-story p {
  margin: 0;
  color: #4e5560;
  font-size: clamp(20px, 1.7vw, 30px);
  font-weight: 850;
  line-height: 1.35;
}

.ctv-about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(42px, 7vw, 90px) clamp(22px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 18%, rgba(34, 196, 223, 0.14), transparent 32%),
    radial-gradient(circle at 90% 82%, rgba(250, 8, 120, 0.12), transparent 30%),
    #05122c;
}

.ctv-about-stats article {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: clamp(160px, 13vw, 210px);
  padding: clamp(24px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.96);
  color: #06142e;
  text-align: center;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

.ctv-about-stats strong {
  color: #ff6b35;
  font-size: clamp(48px, 5vw, 82px);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.ctv-about-stats span {
  max-width: 260px;
  margin-top: 24px;
  color: #101c38;
  font-size: clamp(14px, 1.08vw, 18px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.08;
  text-transform: uppercase;
}

.ctv-about-story,
.ctv-about-commercial {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: start;
  padding-top: clamp(18px, 2vw, 28px);
  border-top: 1px solid rgba(20, 25, 31, 0.1);
}

.ctv-about-story h2,
.ctv-about-section-head h2,
.ctv-about-commercial h2 {
  margin: 18px 0 0;
  font-size: clamp(44px, 5vw, 86px);
  line-height: 0.92;
}

.ctv-about-story > div:last-child {
  display: grid;
  gap: 22px;
}

.ctv-about-pillars,
.ctv-about-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(20, 25, 31, 0.12);
  background: var(--ctv-white);
}

.ctv-about-pillars article,
.ctv-about-program-grid article {
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: clamp(26px, 3.4vw, 52px);
  border-right: 1px solid rgba(20, 25, 31, 0.1);
}

.ctv-about-pillars article:last-child,
.ctv-about-program-grid article:nth-child(4n) {
  border-right: 0;
}

.ctv-about-pillars span {
  color: var(--ctv-cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.ctv-about-pillars h3,
.ctv-about-program-grid h3 {
  margin: 22px 0 16px;
  font-size: clamp(28px, 2.4vw, 44px);
  line-height: 0.98;
}

.ctv-about-pillars p,
.ctv-about-program-grid p {
  margin: 0;
  color: var(--ctv-muted);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.42;
}

.ctv-about-programs {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
}

.ctv-about-section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
}

.ctv-about-program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ctv-about-program-grid article {
  min-height: 360px;
}

.ctv-about-commercial {
  align-items: stretch;
  overflow: hidden;
  border-top: 0;
  background: #17191d;
  color: var(--ctv-white);
}

.ctv-about-commercial > div {
  padding: clamp(30px, 4vw, 58px);
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 196, 223, 0.2), transparent 42%),
    radial-gradient(circle at 100% 100%, rgba(250, 8, 120, 0.24), transparent 46%);
}

.ctv-about-commercial h2 {
  color: var(--ctv-white);
}

.ctv-about-commercial a {
  display: grid;
  min-height: 220px;
  place-items: center;
  background: var(--ctv-lime);
  color: var(--ctv-ink);
  padding: 30px;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.ctv-about-live-floating .floating-live {
  right: auto;
  left: 22px;
}

.ctv-about-live-floating .floating-live-tab {
  right: auto;
  left: 0;
  border-radius: 0 12px 12px 0;
  transform: translateX(-102%);
}

.ctv-about-live-floating .floating-live-tab.is-visible {
  transform: translateX(0);
}

.ctv-auth-shell--logged {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
}

.ctv-account-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1.38fr);
  overflow: hidden;
  border-top: 6px solid transparent;
  border-image: linear-gradient(90deg, var(--ctv-cyan), var(--ctv-magenta), #ff7b22, var(--ctv-lime)) 1;
  background: var(--ctv-white);
  box-shadow: 0 28px 90px rgba(20, 25, 31, 0.08);
}

.ctv-account-board {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(30px, 4vw, 64px);
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 196, 223, 0.09), transparent 32%),
    #fffef8;
}

.ctv-account-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: clamp(22px, 2.6vw, 34px);
  border: 1px solid var(--ctv-line);
  background: var(--ctv-white);
}

.ctv-account-card--profile {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  background: var(--ctv-ink);
  color: var(--ctv-white);
}

.ctv-account-avatar {
  display: grid;
  width: 112px;
  height: 112px;
  overflow: hidden;
  border: 4px solid var(--ctv-magenta);
  border-radius: 999px;
  background: #0b1118;
}

.ctv-account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ctv-account-card span {
  color: var(--ctv-magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ctv-account-card--profile span {
  color: var(--ctv-lime);
}

.ctv-account-card h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(34px, 3.2vw, 58px);
  line-height: 0.95;
}

.ctv-account-card strong {
  color: var(--ctv-ink);
  font-size: clamp(28px, 2.4vw, 44px);
  font-weight: 900;
  line-height: 1;
}

.ctv-account-card p {
  margin: 0;
  color: var(--ctv-muted);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.ctv-account-card--profile p {
  color: #dbe1e8;
  overflow-wrap: anywhere;
}

.ctv-account-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--ctv-line);
  border: 1px solid var(--ctv-line);
}

.ctv-account-grid .ctv-account-card {
  border: 0;
}

.ctv-account-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr) minmax(280px, 0.9fr);
  gap: 16px;
}

.ctv-account-panel {
  min-width: 0;
  border: 1px solid var(--ctv-line);
  background: var(--ctv-white);
}

.ctv-account-panel-head {
  display: grid;
  gap: 8px;
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--ctv-line);
}

.ctv-account-panel-head span {
  color: var(--ctv-magenta);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ctv-account-panel-head h2 {
  margin: 0;
  color: var(--ctv-ink);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 0.98;
}

.ctv-account-list {
  display: grid;
}

.ctv-account-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 14px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--ctv-line);
}

.ctv-account-list article:last-child {
  border-bottom: 0;
}

.ctv-account-list strong {
  display: block;
  color: var(--ctv-ink);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.2;
}

.ctv-account-list small {
  display: block;
  margin-top: 5px;
  color: var(--ctv-muted);
  font-size: 12px;
  font-weight: 850;
}

.ctv-account-list b {
  color: var(--ctv-ink);
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}

.ctv-account-list a {
  color: var(--ctv-magenta);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ctv-account-status {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eff3f7;
  padding: 4px 10px;
  color: var(--ctv-muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ctv-account-status--publish {
  background: rgba(216, 255, 0, 0.18);
  color: #738700;
}

.ctv-account-status--pending {
  background: rgba(255, 0, 123, 0.11);
  color: var(--ctv-magenta);
}

.ctv-account-status--draft,
.ctv-account-status--private {
  background: rgba(34, 196, 223, 0.12);
  color: var(--ctv-cyan);
}

.ctv-account-empty {
  padding: 24px;
}

.ctv-account-empty strong {
  display: block;
  color: var(--ctv-ink);
  font-size: 18px;
  font-weight: 950;
}

.ctv-account-empty p {
  margin: 8px 0 0;
  color: var(--ctv-muted);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
}

.ctv-account-data-list {
  display: grid;
  margin: 0;
}

.ctv-account-data-list div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--ctv-line);
}

.ctv-account-data-list div:last-child {
  border-bottom: 0;
}

.ctv-account-data-list dt {
  color: var(--ctv-magenta);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ctv-account-data-list dd {
  min-width: 0;
  margin: 0;
  color: var(--ctv-ink);
  font-size: 15px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.ctv-account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ctv-account-actions .ctv-auth-secondary {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ctv-line);
  border-radius: 5px;
  background: var(--ctv-white);
  padding: 0 22px;
  color: var(--ctv-ink);
  text-transform: uppercase;
}

.ctv-account-actions .ctv-auth-secondary:hover,
.ctv-account-actions .ctv-auth-secondary:focus-visible {
  border-color: var(--ctv-magenta);
  color: var(--ctv-magenta);
}

.ctv-account-actions .ctv-auth-secondary--logout {
  border-color: #11161c;
  background: #11161c;
  color: var(--ctv-white);
}

.ctv-account-actions .ctv-auth-secondary--logout:hover,
.ctv-account-actions .ctv-auth-secondary--logout:focus-visible {
  border-color: var(--ctv-magenta);
  background: var(--ctv-magenta);
  color: var(--ctv-white);
}

.ctv-account-note {
  max-width: 880px;
  margin: 0;
  color: var(--ctv-muted);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

body.modal-open {
  overflow: hidden;
}

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: var(--ctv-gutter);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.site-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 19, 22, 0.72);
  cursor: pointer;
}

.menu-modal-panel,
.search-modal-panel,
.weather-modal-panel,
.advertise-modal-panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: min(820px, calc(100vh - 44px));
  overflow: auto;
  background: #fbfaf3;
  color: var(--ctv-ink);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  outline: none;
}

.menu-modal-panel::before,
.search-modal-panel::before,
.weather-modal-panel::before,
.advertise-modal-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  display: block;
  height: 6px;
  background: linear-gradient(90deg, var(--ctv-cyan), var(--ctv-magenta), #ff7b22, var(--ctv-lime));
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: var(--ctv-ink);
  color: var(--ctv-white);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.menu-modal-brand {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 58px 72px 34px;
  text-align: center;
}

.menu-modal-brand img {
  width: 136px;
}

.menu-modal-brand p,
.search-modal-panel > span,
.advertise-intro > span,
.menu-modal-section > span,
.menu-modal-feature span,
.forminator-fallback span {
  color: var(--ctv-magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-modal-brand p {
  max-width: 760px;
  margin: 0;
  color: var(--ctv-cyan);
}

.menu-modal-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1.05fr;
  border-top: 1px solid var(--ctv-line);
}

.menu-modal-section,
.menu-modal-feature {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 380px;
  padding: 36px;
  border-right: 1px solid var(--ctv-line);
}

.menu-modal-section:last-child,
.menu-modal-feature {
  border-right: 0;
}

.menu-modal-links {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-modal-links a,
.menu-modal-section article strong {
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 900;
  line-height: 1;
}

.menu-modal-links a:hover {
  color: var(--ctv-magenta);
}

.menu-modal-section article {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ctv-line);
}

.menu-modal-section article p {
  margin: 0;
  color: var(--ctv-muted);
  font-weight: 800;
  line-height: 1.45;
}

.menu-modal-feature {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  justify-content: start;
  color: var(--ctv-white);
}

.menu-modal-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52);
}

.menu-modal-feature span,
.menu-modal-feature strong {
  position: relative;
  z-index: 1;
}

.menu-modal-feature strong {
  align-self: end;
  max-width: 420px;
  margin-top: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.95;
}

.search-modal-panel {
  padding: 62px clamp(24px, 5vw, 72px) 72px;
}

.search-modal-panel h2 {
  max-width: 820px;
  margin: 12px 0 28px;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.95;
}

.search-modal-panel input {
  width: 100%;
  min-height: 76px;
  border: 1px solid var(--ctv-line);
  background: var(--ctv-white);
  padding: 0 24px;
  color: var(--ctv-ink);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  outline: none;
}

.search-modal-panel input:focus {
  border-color: var(--ctv-cyan);
  box-shadow: 0 0 0 4px rgba(34, 196, 223, 0.16);
}

.search-results {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid var(--ctv-line);
  background: var(--ctv-line);
  gap: 1px;
}

.search-result-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 24px;
  background: var(--ctv-white);
}

.search-result-card span {
  color: var(--ctv-cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.search-result-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.05;
}

.search-result-card time {
  align-self: end;
  color: var(--ctv-muted);
  font-weight: 800;
}

.weather-modal-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
  width: min(1320px, 100%);
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 8%, rgba(34, 196, 223, 0.12), transparent 28%),
    #fbfaf3;
}

.weather-modal-current {
  display: grid;
  align-content: center;
  min-height: 660px;
  padding: clamp(34px, 5vw, 72px);
  background:
    radial-gradient(circle at 5% 5%, rgba(34, 196, 223, 0.22), transparent 34%),
    radial-gradient(circle at 90% 100%, rgba(250, 8, 120, 0.32), transparent 38%),
    #14191f;
  color: var(--ctv-white);
}

.weather-modal-current > span,
.weather-search label,
.weather-stats span,
.weather-forecast span {
  color: var(--ctv-lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.weather-modal-current h2 {
  max-width: 100%;
  margin: 48px 0 0;
  overflow: hidden;
  font-size: clamp(54px, 7vw, 108px);
  line-height: 0.92;
  text-overflow: ellipsis;
}

.weather-modal-temp {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: clamp(34px, 7vw, 88px);
}

.weather-modal-temp strong {
  font-size: clamp(86px, 14vw, 190px);
  line-height: 0.78;
}

.weather-icon-large {
  width: clamp(74px, 8vw, 118px);
  height: clamp(74px, 8vw, 118px);
  color: var(--ctv-lime);
}

.weather-modal-current p {
  margin: 22px 0 0;
  color: #eef2f6;
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 900;
}

.weather-modal-current small {
  margin-top: 70px;
  color: #b8c0ca;
  font-weight: 900;
}

.weather-modal-detail {
  display: grid;
  align-content: start;
  gap: 26px;
  padding: clamp(32px, 5vw, 72px);
}

.weather-search {
  display: grid;
  gap: 14px;
}

.weather-search div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
}

.weather-search input {
  min-height: 72px;
  border: 1px solid var(--ctv-line);
  border-radius: 14px;
  background: var(--ctv-white);
  padding: 0 22px;
  color: var(--ctv-ink);
  font-size: clamp(19px, 2.1vw, 30px);
  font-weight: 900;
  outline: none;
}

.weather-search input:focus {
  border-color: var(--ctv-cyan);
  box-shadow: 0 0 0 4px rgba(34, 196, 223, 0.14);
}

.weather-search button,
.weather-presets button {
  min-height: 58px;
  border: 1px solid var(--ctv-line);
  border-radius: 14px;
  background: var(--ctv-white);
  color: var(--ctv-ink);
  padding: 0 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.weather-search button {
  min-width: 140px;
  border-color: var(--ctv-ink);
  background: var(--ctv-ink);
  color: var(--ctv-white);
}

.weather-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.weather-stats,
.weather-forecast {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.weather-stats article,
.weather-forecast article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 126px;
  border: 1px solid var(--ctv-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 22px;
  box-shadow: 0 18px 44px rgba(20, 25, 31, 0.05);
}

.weather-stats span,
.weather-forecast span {
  color: var(--ctv-magenta);
}

.weather-stats strong,
.weather-forecast strong {
  color: var(--ctv-ink);
  font-size: clamp(25px, 2.3vw, 38px);
  line-height: 1;
}

.weather-forecast .weather-icon {
  width: 34px;
  height: 34px;
  color: var(--ctv-cyan);
}

.weather-forecast small {
  color: var(--ctv-muted);
  font-weight: 900;
  line-height: 1.15;
}

.advertise-modal-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.advertise-intro {
  display: grid;
  align-content: center;
  min-height: 640px;
  padding: clamp(34px, 5vw, 72px);
  background:
    radial-gradient(circle at 5% 0%, rgba(34, 196, 223, 0.24), transparent 36%),
    radial-gradient(circle at 90% 100%, rgba(250, 8, 120, 0.28), transparent 34%),
    var(--ctv-ink);
  color: var(--ctv-white);
}

.advertise-intro h2 {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: clamp(46px, 5.4vw, 86px);
  line-height: 0.9;
}

.advertise-intro p {
  max-width: 520px;
  margin: 22px 0 0;
  color: #d7dce3;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.45;
}

.advertise-highlights {
  display: grid;
  gap: 1px;
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.12);
}

.advertise-highlights strong {
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 15px;
  line-height: 1.25;
}

.advertise-forminator {
  padding: clamp(34px, 5vw, 72px);
  background: #fffef8;
}

.forminator-fallback {
  display: grid;
  align-content: center;
  min-height: 420px;
  border: 1px dashed rgba(23, 25, 29, 0.24);
  padding: 32px;
  background: var(--ctv-white);
}

.forminator-fallback h3 {
  margin: 12px 0 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.95;
}

.forminator-fallback p {
  max-width: 480px;
  color: var(--ctv-muted);
  font-weight: 800;
  line-height: 1.45;
}

.advertise-forminator .forminator-ui {
  margin: 0 !important;
}

.advertise-forminator input,
.advertise-forminator textarea,
.advertise-forminator select {
  border-radius: 0 !important;
}

.reveal-footer {
  position: sticky;
  bottom: 0;
  z-index: 1;
  min-height: 760px;
  padding: clamp(38px, 6vw, 84px) var(--ctv-gutter) 68px;
  overflow: visible;
  background: var(--ctv-ink);
  color: var(--ctv-white);
}

/* El efecto "reveal" (sticky + bottom:0) empuja cualquier contenido que exceda
   la altura del viewport hacia arriba, fuera de pantalla, sin importar el
   min-height. En viewports bajos (laptops, paneles del Customizer, etc.) eso
   corta el footer. Se desactiva el sticky por debajo de esta altura, igual
   que ya se hacía por ancho angosto más abajo. */
@media (max-height: 900px) {
  .reveal-footer {
    position: relative;
    min-height: auto;
  }
}

.reveal-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--ctv-cyan), var(--ctv-magenta), var(--ctv-lime));
}

.footer-topline {
  display: grid;
  grid-template-columns: minmax(180px, 0.5fr) 1fr;
  gap: clamp(28px, 5vw, 90px);
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-logo img {
  width: 132px;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.2));
}

.footer-logo strong {
  color: var(--ctv-white);
  font-size: 28px;
  font-weight: 900;
}

.footer-topline nav,
.footer-menu {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 44px);
}

.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-topline nav a {
  color: #f2f3f4;
  font-weight: 900;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(330px, 1.3fr) repeat(3, minmax(190px, 0.72fr));
  gap: clamp(28px, 4vw, 74px);
  padding: 54px 0;
}

.footer-grid h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.9;
}

.footer-grid h3 {
  margin: 0 0 4px;
  color: var(--ctv-magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid p {
  max-width: 520px;
  margin: 22px 0 0;
  color: #c9ced6;
  font-size: 18px;
  line-height: 1.5;
}

.footer-grid section:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 15px;
}

.footer-grid section:not(:first-child) a,
.footer-grid article strong {
  color: #f3f5f7;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.footer-grid article {
  display: grid;
  gap: 6px;
}

.footer-grid article time {
  color: #9ba4ad;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.social-row a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 3px;
  background: var(--ctv-white);
  color: var(--ctv-ink);
  font-weight: 900;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-row a:hover {
  background: var(--ctv-magenta);
  color: var(--ctv-white);
  transform: translateY(-2px);
}

.social-row svg {
  display: block;
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-contact-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 0 18px;
  border-radius: 4px;
  background: var(--ctv-lime);
  color: var(--ctv-ink) !important;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #9ba4ad;
}

.footer-bottom a {
  color: var(--ctv-white);
  font-weight: 900;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.floating-live {
  position: fixed;
  right: 22px;
  bottom: 70px;
  z-index: 920;
  width: min(360px, calc(100vw - 44px));
  overflow: hidden;
  border: 1px solid rgba(34, 196, 223, 0.8);
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, var(--ctv-cyan), var(--ctv-magenta), #ff7b22, var(--ctv-lime)) 1;
  background: var(--ctv-ink);
  color: var(--ctv-white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 24px, 0) scale(0.98);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.floating-live.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.floating-live-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 8px 12px;
  background: #07111d;
}

.floating-live-head strong {
  font-size: 15px;
  font-weight: 900;
}

.floating-live-head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-live-head span::before,
.floating-live-tab span,
.floating-live-tab::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--ctv-magenta);
  box-shadow: 0 0 0 7px rgba(250, 8, 120, 0.18);
  animation: ctvLivePulse 1.15s ease-in-out infinite;
}

.floating-live-head button {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ctv-white);
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.floating-live-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #05070a;
  object-fit: cover;
}

.floating-sound {
  position: absolute;
  left: 12px;
  bottom: 12px;
  min-height: 30px;
  border: 0;
  border-radius: 4px;
  background: var(--ctv-white);
  color: var(--ctv-ink);
  padding: 0 10px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.floating-live-tab {
  position: fixed;
  right: 0;
  top: 54vh;
  z-index: 925;
  display: flex;
  width: 112px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 12px 0 0 12px;
  background: var(--ctv-ink);
  color: var(--ctv-white);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateX(102%);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.floating-live-tab strong {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-live-tab.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.floating-live-tab::before {
  display: none;
}

.economic-ticker {
  position: fixed;
  right: max(8px, env(safe-area-inset-right));
  bottom: 0;
  left: max(8px, env(safe-area-inset-left));
  z-index: 925;
  display: grid;
  grid-template-columns: auto 38px minmax(0, 1fr) 38px;
  min-height: 34px;
  overflow: hidden;
  color: var(--ctv-ink);
  background: rgba(255, 254, 248, 0.97);
  border: 1px solid rgba(20, 25, 31, 0.08);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -10px 28px rgba(20, 25, 31, 0.1);
  backdrop-filter: blur(14px);
}

.economic-ticker-label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 236px;
  padding: 0 22px;
  border-right: 1px solid var(--ctv-line);
  white-space: nowrap;
}

.economic-ticker-label strong,
.economic-ticker-item b {
  color: var(--ctv-magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.economic-ticker-label span,
.economic-ticker-item em {
  color: var(--ctv-muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.economic-ticker-button {
  display: grid;
  place-items: center;
  min-width: 38px;
  min-height: 34px;
  color: var(--ctv-ink);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  border-right: 1px solid var(--ctv-line);
  cursor: pointer;
}

.economic-ticker-button:last-child {
  border-right: 0;
  border-left: 1px solid var(--ctv-line);
}

.economic-ticker-button:hover,
.economic-ticker-button:focus-visible {
  color: var(--ctv-magenta);
  background: #fff;
}

.economic-ticker-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-x;
  user-select: none;
}

.economic-ticker-viewport.is-dragging {
  cursor: grabbing;
}

.economic-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 34px;
}

.economic-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 0 20px;
  white-space: nowrap;
}

.economic-ticker-item strong {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1280px) {
  .single-header-bar {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .single-header-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
    padding-bottom: 14px;
  }

  .single-post-grid {
    grid-template-columns: 58px minmax(0, 1fr) minmax(300px, 360px);
    gap: 28px;
  }

  .single-article h1 {
    font-size: clamp(40px, 5.6vw, 72px);
  }
}

@media (max-width: 980px) {
  .ctv-site-header--compact {
    position: relative;
  }

  .single-header-bar {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
    padding-block: 14px;
  }

  .single-header-brand {
    justify-content: center;
  }

  .single-header-nav .category-menu,
  .single-header-nav .ctv-menu {
    justify-content: flex-start;
  }

  .ctv-mega-menu-item {
    position: relative;
  }

  .ctv-mega-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: min(86vw, 520px);
    min-width: 0;
    padding: 0;
  }

  .ctv-mega-panel-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .ctv-mega-summary {
    gap: 8px;
  }

  .ctv-mega-summary strong {
    font-size: 30px;
  }

  .ctv-mega-post-grid {
    grid-template-columns: 1fr;
    max-height: min(62vh, 560px);
    overflow-y: auto;
  }

  .ctv-mega-post a {
    grid-template-columns: 96px 1fr;
    align-items: start;
  }

  .ctv-mega-post img {
    grid-row: span 3;
    aspect-ratio: 1 / 0.82;
  }

  .ctv-mega-post h3 {
    font-size: 18px;
  }

  .single-header-actions {
    grid-column: auto;
    justify-content: center;
    padding-bottom: 0;
  }

  .single-post-grid {
    grid-template-columns: 1fr;
  }

  .single-share-rail {
    position: static;
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .single-sidebar {
    position: static;
    grid-template-columns: minmax(0, 1fr);
  }

  .ctv-auth-shell,
  .ctv-auth-shell--logged,
  .ctv-account-shell {
    grid-template-columns: 1fr;
  }

  .ctv-auth-intro,
  .ctv-auth-panel,
  .ctv-account-board {
    min-height: auto;
  }

  .ctv-auth-intro {
    padding-block: 70px;
  }

  .ctv-auth-grid {
    grid-template-columns: 1fr;
  }

  .ctv-account-grid {
    grid-template-columns: 1fr;
  }

  .ctv-account-dashboard {
    grid-template-columns: 1fr;
  }

  .ctv-about-hero,
  .ctv-about-story,
  .ctv-about-commercial {
    grid-template-columns: 1fr;
  }

  .ctv-about-hero-copy {
    min-height: auto;
    padding-block: 78px;
  }

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

  .ctv-about-stats article:nth-child(2n) {
    border-right: 0;
  }

  .ctv-about-stats article:nth-child(-n+2) {
    border-bottom: 0;
  }

  .ctv-about-pillars,
  .ctv-about-program-grid,
  .ctv-about-section-head {
    grid-template-columns: 1fr;
  }

  .ctv-about-pillars article,
  .ctv-about-program-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(20, 25, 31, 0.1);
  }

  .ctv-about-pillars article:last-child,
  .ctv-about-program-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .single-header-brand .ctv-logo-image {
    width: 64px;
  }

  .single-header-brand span {
    font-size: 11px;
    white-space: normal;
  }

  .single-header-actions {
    justify-content: space-between;
    gap: 14px;
  }

  .single-header-actions .account-link {
    display: inline-flex;
  }

  .single-post-page {
    padding-top: 34px;
  }

  .single-post-grid {
    width: calc(100% - 28px);
  }

  .single-share-rail a {
    width: 48px;
    height: 48px;
  }

  .single-article h1 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .single-deck {
    font-size: clamp(20px, 6vw, 27px);
  }

  .single-entry-content {
    font-size: 20px;
  }

  .single-featured img {
    aspect-ratio: 4 / 3;
  }

  .single-post-navigation,
  .single-related-grid {
    grid-template-columns: 1fr;
  }

  .ctv-comments-area {
    margin-top: 46px;
  }

  .ctv-comment-card {
    grid-template-columns: 1fr;
  }

  .ctv-comment-avatar {
    width: 58px;
    height: 58px;
  }

  .ctv-comment-list .children {
    padding-left: 18px;
  }

  .ctv-comment-head {
    display: grid;
    justify-content: start;
  }

  .ctv-comment-form .submit {
    width: 100%;
  }

  .ctv-page {
    padding-top: 34px;
  }

  .ctv-page-article {
    width: calc(100% - 28px);
  }

  .ctv-auth-intro,
  .ctv-auth-panel,
  .ctv-account-board {
    padding: 28px 22px;
  }

  .ctv-auth-intro h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .ctv-account-card--profile {
    grid-template-columns: 1fr;
  }

  .ctv-account-avatar {
    width: 86px;
    height: 86px;
  }

  .ctv-account-actions {
    display: grid;
  }

  .ctv-account-actions .ctv-auth-submit,
  .ctv-account-actions .ctv-auth-secondary {
    width: 100%;
    justify-content: center;
  }

  .ctv-account-panel-head,
  .ctv-account-empty,
  .ctv-account-list article,
  .ctv-account-data-list div {
    padding-inline: 18px;
  }

  .ctv-account-list article {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .ctv-account-list b,
  .ctv-account-status {
    justify-self: start;
  }

  .ctv-account-data-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .ctv-about-shell {
    gap: 38px;
  }

  .ctv-about-hero-copy,
  .ctv-about-hero-card,
  .ctv-about-commercial > div {
    padding: 28px 22px;
  }

  .ctv-about-hero-copy h1 {
    font-size: clamp(44px, 12vw, 66px);
  }

  .ctv-about-stats {
    grid-template-columns: 1fr;
  }

  .ctv-about-stats article,
  .ctv-about-stats article:nth-child(2n) {
    min-height: 160px;
    border-right: 0;
    border-bottom: 0;
  }

  .ctv-about-stats article:last-child {
    border-bottom: 0;
  }

  .ctv-about-story h2,
  .ctv-about-section-head h2,
  .ctv-about-commercial h2 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .ctv-about-live-floating .floating-live {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 64px;
  }

  .ctv-about-live-floating .floating-live-tab {
    left: 0;
  }
}

@media (max-width: 1500px) {
  .ctv-home-editorial {
    width: calc(100% - (var(--ctv-gutter) * 2));
  }

  .home-news-grid {
    grid-template-columns: minmax(210px, 0.7fr) minmax(420px, 1.6fr) minmax(250px, 0.85fr) minmax(280px, 0.9fr);
    gap: 22px;
  }

  .home-commercial-strip {
    grid-template-columns: minmax(420px, 1.6fr) repeat(3, minmax(145px, 0.58fr)) minmax(150px, 0.48fr);
  }

  .home-commercial-strip > * {
    min-height: 260px;
  }

  .home-agenda-grid {
    grid-template-columns: minmax(360px, 0.9fr) minmax(560px, 1.1fr);
  }

  .home-agenda-head h2 {
    font-size: clamp(48px, 4.8vw, 76px);
  }

  .home-radar-head h2 {
    font-size: clamp(46px, 4.6vw, 72px);
  }
}

@media (max-width: 1100px) {
  .home-topline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-story-rail {
    grid-template-columns: 44px repeat(2, minmax(190px, 1fr)) 44px;
  }

  .home-story-rail .home-topline-item:nth-of-type(3) {
    display: none;
  }

  .home-news-grid {
    grid-template-columns: minmax(220px, 0.78fr) minmax(430px, 1.45fr);
  }

  .home-side-stack,
  .home-popular-card {
    grid-column: 1 / -1;
  }

  .home-side-stack {
    order: -1;
    grid-template-columns: minmax(320px, 0.9fr) minmax(260px, 0.7fr);
  }

  .home-popular-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
  }

  .home-popular-card > h2 {
    grid-column: 1 / -1;
  }

  .home-commercial-strip {
    grid-template-columns: 1fr 1fr;
  }

  .home-commercial-intro,
  .home-commercial-cta {
    grid-column: 1 / -1;
  }

  .home-commercial-stat:nth-of-type(3) {
    border-right: 0;
  }

  .home-agenda-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-agenda-head > span {
    transform: none;
  }

  .home-agenda-grid {
    grid-template-columns: 1fr;
  }

  .home-radar-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-radar-head > span {
    transform: none;
  }

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

  .home-radar-card--lead,
  .home-radar-card--wide {
    grid-column: span 2;
  }

  .home-triple-ads {
    grid-template-columns: 1fr 1fr;
  }

  .home-triple-ad:last-child {
    grid-column: 1 / -1;
  }

  .home-category-carousel {
    grid-auto-columns: minmax(330px, calc((100% - 1px) / 2));
  }

  .home-international-carousel {
    grid-auto-columns: minmax(280px, calc((100% - 2px) / 3));
  }

  .home-international-card a {
    min-height: 430px;
  }

  .home-category-carousel-card a {
    min-height: 520px;
  }

  .home-faith-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-faith-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid section:first-child {
    grid-column: 1 / -1;
  }

  .floating-live-tab {
    right: 12px;
    transform: none;
  }

  .floating-live-tab.is-visible {
    transform: none;
  }

  .economic-ticker {
    grid-template-columns: auto 34px minmax(0, 1fr) 34px;
    min-height: 36px;
    right: 0;
    left: 0;
    border-radius: 12px 12px 0 0;
  }

  .economic-ticker-label {
    min-width: auto;
    padding: 0 12px;
    gap: 8px;
  }

  .economic-ticker-label span {
    display: none;
  }

  .economic-ticker-button {
    min-width: 34px;
    min-height: 36px;
    font-size: 24px;
  }

  .economic-ticker-track {
    min-height: 36px;
  }

  .economic-ticker-item {
    gap: 7px;
    padding: 0 14px;
  }

  .economic-ticker-label strong,
  .economic-ticker-item b,
  .economic-ticker-item strong {
    font-size: 12px;
  }

  .economic-ticker-item em {
    font-size: 10px;
  }
}

@media (max-width: 760px) {
  .ctv-home-editorial {
    width: calc(100% - 28px);
  }

  .home-topline {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-story-rail {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-topline-arrow {
    display: none;
  }

  .home-topline-item {
    min-height: auto;
    padding: 16px 0;
    border-top: 1px solid var(--ctv-line);
  }

  .home-weather-card {
    min-height: 118px;
  }

  .home-news-grid {
    grid-template-columns: 1fr;
  }

  .home-latest-list,
  .home-side-stack,
  .home-popular-card {
    width: 100%;
    min-width: 0;
  }

  .home-side-stack,
  .home-popular-card {
    grid-template-columns: 1fr;
  }

  .home-commercial-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 46px;
  }

  .home-commercial-strip > * {
    min-height: 178px;
  }

  .home-commercial-intro,
  .home-commercial-cta {
    grid-column: 1 / -1;
  }

  .home-commercial-intro {
    padding: 30px 24px;
  }

  .home-commercial-intro h2 {
    font-size: clamp(38px, 10vw, 58px);
  }

  .home-commercial-stat {
    padding: 24px;
  }

  .home-commercial-stat:nth-of-type(3) {
    border-right: 0;
  }

  .home-commercial-cta {
    min-height: 92px;
    justify-items: center;
    text-align: center;
  }

  .home-ad-banner {
    min-height: 120px;
    margin-bottom: 46px;
  }

  .programming-ad-pair {
    grid-template-columns: 1fr;
    gap: 18px;
    width: calc(100% - 28px);
    margin: 42px auto;
  }

  .programming-ad-pair .home-ad-banner {
    min-height: 132px;
  }

  .home-agenda-section {
    margin-top: 48px;
    padding-top: 42px;
  }

  .home-agenda-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 28px;
  }

  .home-agenda-head > span {
    transform: none;
  }

  .home-agenda-head h2 {
    max-width: 640px;
    font-size: clamp(38px, 10vw, 58px);
    line-height: 0.96;
  }

  .home-agenda-grid {
    grid-template-columns: 1fr;
  }

  .home-agenda-feature h3 {
    font-size: clamp(30px, 8vw, 46px);
  }

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

  .home-agenda-card div {
    min-height: 220px;
  }

  .home-inline-ads {
    grid-template-columns: 1fr;
  }

  .home-radar-section {
    margin-top: 68px;
    padding-top: 48px;
  }

  .home-radar-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .home-radar-head h2 {
    font-size: clamp(38px, 9.6vw, 58px);
    line-height: 0.96;
  }

  .home-radar-grid,
  .home-triple-ads {
    grid-template-columns: 1fr;
  }

  .home-radar-card--lead,
  .home-radar-card--wide,
  .home-triple-ad:last-child {
    grid-column: auto;
  }

  .home-radar-card a {
    min-height: auto;
  }

  .home-radar-card--lead a,
  .home-radar-card--wide a {
    min-height: 520px;
  }

  .home-radar-card img {
    aspect-ratio: 16 / 9;
  }

  .home-category-carousel-section {
    margin: 42px 0 70px;
    padding: 14px;
  }

  .home-category-carousel-head {
    display: grid;
    align-items: start;
  }

  .home-category-carousel-head h2 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .home-category-carousel-actions {
    justify-content: end;
  }

  .home-category-carousel {
    grid-auto-columns: minmax(290px, 86%);
  }

  .home-international-section .home-category-carousel-head h2 {
    max-width: 620px;
    font-size: clamp(32px, 8.4vw, 46px);
  }

  .home-international-carousel {
    grid-auto-columns: minmax(260px, 82%);
  }

  .home-international-card a {
    min-height: 410px;
  }

  .home-international-card h3 {
    font-size: clamp(22px, 6vw, 30px);
  }

  .home-category-carousel-card a {
    min-height: 470px;
  }

  .home-category-carousel-card img {
    aspect-ratio: 16 / 8;
  }

  .home-category-carousel-card div {
    padding: 24px;
  }

  .home-category-carousel-card h3 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .programming-latest-section {
    margin: 52px 0 72px;
    padding: 14px;
  }

  .programming-latest-carousel {
    grid-auto-columns: minmax(284px, 84%);
  }

  .programming-latest-card a {
    min-height: 438px;
  }

  .programming-latest-card img {
    aspect-ratio: 16 / 8.8;
  }

  .programming-latest-card div {
    padding: 22px;
  }

  .home-faith-section {
    margin: 52px 0 78px;
    padding-top: 46px;
  }

  .home-faith-head {
    margin-bottom: 30px;
  }

  .home-faith-head h2 {
    font-size: clamp(36px, 9.4vw, 56px);
  }

  .home-faith-grid,
  .home-faith-posts,
  .home-faith-programs {
    grid-template-columns: 1fr;
  }

  .home-faith-lead a {
    min-height: 560px;
  }

  .home-faith-post-card a {
    padding: 16px;
  }

  .home-faith-program a {
    min-height: 210px;
    padding: 28px 24px;
  }

  .home-side-stack {
    order: -1;
  }

  .home-main-story {
    min-height: 560px;
  }

  .home-popular-card article a {
    grid-template-columns: 76px 1fr;
  }

  .site-modal {
    padding: 12px;
  }

  .menu-modal-panel,
  .search-modal-panel,
  .weather-modal-panel,
  .advertise-modal-panel {
    max-height: calc(100vh - 24px);
  }

  .modal-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .menu-modal-brand {
    padding: 54px 20px 24px;
  }

  .menu-modal-grid,
  .weather-modal-panel,
  .advertise-modal-panel {
    grid-template-columns: 1fr;
  }

  .menu-modal-section,
  .menu-modal-feature {
    min-height: auto;
    padding: 28px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--ctv-line);
  }

  .menu-modal-feature {
    min-height: 320px;
  }

  .search-modal-panel {
    padding: 58px 20px 28px;
  }

  .search-modal-panel input {
    min-height: 62px;
  }

  .weather-modal-panel {
    overflow: auto;
    border-radius: 14px;
  }

  .weather-modal-current {
    min-height: 360px;
    padding: 58px 22px 30px;
  }

  .weather-modal-current h2 {
    margin-top: 22px;
    font-size: clamp(46px, 14vw, 76px);
  }

  .weather-modal-temp {
    margin-top: 28px;
  }

  .weather-modal-temp strong {
    font-size: clamp(82px, 24vw, 126px);
  }

  .weather-modal-current small {
    margin-top: 34px;
  }

  .weather-modal-detail {
    padding: 24px 20px 28px;
  }

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

  .weather-search button {
    min-width: 0;
  }

  .weather-stats,
  .weather-forecast {
    grid-template-columns: 1fr 1fr;
  }

  .search-results {
    grid-template-columns: 1fr;
  }

  .search-result-card {
    min-height: 150px;
  }

  .advertise-intro {
    min-height: auto;
    padding: 60px 22px 30px;
  }

  .advertise-forminator {
    padding: 22px;
  }

  .utility-bar {
    grid-template-columns: auto auto minmax(0, 1fr) auto;
    gap: 14px;
    min-height: 54px;
  }

  .utility-links {
    justify-content: end;
    gap: 14px;
  }

  .account-link {
    display: none;
  }

  .subscribe-link {
    justify-self: end;
    min-height: 36px;
    padding: 0 14px;
  }

  .brand-band {
    grid-template-columns: 1fr;
    padding: 18px var(--ctv-gutter) 16px;
  }

  .header-ad-slot {
    display: none;
  }

  .brand-mark img,
  .ctv-logo-image {
    width: 148px;
  }

  .brand-mark span {
    max-width: 32ch;
  }

  .category-menu,
  .ctv-menu {
    justify-content: flex-start;
    gap: 26px;
    padding-block: 13px;
  }

  .ctv-dev-grid,
  .ctv-post-list {
    grid-template-columns: 1fr;
  }

  .reveal-footer {
    position: relative;
    min-height: auto;
  }

  .floating-live,
  .floating-live-tab {
    display: none;
  }

  .ctv-about-live-floating .floating-live,
  .ctv-about-live-floating .floating-live-tab {
    display: block;
  }

  .ctv-about-live-floating .floating-live-head {
    display: flex;
  }

  .footer-topline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-topline nav,
  .footer-menu,
  .footer-bottom {
    display: grid;
    justify-content: start;
  }
}

@media (max-width: 430px) {
  .home-main-story {
    min-height: 520px;
  }

  .home-main-story-slide > div {
    width: 100%;
    padding: 22px;
    padding-bottom: 82px;
  }

  .home-main-story h1 {
    max-width: 11.5ch;
    font-size: clamp(32px, 10.5vw, 42px);
    -webkit-line-clamp: 4;
  }

  .home-main-story p {
    font-size: 15px;
    -webkit-line-clamp: 2;
  }

  .home-main-story-controls {
    right: 18px;
    bottom: 18px;
  }

  .home-live-card {
    padding: 14px;
  }

  .home-live-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-commercial-strip {
    grid-template-columns: 1fr;
  }

  .home-commercial-strip > * {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }

  .home-commercial-strip > *:last-child {
    border-bottom: 0;
  }

  .home-commercial-stat p {
    max-width: none;
  }

  .home-agenda-feature img,
  .home-agenda-card img {
    aspect-ratio: 16 / 9;
  }

  .home-agenda-feature div,
  .home-agenda-card div {
    padding: 24px;
  }

  .home-faith-lead div {
    padding: 26px;
  }

  .home-faith-lead h3,
  .home-faith-program h3 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .home-faith-lead p,
  .home-faith-program p {
    font-size: 16px;
  }

  .home-agenda-side {
    grid-template-columns: 1fr;
  }

  .weather-stats,
  .weather-forecast {
    grid-template-columns: 1fr;
  }

  .utility-bar {
    grid-template-columns: auto auto minmax(0, 1fr) auto;
    font-size: 12px;
  }

  .utility-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .utility-links::-webkit-scrollbar {
    display: none;
  }

  .search-button {
    justify-self: start;
  }

  .subscribe-link {
    min-width: 0;
    padding: 0 12px;
  }
}

.home-epg-section {
  margin: clamp(64px, 9vw, 120px) calc(var(--ctv-gutter) * -1) clamp(58px, 8vw, 104px);
  padding: 0 var(--ctv-gutter);
}

.ctv-programming-page .home-epg-section {
  margin: 0 0 clamp(58px, 8vw, 104px);
  padding: 0;
}

.ctv-programming-page .home-epg-head {
  width: min(1380px, calc(100% - (var(--ctv-gutter) * 2)));
  margin-right: auto;
  margin-left: auto;
}

.home-epg-head {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 0.9fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 46px);
  border-top: 1px solid var(--ctv-line);
  padding-top: clamp(42px, 7vw, 76px);
}

.home-epg-head span,
.home-epg-channel span,
.home-epg-program-detail span,
.home-epg-card span {
  color: var(--ctv-cyan);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.home-epg-head h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(42px, 5.8vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

.home-epg-head p {
  grid-column: 2;
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--ctv-muted);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 800;
  line-height: 1.45;
}

.home-epg-board {
  overflow: hidden;
  border-radius: 0 0 22px 22px;
  background: #101318;
  color: var(--ctv-white);
  box-shadow: 0 26px 70px rgba(23, 25, 29, 0.16);
}

.home-epg-board::before {
  content: "";
  display: block;
  height: 8px;
  background: linear-gradient(90deg, var(--ctv-cyan), var(--ctv-magenta), #ff7b22, var(--ctv-lime));
}

.home-epg-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-epg-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.home-epg-tabs::-webkit-scrollbar,
.home-epg-timeline::-webkit-scrollbar {
  display: none;
}

.home-epg-tab,
.home-epg-now,
.home-epg-program-detail button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  padding: 0 24px;
  font-weight: 950;
  cursor: pointer;
  white-space: nowrap;
}

.home-epg-tab.is-active,
.home-epg-now {
  border-color: transparent;
  background: var(--ctv-magenta);
  color: var(--ctv-white);
}

.home-epg-now {
  background: var(--ctv-white);
  color: var(--ctv-ink);
}

.home-epg-focus {
  display: grid;
  grid-template-columns: minmax(230px, 0.28fr) minmax(0, 1fr);
  min-height: clamp(360px, 36vw, 520px);
}

.home-epg-channel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 54px);
  background: linear-gradient(145deg, rgba(34, 196, 223, 0.22), rgba(250, 8, 120, 0.22)), #15191f;
}

.home-epg-channel span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ctv-white);
}

.home-epg-channel i,
.home-epg-live-panel .home-live-head span::before {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--ctv-magenta);
  box-shadow: 0 0 0 10px rgba(250, 8, 120, 0.16);
  animation: ctvLivePulse 1.4s ease-in-out infinite;
}

.home-epg-channel h3 {
  max-width: 420px;
  margin: 30px 0 22px;
  font-size: clamp(42px, 4.6vw, 72px);
  line-height: 0.94;
  letter-spacing: 0;
}

.home-epg-channel p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 850;
  line-height: 1.35;
}

.home-epg-feature {
  display: grid;
  min-width: 0;
  background: var(--ctv-white);
  color: var(--ctv-ink);
}

.home-epg-live-panel,
.home-epg-program-detail {
  min-height: 100%;
}

.home-epg-live-panel {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: clamp(360px, 36vw, 520px);
  background: #05070a;
}

.home-epg-live-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #05070a;
  object-fit: cover;
}

.home-epg-program-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.5fr) minmax(280px, 0.5fr);
  background: #f8f8f3;
}

.home-epg-program-detail[hidden] {
  display: none;
}

.home-epg-program-detail img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.home-epg-program-detail div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 6vw, 78px);
}

.home-epg-program-detail span {
  color: var(--ctv-magenta);
}

.home-epg-program-detail h3 {
  margin: 18px 0 12px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

.home-epg-program-detail time {
  color: var(--ctv-muted);
  font-size: 20px;
  font-weight: 950;
}

.home-epg-program-detail p {
  max-width: 560px;
  margin: 24px 0 34px;
  color: var(--ctv-muted);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 850;
  line-height: 1.45;
}

.home-epg-program-detail button {
  width: max-content;
  border-radius: 4px;
  background: var(--ctv-ink);
  color: var(--ctv-white);
}

.home-epg-timeline {
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
}

.home-epg-timeline.is-dragging {
  cursor: grabbing;
}

.home-epg-timeline-inner {
  position: relative;
  width: var(--epg-timeline-width, 4080px);
  min-height: 340px;
  background:
    repeating-linear-gradient(90deg, transparent 0 calc(var(--epg-hour-width, 240px) - 1px), rgba(255, 255, 255, 0.08) calc(var(--epg-hour-width, 240px) - 1px) var(--epg-hour-width, 240px)),
    #101318;
}

.home-epg-hours {
  display: grid;
  grid-template-columns: repeat(17, var(--epg-hour-width, 240px));
  height: 78px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-epg-hour {
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.home-epg-programs {
  position: relative;
  min-height: 262px;
}

.home-epg-card {
  position: absolute;
  top: 30px;
  height: 214px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(150deg, color-mix(in srgb, var(--program-tone, #252a35) 78%, transparent), rgba(255, 255, 255, 0.05));
  color: var(--ctv-white);
  padding: 26px;
  text-align: left;
  cursor: pointer;
}

.home-epg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--program-image);
  background-position: center;
  background-size: cover;
  opacity: 0.22;
  transition: opacity 0.2s ease;
}

.home-epg-card > * {
  position: relative;
  z-index: 1;
}

.home-epg-card:hover::before,
.home-epg-card:focus-visible::before {
  opacity: 0.34;
}

.home-epg-card span {
  color: var(--ctv-cyan);
}

.home-epg-card strong {
  max-width: 95%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.2vw, 40px);
  line-height: 0.96;
  letter-spacing: 0;
}

.home-epg-card time {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 950;
}

.home-epg-now-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #1787ff;
  box-shadow: 0 0 0 1px rgba(23, 135, 255, 0.3);
  opacity: 0;
  pointer-events: none;
}

.home-epg-now-line.is-visible {
  opacity: 1;
}

@media (max-width: 980px) {
  .home-epg-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-epg-head p {
    grid-column: auto;
  }

  .home-epg-focus,
  .home-epg-program-detail {
    grid-template-columns: 1fr;
  }

  .home-epg-channel {
    min-height: 300px;
  }

  .home-epg-program-detail img {
    min-height: 260px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .home-epg-section {
    margin-top: 52px;
  }

  .home-epg-toolbar {
    grid-template-columns: 1fr;
  }

  .home-epg-now {
    width: max-content;
  }

  .home-epg-channel,
  .home-epg-program-detail div {
    padding: 24px;
  }

  .home-epg-live-video {
    min-height: 0;
  }

  .home-epg-timeline-inner {
    width: var(--epg-timeline-width, 3040px);
  }

  .home-epg-hours {
    grid-template-columns: repeat(17, var(--epg-hour-width, 190px));
  }

  .home-epg-card {
    padding: 20px;
  }
}

.ctv-reports-shell {
  max-width: 1480px;
  margin: clamp(58px, 8vw, 112px) auto;
  padding: 0 clamp(18px, 3vw, 38px);
}

.ctv-reports-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 54px);
}

.ctv-reports-intro span,
.ctv-reports-form-card > span,
.ctv-reports-feed > span,
.ctv-report-list article span {
  color: var(--ctv-cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.ctv-reports-intro h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.94;
  letter-spacing: 0;
}

.ctv-reports-intro p {
  grid-column: 2;
  max-width: 720px;
  margin: 0;
  color: var(--ctv-muted);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.42;
}

.ctv-reports-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  border-top: 6px solid transparent;
  border-image: var(--ctv-ribbon) 1;
  background: var(--ctv-white);
  box-shadow: 0 28px 90px rgba(17, 20, 26, 0.08);
}

.ctv-reports-form-card,
.ctv-reports-feed {
  padding: clamp(28px, 4vw, 58px);
}

.ctv-reports-form-card {
  background:
    radial-gradient(circle at top left, rgba(255, 0, 119, 0.08), transparent 38%),
    #fffef8;
}

.ctv-reports-feed {
  border-left: 1px solid var(--ctv-border);
  background: linear-gradient(150deg, rgba(45, 195, 215, 0.08), rgba(255, 255, 255, 0.95));
}

.ctv-reports-form-card h3,
.ctv-reports-feed h3 {
  margin: 16px 0 22px;
  font-size: clamp(34px, 3.2vw, 58px);
  line-height: 0.96;
  letter-spacing: 0;
}

.ctv-reports-feed > p,
.ctv-report-legal,
.ctv-report-login-required p {
  color: var(--ctv-muted);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.ctv-report-form {
  display: grid;
  gap: 18px;
}

.ctv-report-form label {
  display: grid;
  gap: 8px;
  color: var(--ctv-ink);
  font-size: 14px;
  font-weight: 950;
}

.ctv-report-form input,
.ctv-report-form select,
.ctv-report-form textarea {
  width: 100%;
  border: 2px solid rgba(17, 20, 26, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ctv-ink);
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  padding: 15px 16px;
}

.ctv-report-form textarea {
  resize: vertical;
}

.ctv-report-form input:focus,
.ctv-report-form select:focus,
.ctv-report-form textarea:focus {
  border-color: var(--ctv-cyan);
  outline: none;
  box-shadow: 0 0 0 4px rgba(45, 195, 215, 0.18);
}

.ctv-report-hint {
  display: block;
  margin-top: 2px;
  color: var(--ctv-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.ctv-report-check {
  grid-template-columns: 22px 1fr;
  align-items: start;
}

.ctv-report-check input {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  padding: 0;
}

.ctv-report-form button,
.ctv-report-login-required a {
  width: max-content;
  border: 0;
  border-radius: 4px;
  background: var(--ctv-ink);
  color: var(--ctv-white);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.06em;
  padding: 18px 22px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.ctv-report-notice {
  border-left: 6px solid var(--ctv-magenta);
  background: rgba(255, 0, 119, 0.08);
  color: var(--ctv-ink);
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 22px;
  padding: 16px 18px;
}

.ctv-report-notice--recibido {
  border-left-color: var(--ctv-cyan);
  background: rgba(45, 195, 215, 0.12);
}

.ctv-report-login-required {
  border-left: 6px solid var(--ctv-magenta);
  background: rgba(255, 0, 119, 0.07);
  padding: 24px;
}

.ctv-report-login-required strong {
  display: block;
  color: var(--ctv-ink);
  font-size: 24px;
  font-weight: 950;
}

.ctv-report-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--ctv-border);
}

.ctv-report-list article {
  padding: 24px 0;
  border-bottom: 1px solid var(--ctv-border);
}

.ctv-report-list h4 {
  margin: 10px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1;
  letter-spacing: 0;
}

.ctv-report-list p {
  margin: 0 0 12px;
  color: var(--ctv-muted);
  font-weight: 800;
  line-height: 1.38;
}

.ctv-report-list small {
  color: var(--ctv-magenta);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .ctv-reports-intro,
  .ctv-reports-grid {
    grid-template-columns: 1fr;
  }

  .ctv-reports-intro p {
    grid-column: auto;
  }

  .ctv-reports-feed {
    border-left: 0;
    border-top: 1px solid var(--ctv-border);
  }
}

.ctv-contact-form-shell {
  max-width: 640px;
  margin: 40px 0;
}

.ctv-contact-form {
  display: grid;
  gap: 18px;
}

.ctv-contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ctv-ink);
  font-size: 14px;
  font-weight: 950;
}

.ctv-contact-form input,
.ctv-contact-form select,
.ctv-contact-form textarea {
  width: 100%;
  border: 2px solid rgba(17, 20, 26, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ctv-ink);
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  padding: 15px 16px;
}

.ctv-contact-form textarea {
  resize: vertical;
}

.ctv-contact-form input:focus,
.ctv-contact-form select:focus,
.ctv-contact-form textarea:focus {
  border-color: var(--ctv-cyan);
  outline: none;
  box-shadow: 0 0 0 4px rgba(45, 195, 215, 0.18);
}

.ctv-contact-form button {
  width: max-content;
  border: 0;
  border-radius: 4px;
  background: var(--ctv-ink);
  color: var(--ctv-white);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.06em;
  padding: 18px 22px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.ctv-contact-form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.ctv-contact-notice {
  border-left: 6px solid var(--ctv-magenta);
  background: rgba(255, 0, 119, 0.08);
  color: var(--ctv-ink);
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 22px;
  padding: 16px 18px;
}

.ctv-contact-notice--enviado {
  border-left-color: var(--ctv-cyan);
  background: rgba(45, 195, 215, 0.12);
}

.citizen-chat {
  position: fixed;
  left: max(18px, env(safe-area-inset-left));
  bottom: 76px;
  z-index: 930;
  color: var(--ctv-white);
}

.citizen-chat-launcher {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--ctv-ink);
  color: var(--ctv-white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  padding: 0 20px;
}

.citizen-chat-launcher span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--ctv-magenta);
  box-shadow: 0 0 0 8px rgba(250, 8, 120, 0.18);
}

.citizen-chat-launcher strong {
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.citizen-chat-panel {
  position: absolute;
  left: 0;
  bottom: 68px;
  width: min(420px, calc(100vw - 36px));
  max-height: min(720px, calc(100vh - 120px));
  overflow: hidden;
  border-top: 5px solid transparent;
  border-image: var(--ctv-ribbon) 1;
  background: #fffef8;
  color: var(--ctv-ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) scale(0.98);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.citizen-chat.is-open .citizen-chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.citizen-chat-panel header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  background: var(--ctv-ink);
  color: var(--ctv-white);
  padding: 18px 18px 16px;
}

.citizen-chat-panel header span,
.citizen-chat-body label,
.citizen-chat-login a {
  color: var(--ctv-magenta);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.citizen-chat-panel h2 {
  margin: 6px 0 0;
  color: var(--ctv-white);
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0;
}

.citizen-chat-panel header button {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ctv-white);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.citizen-chat-body {
  max-height: calc(min(720px, 100vh - 120px) - 84px);
  overflow-y: auto;
  padding: 20px;
}

.citizen-chat-body > p,
.citizen-chat-login p {
  margin: 0 0 18px;
  color: var(--ctv-muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.42;
}

.citizen-chat-form {
  display: grid;
  gap: 13px;
}

.citizen-chat-form label {
  display: grid;
  gap: 7px;
  color: var(--ctv-ink);
}

.citizen-chat-form input,
.citizen-chat-form select,
.citizen-chat-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 20, 26, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ctv-ink);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 13px;
}

.citizen-chat-form textarea {
  resize: vertical;
}

.citizen-chat-form input:focus,
.citizen-chat-form select:focus,
.citizen-chat-form textarea:focus {
  border-color: var(--ctv-cyan);
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 195, 215, 0.16);
}

.citizen-chat-check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--ctv-muted);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.citizen-chat-check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  padding: 0;
}

.citizen-chat-form button,
.citizen-chat-login a {
  width: 100%;
  border: 0;
  border-radius: 4px;
  background: var(--ctv-ink);
  color: var(--ctv-white);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 15px 16px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.citizen-chat-login {
  border-left: 6px solid var(--ctv-magenta);
  background: rgba(255, 0, 119, 0.08);
  padding: 18px;
}

.citizen-chat-login strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ctv-ink);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.05;
}

.citizen-chat-login a {
  display: block;
  margin-top: 14px;
}

@media (max-width: 640px) {
  .citizen-chat {
    left: 14px;
    right: 14px;
    bottom: 66px;
  }

  .citizen-chat-launcher {
    min-height: 50px;
    padding: 0 16px;
  }

  .citizen-chat-panel {
    position: fixed;
    inset: 0;
    z-index: 940;
    width: 100%;
    height: 100dvh;
    max-height: none;
    display: flex;
    flex-direction: column;
  }

  .citizen-chat-panel header {
    flex: 0 0 auto;
    padding-top: max(18px, env(safe-area-inset-top));
  }

  .citizen-chat-body {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }
}

body.citizen-chat-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .ctv-reports-form-card,
  .ctv-reports-feed {
    padding: 24px;
  }

  .ctv-report-form button,
  .ctv-report-login-required a {
    width: 100%;
    text-align: center;
  }
}

.ctv-commerce-page {
  background: #f1f2f4;
  padding: clamp(48px, 7vw, 96px) clamp(18px, 4vw, 72px);
}

.ctv-commerce-page .ctv-page-article {
  max-width: 1280px;
  margin: 0 auto;
}

.ctv-commerce-hero {
  position: relative;
  overflow: hidden;
  border-top: 7px solid var(--ctv-cyan);
  background:
    linear-gradient(115deg, rgba(255, 0, 119, 0.1), rgba(44, 195, 212, 0.08) 48%, rgba(221, 255, 0, 0.14)),
    var(--ctv-white);
  padding: clamp(34px, 5vw, 76px);
}

.ctv-commerce-hero::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--ctv-cyan), var(--ctv-magenta), #ff7a1a, var(--ctv-lime));
}

.ctv-commerce-hero span,
.ctv-commerce-shell .woocommerce-form-login-toggle,
.ctv-commerce-shell .woocommerce-form-coupon-toggle {
  color: var(--ctv-magenta);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ctv-commerce-hero h1 {
  max-width: 760px;
  margin: 22px 0 16px;
  color: var(--ctv-ink);
  font-size: clamp(46px, 7vw, 96px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.88;
}

.ctv-commerce-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--ctv-muted);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 850;
  line-height: 1.35;
}

.ctv-commerce-shell {
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 23, 28, 0.09);
  box-shadow: 0 28px 80px rgba(20, 23, 28, 0.08);
  padding: clamp(24px, 4vw, 56px);
}

.ctv-commerce-page .ctv-commerce-hero + .ctv-commerce-shell,
.ctv-commerce-page .ctv-commerce-hero + .ctv-page-content {
  margin-top: 28px;
}

.ctv-commerce-shell .woocommerce {
  color: var(--ctv-ink);
  font-family: var(--ctv-sans);
}

.ctv-commerce-shell .woocommerce h2,
.ctv-commerce-shell .woocommerce h3,
.ctv-commerce-shell .woocommerce-loop-product__title,
.ctv-commerce-shell .product_title {
  color: var(--ctv-ink);
  font-family: var(--ctv-sans);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
}

.ctv-commerce-shell .woocommerce-loop-product__title {
  font-size: clamp(22px, 2vw, 34px);
}

.ctv-commerce-shell .product_title {
  font-size: clamp(42px, 6vw, 82px);
}

.ctv-commerce-shell .price,
.ctv-commerce-shell .amount {
  color: var(--ctv-magenta);
  font-weight: 950;
}

.ctv-commerce-shell .woocommerce-message,
.ctv-commerce-shell .woocommerce-info,
.ctv-commerce-shell .woocommerce-error {
  border: 0;
  border-left: 7px solid var(--ctv-magenta);
  background: rgba(255, 0, 119, 0.08);
  color: var(--ctv-ink);
  font-weight: 850;
  padding: 18px 22px;
}

.ctv-commerce-shell .woocommerce-info {
  border-left-color: var(--ctv-cyan);
  background: rgba(44, 195, 212, 0.1);
}

.ctv-commerce-shell .woocommerce-error {
  border-left-color: #ff4f2f;
}

.ctv-commerce-shell .button,
.ctv-commerce-shell button.button,
.ctv-commerce-shell input.button,
.ctv-commerce-shell #respond input#submit,
.ctv-commerce-shell .wc-block-components-button,
.ctv-commerce-shell .wp-element-button {
  border: 0;
  border-radius: 6px;
  background: var(--ctv-ink);
  color: var(--ctv-white);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 15px 20px;
  text-transform: uppercase;
}

.ctv-commerce-shell .checkout-button,
.ctv-commerce-shell .single_add_to_cart_button,
.ctv-commerce-shell .wc-block-cart__submit-button,
.ctv-commerce-shell .wc-block-components-checkout-place-order-button {
  background: var(--ctv-lime);
  color: var(--ctv-ink);
}

.ctv-commerce-shell input[type="text"],
.ctv-commerce-shell input[type="email"],
.ctv-commerce-shell input[type="tel"],
.ctv-commerce-shell input[type="password"],
.ctv-commerce-shell input[type="number"],
.ctv-commerce-shell textarea,
.ctv-commerce-shell select,
.ctv-commerce-shell .select2-container .select2-selection--single {
  min-height: 48px;
  border: 2px solid rgba(20, 23, 28, 0.18);
  border-radius: 4px;
  background: var(--ctv-white);
  color: var(--ctv-ink);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 14px;
}

.ctv-commerce-shell input:focus,
.ctv-commerce-shell textarea:focus,
.ctv-commerce-shell select:focus {
  border-color: var(--ctv-cyan);
  box-shadow: 0 0 0 4px rgba(44, 195, 212, 0.16);
  outline: none;
}

.ctv-commerce-shell label {
  color: var(--ctv-ink);
  font-size: 14px;
  font-weight: 950;
}

.ctv-commerce-shell table.shop_table,
.ctv-commerce-shell .woocommerce-orders-table,
.ctv-commerce-shell .wc-block-cart-items {
  border: 1px solid rgba(20, 23, 28, 0.11);
  border-radius: 0;
  background: var(--ctv-white);
}

.ctv-commerce-shell table.shop_table th,
.ctv-commerce-shell table.shop_table td,
.ctv-commerce-shell .woocommerce-orders-table th,
.ctv-commerce-shell .woocommerce-orders-table td {
  border-color: rgba(20, 23, 28, 0.1);
  color: var(--ctv-ink);
  font-weight: 850;
  padding: 18px;
}

.ctv-commerce-shell table.shop_table th,
.ctv-commerce-shell .woocommerce-orders-table th {
  color: var(--ctv-magenta);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ctv-commerce-shell .woocommerce-MyAccount-navigation ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.ctv-commerce-shell .woocommerce-MyAccount-navigation a {
  display: block;
  border: 1px solid rgba(20, 23, 28, 0.12);
  background: #f8f8f5;
  color: var(--ctv-ink);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 16px;
  text-decoration: none;
  text-transform: uppercase;
}

.ctv-commerce-shell .woocommerce-MyAccount-navigation .is-active a,
.ctv-commerce-shell .woocommerce-MyAccount-navigation a:hover {
  background: var(--ctv-magenta);
  color: var(--ctv-white);
}

.ctv-commerce-shell .woocommerce-MyAccount-content {
  border-left: 7px solid var(--ctv-cyan);
  background: var(--ctv-white);
  padding: clamp(22px, 3vw, 38px);
}

.ctv-commerce-shell ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.ctv-commerce-shell ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  border: 1px solid rgba(20, 23, 28, 0.1);
  background: var(--ctv-white);
  padding: 0 0 20px;
}

.ctv-commerce-shell ul.products li.product img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin: 0 0 18px;
}

.ctv-commerce-shell ul.products li.product .woocommerce-loop-product__title,
.ctv-commerce-shell ul.products li.product .price,
.ctv-commerce-shell ul.products li.product .button {
  margin-left: 18px;
  margin-right: 18px;
}

.ctv-commerce-shell .cart_totals,
.ctv-commerce-shell .woocommerce-checkout-review-order,
.ctv-commerce-shell form.checkout,
.ctv-commerce-shell form.login,
.ctv-commerce-shell form.register {
  border: 1px solid rgba(20, 23, 28, 0.11);
  background: var(--ctv-white);
  padding: clamp(22px, 3vw, 36px);
}

@media (max-width: 760px) {
  .ctv-commerce-page {
    padding: 28px 14px 70px;
  }

  .ctv-commerce-hero,
  .ctv-commerce-shell {
    padding: 24px;
  }

  .ctv-commerce-hero h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .ctv-commerce-shell table.shop_table th,
  .ctv-commerce-shell table.shop_table td {
    padding: 12px;
  }
}

.ctv-commercial-template {
  background: var(--ctv-paper);
}

.ctv-commercial-page {
  position: relative;
  z-index: 2;
  background: var(--ctv-paper);
  padding: clamp(48px, 7vw, 108px) clamp(18px, 4vw, 72px) clamp(86px, 9vw, 150px);
}

.ctv-commercial-page > * {
  width: min(1500px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.ctv-commercial-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  border-top: 8px solid var(--ctv-cyan);
  background:
    linear-gradient(115deg, rgba(255, 0, 119, 0.08), rgba(44, 195, 212, 0.07) 52%, rgba(221, 255, 0, 0.12)),
    var(--ctv-white);
  padding: clamp(34px, 5vw, 78px);
}

.ctv-commercial-hero > div:first-child::before {
  content: "";
  display: block;
  width: min(220px, 45vw);
  height: 8px;
  margin-bottom: clamp(26px, 4vw, 54px);
  background: linear-gradient(90deg, var(--ctv-cyan), var(--ctv-magenta), #ff7a1a, var(--ctv-lime));
}

.ctv-commercial-hero span,
.ctv-commercial-section-heading span,
.ctv-commercial-package > span,
.ctv-commercial-service-grid article > span,
.ctv-commercial-process span,
.ctv-commercial-media-kit span {
  color: var(--ctv-magenta);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ctv-commercial-hero h1 {
  max-width: 900px;
  margin: 22px 0 0;
  color: var(--ctv-ink);
  font-size: clamp(48px, 7vw, 112px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.86;
}

.ctv-commercial-hero p {
  margin: 0;
  color: var(--ctv-muted);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 850;
  line-height: 1.35;
}

.ctv-commercial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ctv-commercial-actions a,
.ctv-commercial-package a,
.ctv-commercial-media-kit a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 6px;
  background: var(--ctv-ink);
  color: var(--ctv-white);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 15px 20px;
  text-decoration: none;
  text-transform: uppercase;
}

.ctv-commercial-actions a:first-child,
.ctv-commercial-media-kit a {
  background: var(--ctv-lime);
  color: var(--ctv-ink);
}

.ctv-commercial-packages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(20, 23, 28, 0.12);
  border-left: 1px solid rgba(20, 23, 28, 0.12);
  background: var(--ctv-white);
}

.ctv-commercial-package {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  border-right: 1px solid rgba(20, 23, 28, 0.12);
  border-bottom: 1px solid rgba(20, 23, 28, 0.12);
  padding: clamp(26px, 3vw, 42px);
}

.ctv-commercial-package:nth-child(2n) > span {
  color: var(--ctv-cyan);
}

.ctv-commercial-package:nth-child(3n) > span {
  color: var(--ctv-lime);
}

.ctv-commercial-package h2 {
  margin: 30px 0 18px;
  color: var(--ctv-ink);
  font-family: var(--ctv-serif);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 0.95;
}

.ctv-commercial-package strong {
  color: var(--ctv-ink);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ctv-commercial-package p {
  margin: 20px 0 30px;
  color: var(--ctv-muted);
  font-size: 17px;
  font-weight: 820;
  line-height: 1.45;
}

.ctv-commercial-package a {
  width: max-content;
  margin-top: auto;
}

.ctv-commercial-services {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 74px);
  padding-top: clamp(62px, 8vw, 124px);
}

.ctv-commercial-section-heading h2 {
  margin: 20px 0 0;
  color: var(--ctv-ink);
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
}

.ctv-commercial-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(20, 23, 28, 0.11);
  border-left: 1px solid rgba(20, 23, 28, 0.11);
  background: rgba(255, 255, 255, 0.78);
}

.ctv-commercial-service-grid article {
  min-height: 230px;
  border-right: 1px solid rgba(20, 23, 28, 0.11);
  border-bottom: 1px solid rgba(20, 23, 28, 0.11);
  padding: clamp(22px, 3vw, 38px);
}

.ctv-commercial-service-grid article > span {
  color: var(--ctv-cyan);
}

.ctv-commercial-service-grid h3 {
  margin: 22px 0 14px;
  color: var(--ctv-ink);
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
}

.ctv-commercial-service-grid p {
  margin: 0;
  color: var(--ctv-muted);
  font-size: 16px;
  font-weight: 820;
  line-height: 1.45;
}

.ctv-commercial-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(42px, 6vw, 80px);
  background: var(--ctv-ink);
}

.ctv-commercial-process article {
  min-height: 170px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: clamp(22px, 3vw, 36px);
}

.ctv-commercial-process span {
  color: var(--ctv-lime);
}

.ctv-commercial-process p {
  margin: 28px 0 0;
  color: var(--ctv-white);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.ctv-commercial-media-kit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: clamp(38px, 5vw, 76px);
  border: 1px dashed rgba(20, 23, 28, 0.24);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 0, 119, 0.1), transparent 34%),
    radial-gradient(circle at 88% 30%, rgba(44, 195, 212, 0.12), transparent 36%),
    #fffef8;
  padding: clamp(28px, 4vw, 56px);
}

.ctv-commercial-media-kit h2 {
  max-width: 980px;
  margin: 16px 0 14px;
  color: var(--ctv-ink);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
}

.ctv-commercial-media-kit p {
  max-width: 780px;
  margin: 0;
  color: var(--ctv-muted);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.4;
}

.ctv-commercial-extra-content {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(70px, 8vw, 120px);
  background: var(--ctv-white);
  padding: clamp(24px, 4vw, 54px);
}

@media (max-width: 1080px) {
  .ctv-commercial-hero,
  .ctv-commercial-services,
  .ctv-commercial-media-kit {
    grid-template-columns: 1fr;
  }

  .ctv-commercial-packages,
  .ctv-commercial-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .ctv-commercial-page {
    padding: 30px 12px 86px;
  }

  .ctv-commercial-hero,
  .ctv-commercial-package,
  .ctv-commercial-service-grid article,
  .ctv-commercial-media-kit {
    padding: 24px;
  }

  .ctv-commercial-packages,
  .ctv-commercial-service-grid,
  .ctv-commercial-process {
    grid-template-columns: 1fr;
  }

  .ctv-commercial-package {
    min-height: 0;
  }

  .ctv-commercial-actions a,
  .ctv-commercial-package a,
  .ctv-commercial-media-kit a {
    width: 100%;
  }
}

.ctv-editorial-archive {
  position: relative;
  z-index: 2;
  min-height: 70vh;
  background: var(--ctv-paper);
  padding: clamp(46px, 6vw, 90px) clamp(18px, 4vw, 72px) clamp(90px, 9vw, 150px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.ctv-archive-hero,
.ctv-author-hero {
  width: min(1480px, 100%);
  margin: 0 auto clamp(34px, 5vw, 72px);
  border-top: 7px solid var(--ctv-cyan);
  background:
    linear-gradient(112deg, rgba(44, 195, 212, 0.1), rgba(255, 0, 119, 0.08) 58%, rgba(221, 255, 0, 0.13)),
    var(--ctv-white);
  padding: clamp(30px, 5vw, 76px);
}

.ctv-author-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
}

.ctv-author-avatar {
  width: 112px;
  height: 112px;
  border: 6px solid var(--ctv-white);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(20, 23, 28, 0.18);
}

.ctv-archive-hero span,
.ctv-author-hero span,
.ctv-no-results span,
.ctv-editorial-card span {
  color: var(--ctv-magenta);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ctv-archive-hero h1,
.ctv-author-hero h1 {
  max-width: 980px;
  margin: 18px 0 18px;
  color: var(--ctv-ink);
  font-size: clamp(46px, 7vw, 100px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
}

.ctv-archive-hero p,
.ctv-author-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--ctv-muted);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 850;
  line-height: 1.36;
}

.ctv-archive-meta {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  gap: 10px 14px;
  align-items: center;
  margin-top: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(20, 23, 28, 0.1);
  background: rgba(255, 255, 255, 0.74);
  padding: 12px 16px;
}

.ctv-archive-meta strong {
  color: var(--ctv-ink);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 950;
  line-height: 1;
}

.ctv-archive-meta span,
.ctv-archive-meta small,
.ctv-archive-meta a {
  color: var(--ctv-muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ctv-archive-meta a {
  color: var(--ctv-magenta);
  text-decoration: none;
}

.ctv-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1480px, 100%);
  margin: 0 auto;
  background: rgba(20, 23, 28, 0.12);
  border: 1px solid rgba(20, 23, 28, 0.08);
}

.ctv-post-list .ctv-editorial-card {
  min-height: 100%;
}

.ctv-editorial-card {
  position: relative;
  background: var(--ctv-white);
}

.ctv-editorial-card a {
  display: grid;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.ctv-editorial-card figure {
  margin: 0;
  background: #dfe2e4;
}

.ctv-editorial-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ctv-editorial-card-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
}

.ctv-editorial-card h2 {
  margin: 0;
  color: var(--ctv-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.5vw, 42px);
  line-height: 0.98;
}

.ctv-editorial-card p {
  margin: 0;
  color: var(--ctv-muted);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.38;
}

.ctv-editorial-card time {
  color: var(--ctv-muted);
  font-size: 14px;
  font-weight: 850;
}

.ctv-editorial-card-category {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex !important;
  min-height: 34px !important;
  align-items: center;
  border: 1px solid rgba(20, 23, 28, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ctv-magenta) !important;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  padding: 0 12px;
  text-decoration: none;
  text-transform: uppercase;
}

.ctv-editorial-card:hover h2 {
  color: var(--ctv-magenta);
}

.ctv-archive-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  max-width: 860px;
  margin-top: 28px;
}

.ctv-archive-search input {
  min-height: 58px;
  border: 2px solid rgba(20, 23, 28, 0.14);
  border-radius: 6px;
  background: var(--ctv-white);
  color: var(--ctv-ink);
  font-size: 18px;
  font-weight: 850;
  padding: 0 18px;
}

.ctv-archive-search input:focus {
  border-color: var(--ctv-cyan);
  box-shadow: 0 0 0 4px rgba(44, 195, 212, 0.16);
  outline: none;
}

.ctv-archive-search button,
.ctv-no-results a {
  border: 0;
  border-radius: 6px;
  background: var(--ctv-ink);
  color: var(--ctv-white);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.1em;
  padding: 0 24px;
  text-decoration: none;
  text-transform: uppercase;
}

.ctv-no-results a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
}

.ctv-pagination {
  width: min(1480px, 100%);
  margin: 34px auto 0;
  background: var(--ctv-white);
  border: 1px solid rgba(20, 23, 28, 0.1);
}

.ctv-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ctv-pagination a,
.ctv-pagination span {
  display: inline-flex;
  min-width: 54px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(20, 23, 28, 0.1);
  color: var(--ctv-ink);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 0 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.ctv-pagination .current,
.ctv-pagination a:hover {
  background: var(--ctv-magenta);
  color: var(--ctv-white);
}

.ctv-no-results {
  display: grid;
  gap: 18px;
  width: min(900px, 100%);
  margin: 0 auto;
  border-left: 7px solid var(--ctv-magenta);
  background: var(--ctv-white);
  padding: clamp(28px, 5vw, 58px);
}

.ctv-no-results h2 {
  margin: 0;
  color: var(--ctv-ink);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.96;
}

.ctv-no-results p {
  max-width: 620px;
  margin: 0;
  color: var(--ctv-muted);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.42;
}

@media (max-width: 1000px) {
  .ctv-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .ctv-editorial-archive {
    padding: 30px 14px 80px;
  }

  .ctv-archive-hero,
  .ctv-author-hero {
    padding: 26px;
  }

  .ctv-author-hero {
    grid-template-columns: 1fr;
  }

  .ctv-editorial-grid {
    grid-template-columns: 1fr;
  }

  .ctv-archive-search {
    grid-template-columns: 1fr;
  }

  .ctv-archive-search button {
    min-height: 54px;
  }

  .ctv-archive-meta {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .ctv-editorial-card-category {
    position: static;
    margin: 0 24px 24px;
  }
}

.ctv-state-page {
  position: relative;
  z-index: 2;
  min-height: 68vh;
  background: var(--ctv-paper);
  padding: clamp(46px, 7vw, 110px) clamp(16px, 5vw, 76px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.ctv-site-state {
  display: grid;
  grid-template-columns: minmax(210px, 0.38fr) minmax(0, 1fr);
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-top: 7px solid var(--ctv-cyan);
  background: var(--ctv-white);
  box-shadow: 0 22px 60px rgba(20, 23, 28, 0.08);
}

.ctv-editorial-archive > .ctv-site-state {
  margin-top: 0;
}

.ctv-site-state--inline {
  width: 100%;
  grid-template-columns: 1fr;
  margin: clamp(26px, 4vw, 44px) 0;
  border-top-color: var(--ctv-magenta);
  box-shadow: none;
}

.ctv-site-state--inline .ctv-site-state-copy {
  padding: clamp(26px, 4vw, 46px);
}

.ctv-site-state-mark {
  position: relative;
  min-height: 360px;
  background:
    radial-gradient(circle at 22% 22%, rgba(44, 195, 212, 0.24), transparent 34%),
    radial-gradient(circle at 80% 85%, rgba(255, 0, 119, 0.32), transparent 38%),
    linear-gradient(145deg, #142e35, #14171c 48%, #391327);
}

.ctv-site-state-mark span {
  position: absolute;
  inset: auto 34px 34px auto;
  width: clamp(86px, 12vw, 150px);
  aspect-ratio: 1;
  border: 18px solid rgba(255, 255, 255, 0.86);
  border-right-color: var(--ctv-lime);
  border-bottom-color: var(--ctv-magenta);
  border-radius: 999px;
}

.ctv-site-state-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(34px, 6vw, 82px);
}

.ctv-site-state-copy > span {
  color: var(--ctv-magenta);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ctv-site-state-copy h1,
.ctv-site-state-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ctv-ink);
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
}

.ctv-site-state-copy h2 {
  font-size: clamp(34px, 5vw, 64px);
}

.ctv-site-state-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--ctv-muted);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 850;
  line-height: 1.38;
}

.ctv-site-state-copy a,
.ctv-protected-form button {
  justify-self: start;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: var(--ctv-ink);
  color: var(--ctv-white);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.1em;
  padding: 0 24px;
  text-decoration: none;
  text-transform: uppercase;
}

.ctv-site-state-copy a:hover,
.ctv-protected-form button:hover {
  background: var(--ctv-magenta);
}

.ctv-site-state--not-found .ctv-site-state-mark {
  background:
    radial-gradient(circle at 18% 24%, rgba(221, 255, 0, 0.22), transparent 31%),
    radial-gradient(circle at 78% 82%, rgba(255, 0, 119, 0.3), transparent 38%),
    linear-gradient(145deg, #10151b, #142d35 46%, #3b1028);
}

.ctv-site-state--error {
  border-top-color: var(--ctv-magenta);
}

.ctv-site-state--empty {
  border-top-color: var(--ctv-lime);
}

.ctv-site-state--protected {
  border-left: 7px solid var(--ctv-magenta);
}

.ctv-protected-form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.ctv-protected-form label {
  color: var(--ctv-ink);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ctv-protected-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.ctv-protected-form input {
  min-height: 54px;
  border: 2px solid rgba(20, 23, 28, 0.14);
  border-radius: 6px;
  background: var(--ctv-white);
  color: var(--ctv-ink);
  font-size: 18px;
  font-weight: 850;
  padding: 0 16px;
}

.ctv-protected-form input:focus {
  border-color: var(--ctv-cyan);
  box-shadow: 0 0 0 4px rgba(44, 195, 212, 0.14);
  outline: none;
}

@media (max-width: 760px) {
  .ctv-state-page {
    padding: 30px 14px 86px;
  }

  .ctv-site-state {
    grid-template-columns: 1fr;
  }

  .ctv-site-state-mark {
    min-height: 160px;
  }

  .ctv-site-state-copy {
    padding: 28px;
  }

  .ctv-protected-form div {
    grid-template-columns: 1fr;
  }

  .ctv-protected-form button {
    width: 100%;
  }
}

/* Responsive hardening: evita desbordes en layouts editoriales densos. */
.ctv-site,
.ctv-home-editorial,
.home-news-grid,
.home-news-grid > *,
.home-side-stack,
.home-popular-card,
.home-main-story,
.home-live-card,
.home-agenda-grid,
.home-radar-grid,
.home-faith-grid,
.home-category-carousel-section,
.programming-latest-section,
.home-epg-board {
  min-width: 0;
}

img,
video,
iframe {
  max-width: 100%;
}

@media (max-width: 1680px) and (min-width: 1101px) {
  .ctv-home-editorial {
    width: calc(100% - 64px);
  }

  .home-news-grid {
    grid-template-columns:
      minmax(210px, 0.58fr)
      minmax(430px, 1.25fr)
      minmax(300px, 0.86fr);
    gap: 24px;
  }

  .home-side-stack {
    min-width: 0;
  }

  .home-popular-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
  }

  .home-popular-card > h2 {
    grid-column: 1 / -1;
  }

  .home-popular-card article a {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .home-main-story {
    min-height: clamp(500px, 58vw, 620px);
  }

  .home-main-story h1 {
    font-size: clamp(34px, 4vw, 52px);
  }

  .home-live-card h2 {
    font-size: clamp(32px, 2.9vw, 48px);
  }
}

@media (max-width: 1320px) and (min-width: 981px) {
  .brand-band {
    grid-template-columns: minmax(240px, 0.75fr) auto minmax(240px, 0.75fr);
    gap: 28px;
  }

  .header-ad-slot {
    min-height: 74px;
    padding: 16px 20px;
  }

  .category-menu,
  .ctv-menu {
    gap: clamp(22px, 2.6vw, 42px);
  }

  .home-topline {
    grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
  }

  .home-story-rail {
    grid-template-columns: 38px repeat(2, minmax(0, 1fr)) 38px;
  }

  .home-story-rail .home-topline-item:nth-of-type(3) {
    display: none;
  }

  .home-side-stack {
    grid-template-columns: 1fr;
  }

  .home-program-card a {
    min-height: 420px;
  }

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

  .home-commercial-strip {
    grid-template-columns: minmax(320px, 1fr) repeat(3, minmax(150px, 0.55fr));
  }

  .home-commercial-cta {
    grid-column: 1 / -1;
    min-height: 108px;
  }

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

  .home-agenda-feature,
  .home-radar-card--lead,
  .home-radar-card--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .utility-bar {
    position: sticky;
    top: var(--wp-admin--admin-bar--height, 0px);
    z-index: 940;
  }

  .home-news-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .home-side-stack {
    order: -2;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .home-live-card {
    width: min(640px, 100%);
    margin-inline: auto;
  }

  .home-main-story {
    min-height: clamp(500px, 70vw, 650px);
  }

  .home-main-story h1 {
    font-size: clamp(36px, 4.6vw, 56px);
  }

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

  .home-popular-card article a {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .home-radar-card,
  .home-agenda-card,
  .home-category-carousel-card,
  .programming-latest-card {
    overflow: hidden;
  }

  .footer-bottom {
    padding-bottom: 42px;
  }
}

@media (max-width: 720px) {
  body {
    overflow-x: hidden;
  }

  .ctv-home-editorial {
    width: calc(100% - 24px);
  }

  .utility-bar {
    grid-template-columns: auto auto 1fr auto auto;
    gap: 10px;
    min-height: 50px;
    padding-inline: 14px;
  }

  .utility-links {
    grid-column: 3 / 6;
    justify-content: end;
    gap: 10px;
    padding-bottom: 0;
  }

  .top-link {
    display: none;
  }

  .subscribe-link {
    min-height: 34px;
    padding: 0 12px;
  }

  .brand-band {
    padding-top: 20px;
  }

  .brand-mark img,
  .ctv-logo-image {
    width: clamp(118px, 34vw, 148px);
  }

  .brand-mark span {
    font-size: 12px;
    line-height: 1.55;
  }

  .category-nav {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .category-nav::-webkit-scrollbar {
    display: none;
  }

  .category-menu,
  .ctv-menu {
    width: max-content;
    min-width: 100%;
    gap: 24px;
    padding-inline: 18px;
  }

  .home-topline {
    margin-bottom: 26px;
  }

  .home-weather-card {
    width: 100%;
  }

  .home-topline-item:nth-of-type(n+3) {
    display: none;
  }

  .home-latest-list {
    order: 2;
  }

  .home-main-story {
    order: 1;
    min-height: 500px;
  }

  .home-main-story-slide > div {
    width: min(680px, 86%);
  }

  .home-side-stack {
    order: 0;
  }

  .home-popular-card {
    order: 3;
    grid-template-columns: 1fr;
  }

  .home-main-story h1 {
    max-width: 12.5ch;
    font-size: clamp(30px, 8vw, 42px);
  }

  .home-main-story p,
  .home-live-card p {
    font-size: 16px;
  }

  .home-live-card {
    padding: 16px;
  }

  .home-live-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .home-live-actions button,
  .home-live-actions a {
    min-width: 0;
    width: 100%;
    padding-inline: 10px;
    text-align: center;
  }

  .home-commercial-strip,
  .home-agenda-side,
  .home-radar-grid,
  .home-faith-grid,
  .home-faith-posts,
  .home-inline-ads,
  .home-triple-ads,
  .home-popular-card {
    grid-template-columns: 1fr;
  }

  .home-category-carousel-section,
  .programming-latest-section {
    margin-inline: calc(var(--ctv-gutter) * -1);
    border-radius: 0;
  }

  .home-category-carousel,
  .programming-latest-carousel {
    scroll-padding-inline: 14px;
  }

  .home-category-carousel-card h3,
  .programming-latest-card h3 {
    font-size: clamp(28px, 9vw, 42px);
  }

  .home-international-card h3 {
    font-size: clamp(22px, 6vw, 30px);
    line-height: 1.04;
  }

  .home-international-card p {
    font-size: 14px;
  }

  .home-epg-section {
    margin-inline: calc(var(--ctv-gutter) * -1);
    padding-inline: 0;
  }

  .home-epg-board {
    border-radius: 0;
  }

  .home-epg-focus {
    min-height: auto;
  }

  .home-epg-channel h3 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .floating-live {
    right: 12px;
    bottom: 58px;
    width: min(320px, calc(100vw - 24px));
  }

  .floating-live-tab {
    width: 98px;
    min-height: 46px;
    top: auto;
    bottom: 70px;
  }

  .citizen-chat {
    right: auto;
    bottom: 58px;
  }

  .citizen-chat-launcher {
    min-height: 46px;
    padding: 0 14px;
  }

  .citizen-chat-launcher strong {
    max-width: 18ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .economic-ticker {
    min-height: 32px;
    grid-template-columns: auto 32px minmax(0, 1fr) 32px;
  }

  .economic-ticker-label {
    padding-inline: 12px;
  }

  .economic-ticker-track {
    min-height: 32px;
  }

  .economic-ticker-button {
    min-width: 32px;
    min-height: 32px;
    font-size: 22px;
  }
}

@media (max-width: 430px) {
  .utility-bar {
    grid-template-columns: auto auto 1fr auto;
  }

  .utility-links {
    grid-column: 3 / 5;
  }

  .utility-links .account-icon-link {
    display: inline-flex;
  }

  .subscribe-link {
    max-width: 112px;
  }

  .home-live-actions {
    grid-template-columns: 1fr;
  }

  .home-popular-card article a {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .citizen-chat-launcher strong {
    max-width: 13ch;
  }

  .economic-ticker-label strong {
    max-width: 11ch;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
