/* ============================================
   EL SEIS (Canal 6) — Main Stylesheet
   Editorial Claro — news-forward broadcast portal
   v4 — Jun 2026 · Mobile-first
   ============================================ */

/* ============================================
   01 · TOKENS
   ============================================ */
:root {
  /* surfaces */
  --paper: #FAFAF7;
  --paper-2: #F3F1EB;
  --paper-3: #ECE8DF;
  --card: #FFFFFF;
  --dark: #0E0E10;
  --dark-2: #1A1A1E;
  /* ink */
  --ink: #161513;
  --ink-2: #57544D;
  --ink-3: #8B887F;
  --ink-inv: #F4F2ED;
  /* lines */
  --line: #E6E3DA;
  --line-2: #D9D5CA;
  --line-dark: #2A2A30;
  /* brand */
  --gold: #CE7A23;
  --gold-deep: #A35A0E;
  --gold-bright: #ECAA00;
  --gold-soft: #F7EAD3;
  --live: #C2410C;
  /* type */
  --font-display: 'Archivo', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  /* radius / shadow */
  --r-s: 6px;
  --r-m: 10px;
  --r-l: 14px;
  --shadow-1: 0 1px 2px rgba(22, 19, 10, .05), 0 4px 14px rgba(22, 19, 10, .06);
  --shadow-2: 0 2px 6px rgba(22, 19, 10, .07), 0 14px 34px rgba(22, 19, 10, .10);
  --shadow-dark: 0 18px 44px rgba(8, 8, 10, .35);
  /* layout */
  --container: 1200px;
  --gutter: 20px;
  --header-h: 64px;
}

/* ============================================
   02 · BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.15; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 2px; border-radius: 2px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 18px; font-weight: 700; font-size: 14px;
}
.skip-link:focus { left: 0; }
.is-hidden { display: none !important; }

/* kicker — the editorial category label */
.category-tag, .kicker {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   03 · LAYOUT & SECTIONS
   ============================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.page-shell, .page-section { padding: 36px 0 56px; }

.section-alt { background: var(--paper); padding: 40px 0 48px; }
.section-light { background: var(--paper-2); padding: 40px 0 48px; }
.section-dark { background: var(--paper-2); padding: 40px 0 48px; color: var(--ink); }
@media (max-width: 560px) {
  .section-alt, .section-light, .section-dark { padding: 26px 0 30px; }
  .page-section { padding-top: 14px; padding-bottom: 40px; }
  /* home guide: first 7 slots — the "Guía completa →" link covers the rest
     (.schedule-slot = SSR markup, .slot = client re-render after day switch) */
  #schedule-list .schedule-slot:nth-child(n+8),
  #schedule-list .slot:nth-child(n+8) { display: none; }
}

.section-title {
  display: inline-block;
  font-size: clamp(21px, 2.6vw, 26px);
  font-weight: 900;
  letter-spacing: -.3px;
  text-transform: uppercase;
  border-bottom: 3px solid var(--gold-bright);
  padding-bottom: 7px;
  margin: 0 0 22px;
}
.section-cta { margin-top: 26px; }

/* section header row: kicker + title left, "Ver todas →" right */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 10px 18px; margin-bottom: 22px;
}
.section-head .section-title { margin-bottom: 0; }
.section-kicker {
  display: block;
  font-size: 11px; font-weight: 800; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 7px;
}
.section-link {
  font-size: 13.5px; font-weight: 700; color: var(--gold-deep);
  white-space: nowrap; padding-bottom: 9px;
}
.section-link:hover { color: var(--gold); }

/* keyboard focus — brand gold ring everywhere */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 2px;
  border-radius: 4px;
}

/* card imagery: slow zoom on hover (linked cards only) */
.card-media img { transition: transform .35s ease; }
a:hover > .card-media img,
a:hover .card-media img { transform: scale(1.05); }
.article-hero-media img, .show-detail-media img { transform: none !important; }

/* ============================================
   04 · HEADER
   ============================================ */
#header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 26px;
  min-height: var(--header-h);
}
.header-brand { display: flex; align-items: center; flex: none; }
.header-brand img { width: auto; height: 42px; }

.desktop-nav { display: none; align-items: center; gap: 22px; margin-left: 4px; }
.desktop-nav a {
  font-size: 12.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-2); padding: 6px 2px; position: relative; white-space: nowrap;
}
.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a.active { color: var(--ink); }
.desktop-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 3px;
  background: var(--gold-bright); border-radius: 2px;
}
.desktop-nav a.nav-live {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--live); color: #fff;
  padding: 8px 16px; border-radius: 999px; letter-spacing: 1.6px;
}
.desktop-nav a.nav-live:hover { background: #A93609; color: #fff; }
.desktop-nav a.nav-live.active::after { display: none; }
.desktop-nav a.nav-cta {
  border: 1.5px solid var(--gold); color: var(--gold-deep);
  padding: 7px 15px; border-radius: var(--r-s);
}
.desktop-nav a.nav-cta:hover { background: var(--gold); color: #fff; }
.desktop-nav a.nav-cta.active::after { display: none; }
.desktop-nav a.nav-search { display: inline-flex; align-items: center; padding: 6px 4px; }
.desktop-nav a.nav-search svg { display: block; }

.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: currentColor;
  display: inline-block; flex: none;
  animation: pulse 1.6s ease-in-out infinite;
}
.nav-live .pulse-dot, .now-bar-link .pulse-dot { background: #fff; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.hamburger {
  margin-left: auto; background: none; border: 0; padding: 10px;
  display: flex; flex-direction: column; gap: 5px;
}
.hamburger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 8px var(--gutter) 18px;
}
.mobile-menu.open {
  display: flex;
  animation: menu-in .22s ease both;
}
@keyframes menu-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
.mobile-menu a {
  display: flex; align-items: center; min-height: 48px;
  padding: 0 4px; font-size: 14px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--ink-2); border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu-social {
  display: flex; gap: 10px; padding: 14px 4px 4px;
  border-top: 1px solid var(--line); margin-top: 4px;
}
.mobile-menu-social a {
  min-height: 0; width: 42px; height: 42px; padding: 0;
  border: 1px solid var(--line-2); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2);
}
.mobile-menu-social a:hover { color: var(--gold-deep); border-color: var(--gold); }
.mobile-menu a.active { color: var(--gold-deep); }
.mobile-menu a.nav-live {
  display: flex; align-items: center; gap: 9px;
  color: var(--live); border-bottom-color: var(--line);
}
.mobile-menu a.nav-live .pulse-dot { background: var(--live); }
.mobile-menu a.nav-cta { color: var(--gold-deep); }

@media (min-width: 920px) {
  .desktop-nav { display: flex; }
  .hamburger, .mobile-menu { display: none !important; }
}
/* nine nav items need tighter tracking until the layout widens */
@media (min-width: 920px) and (max-width: 1199px) {
  .desktop-nav { gap: 12px; }
  .desktop-nav a { font-size: 11.5px; letter-spacing: 1px; }
  .desktop-nav a.nav-live { padding: 7px 12px; letter-spacing: 1.1px; }
  .desktop-nav a.nav-cta { padding: 6px 11px; }
}

/* ============================================
   05 · NOW BAR
   ============================================ */
.now-bar {
  display: flex; align-items: center; gap: 12px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 9px var(--gutter);
  font-size: 13.5px;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.now-bar-label {
  font-weight: 800; font-size: 11px; letter-spacing: 1.6px; color: var(--gold-deep);
  flex: none;
}
.now-bar-title { font-weight: 600; color: var(--ink); overflow: hidden; text-overflow: ellipsis; }
.now-bar-time { color: var(--ink-3); font-size: 12.5px; flex: none; }
.now-bar-link {
  margin-left: auto; flex: none;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--live); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 1.4px;
  padding: 5px 12px; border-radius: 999px;
}
.now-bar-link:hover { background: #A93609; }
@media (min-width: 1240px) {
  .now-bar { padding-left: calc((100% - var(--container)) / 2 + var(--gutter)); padding-right: calc((100% - var(--container)) / 2 + var(--gutter)); }
}

/* ============================================
   06 · HERO LIVE (framed editorial player)
   ============================================ */
#hero-live {
  background: var(--paper);
  padding: 26px var(--gutter) 8px;
}
.hero-shell {
  max-width: 1080px; margin: 0 auto;
  border-radius: var(--r-l);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-2);
}
.hero-live-now-playing {
  display: flex; align-items: center; gap: 11px;
  background: #131316;
  color: #EDEAE3;
  padding: 12px 18px;
  font-size: 13.5px;
  border-top: 1px solid #232328;
}
.hero-live-now-playing .pulse-dot { background: var(--gold-bright); }
.np-label {
  font-family: var(--font-display);
  font-weight: 800; font-size: 11.5px; letter-spacing: 1.8px; color: var(--gold-bright);
}
.np-divider { color: #44444C; }
#np-title { font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.np-time { color: #98948B; font-size: 12.5px; margin-left: auto; flex: none; }

/* ============================================
   07 · BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 12.5px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 13px 26px;
  border: 0; border-radius: var(--r-s);
  transition: background .15s, transform .1s;
}
.btn:hover { background: var(--gold-deep); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn-outline {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink-2);
}
.btn-outline:hover { background: var(--ink); color: #fff; box-shadow: inset 0 0 0 1.5px var(--ink); }

.wa-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #1FAF54; color: #fff;
  font-size: 13px; font-weight: 800; letter-spacing: .6px;
  padding: 12px 22px; border-radius: var(--r-s);
}
.wa-cta:hover { background: #178D43; color: #fff; }
.wa-cta svg { width: 18px; height: 18px; flex: none; }

/* ============================================
   08 · CARD MEDIA (shared image + fallback)
   ============================================ */
.card-media { position: relative; overflow: hidden; background: var(--paper-3); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.placeholder-graphic, .card-media-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper-3);
  min-height: 0;
}
.placeholder-graphic svg {
  width: 34px; height: 34px; stroke: var(--gold); fill: none;
  stroke-width: 1.5; opacity: .55;
}

/* ============================================
   09 · NEWS
   ============================================ */
/* --- homepage editorial block --- */
.news-grid {
  display: grid; gap: 26px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .news-grid { grid-template-columns: 1.45fr 1fr; align-items: start; }
}

.news-card {
  display: flex; gap: 14px; align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.news-card:last-child { border-bottom: 0; }
.news-card .news-card-image {
  width: 104px; aspect-ratio: 4 / 3; flex: none;
  border-radius: var(--r-s);
}
.news-card .news-card-body { min-width: 0; }
.news-card .news-card-headline {
  font-family: var(--font-display);
  font-size: 15.5px; font-weight: 700; letter-spacing: -.1px; line-height: 1.3;
  margin-top: 4px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.news-card:hover .news-card-headline { color: var(--gold-deep); }
.news-card .news-card-date { font-size: 12px; color: var(--ink-3); margin-top: 5px; }
.news-card .news-card-excerpt { display: none; }
.news-card .read-more { display: none; }
.news-card--text { border-left: 3px solid var(--gold-bright); padding-left: 12px; }

/* featured story = typographic lead */
.news-card.featured {
  display: block;
  padding: 0; border-bottom: 0;
}
.news-card.featured .news-card-image {
  width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--r-m);
}
.news-card.featured .news-card-body { display: flex; flex-direction: column; }
.news-card.featured .news-card-headline {
  font-size: clamp(23px, 3.2vw, 30px);
  font-weight: 900; letter-spacing: -.5px; line-height: 1.12;
  -webkit-line-clamp: 4;
  margin: 8px 0 10px;
}
.news-card.featured .news-card-excerpt {
  display: block; color: var(--ink-2); font-size: 14.5px; line-height: 1.55;
  margin-bottom: 10px;
}
.news-card.featured .news-card-date { margin: 0 0 14px; }

/* --- news listing page --- */
.news-list-page .news-card { align-items: flex-start; }
.news-list-page .news-card .news-card-image { width: 150px; }
@media (max-width: 560px) { .news-list-page .news-card .news-card-image { width: 110px; } }

.news-body, .news-summary { color: var(--ink-2); }
.news-meta, .news-source { font-size: 12.5px; color: var(--ink-3); }
.news-headline { font-weight: 800; }
.news-img { border-radius: var(--r-m); overflow: hidden; }
.news-read-more { color: var(--gold-deep); font-weight: 700; font-size: 13px; }

/* ============================================
   10 · SHOWS
   ============================================ */
.homepage-shows .swiper { padding: 4px 4px 10px; }
.show-card {
  display: block;
  background: var(--card);
  border-radius: var(--r-m);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform .18s ease, box-shadow .18s ease;
  height: 100%;
}
.show-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.show-card-media { aspect-ratio: 3 / 4; }
.show-card-overlay { padding: 12px 14px 14px; }
.show-card-name {
  font-size: 15px; font-weight: 800; letter-spacing: -.1px; line-height: 1.25;
}
.show-card-host { font-size: 12.5px; color: var(--ink-3); margin-top: 4px; }
.show-card-host--time { color: var(--gold-deep); font-weight: 600; }
.show-card-category {
  display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.show-card-schedule {
  display: inline-block; margin-top: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: .6px;
  color: var(--gold-deep); background: var(--gold-soft);
  border-radius: 999px; padding: 4px 10px;
}

.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: -4px 0 24px; }
.filter-chip {
  background: var(--card); color: var(--ink-2);
  border: 1px solid var(--line-2); border-radius: 999px;
  font-size: 12.5px; font-weight: 700; padding: 7px 15px;
}
.filter-chip:hover { border-color: var(--gold); color: var(--gold-deep); }
.filter-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.swiper-button-prev, .swiper-button-next {
  color: var(--ink);
  background: #fff;
  width: 40px; height: 40px; border-radius: 50%;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--line);
}
.swiper-button-prev::after, .swiper-button-next::after { font-size: 15px; font-weight: 800; }
/* mobile: the next-card peek is the affordance — arrows just cover the posters.
   (scoped selector: the Swiper CDN stylesheet loads after main.css and ties on
   bare-class specificity) */
@media (max-width: 767px) {
  .shows-carousel .swiper-button-prev, .shows-carousel .swiper-button-next { display: none; }
}

.shows-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
@media (max-width: 560px) {
  .shows-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
.shows-page .show-card-media { aspect-ratio: 3 / 4; }

/* show detail */
.show-hero { display: grid; gap: 28px; align-items: start; }
@media (min-width: 880px) { .show-hero { grid-template-columns: 380px 1fr; } }
.show-detail-media { border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-2); aspect-ratio: 3 / 4; }
.show-detail-title { font-size: clamp(26px, 4vw, 38px); font-weight: 900; letter-spacing: -.6px; }
.show-detail-category { margin-bottom: 10px; }
.show-detail-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 14px 0 4px; color: var(--ink-2); font-size: 14px; }
.show-detail-copy, .show-detail-description { color: var(--ink-2); font-size: 15.5px; line-height: 1.65; margin-top: 14px; max-width: 640px; }
.show-host, .show-schedule { font-size: 14px; color: var(--ink-2); }
.show-avatar { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.show-detail-section-title {
  font-size: 18px; font-weight: 900; text-transform: uppercase; letter-spacing: -.1px;
  border-bottom: 3px solid var(--gold-bright); display: inline-block; padding-bottom: 6px;
  margin: 34px 0 18px;
}
.show-detail-related { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }
.show-detail-related-card {
  background: var(--card); border-radius: var(--r-m); overflow: hidden; box-shadow: var(--shadow-1);
  display: block;
  transition: transform .18s, box-shadow .18s;
}
.show-detail-related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.show-detail-related-media { aspect-ratio: 16 / 10; }
.show-detail-related-body { padding: 12px 14px 14px; }
.show-detail-related-title { font-size: 14.5px; font-weight: 700; line-height: 1.3; }
.show-detail-related-meta { font-size: 12px; color: var(--ink-3); margin-top: 5px; }
.show-detail-related-meta--accent { color: var(--gold-deep); font-weight: 600; }
.show-detail-shell .breadcrumbs { margin-bottom: 8px; }
.show-detail-stack { display: grid; gap: 8px; }

/* talent block */
.talent-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); margin-top: 6px; }
.talent-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--card); border-radius: var(--r-m); padding: 16px;
  box-shadow: var(--shadow-1);
}
.talent-photo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex: none; background: var(--paper-3); }
.talent-name { font-size: 15px; font-weight: 800; }
.talent-role { font-size: 11px; color: var(--gold-deep); font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; margin-top: 2px; }
.talent-bio { font-size: 13px; color: var(--ink-2); margin-top: 6px; line-height: 1.45; }
.talent-social { font-size: 12.5px; color: var(--ink-3); margin-top: 6px; display: inline-flex; gap: 12px; }
.talent-social a:hover { color: var(--gold-deep); }

/* ============================================
   11 · SCHEDULE
   ============================================ */
.day-selector { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.day-btn {
  background: var(--card); color: var(--ink-2);
  border: 1px solid var(--line-2); border-radius: 999px;
  font-size: 12.5px; font-weight: 800; letter-spacing: 1.2px;
  padding: 9px 18px;
  transition: background .15s, color .15s, border-color .15s;
}
.day-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.day-btn.active { background: var(--gold-bright); color: var(--ink); border-color: var(--gold-bright); font-weight: 800; }
/* compact guide: clamp descriptions except on the live slot */
.schedule-slot:not(.current) .schedule-desc {
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}

.schedule-list { max-width: 800px; }
.schedule-slot, .slot {
  display: grid; grid-template-columns: 128px 1fr; gap: 4px 20px;
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  border-radius: var(--r-s);
  align-items: baseline;
}
.schedule-slot:last-child, .slot:last-child { border-bottom: 0; }
.schedule-time, .slot-time {
  font-family: var(--font-display);
  white-space: nowrap;
}
.schedule-time { display: flex; flex-direction: column; gap: 1px; }
.schedule-time b { font-weight: 800; font-size: 15.5px; color: var(--ink); }
.schedule-time i { font-style: normal; font-size: 12px; color: var(--ink-3); font-weight: 600; }
.slot-time { font-weight: 800; font-size: 14px; color: var(--gold-deep); }
.schedule-title, .slot-title { font-weight: 800; font-size: 16px; }
.schedule-title a { color: inherit; }
.schedule-title a:hover { color: var(--gold-deep); }
.schedule-desc, .slot-detail {
  grid-column: 2; color: var(--ink-3); font-size: 13px; line-height: 1.45;
}
@media (max-width: 560px) {
  .schedule-slot, .slot { grid-template-columns: 86px 1fr; gap: 4px 14px; padding: 12px 8px; }
}

/* live "AHORA" chip — shown only on the slot the JS marks .current */
.pulse-dot-sm { width: 6px; height: 6px; border-radius: 50%; background: currentColor; display: inline-block; }
.schedule-live-chip {
  display: none;
  margin-left: 10px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px;
  color: #fff; background: var(--live, #C8102E);
  border-radius: 999px; padding: 3px 10px 3px 8px;
  vertical-align: 2px;
  align-items: center; gap: 5px;
}

/* full programacion page */
.programacion-page .schedule-shell, .schedule-shell { max-width: 820px; }
.schedule-day-title {
  font-size: 17px; font-weight: 900; text-transform: uppercase;
  margin: 26px 0 6px; color: var(--ink);
}
.schedule-note { font-size: 13px; color: var(--ink-3); margin-top: 18px; }
.schedule-note a { color: var(--gold-deep); font-weight: 700; }
.schedule-slot.current, .schedule-slot.today, .slot.now {
  background: var(--gold-soft);
  border-bottom-color: transparent;
}
.schedule-slot.current .schedule-live-chip { display: inline-flex; }

/* ============================================
   12 · ARTICLE (noticia)
   ============================================ */
.article-shell { max-width: 740px; margin: 0 auto; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; font-size: 12.5px; color: var(--ink-3); padding: 4px 0 16px; }
.breadcrumbs a { color: var(--gold-deep); }
.breadcrumbs a:hover { color: var(--gold); }
.article-tag { margin-bottom: 10px; }
.article-title {
  font-size: clamp(26px, 4.4vw, 40px);
  font-weight: 900; letter-spacing: -.7px; line-height: 1.08;
  margin-bottom: 14px;
}
.article-lead { font-size: 18px; line-height: 1.55; color: var(--ink-2); margin-bottom: 16px; }
.article-meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  font-size: 13px; color: var(--ink-3);
  padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.article-hero { margin: 0 0 26px; }
.article-hero-media, .article-image, .article-img { border-radius: var(--r-m); overflow: hidden; }
.article-hero-copy { margin-top: 10px; font-size: 13px; color: var(--ink-3); }
.article-hero-grid { display: grid; gap: 26px; }
.article-content, .article-copy { font-size: 16.5px; line-height: 1.75; color: #26241F; }
.article-content p, .article-copy p { margin-bottom: 18px; }
.article-copy > p:first-child { font-size: 18.5px; line-height: 1.6; color: var(--ink); }
.article-source {
  font-size: 13px; color: var(--ink-3);
  border-left: 3px solid var(--gold-bright); padding-left: 12px; margin: 22px 0;
}
.article-actions { margin: 28px 0; }
.article-actions-title { font-size: 13px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 10px; }
.article-action-list { display: flex; gap: 10px; flex-wrap: wrap; }
.article-action-list a {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-2); border-radius: 999px;
  padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--ink-2);
}
.article-action-list a:hover { border-color: var(--gold); color: var(--gold-deep); }
.article-action-list svg { width: 16px; height: 16px; }
.related-section { margin-top: 40px; }
.article-related { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

/* sticky share rail (wide desktop only) */
.share-rail { display: none; }
@media (min-width: 1200px) {
  .article-shell { position: relative; }
  .share-rail { display: block; position: absolute; left: -78px; top: 4px; bottom: 0; width: 44px; }
  .share-rail-inner { position: sticky; top: 96px; display: grid; gap: 10px; }
  .share-rail a, .share-rail button {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid var(--line-2); background: var(--card);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink-2); cursor: pointer;
    transition: color .15s, border-color .15s, background .15s;
  }
  .share-rail a:hover, .share-rail button:hover { color: var(--gold-deep); border-color: var(--gold); }
  .share-rail svg { width: 19px; height: 19px; }
  .share-rail .share-copy.copied { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--ink); }
}

/* ============================================
   12.5 · NOTICIAS LIST (news front)
   ============================================ */
.nl-header { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 4px 18px; }
.nl-dateline { font-size: 13px; color: var(--ink-3); margin: -12px 0 20px; }
.nl-lead {
  display: grid; background: var(--card); border-radius: var(--r-l); overflow: hidden;
  box-shadow: var(--shadow-1); transition: transform .18s, box-shadow .18s;
  margin-bottom: 26px;
}
.nl-lead:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.nl-lead-media { aspect-ratio: 16 / 10; }
@media (min-width: 880px) {
  .nl-lead { grid-template-columns: 1.1fr 1fr; }
  .nl-lead-media { aspect-ratio: auto; min-height: 320px; }
}
.nl-lead-body { padding: 24px 26px; align-self: center; }
.nl-lead-headline {
  font-size: clamp(20px, 2.6vw, 28px); font-weight: 900;
  letter-spacing: -.4px; line-height: 1.15; margin: 10px 0;
}
.nl-lead-excerpt { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.nl-meta { font-size: 12.5px; color: var(--ink-3); margin-top: 10px; }
.nl-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); }
.nl-card {
  background: var(--card); border-radius: var(--r-m); overflow: hidden;
  box-shadow: var(--shadow-1); transition: transform .18s, box-shadow .18s;
  display: flex; flex-direction: column;
}
.nl-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.nl-card--text { border-top: 3px solid var(--gold-bright); }
.nl-card--text .nl-headline { font-size: 17px; }
.nl-card-media { aspect-ratio: 16 / 9; }
.nl-card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.nl-headline { font-size: 15.5px; font-weight: 800; line-height: 1.3; }
.nl-excerpt { font-size: 13px; color: var(--ink-2); line-height: 1.5; }
.nl-card .nl-meta { margin-top: auto; }

/* contact page map + light-context social icons */
.contact-map {
  border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-1);
  aspect-ratio: 16 / 10; background: var(--paper-3);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-info .social-links a { border-color: var(--line-2); color: var(--ink-2); }
.contact-info .social-links a:hover { color: var(--dark); background: var(--gold-bright); border-color: var(--gold-bright); }
.contact-info .contact-linktree { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--gold-deep); font-size: 14px; }
.contact-info .contact-linktree:hover { color: var(--gold); }
.contact-info-block a { color: var(--gold-deep); font-weight: 600; }
.contact-info-block a:hover { color: var(--gold); }

/* ============================================
   13 · CLIPS
   ============================================ */
.clip-card {
  display: block; background: var(--card); border-radius: var(--r-m); overflow: hidden;
  box-shadow: var(--shadow-1); transition: transform .18s, box-shadow .18s;
}
.clip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.clip-thumb { aspect-ratio: 16 / 9; position: relative; }
.clip-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 9, 7, .5));
}
/* streaming-grade play affordance */
.clip-thumb::before {
  content: ""; position: absolute; z-index: 2; left: 50%; top: 50%;
  width: 46px; height: 46px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(10, 9, 7, .62);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.5 7l8 5-8 5z' fill='white'/%3E%3C/svg%3E");
  background-position: 55% 50%;
  background-size: 22px;
  background-repeat: no-repeat;
  transition: transform .18s ease, background-color .18s ease;
}
.clip-card:hover .clip-thumb::before {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--gold-deep);
}
.clip-body { padding: 13px 15px 15px; }
.clip-body h3 { font-size: 14.5px; font-weight: 700; line-height: 1.3; }
.clip-show { font-size: 12px; color: var(--gold-deep); font-weight: 700; margin-top: 5px; }
.clip-duration {
  position: absolute; right: 10px; bottom: 10px; z-index: 1;
  background: rgba(10, 9, 7, .8); color: #fff;
  font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px;
}
.clips-grid, .clip-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
@media (max-width: 560px) {
  .clips-grid, .clip-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .clip-body { padding: 10px 11px 12px; }
  .clip-body h3 { font-size: 13px; }
  .clip-thumb::before { width: 38px; height: 38px; background-size: 18px; }
}
.clip-embed { border-radius: var(--r-m); overflow: hidden; aspect-ratio: 16 / 9; background: #000; box-shadow: var(--shadow-2); }
.clip-embed iframe { width: 100%; height: 100%; border: 0; }
.clip-watch { max-width: 880px; margin: 0 auto; }
.clip-title { font-size: clamp(20px, 3.4vw, 28px); font-weight: 900; letter-spacing: -.4px; margin-top: 18px; }
.clip-meta-row { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--ink-3); margin: 7px 0 12px; }
.clip-meta-show { color: var(--gold-deep); font-weight: 700; }
.clip-meta-show:hover { color: var(--gold); }
.clip-desc { font-size: 15.5px; color: var(--ink-2); line-height: 1.6; max-width: 70ch; }
.page-intro { color: var(--ink-2); max-width: 640px; margin: -6px 0 26px; }

/* ============================================
   14 · PELÍCULAS
   ============================================ */
.movie-card {
  background: var(--card); border-radius: var(--r-m); overflow: hidden;
  box-shadow: var(--shadow-1); transition: transform .18s, box-shadow .18s;
}
.movie-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.movie-poster { aspect-ratio: 2 / 3; }
.movie-info { padding: 12px 14px 14px; }
.movie-info h3 { font-size: 14.5px; font-weight: 800; line-height: 1.25; }
.movie-tag {
  display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--gold-deep);
  background: var(--gold-soft); border-radius: 4px; padding: 3px 8px; margin-top: 7px;
}
.movie-meta { font-size: 12px; color: var(--ink-3); margin-top: 6px; display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.movie-synopsis { margin-top: 8px; font-size: 13px; color: var(--ink-2); line-height: 1.5; }
.movies-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
@media (max-width: 560px) { .movies-grid { grid-template-columns: 1fr 1fr; gap: 14px; } }

/* ============================================
   15 · CONCURSOS
   ============================================ */
.contest-page-intro { color: var(--ink-2); max-width: 640px; margin-bottom: 26px; }
.contest-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 880px) { .contest-grid { grid-template-columns: 1fr 1fr; } }
.contest-card {
  background: var(--card); border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-1);
}
.contest-card-media { aspect-ratio: 16 / 7; }
.contest-card-media-copy { padding: 18px 20px 0; }
.contest-card-body { padding: 18px 20px 22px; }
.contest-title { font-size: 19px; font-weight: 900; letter-spacing: -.2px; }
.contest-meta { font-size: 12.5px; color: var(--ink-3); margin: 8px 0 12px; }
.contest-copy { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
.contest-form { margin-top: 16px; display: grid; gap: 12px; }
.contest-submit { justify-self: start; }
.contest-form-msg { font-size: 13.5px; font-weight: 600; min-height: 18px; }
.contest-form-msg.ok { color: #1F7A3D; }
.contest-form-msg.err { color: #B3261E; }
.contest-empty-state {
  background: var(--card); border: 1px dashed var(--line-2); border-radius: var(--r-l);
  padding: 44px 24px; text-align: center; color: var(--ink-3);
}
.contest-coming { max-width: 580px; margin: 0 auto; padding: 50px 30px; }
.contest-coming svg { width: 46px; height: 46px; color: var(--gold); margin-bottom: 14px; }
.contest-coming h2 { font-size: 21px; font-weight: 900; color: var(--ink); margin-bottom: 8px; }
.contest-coming p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; max-width: 44ch; margin: 0 auto 18px; }
.contest-notify { justify-content: center; max-width: 420px; margin: 0 auto; }
.contest-coming .nl-msg { margin-top: 10px; }
.contest-coming-hint { font-size: 12.5px !important; color: var(--ink-3) !important; margin-top: 16px !important; }
.nl-msg { font-size: 13.5px; font-weight: 600; min-height: 18px; }
.nl-msg.ok { color: #1F7A3D; }
.nl-msg.err { color: #B3261E; }

/* show detail — grouped horario */
.horario-lines { max-width: 560px; }
.horario-line {
  display: flex; align-items: center; gap: 8px 18px; flex-wrap: wrap;
  padding: 12px 2px; border-bottom: 1px solid var(--line);
}
.horario-line:last-child { border-bottom: 0; }
.horario-days {
  font-family: var(--font-display); font-weight: 800; font-size: 14.5px;
  min-width: 110px; display: inline-flex; align-items: center; gap: 8px;
}
.horario-line.is-today .horario-days { color: var(--gold-deep); }
.horario-today-chip {
  font-size: 10px; font-weight: 800; letter-spacing: 1.1px;
  background: var(--gold-bright); color: var(--ink);
  border-radius: 999px; padding: 2px 8px;
}
.horario-times { display: inline-flex; gap: 8px; flex-wrap: wrap; }
.time-chip {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: .4px;
  color: var(--gold-deep); background: var(--gold-soft);
  border-radius: 999px; padding: 5px 12px;
}

/* ============================================
   16 · FORMS & CONTACTO
   ============================================ */
input[type="text"], input[type="email"], input[type="tel"], input[type="search"], select, textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-s);
  padding: 12px 14px;
  font-family: var(--font-body); font-size: 14.5px; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(206, 122, 35, .18);
}
label { font-size: 13px; font-weight: 700; color: var(--ink-2); display: block; margin-bottom: 6px; }

.contact-grid { display: grid; gap: 30px; align-items: start; }
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1.2fr 1fr; } }
#contact-form textarea { min-height: 150px; resize: vertical; }
#contact-form .btn { min-width: 170px; }
@media (max-width: 560px) { #contact-form .btn { width: 100%; } }
#contact-form .contact-trust-list {
  margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--ink-3);
}
.contact-trust-list li { position: relative; padding-left: 16px; }
.contact-trust-list li::before {
  content: ''; position: absolute; left: 0; top: .42em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright);
}
.contact-panel {
  background: var(--card); border-radius: var(--r-l); padding: 26px;
  box-shadow: var(--shadow-1);
}
.contact-intro { color: var(--ink-2); margin-bottom: 20px; }
.contact-fields { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.contact-field--full { grid-column: 1 / -1; }
@media (max-width: 560px) { .contact-fields { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: 18px; align-content: start; }
.contact-info-block {
  background: var(--card); border-radius: var(--r-m); padding: 18px 20px; box-shadow: var(--shadow-1);
}
.contact-info-block h3 { font-size: 13px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px; }
.contact-info-block p, .contact-info-block a { font-size: 14.5px; color: var(--ink-2); }
.contact-info-block a:hover { color: var(--gold-deep); }
.contact-trust-list { display: grid; gap: 8px; font-size: 13.5px; color: var(--ink-2); }
.contact-linktree { display: flex; gap: 10px; flex-wrap: wrap; }
.form-msg { font-size: 14px; font-weight: 600; }
.form-msg.ok { color: #1F7A3D; }
.form-msg.err { color: #B3261E; }
#newsletter {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 26px;
  margin: 36px 0 8px;
}
#newsletter h2, #newsletter h3 { font-size: 18px; font-weight: 900; margin-bottom: 6px; }
#newsletter p { color: var(--ink-2); font-size: 14px; margin-bottom: 14px; }
.nl-form { display: flex; gap: 10px; flex-wrap: wrap; }
.nl-form input,
.nl-form input[type="email"] { flex: 1; min-width: 220px; }
.nl-form button { flex: none; }
#nl-msg { font-size: 13.5px; font-weight: 600; margin-top: 10px; min-height: 18px; }
#nl-msg .ok { color: #1F7A3D; }
#nl-msg .err { color: #B3261E; }

/* ============================================
   17 · BUSCAR / PAGINATION / MISC
   ============================================ */
.search-form { display: flex; gap: 10px; max-width: 560px; margin-bottom: 30px; }
.search-form input { flex: 1; }
.search-form--hero { max-width: 680px; margin: 4px 0 18px; }
.search-box { position: relative; flex: 1; }
.search-box svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--ink-3); pointer-events: none;
}
.search-box input { width: 100%; padding-left: 42px; font-size: 15.5px; }
.search-suggest { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.search-suggest-label { font-size: 13px; color: var(--ink-3); margin-right: 4px; }
.search-count { color: var(--ink-2); font-size: 14.5px; margin: 22px 0 26px; }
.search-count b { color: var(--ink); }
.search-section-title { margin-top: 34px; }
.search-n { font-weight: 700; color: var(--ink-3); font-size: 15px; }
.search-results-block { margin-bottom: 10px; }
.search-empty {
  background: var(--card); border: 1px dashed var(--line-2); border-radius: var(--r-l);
  padding: 48px 28px; text-align: center; color: var(--ink-2);
  max-width: 560px; margin: 26px auto 0;
}
.search-empty svg { width: 44px; height: 44px; color: var(--gold); margin-bottom: 12px; }
.search-empty h2 { font-size: 19px; font-weight: 900; margin-bottom: 6px; }
.search-empty p { font-size: 14px; color: var(--ink-3); margin-bottom: 16px; }
.search-empty .search-suggest { justify-content: center; }
.pagination { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 34px; }
.pagination a, .pagination span {
  min-width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2); border-radius: var(--r-s);
  font-size: 13.5px; font-weight: 700; color: var(--ink-2); padding: 0 10px;
}
.pagination a:hover { border-color: var(--gold); color: var(--gold-deep); }
.pagination .active, .pagination [aria-current="page"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.empty-state { padding: 44px 0; color: var(--ink-3); }

.stat-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.stat-card {
  background: var(--card); border-radius: var(--r-m); padding: 20px 18px;
  box-shadow: var(--shadow-1); text-align: center;
}
.stat-number { font-family: var(--font-display); font-size: 30px; font-weight: 900; color: var(--gold-deep); letter-spacing: -.5px; }
.stat-label { font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }

.page-404 { text-align: center; padding: 80px 20px; }
.page-404 h1 { font-size: 64px; font-weight: 900; color: var(--gold); }

/* ============================================
   18 · DISTRIBUCIÓN
   ============================================ */
.dist-intro { color: var(--ink-2); max-width: 680px; margin-bottom: 28px; }
.dist-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.dist-card {
  background: var(--card); border-radius: var(--r-m); padding: 22px;
  box-shadow: var(--shadow-1);
}
.dist-card-icon { width: 38px; height: 38px; color: var(--gold); margin-bottom: 12px; }
.dist-card-icon svg { width: 100%; height: 100%; }
.dist-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.dist-desc { font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.dist-specs { margin-top: 30px; }
.dist-specs-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.dist-spec {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-s);
  padding: 14px 16px; font-size: 13.5px;
}
.dist-spec b { display: block; font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 4px; }
.dist-url-block {
  background: var(--dark); color: #D9D5CA; border-radius: var(--r-s);
  font-family: ui-monospace, 'SF Mono', monospace; font-size: 13px;
  padding: 14px 16px; overflow-x: auto; white-space: nowrap;
}
.dist-contact { margin-top: 30px; }
.dist-contact-options { display: flex; gap: 12px; flex-wrap: wrap; }
.dist-contact-btn { display: inline-flex; }

/* ============================================
   19 · EN VIVO PAGE
   ============================================ */
.en-vivo-schedule { margin-top: 34px; }
.en-vivo-schedule h2 { margin-bottom: 16px; }

/* ============================================
   20 · PUBLICIDAD
   ============================================ */
.pub-hero {
  background: var(--dark);
  background-image: radial-gradient(110% 100% at 80% -20%, rgba(206, 122, 35, .25), transparent 55%);
  color: var(--ink-inv);
  padding: 60px 0 56px;
}
.pub-hero .kicker { color: var(--gold-bright); }
.pub-hero h1 { font-size: clamp(28px, 4.6vw, 46px); font-weight: 900; letter-spacing: -.7px; max-width: 720px; margin: 10px 0 14px; }
.pub-hero p { color: #C9C5BB; font-size: 16.5px; max-width: 620px; line-height: 1.6; }
.pub-hero .btn { margin-top: 24px; }
.pub-section { padding: 44px 0 10px; }
.pub-band {
  background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.pub-formats { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.pub-format {
  background: var(--card); border-radius: var(--r-m); padding: 20px; box-shadow: var(--shadow-1);
  border-top: 3px solid var(--gold-bright);
}
.pub-format h3 { font-size: 16px; font-weight: 800; margin-bottom: 7px; }
.pub-format p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }
.pub-dayparts { display: grid; gap: 12px; }
.pub-daypart {
  display: grid; grid-template-columns: 130px 1fr auto; gap: 6px 18px; align-items: center;
  background: var(--card); border-radius: var(--r-s); padding: 14px 18px; box-shadow: var(--shadow-1);
}
.pub-daypart .t { font-family: var(--font-display); font-weight: 800; color: var(--gold-deep); font-size: 14px; }
.pub-daypart .n { font-weight: 700; font-size: 15px; }
.pub-daypart .d { grid-column: 2; font-size: 13px; color: var(--ink-3); }
@media (max-width: 640px) { .pub-daypart { grid-template-columns: 1fr; } .pub-daypart .d { grid-column: 1; } }
.pub-cta-panel {
  background: var(--card); border-radius: var(--r-l); padding: 30px;
  box-shadow: var(--shadow-2); display: grid; gap: 20px;
}
@media (min-width: 880px) { .pub-cta-panel { grid-template-columns: 1fr 1fr; } }
.operator-list { display: flex; flex-wrap: wrap; gap: 10px; }
.operator-chip {
  background: var(--card); border: 1px solid var(--line-2); border-radius: 999px;
  font-size: 13px; font-weight: 700; color: var(--ink-2); padding: 8px 16px;
}
.pub-cta-title { font-size: 19px; font-weight: 900; margin-bottom: 10px; }
.pub-cta-copy { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; margin-bottom: 18px; }
.pub-submit { margin-top: 14px; }

/* homepage publicidad CTA band */
.home-pub-band {
  background: var(--dark);
  background-image: radial-gradient(110% 120% at 85% -20%, rgba(206, 122, 35, .28), transparent 55%);
  color: var(--ink-inv);
  padding: 44px 0;
}
.home-pub-band .inner { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.home-pub-band h2 { font-size: clamp(20px, 3vw, 27px); font-weight: 900; letter-spacing: -.4px; }
.home-pub-band p { color: #BBB7AC; font-size: 14.5px; margin-top: 6px; max-width: 560px; }
.home-pub-band .btn { margin-left: auto; }
@media (max-width: 720px) { .home-pub-band .btn { margin-left: 0; } }

/* ============================================
   21 · LEGAL
   ============================================ */
.legal-shell { max-width: 740px; margin: 0 auto; }
.legal-shell h1 { font-size: clamp(26px, 4vw, 36px); font-weight: 900; letter-spacing: -.5px; margin-bottom: 8px; }
.legal-updated { font-size: 13px; color: var(--ink-3); margin-bottom: 26px; }
.legal-shell h2 { font-size: 19px; font-weight: 800; margin: 28px 0 10px; }
.legal-shell p, .legal-shell li { font-size: 15px; line-height: 1.7; color: #26241F; margin-bottom: 12px; }
.legal-shell ul { list-style: disc; padding-left: 22px; }

/* ============================================
   22 · ANÚNCIATE (legacy)
   ============================================ */
.anunciate-hero { padding: 40px 0 10px; }

/* ============================================
   23 · FOOTER
   ============================================ */
#footer {
  background: var(--dark);
  color: #C7C3B9;
  margin-top: 56px;
}
.footer-inner {
  display: grid; gap: 34px;
  padding-top: 46px; padding-bottom: 36px;
}
@media (min-width: 880px) { .footer-inner { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; } }
.footer-brand img { width: auto; height: 64px; }
.footer-tagline { margin-top: 12px; font-size: 14px; color: #98948A; }
.footer-claim { margin-top: 6px; font-size: 13px; color: #6E6A60; }
#footer h4 {
  font-size: 12px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 14px;
}
.footer-nav { display: grid; gap: 9px; }
.footer-social-title { margin-top: 24px; }
.footer-nav a { font-size: 14px; color: #C7C3B9; }
.footer-nav a:hover { color: #fff; }
.social-links { display: flex; gap: 14px; flex-wrap: wrap; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: inline-flex; align-items: center; justify-content: center;
  color: #C7C3B9; transition: color .15s, border-color .15s, background .15s;
}
.social-links a:hover { color: var(--dark); background: var(--gold-bright); border-color: var(--gold-bright); }
.footer-contact-list { display: grid; gap: 13px; font-size: 14px; }
.footer-contact-label {
  display: block; font-size: 11px; font-weight: 800; letter-spacing: 1.4px;
  text-transform: uppercase; color: #8B877D; margin-bottom: 3px;
}
.footer-contact-list a:hover { color: #fff; }
.footer-crosspromo {
  margin-top: 16px;
  display: block;
  background: var(--dark-2); border: 1px solid var(--line-dark); border-radius: var(--r-m);
  padding: 14px 16px;
}
.footer-crosspromo:hover { border-color: var(--gold); }
.footer-crosspromo b { color: #EDEAE2; font-size: 14px; display: block; }
.footer-crosspromo span { font-size: 12.5px; color: #98948A; }
.footer-newsletter {
  border-top: 1px solid var(--line-dark);
  padding-top: 26px; padding-bottom: 26px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 36px;
}
.footer-newsletter-copy b {
  display: block; font-size: 14px; font-weight: 800; letter-spacing: 1.2px;
  color: var(--gold-bright);
}
.footer-newsletter-copy span { font-size: 13px; color: #98948A; }
.footer-newsletter-form { flex: 1; min-width: 300px; max-width: 480px; }
.footer-newsletter .nl-form input {
  background: var(--dark-2); border-color: var(--line-dark); color: #EDEAE2;
}
.footer-newsletter .nl-form input::placeholder { color: #8B877D; }
.footer-newsletter .nl-msg.ok { color: #7BC98F; }
.footer-newsletter .nl-msg.err { color: #E08A82; }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 20px; padding-bottom: 26px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center;
  font-size: 12.5px; color: #8B877D;
}
.footer-bottom a { color: #B5B1A6; }
.footer-bottom a:hover { color: #fff; }
.footer-legal-links { display: flex; gap: 18px; margin-left: auto; }
@media (max-width: 720px) { .footer-legal-links { margin-left: 0; } }

/* ============================================
   24 · BACK TO TOP
   ============================================ */
#back-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: #fff; border: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .2s, transform .2s;
  box-shadow: var(--shadow-2);
}
#back-top.visible { opacity: 1; pointer-events: auto; transform: none; }
#back-top svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.5; }
#back-top:hover { background: var(--gold-deep); }

/* ============================================
   25 · UTILITIES & MOTION
   ============================================ */
.oswald { font-family: var(--font-display); }
.has-media-error img[data-media-image] { display: none; }

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