/*
Theme Name: Sonariva TV
Theme URI: https://tv.sonariva.com/
Author: Sonariva
Description: Tema oficial de Sonariva TV. Portal audiovisual con señal en directo, programación, actualidad y el Sr. Sonarivo como anfitrión.
Version: 1.2.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: sonariva-tv
*/

:root {
  --stv-navy: #073d52;
  --stv-navy-deep: #032c40;
  --stv-blue: #7db2cf;
  --stv-blue-soft: #c8e2ee;
  --stv-cream: #fff0ce;
  --stv-paper: #fff9ea;
  --stv-coral: #ff7057;
  --stv-white: #ffffff;
  --stv-ink: #062f42;
  --stv-muted: #55717d;
  --stv-line: rgba(6, 47, 66, .14);
  --stv-radius: 28px;
  --stv-shadow: 0 24px 64px rgba(3, 44, 64, .15);
  --stv-width: 1380px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--stv-ink);
  background: var(--stv-paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3,
.stv-program-card strong,
.stv-watch-controls__status strong {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
}

body.stv-menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.stv-skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -100px;
  padding: 12px 18px;
  color: var(--stv-white);
  background: var(--stv-coral);
  border-radius: 999px;
}

.stv-skip-link:focus { top: 16px; }

.stv-wrap {
  width: min(calc(100% - 48px), var(--stv-width));
  margin-inline: auto;
}

.stv-site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--stv-cream);
  background: rgba(3, 44, 64, .95);
  border-bottom: 1px solid rgba(255, 240, 206, .12);
  backdrop-filter: blur(18px);
}

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

.stv-header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.stv-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.stv-brand-logo {
  width: 76px;
  height: 58px;
  object-fit: contain;
}

.stv-brand-copy { line-height: 1; }
.stv-brand-copy strong { display: block; font-size: 17px; letter-spacing: .04em; }
.stv-brand-copy span { display: block; margin-top: 7px; color: var(--stv-blue-soft); font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }

.stv-main-nav { justify-self: center; }
.stv-main-nav ul { display: flex; align-items: center; gap: 6px; padding: 0; margin: 0; list-style: none; }
.stv-main-nav a { display: block; padding: 12px 14px; color: rgba(255, 240, 206, .78); border-radius: 999px; font-size: 14px; }
.stv-main-nav a:hover, .stv-main-nav a:focus-visible, .stv-main-nav .current-menu-item > a { color: var(--stv-cream); background: rgba(125, 178, 207, .15); }

.stv-header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }

.stv-live-link, .stv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--stv-coral);
  color: var(--stv-navy-deep);
  box-shadow: 0 10px 30px rgba(255, 112, 87, .18);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.stv-live-link:hover, .stv-button:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255, 112, 87, .28); }
.stv-button--light { color: var(--stv-ink); background: var(--stv-cream); box-shadow: none; }
.stv-button--ghost { color: var(--stv-cream); background: transparent; border: 1px solid rgba(255, 240, 206, .3); box-shadow: none; }
.stv-button--navy { color: var(--stv-cream); background: var(--stv-navy); box-shadow: none; }

.stv-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--stv-coral);
  box-shadow: 0 0 0 0 rgba(255, 112, 87, .6);
  animation: stv-pulse 1.6s infinite;
}

@keyframes stv-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 112, 87, .65); }
  70% { box-shadow: 0 0 0 9px rgba(255, 112, 87, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 112, 87, 0); }
}

.stv-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 240, 206, .22);
  border-radius: 50%;
  background: transparent;
  color: var(--stv-cream);
  cursor: pointer;
}

.stv-menu-toggle span, .stv-menu-toggle::before, .stv-menu-toggle::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 3px;
  background: currentColor;
  content: "";
}

.stv-hero {
  position: relative;
  overflow: hidden;
  color: var(--stv-cream);
  background:
    radial-gradient(circle at 88% 18%, rgba(125, 178, 207, .24), transparent 25%),
    radial-gradient(circle at 12% 90%, rgba(255, 112, 87, .16), transparent 31%),
    var(--stv-navy-deep);
}

.stv-hero::before, .stv-hero::after {
  position: absolute;
  border: 1px solid rgba(125, 178, 207, .17);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.stv-hero::before { width: 460px; height: 460px; left: -260px; top: 90px; }
.stv-hero::after { width: 720px; height: 720px; right: -460px; bottom: -410px; }

.stv-broadcast-line {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.stv-broadcast-line__left { display: flex; align-items: center; gap: 10px; }
.stv-broadcast-line__date { color: var(--stv-blue-soft); }

.stv-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(310px, .78fr) minmax(520px, 1.22fr);
  gap: 48px;
  align-items: center;
  min-height: 710px;
  padding: 62px 0 76px;
}

.stv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--stv-coral);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.stv-kicker::before { width: 34px; height: 3px; border-radius: 4px; background: currentColor; content: ""; }

.stv-hero h1 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(48px, 6.2vw, 94px);
  line-height: .91;
  letter-spacing: -.065em;
}

.stv-hero h1 em { color: var(--stv-blue); font-style: normal; }

.stv-hero-copy > p {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 240, 206, .78);
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

.stv-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.stv-on-air {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 240, 206, .14);
  border-radius: 20px;
  background: rgba(125, 178, 207, .08);
}

.stv-on-air small { display: block; color: var(--stv-coral); font-family: Arial, sans-serif; font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.stv-on-air strong { display: block; margin-top: 6px; font-size: 18px; }
.stv-on-air__next { color: var(--stv-blue-soft); text-align: right; }
.stv-on-air__next span { display: block; font-family: Arial, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.stv-on-air__next strong { margin-top: 5px; font-size: 13px; }

.stv-signal-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 240, 206, .2);
  border-radius: 26px;
  background: #001d2b;
  box-shadow: 0 36px 100px rgba(0, 0, 0, .42);
}

.stv-signal-frame::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 7px solid rgba(255, 255, 255, .035);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.stv-signal-frame iframe { width: 100%; height: 100%; border: 0; background: #032c40; }

.stv-signal-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 36px;
  text-align: center;
  background: radial-gradient(circle at center, #0a536e, #032c40 68%);
}

.stv-signal-fallback img { width: 180px; margin: 0 auto 26px; }
.stv-signal-fallback strong { display: block; font-size: clamp(24px, 3vw, 42px); }
.stv-signal-fallback p { margin: 12px auto 0; color: var(--stv-blue-soft); font-family: Arial, sans-serif; }

.stv-frame-controls { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 18px; }
.stv-frame-controls p { margin: 0; color: var(--stv-blue-soft); font-family: Arial, sans-serif; font-size: 12px; }
.stv-frame-controls__buttons { display: flex; flex-wrap: wrap; gap: 8px; }

.stv-section { padding: 100px 0; }
.stv-section--blue { background: var(--stv-blue); }
.stv-section--navy { color: var(--stv-cream); background: var(--stv-navy); }
.stv-section--cream { background: var(--stv-cream); }

.stv-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.stv-section-head h2 { max-width: 820px; margin: 0; font-size: clamp(42px, 6vw, 76px); line-height: .93; letter-spacing: -.055em; }
.stv-section-head p { max-width: 460px; margin: 0; color: var(--stv-muted); font-family: Arial, sans-serif; font-size: 16px; line-height: 1.65; }
.stv-section--navy .stv-section-head p { color: var(--stv-blue-soft); }

.stv-program-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }

.stv-program-card {
  min-height: 290px;
  padding: 34px;
  border: 1px solid rgba(6, 47, 66, .11);
  border-radius: var(--stv-radius);
  background: rgba(255, 249, 234, .78);
  box-shadow: 0 18px 50px rgba(3, 44, 64, .08);
}

.stv-program-card--current { color: var(--stv-cream); background: var(--stv-navy-deep); }
.stv-program-card__label { display: flex; align-items: center; gap: 9px; color: var(--stv-coral); font-family: Arial, sans-serif; font-size: 10px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.stv-program-card h3 { max-width: 650px; margin: 54px 0 12px; font-size: clamp(36px, 5vw, 66px); line-height: .95; letter-spacing: -.05em; }
.stv-program-card--next h3 { margin-top: 60px; font-size: clamp(30px, 4vw, 50px); }
.stv-program-card p { margin: 0; color: var(--stv-blue-soft); font-family: Arial, sans-serif; font-size: 14px; }
.stv-program-card--next p { color: var(--stv-muted); }

.stv-day-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 18px; }
.stv-day-item { min-height: 150px; padding: 22px; border: 1px solid var(--stv-line); border-radius: 22px; background: var(--stv-paper); }
.stv-day-item time { color: var(--stv-coral); font-family: Arial, sans-serif; font-size: 12px; font-weight: 900; letter-spacing: .07em; }
.stv-day-item strong { display: block; margin-top: 20px; font-size: 20px; line-height: 1.05; }
.stv-day-item span { display: block; margin-top: 8px; color: var(--stv-muted); font-family: Arial, sans-serif; font-size: 12px; }

.stv-feature-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.stv-feature-card { position: relative; overflow: hidden; min-height: 390px; padding: 32px; border-radius: var(--stv-radius); background: var(--stv-paper); }
.stv-feature-card--large { color: var(--stv-cream); background: var(--stv-navy-deep); }
.stv-feature-card--coral { background: var(--stv-coral); }
.stv-feature-number { color: rgba(125, 178, 207, .45); font-size: 70px; line-height: 1; letter-spacing: -.08em; }
.stv-feature-card--coral .stv-feature-number { color: rgba(6, 47, 66, .25); }
.stv-feature-card h3 { position: absolute; right: 30px; bottom: 58px; left: 30px; margin: 0; font-size: clamp(28px, 3.2vw, 46px); line-height: .96; letter-spacing: -.045em; }
.stv-feature-card p { position: absolute; right: 30px; bottom: 26px; left: 30px; margin: 0; color: var(--stv-muted); font-family: Arial, sans-serif; font-size: 13px; }
.stv-feature-card--large p { color: var(--stv-blue-soft); }

.stv-host-grid {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) 1.28fr;
  align-items: center;
  gap: 72px;
}

.stv-host-portrait {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: end center;
  overflow: hidden;
  border-radius: 50% 50% 28px 28px;
  background: radial-gradient(circle at 50% 42%, var(--stv-cream) 0 31%, rgba(255, 240, 206, .18) 32% 52%, transparent 53%);
}

.stv-host-portrait::after { position: absolute; right: 8%; bottom: 5%; width: 32%; aspect-ratio: 1; border: 1px solid rgba(255, 240, 206, .19); border-radius: 50%; content: ""; }
.stv-host-portrait img { position: relative; z-index: 2; width: min(96%, 540px); filter: drop-shadow(0 26px 30px rgba(0, 0, 0, .25)); }

.stv-host-copy h2 { margin: 0; font-size: clamp(48px, 7vw, 90px); line-height: .9; letter-spacing: -.06em; }
.stv-host-copy h2 span { color: var(--stv-blue); }
.stv-host-copy > p { max-width: 680px; margin: 28px 0 0; color: var(--stv-blue-soft); font-family: Arial, sans-serif; font-size: 18px; line-height: 1.65; }

.stv-host-message {
  position: relative;
  margin-top: 32px;
  padding: 24px 28px;
  color: var(--stv-ink);
  border-radius: 8px 24px 24px 24px;
  background: var(--stv-cream);
  font-size: 21px;
  line-height: 1.35;
}

.stv-host-message::before { position: absolute; left: 0; top: -16px; border-width: 0 0 18px 22px; border-style: solid; border-color: transparent transparent var(--stv-cream) transparent; content: ""; }
.stv-host-action { margin-top: 20px; }

.stv-news-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 18px; }
.stv-news-card { min-height: 300px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border: 1px solid var(--stv-line); border-radius: var(--stv-radius); background: var(--stv-paper); }
.stv-news-card:first-child { color: var(--stv-cream); background: var(--stv-navy); }
.stv-news-card__tag { color: var(--stv-coral); font-family: Arial, sans-serif; font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.stv-news-card h3 { margin: 28px 0 0; font-size: 28px; line-height: 1.05; letter-spacing: -.025em; }
.stv-news-card p { margin: 14px 0 0; color: var(--stv-muted); font-family: Arial, sans-serif; font-size: 13px; line-height: 1.55; }
.stv-news-card:first-child p { color: var(--stv-blue-soft); }
.stv-news-card__meta { margin-top: 28px; color: var(--stv-muted); font-family: Arial, sans-serif; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.stv-news-card:first-child .stv-news-card__meta { color: var(--stv-cream); }

.stv-cta-band { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 45px 48px; border-radius: var(--stv-radius); color: var(--stv-cream); background: var(--stv-coral); }
.stv-cta-band h2 { max-width: 820px; margin: 0; font-size: clamp(34px, 5vw, 60px); line-height: .94; letter-spacing: -.05em; }
.stv-cta-band p { margin: 12px 0 0; color: var(--stv-navy-deep); font-family: Arial, sans-serif; font-weight: 700; }

.stv-site-footer { padding: 72px 0 30px; color: var(--stv-cream); background: var(--stv-navy-deep); }
.stv-footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 56px; padding-bottom: 58px; }
.stv-footer-brand img { width: 150px; height: 100px; object-fit: contain; object-position: left center; }
.stv-footer-brand p { max-width: 400px; margin: 20px 0 0; color: var(--stv-blue-soft); font-family: Arial, sans-serif; line-height: 1.6; }
.stv-footer-column h3 { margin: 0 0 18px; color: var(--stv-coral); font-family: Arial, sans-serif; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.stv-footer-column a { display: block; width: max-content; max-width: 100%; margin-top: 12px; color: var(--stv-cream); font-family: Arial, sans-serif; font-size: 14px; }
.stv-footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255, 240, 206, .14); color: var(--stv-blue-soft); font-family: Arial, sans-serif; font-size: 11px; }

.stv-mascot {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.stv-mascot__bubble {
  max-width: 240px;
  padding: 14px 16px;
  color: var(--stv-ink);
  border: 2px solid var(--stv-navy);
  border-radius: 18px 18px 4px 18px;
  background: var(--stv-cream);
  box-shadow: var(--stv-shadow);
  font-size: 13px;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(8px) scale(.97);
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.stv-mascot.is-speaking .stv-mascot__bubble { opacity: 1; transform: translateY(0) scale(1); visibility: visible; }

.stv-mascot__button {
  position: relative;
  width: 82px;
  height: 82px;
  padding: 7px;
  overflow: hidden;
  border: 3px solid var(--stv-cream);
  border-radius: 50%;
  background: var(--stv-blue);
  box-shadow: 0 12px 35px rgba(3, 44, 64, .28);
  cursor: pointer;
  transition: transform .2s ease;
}

.stv-mascot__button:hover { transform: translateY(-3px) rotate(-2deg); }
.stv-mascot__button img { width: 100%; height: 100%; object-fit: contain; }
.stv-mascot__badge { position: absolute; right: -2px; top: -2px; width: 17px; height: 17px; border: 3px solid var(--stv-paper); border-radius: 50%; background: var(--stv-coral); }

.stv-page-hero { padding: 100px 0 76px; color: var(--stv-cream); background: var(--stv-navy-deep); }
.stv-page-hero h1 { max-width: 1000px; margin: 0; font-size: clamp(50px, 8vw, 104px); line-height: .9; letter-spacing: -.065em; }
.stv-page-hero p { max-width: 700px; margin: 25px 0 0; color: var(--stv-blue-soft); font-family: Arial, sans-serif; font-size: 18px; line-height: 1.6; }
.stv-content { padding: 80px 0 110px; }
.stv-entry { max-width: 900px; font-family: Arial, sans-serif; font-size: 17px; line-height: 1.75; }
.stv-entry h2, .stv-entry h3 { font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif; line-height: 1.05; letter-spacing: -.03em; }
.stv-entry h2 { margin-top: 2em; font-size: 42px; }
.stv-entry a { color: #0b6785; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

.stv-schedule-board { display: grid; gap: 16px; }
.stv-schedule-row { display: grid; grid-template-columns: 105px 1fr auto; gap: 24px; align-items: center; padding: 22px 24px; border: 1px solid var(--stv-line); border-radius: 20px; background: var(--stv-white); }
.stv-schedule-row time { color: var(--stv-coral); font-size: 18px; }
.stv-schedule-row strong { font-size: 22px; }
.stv-schedule-row span { color: var(--stv-muted); font-family: Arial, sans-serif; font-size: 12px; }

/* Portada 1.1: la señal es la protagonista y la información no se duplica. */
.stv-watch-hero {
  padding: 46px 0 62px;
  color: var(--stv-cream);
  background:
    radial-gradient(circle at 100% 0, rgba(125, 178, 207, .17), transparent 26%),
    var(--stv-navy-deep);
}

.stv-watch-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 30px;
}

.stv-watch-intro .stv-kicker { margin-bottom: 15px; }
.stv-watch-intro .stv-kicker::before { display: none; }
.stv-watch-intro h1 { margin: 0; font-size: clamp(40px, 5.5vw, 72px); line-height: .94; letter-spacing: -.055em; }
.stv-watch-intro__aside { max-width: 450px; text-align: right; }
.stv-watch-intro__aside p { margin: 0; color: var(--stv-blue-soft); font-family: Arial, sans-serif; font-size: 15px; line-height: 1.5; }
.stv-watch-intro__aside time { display: block; margin-top: 10px; color: rgba(255, 240, 206, .56); font-family: Arial, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.stv-watch-stage .stv-signal-frame {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

.stv-watch-controls {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(190px, 1fr) auto;
  align-items: center;
  gap: 0;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 240, 206, .14);
  border-radius: 18px;
  background: rgba(125, 178, 207, .075);
}

.stv-watch-controls__status { min-width: 0; padding: 17px 22px; border-right: 1px solid rgba(255, 240, 206, .12); }
.stv-watch-controls__status span { display: flex; align-items: center; gap: 7px; color: var(--stv-coral); font-family: Arial, sans-serif; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.stv-watch-controls__status strong { display: block; overflow: hidden; margin-top: 7px; font-size: 17px; text-overflow: ellipsis; white-space: nowrap; }
.stv-watch-controls__actions { display: flex; gap: 8px; padding: 10px; }
.stv-watch-controls__actions .stv-button { min-height: 46px; padding-inline: 17px; }

.stv-quick-section { padding: 64px 0; background: var(--stv-paper); }
.stv-quick-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 16px; }
.stv-quick-card { min-height: 260px; padding: 32px; overflow: hidden; border-radius: 24px; }
.stv-quick-card--schedule { color: var(--stv-cream); background: var(--stv-navy); }
.stv-quick-card--host { display: grid; grid-template-columns: 210px 1fr; align-items: center; gap: 30px; background: var(--stv-blue); }
.stv-quick-card--host img { width: 210px; max-height: 210px; object-fit: contain; filter: drop-shadow(0 15px 20px rgba(3, 44, 64, .18)); }
.stv-quick-card__eyebrow { color: var(--stv-coral); font-family: Arial, sans-serif; font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.stv-quick-card h2 { margin: 24px 0 0; font-size: clamp(32px, 4vw, 52px); line-height: .94; letter-spacing: -.045em; }
.stv-quick-card--host h2 { margin-top: 10px; }
.stv-quick-card p { max-width: 580px; margin: 15px 0 0; color: var(--stv-blue-soft); font-family: Arial, sans-serif; font-size: 14px; line-height: 1.55; }
.stv-quick-card--host p { color: var(--stv-ink); }
.stv-simple-link { display: inline-flex; gap: 9px; align-items: center; margin-top: 24px; padding: 0; color: var(--stv-cream); border: 0; background: transparent; font-family: Arial, sans-serif; font-size: 12px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; }
.stv-quick-card--host .stv-simple-link { color: var(--stv-ink); }

.stv-site-footer--simple { padding: 24px 0; }
.stv-footer-simple { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.stv-footer-simple__brand { display: flex; align-items: center; gap: 13px; }
.stv-footer-simple__brand img { width: 68px; height: 52px; object-fit: contain; }
.stv-footer-simple__brand strong, .stv-footer-simple__brand small { display: block; }
.stv-footer-simple__brand strong { font-size: 14px; }
.stv-footer-simple__brand small { margin-top: 5px; color: var(--stv-blue-soft); font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif; font-size: 9px; }
.stv-footer-simple__nav { display: flex; justify-content: center; gap: 22px; }
.stv-footer-simple__nav a, .stv-footer-simple__copy { color: var(--stv-blue-soft); font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif; font-size: 11px; }
.stv-footer-simple__nav a:hover { color: var(--stv-cream); }
.home .stv-mascot { display: none; }

@media (max-width: 1120px) {
  .stv-header-inner { grid-template-columns: auto auto 1fr; gap: 16px; }
  .stv-menu-toggle { display: block; grid-column: 2; }
  .stv-main-nav { position: fixed; inset: 84px 0 auto; padding: 20px 24px 28px; background: var(--stv-navy-deep); opacity: 0; transform: translateY(-14px); pointer-events: none; transition: .2s ease; }
  .admin-bar .stv-main-nav { top: 116px; }
  .stv-main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .stv-main-nav ul { display: grid; }
  .stv-main-nav a { padding: 14px 16px; font-size: 16px; }
  .stv-header-actions { grid-column: 3; }
  .stv-hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .stv-hero-copy { max-width: 850px; }
  .stv-signal-column { max-width: 950px; width: 100%; }
  .stv-day-list { grid-template-columns: repeat(2, 1fr); }
  .stv-feature-grid { grid-template-columns: 1fr 1fr; }
  .stv-feature-card--large { grid-column: span 2; }
  .stv-news-grid { grid-template-columns: 1fr 1fr; }
  .stv-news-card:first-child { grid-column: span 2; }
  .stv-watch-controls { grid-template-columns: 1fr 1fr; }
  .stv-watch-controls__actions { grid-column: span 2; border-top: 1px solid rgba(255, 240, 206, .12); }
  .stv-watch-controls__actions .stv-button { flex: 1; }
  .stv-footer-simple { grid-template-columns: auto 1fr; }
  .stv-footer-simple__nav { justify-content: flex-end; }
  .stv-footer-simple__copy { grid-column: span 2; text-align: center; }
}

@media (max-width: 760px) {
  .admin-bar .stv-site-header { top: 46px; }
  .stv-wrap { width: min(calc(100% - 28px), var(--stv-width)); }
  .stv-header-inner { min-height: 74px; grid-template-columns: auto 1fr auto; }
  .stv-brand-logo { width: 62px; height: 48px; }
  .stv-brand-copy { display: none; }
  .stv-menu-toggle { grid-column: 2; justify-self: end; }
  .stv-header-actions { grid-column: 3; }
  .stv-live-link { width: 48px; padding: 0; }
  .stv-live-link span:last-child { display: none; }
  .stv-main-nav { top: 74px; }
  .admin-bar .stv-main-nav { top: 120px; }
  .stv-broadcast-line { padding-top: 18px; font-size: 9px; }
  .stv-broadcast-line__date { text-align: right; }
  .stv-hero-grid { gap: 42px; padding: 54px 0 62px; }
  .stv-hero h1 { font-size: clamp(47px, 15vw, 72px); }
  .stv-hero-copy > p { font-size: 16px; }
  .stv-hero-actions .stv-button { flex: 1 1 180px; }
  .stv-on-air { grid-template-columns: 1fr; }
  .stv-on-air__next { text-align: left; }
  .stv-signal-frame { border-radius: 16px; }
  .stv-frame-controls { align-items: flex-start; flex-direction: column; }
  .stv-frame-controls__buttons { width: 100%; }
  .stv-frame-controls__buttons .stv-button { flex: 1; padding-inline: 12px; }
  .stv-section { padding: 72px 0; }
  .stv-section-head { align-items: flex-start; flex-direction: column; gap: 20px; }
  .stv-section-head h2 { font-size: clamp(42px, 13vw, 64px); }
  .stv-program-grid, .stv-host-grid { grid-template-columns: 1fr; }
  .stv-program-card { min-height: 250px; padding: 26px; }
  .stv-day-list { grid-template-columns: 1fr; }
  .stv-feature-grid, .stv-news-grid { grid-template-columns: 1fr; }
  .stv-feature-card--large, .stv-news-card:first-child { grid-column: auto; }
  .stv-feature-card { min-height: 310px; }
  .stv-host-grid { gap: 34px; }
  .stv-host-portrait { min-height: 360px; }
  .stv-host-copy h2 { font-size: clamp(50px, 16vw, 76px); }
  .stv-cta-band { grid-template-columns: 1fr; padding: 34px 28px; }
  .stv-footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .stv-footer-bottom { flex-direction: column; }
  .stv-mascot { right: 12px; bottom: 12px; }
  .stv-mascot__button { width: 70px; height: 70px; }
  .stv-mascot__bubble { max-width: min(230px, calc(100vw - 110px)); }
  .stv-schedule-row { grid-template-columns: 78px 1fr; gap: 14px; }
  .stv-schedule-row span { grid-column: 2; }
  .stv-watch-hero { padding: 32px 0 46px; }
  .stv-watch-intro { margin-bottom: 12px; }
  .stv-watch-intro h1, .stv-watch-intro__aside { display: none; }
  .stv-watch-intro .stv-kicker { margin: 0; }
  .stv-watch-stage .stv-signal-frame { width: calc(100% + 28px); margin-left: -14px; border-right: 0; border-left: 0; border-radius: 0; }
  .stv-watch-controls { grid-template-columns: 1fr; }
  .stv-watch-controls__status { border-right: 0; border-bottom: 1px solid rgba(255, 240, 206, .12); }
  .stv-watch-controls__actions { grid-column: auto; flex-direction: column; border-top: 0; }
  .stv-quick-section { padding: 38px 0; }
  .stv-quick-grid { grid-template-columns: 1fr; }
  .stv-quick-card { min-height: 230px; padding: 26px; }
  .stv-quick-card--host { grid-template-columns: 115px 1fr; gap: 18px; }
  .stv-quick-card--host img { width: 125px; max-height: 150px; }
  .stv-footer-simple { grid-template-columns: 1fr; justify-items: center; gap: 22px; text-align: center; }
  .stv-footer-simple__nav { flex-wrap: wrap; justify-content: center; }
  .stv-footer-simple__copy { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
