:root {
  --ink: #09031f;
  --ink-2: #24123d;
  --paper: #f7f3fb;
  --white: #ffffff;
  --muted: #746a82;
  --line: #e2d9ea;
  --accent: #9b35c8;
  --accent-2: #ec5cf6;
  --accent-3: #665fd8;
  --soft-accent: #f5eafa;
  --soft-violet: #eee9fb;
  --success: #376b55;
  --warning: #8c6b25;
  --danger: #7d3c3c;
  --brand-gradient: linear-gradient(135deg, #665fd8 0%, #9b35c8 48%, #ec5cf6 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-bottom: 78px;
  color: var(--ink-2);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: #7f2aaa; text-decoration: none; }
a:hover { color: #b13dd6; text-decoration: none; }
img { max-width: 100%; }
.site-shell { max-width: 1240px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }

/* Header */
#header {
  height: 88px;
  background: rgba(6, 2, 27, .975);
  border-bottom: 1px solid rgba(236,92,246,.16);
  z-index: 997;
  transition: .25s ease;
  backdrop-filter: blur(12px);
}
#header.header-scrolled { height: 72px; box-shadow: 0 10px 30px rgba(5,0,25,.34); }
#header .site-shell { height: 100%; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; min-width: 0; }
.brand:hover { color: #fff; }
.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 0 24px rgba(236,92,246,.18);
  flex: 0 0 auto;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.02; }
.brand-name { font-size: 18px; font-weight: 760; letter-spacing: .08em; }
.brand-frequency { margin-top: 5px; font-size: 13px; font-weight: 760; color: #e9b7ef; letter-spacing: .08em; }

.nav-menu, .nav-menu * { margin: 0; padding: 0; list-style: none; }
.nav-menu > ul > li { float: left; position: relative; white-space: nowrap; }
.nav-menu a { display: block; color: #eee9f5; padding: 12px 14px; font-size: 14px; font-weight: 600; transition: .2s; }
.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a { color: var(--accent-2); }
.nav-menu .drop-down ul {
  display: block; position: absolute; left: 0; top: calc(100% - 18px); min-width: 265px;
  z-index: 99; opacity: 0; visibility: hidden; padding: 10px 0; background: #fff;
  box-shadow: 0 18px 45px rgba(26,5,47,.22); border: 1px solid #e9dded; transition: .2s;
}
.nav-menu .drop-down:hover > ul { opacity: 1; top: 100%; visibility: visible; }
.nav-menu .drop-down ul a { padding: 9px 18px; color: var(--ink-2); font-weight: 550; }
.nav-menu .drop-down ul a:hover { background: #f8effb; color: #8f2ab6; }
.nav-menu .drop-down > a:after { content: "\ea99"; font-family: IcoFont; padding-left: 5px; }

.mobile-nav-toggle {
  position: fixed; right: 18px; top: 18px; z-index: 9999; border: 0; background: transparent;
  font-size: 28px; color: #fff; outline: none !important;
}
.mobile-nav {
  position: fixed; top: 0; bottom: 0; left: -290px; width: 290px; z-index: 9998; overflow-y: auto;
  background: #08021f; padding: 72px 20px 28px; transition: .3s; box-shadow: 8px 0 30px rgba(0,0,0,.34);
}
.mobile-nav * { margin: 0; padding: 0; list-style: none; }
.mobile-nav a { display: block; color: #f2edf7; padding: 10px 8px; font-weight: 600; }
.mobile-nav .drop-down ul { display: none; padding-left: 14px; }
.mobile-nav .drop-down > a:after { content: "\ea99"; font-family: IcoFont; float: right; }
.mobile-nav-active .mobile-nav { left: 0; }
.mobile-nav-overly { width: 100%; height: 100%; z-index: 9997; top: 0; left: 0; position: fixed; background: rgba(4,1,15,.78); display: none; }

#main { margin-top: 88px; }

/* Hero */
.hero {
  min-height: 570px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 77% 30%, rgba(236,92,246,.26), transparent 24%),
    radial-gradient(circle at 90% 72%, rgba(102,95,216,.20), transparent 34%),
    linear-gradient(132deg, #050119 0%, #13052c 50%, #2b0b45 100%);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000 0%, #000 55%, transparent 100%);
}
.hero:after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -170px;
  top: 10px;
  border: 1px solid rgba(236,92,246,.24);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(155,53,200,.045), 0 0 0 100px rgba(102,95,216,.025);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 62px; align-items: center; }
.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 92px 0; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 750; color: #e8a8ef; margin-bottom: 18px; }
.hero h1 { font-size: clamp(52px, 7.6vw, 92px); line-height: .92; letter-spacing: -.045em; margin: 0 0 18px; font-weight: 790; }
.hero h1 span { color: var(--accent-2); text-shadow: 0 0 26px rgba(236,92,246,.20); }
.hero .lead { font-size: 20px; max-width: 690px; color: #ded5e8; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-logo-wrap { position: relative; justify-self: end; width: min(100%, 395px); }
.hero-logo-wrap:before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(236,92,246,.22);
  border-radius: 24px;
  filter: drop-shadow(0 0 30px rgba(236,92,246,.16));
}
.hero-logo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 28px 70px rgba(0,0,0,.42), 0 0 55px rgba(160,56,205,.14);
}
.btn-primary-magnetic, .btn-outline-magnetic, .btn-live-magnetic {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 10px 20px;
  border-radius: 4px; font-weight: 700; font-size: 14px; letter-spacing: .02em; transition: .2s;
}
.btn-primary-magnetic { background: var(--brand-gradient); color: #fff; border: 1px solid rgba(236,92,246,.42); box-shadow: 0 8px 22px rgba(144,44,183,.18); }
.btn-primary-magnetic:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 11px 28px rgba(144,44,183,.27); }
.btn-outline-magnetic { border: 1px solid rgba(255,255,255,.34); color: #fff; background: rgba(255,255,255,.025); }
.btn-outline-magnetic:hover { border-color: var(--accent-2); color: #ffd7ff; background: rgba(236,92,246,.07); }

/* Generic content */
.section { padding: 76px 0; }
.section-white { background: #fff; }
.section-dark { background: linear-gradient(132deg, #08021f 0%, #1c0732 100%); color: #fff; }
.section-title { max-width: 800px; margin-bottom: 38px; }
.section-title h2 { margin: 0 0 12px; font-size: 34px; letter-spacing: -.025em; font-weight: 760; color: var(--ink); }
.section-title p { margin: 0; color: var(--muted); font-size: 17px; }
.section-dark .section-title h2, .section-dark .section-title p { color: #fff; }
.small-label { color: #8f2ab6; text-transform: uppercase; font-weight: 750; font-size: 12px; letter-spacing: .13em; }
.section-dark .small-label { color: #eda3f4; }

.page-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(236,92,246,.16), transparent 28%),
    linear-gradient(130deg, #07011e 0%, #21083b 100%);
  color: #fff;
  padding: 74px 0 58px;
  border-bottom: 3px solid transparent;
  border-image: var(--brand-gradient) 1;
}
.page-hero h1 { font-size: clamp(36px, 6vw, 58px); margin: 0 0 10px; font-weight: 760; letter-spacing: -.035em; }
.page-hero p { margin: 0; color: #d9d0e2; max-width: 800px; font-size: 18px; }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card { background: #fff; border: 1px solid var(--line); padding: 28px; min-height: 225px; transition: .2s; position: relative; overflow: hidden; }
.info-card:before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--brand-gradient); transform: scaleX(.35); transform-origin: left; opacity: .55; transition: .2s; }
.info-card:hover { transform: translateY(-3px); box-shadow: 0 15px 36px rgba(62,13,82,.10); border-color: #d9bee5; }
.info-card:hover:before { transform: scaleX(1); opacity: 1; }
.info-card .icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--soft-accent); color: #8b28b0; font-size: 22px; margin-bottom: 20px; border: 1px solid #ead5f1; }
.info-card h3 { font-size: 19px; font-weight: 750; margin-bottom: 10px; color: var(--ink); }
.info-card p { color: var(--muted); margin-bottom: 18px; font-size: 15px; }
.info-card a { font-weight: 700; font-size: 14px; }

.station-panel { background: #fff; border-left: 4px solid var(--accent); padding: 30px 32px; box-shadow: 0 12px 30px rgba(40,8,58,.06); }
.station-panel dl { display: grid; grid-template-columns: 180px 1fr; gap: 9px 22px; margin: 0; }
.station-panel dt { color: var(--muted); font-weight: 650; }
.station-panel dd { margin: 0; color: var(--ink); font-weight: 650; }

.notice { border: 1px solid #dfcfe6; background: #faf4fc; padding: 22px 24px; margin: 24px 0; }
.notice strong { color: #6f248c; }
.notice-muted { border-color: #dfe3e6; background: #f6f7f8; }
.notice-success { border-color: #bfd1c8; background: #f1f7f4; }
.notice-danger { border-color: #ddc6c6; background: #fbf3f3; }

.content-card { background: #fff; border: 1px solid var(--line); padding: 34px; margin-bottom: 22px; box-shadow: 0 8px 24px rgba(51,11,72,.025); }
.content-card h2 { font-size: 25px; color: var(--ink); font-weight: 750; margin-bottom: 18px; }
.content-card h3 { font-size: 18px; color: var(--ink); font-weight: 720; margin-top: 26px; }
.content-card p:last-child { margin-bottom: 0; }
.numbered-rights { counter-reset: rights; list-style: none; padding: 0; margin: 0; }
.numbered-rights li { position: relative; padding: 0 0 22px 58px; margin-bottom: 22px; border-bottom: 1px solid #efe7f2; }
.numbered-rights li:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.numbered-rights li:before { counter-increment: rights; content: counter(rights); position: absolute; left: 0; top: 0; width: 36px; height: 36px; border: 1px solid #cda9dc; color: #8125a6; background: #fbf5fd; display: flex; align-items: center; justify-content: center; font-weight: 800; }

.document-list { list-style: none; margin: 0; padding: 0; }
.document-list li { display: flex; gap: 14px; align-items: center; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid #efe7f2; }
.document-list li:last-child { border-bottom: 0; }
.document-meta { min-width: 0; }
.document-name { display: block; color: var(--ink); font-weight: 720; word-break: break-word; }
.document-date { display: block; color: var(--muted); font-size: 13px; }
.document-link { white-space: nowrap; font-weight: 720; }

.program-table { background: #fff; border: 1px solid var(--line); }
.program-row { display: grid; grid-template-columns: 145px 150px 1fr; gap: 18px; padding: 20px 22px; border-bottom: 1px solid var(--line); align-items: start; }
.program-row:last-child { border-bottom: 0; }
.program-row:hover { background: #fcf8fd; }
.program-day, .program-time { font-weight: 700; color: #6d627a; }
.program-name { font-weight: 760; color: var(--ink); }
.program-desc { color: var(--muted); margin-top: 3px; }

/* Forms */
.form-panel { background: #fff; border: 1px solid var(--line); padding: 32px; }
.form-control { border-radius: 3px; border-color: #d4c8dc; min-height: 46px; }
textarea.form-control { min-height: 150px; }
.form-control:focus { border-color: #aa45ca; box-shadow: 0 0 0 .16rem rgba(155,53,200,.12); }
.form-label { font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.help-text { font-size: 13px; color: var(--muted); }
.required:after { content: " *"; color: #8b3d3d; }
.custom-file-label { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.btn-submit { background: var(--brand-gradient); color: #fff; border: 0; min-height: 48px; padding: 10px 24px; font-weight: 720; }
.btn-submit:hover { color: #fff; filter: brightness(1.06); }

/* Legal references */
.legal-reference { border-left: 3px solid var(--accent); padding-left: 20px; margin-bottom: 28px; }
.legal-reference h3 { margin: 0 0 6px; font-size: 18px; }
.legal-reference p { margin: 0; color: var(--muted); }

/* Footer */
#footer { background: #060119; color: #cbc2d4; padding: 52px 0 0; border-top: 1px solid rgba(236,92,246,.14); }
.footer-brand-block { display: flex; align-items: center; gap: 16px; }
.footer-logo { width: 92px; height: 92px; object-fit: cover; border-radius: 8px; border: 1px solid rgba(255,255,255,.12); }
.footer-brand { color: #fff; font-size: 22px; font-weight: 700; letter-spacing: .04em; margin-bottom: 6px; }
.footer-brand strong { color: var(--accent-2); }
.footer-brand span { color: #dda2e5; font-size: 17px; }
.footer-id { color: #a99db5; font-size: 14px; }
.footer-heading { color: #fff; text-transform: uppercase; letter-spacing: .11em; font-size: 12px; margin-bottom: 14px; }
#footer a { display: block; color: #c7bdd0; font-size: 14px; margin-bottom: 7px; }
#footer a:hover { color: var(--accent-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 38px; padding: 18px 0; font-size: 12px; color: #897e93; gap: 10px; }
.template-credit a { display: inline !important; font-size: inherit !important; }
.back-to-top { position: fixed; display: none; right: 18px; bottom: 18px; z-index: 995; background: var(--brand-gradient); width: 42px; height: 42px; color: #fff; text-align: center; line-height: 42px; font-size: 22px; box-shadow: 0 8px 22px rgba(108,24,141,.22); }
.back-to-top:hover { color: #fff; filter: brightness(1.08); }

/* Status */
.status-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.status-item { background: #fff; border: 1px solid var(--line); padding: 20px; display: flex; gap: 13px; align-items: flex-start; }
.status-dot { flex: 0 0 9px; width: 9px; height: 9px; border-radius: 50%; margin-top: 8px; background: var(--accent); box-shadow: 0 0 0 4px rgba(155,53,200,.08); }
.status-item h3 { font-size: 16px; margin: 0 0 4px; font-weight: 750; }
.status-item p { margin: 0; color: var(--muted); font-size: 14px; }

@media (max-width: 991px) {
  #header, #header.header-scrolled { height: 72px; }
  #main { margin-top: 72px; }
  .site-shell { padding-left: 20px; padding-right: 20px; }
  .brand-logo { width: 50px; height: 50px; }
  .brand-name { font-size: 16px; }
  .brand-frequency { font-size: 12px; }
  .hero { min-height: 500px; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-content { padding: 74px 0 32px; }
  .hero-logo-wrap { width: min(72vw, 360px); justify-self: start; margin-bottom: 68px; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .station-panel dl { grid-template-columns: 1fr; gap: 3px; }
  .station-panel dd { margin-bottom: 12px; }
  .program-row { grid-template-columns: 110px 120px 1fr; }
}

@media (max-width: 767px) {
  .section { padding: 56px 0; }
  .page-hero { padding: 56px 0 42px; }
  .hero h1 { font-size: 54px; }
  .hero .lead { font-size: 17px; }
  .hero-logo-wrap { width: min(82vw, 330px); }
  .info-grid, .status-grid { grid-template-columns: 1fr; }
  .program-row { grid-template-columns: 1fr; gap: 2px; }
  .program-time { margin-bottom: 8px; }
  .content-card, .form-panel { padding: 24px; }
  .document-list li { align-items: flex-start; flex-direction: column; }
  .footer-brand-block { align-items: flex-start; }
  .footer-logo { width: 76px; height: 76px; }
}

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


/* Streaming en vivo */
.header-live-button {
  margin-left: 14px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(236,92,246,.38);
  border-radius: 4px;
  background: rgba(155,53,200,.12);
  color: #fff;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .02em;
  transition: .2s ease;
}
.header-live-button:hover { background: rgba(236,92,246,.18); border-color: rgba(236,92,246,.72); }
.live-pulse, .live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5ecf;
  box-shadow: 0 0 0 0 rgba(255,94,207,.55);
}
.live-pulse { animation: live-pulse 1.8s infinite; }
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,94,207,.55); }
  70% { box-shadow: 0 0 0 7px rgba(255,94,207,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,94,207,0); }
}
.btn-live-magnetic {
  gap: 9px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.09);
  color: #fff;
  cursor: pointer;
}
.btn-live-magnetic:hover { color: #fff; background: rgba(255,255,255,.15); border-color: rgba(236,92,246,.55); }
.btn-live-magnetic i { font-size: 18px; }

.live-player {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9996;
  background: rgba(6,1,25,.985);
  border-top: 1px solid rgba(236,92,246,.28);
  box-shadow: 0 -12px 34px rgba(3,0,18,.28);
  backdrop-filter: blur(16px);
}
.live-player-inner {
  max-width: 1240px;
  min-height: 78px;
  margin: 0 auto;
  padding: 10px 28px;
  display: grid;
  grid-template-columns: 52px minmax(210px, 1fr) minmax(150px, auto) 170px 38px;
  gap: 15px;
  align-items: center;
}
.live-play-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.20);
  background: var(--brand-gradient);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  cursor: pointer;
  box-shadow: 0 0 28px rgba(201,67,225,.18);
  transition: .2s ease;
}
.live-play-button:hover { transform: scale(1.04); filter: brightness(1.08); }
.live-play-button:focus-visible, .header-live-button:focus-visible, .btn-live-magnetic:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.live-player-copy { min-width: 0; line-height: 1.12; }
.live-player-station { color: #fff; font-size: 15px; font-weight: 720; letter-spacing: .065em; }
.live-player-station strong { color: var(--accent-2); }
.live-player-meta { margin-top: 5px; color: #aaa0b5; font-size: 11px; font-weight: 700; letter-spacing: .10em; display: flex; align-items: center; gap: 7px; }
.live-indicator { color: #f3b8f5; display: inline-flex; align-items: center; gap: 6px; }
.live-dot { width: 7px; height: 7px; }
.live-player.is-playing .live-dot { animation: live-pulse 1.5s infinite; }
.live-player-status { color: #c9bfd2; font-size: 12px; white-space: nowrap; }
.live-player.is-playing .live-player-status { color: #efc1f2; }
.live-volume-wrap { display: flex; align-items: center; gap: 8px; color: #b5a9c0; }
.live-volume { width: 135px; accent-color: #d94ee8; cursor: pointer; }
.live-stream-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.13);
  color: #d8cfe1 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  font-size: 17px !important;
}
.live-stream-link:hover { color: #fff !important; border-color: rgba(236,92,246,.5); }
.back-to-top { bottom: 94px; }

@media (max-width: 767px) {
  body { padding-bottom: 92px; }
  .live-player-inner {
    min-height: 92px;
    padding: 9px 14px;
    grid-template-columns: 48px minmax(0, 1fr) 34px;
    gap: 10px;
  }
  .live-play-button { width: 44px; height: 44px; font-size: 21px; }
  .live-player-station { font-size: 13px; }
  .live-player-meta { font-size: 10px; gap: 5px; }
  .live-player-status { grid-column: 2 / 4; font-size: 11px; margin-top: -7px; }
  .live-volume-wrap { display: none; }
  .live-stream-link { grid-column: 3; grid-row: 1; }
  .back-to-top { bottom: 108px; }
}

/* Identidad editorial de la estación */
.hero-tagline {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid rgba(169, 230, 255, .22);
  background: rgba(41, 173, 220, .08);
  color: #d8f6ff;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
}

.station-intro-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(89, 192, 232, .11), transparent 26%),
    linear-gradient(180deg, #f9f8fc 0%, #f3f8fc 100%);
}
.station-intro-grid {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}
.station-intro-photo {
  position: relative;
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(72, 108, 166, .16);
  box-shadow: 0 24px 64px rgba(28, 25, 76, .14);
}
.station-intro-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(5, 11, 45, .74) 100%);
  pointer-events: none;
}
.station-intro-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.station-intro-photo-badge {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 20px;
  max-width: calc(100% - 44px);
  padding: 9px 13px;
  border-radius: 5px;
  color: #fff;
  background: rgba(9, 8, 44, .76);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 720;
}
.station-intro-copy h2,
.station-story-copy h2,
.coverage-copy h2,
.station-contact-copy h2 {
  margin: 5px 0 18px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 47px);
  line-height: 1.06;
  letter-spacing: -.035em;
  font-weight: 780;
}
.story-lead {
  color: #332749;
  font-size: 19px;
  line-height: 1.72;
}
.station-intro-copy p:not(.story-lead),
.station-story-copy p:not(.story-lead),
.coverage-copy p:not(.story-lead) {
  color: var(--muted);
}
.station-intro-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.text-link-magnetic {
  font-size: 14px;
  font-weight: 760;
  color: #6538a6;
}
.text-link-magnetic:hover { color: #9b35c8; }

/* Página La estación */
.station-page-hero {
  background:
    radial-gradient(circle at 72% 24%, rgba(69, 195, 230, .20), transparent 24%),
    radial-gradient(circle at 89% 60%, rgba(101, 96, 216, .18), transparent 32%),
    linear-gradient(132deg, #07143b 0%, #0b275a 44%, #1c0d3b 100%);
}
.station-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 60px;
  align-items: center;
}
.station-photo-frame {
  overflow: hidden;
  border-radius: 20px;
  background: #0a1437;
  border: 1px solid #d7e1ef;
  box-shadow: 0 28px 70px rgba(26, 34, 77, .16);
}
.station-photo-frame img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  display: block;
}
.photo-caption {
  padding: 13px 18px;
  color: #dce8fa;
  background: linear-gradient(90deg, #071536, #132b5f);
  font-size: 13px;
  font-weight: 650;
}
.brand-quote {
  position: relative;
  margin: 28px 0 0;
  padding: 22px 24px;
  border-left: 4px solid #42bfe1;
  background: linear-gradient(135deg, #f4fbff 0%, #f8f4fd 100%);
  color: #1d3159;
  font-size: 19px;
  font-weight: 760;
  line-height: 1.55;
}
.station-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.station-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid #d7e3ef;
  border-radius: 999px;
  background: #fff;
  color: #3e4268;
  font-size: 13px;
  font-weight: 700;
}
.station-pill i { color: #369bc9; }

.station-purpose-section {
  position: relative;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(130deg, #071333 0%, #0b2857 50%, #21103d 100%);
  background-size: 46px 46px, 46px 46px, auto;
  color: #fff;
}
.section-title-centered { margin-left: auto; margin-right: auto; text-align: center; }
.station-purpose-section .section-title h2 { color: #fff; }
.station-purpose-section .section-title p { color: #d1dcf0; }
.station-purpose-section .small-label { color: #82ddf1; }
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.purpose-card {
  min-height: 250px;
  padding: 28px 24px;
  border: 1px solid rgba(160, 211, 239, .16);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.purpose-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
  border-color: rgba(131, 221, 241, .36);
}
.purpose-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #b9f2ff;
  background: linear-gradient(135deg, rgba(64,188,224,.18), rgba(154,72,198,.18));
  border: 1px solid rgba(139, 216, 240, .17);
  font-size: 23px;
}
.purpose-card h3 { margin: 0 0 10px; color: #fff; font-size: 19px; font-weight: 760; }
.purpose-card p { margin: 0; color: #cbd7e9; font-size: 15px; }

.coverage-section { overflow: hidden; }
.coverage-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: 48px;
  align-items: center;
}
.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 12px;
  margin-top: 20px;
}
.coverage-list span {
  position: relative;
  padding: 9px 12px 9px 30px;
  border: 1px solid #dde7f0;
  border-radius: 5px;
  background: #f9fcff;
  color: #374462;
  font-size: 14px;
  font-weight: 650;
}
.coverage-list span:before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #3db8dc;
  box-shadow: 0 0 0 4px rgba(61,184,220,.10);
}
.coverage-map-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid #dce5ed;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(25, 52, 93, .11);
}
.coverage-map-frame img { display: block; width: 100%; height: auto; }
.coverage-map-frame figcaption {
  padding: 11px 14px;
  color: #7b8190;
  background: #fbfcfd;
  border-top: 1px solid #e6ecf1;
  font-size: 12px;
}

.station-contact-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(53, 185, 222, .14), transparent 22%),
    linear-gradient(130deg, #071333 0%, #11163e 50%, #241142 100%);
}
.station-contact-card {
  display: grid;
  grid-template-columns: minmax(260px, .43fr) minmax(0, .57fr);
  max-width: 1050px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(159, 216, 239, .18);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 30px 75px rgba(0,0,0,.22);
}
.station-contact-poster { min-height: 620px; background: #0a183c; }
.station-contact-poster img { display: block; width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.station-contact-copy { padding: 54px; color: #dce6f4; }
.station-contact-copy .small-label { color: #7edcf2; }
.station-contact-copy h2 { color: #fff; }
.station-contact-tagline { margin: -6px 0 30px; color: #a9e9f7; font-size: 18px; font-weight: 760; }
.contact-detail {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.contact-detail i { color: #7edcf2; font-size: 21px; margin-top: 2px; }
.contact-detail strong { display: block; margin-bottom: 3px; color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.contact-detail span,
.contact-detail a { display: block; color: #d1dbea; font-size: 15px; line-height: 1.55; }
.contact-detail a:hover { color: #fff; }
.station-contact-copy .btn-outline-magnetic { border-color: rgba(255,255,255,.28); }

.programming-cta {
  background:
    radial-gradient(circle at 88% 50%, rgba(67, 194, 228, .14), transparent 25%),
    linear-gradient(132deg, #08021f 0%, #102a59 52%, #1c0732 100%);
}

/* Footer ampliado */
.footer-tagline { color: #88ddef; font-size: 14px; font-weight: 720; }
.footer-contact { color: #9288a0; font-size: 12px; line-height: 1.45; max-width: 480px; }
.footer-contact i { color: #77cee5; margin-right: 5px; }
.footer-contact a { display: inline !important; margin: 0 !important; font-size: inherit !important; color: #bfb4ca !important; }
.footer-contact a:hover { color: #fff !important; }

@media (max-width: 1199px) {
  .purpose-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .station-intro-grid,
  .station-story-grid,
  .coverage-grid,
  .station-contact-card { grid-template-columns: 1fr; }
  .station-intro-photo,
  .station-intro-photo img { min-height: 460px; }
  .station-photo-frame img { height: min(76vh, 620px); }
  .coverage-copy { max-width: 760px; }
  .station-contact-poster,
  .station-contact-poster img { min-height: 500px; max-height: 640px; }
  .station-contact-poster img { object-position: center 30%; }
}

@media (max-width: 767px) {
  .station-intro-grid,
  .station-story-grid,
  .coverage-grid { gap: 30px; }
  .station-intro-photo,
  .station-intro-photo img { min-height: 420px; }
  .purpose-grid { grid-template-columns: 1fr; }
  .coverage-list { grid-template-columns: 1fr; }
  .station-contact-copy { padding: 32px 24px; }
  .station-contact-poster,
  .station-contact-poster img { min-height: 430px; }
  .station-intro-copy h2,
  .station-story-copy h2,
  .coverage-copy h2,
  .station-contact-copy h2 { font-size: 34px; }
  .brand-quote { font-size: 17px; }
}

/* Artículo 8 · Derechos de las Audiencias */
.rights-source-note {
  border-left: 4px solid var(--accent-3);
  background: linear-gradient(135deg, #faf6fd 0%, #f4f2fc 100%);
}
.rights-article-card { padding: 0; overflow: hidden; }
.rights-article-heading {
  padding: 34px 38px 27px;
  background:
    radial-gradient(circle at 92% 20%, rgba(236,92,246,.10), transparent 30%),
    linear-gradient(135deg, #fbf8fd 0%, #f6f3fb 100%);
  border-bottom: 1px solid var(--line);
}
.rights-article-heading h2 { margin: 5px 0 0; }
.rights-article-list {
  list-style: none;
  counter-reset: audience-right;
  margin: 0;
  padding: 0;
}
.rights-article-list > li {
  counter-increment: audience-right;
  position: relative;
  padding: 30px 38px 30px 92px;
  border-bottom: 1px solid #eee7f2;
  background: #fff;
}
.rights-article-list > li:nth-child(even) { background: #fdfbfe; }
.rights-article-list > li:last-child { border-bottom: 0; }
.rights-article-list > li:before {
  content: counter(audience-right, upper-roman);
  position: absolute;
  left: 36px;
  top: 30px;
  width: 38px;
  min-height: 38px;
  padding: 5px 3px;
  border: 1px solid #cda9dc;
  background: #faf4fc;
  color: #7e25a3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.rights-article-list h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 760;
}
.rights-article-list p { margin: 0; color: #5f556b; }
.rights-sublist {
  margin: 17px 0 0;
  padding-left: 26px;
  color: #5f556b;
}
.rights-sublist li { padding: 5px 0 5px 7px; }
.rights-sublist li::marker { color: #8125a6; font-weight: 800; }
.rights-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.btn-outline-light-magnetic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid #cbb7d5;
  background: #fff;
  color: #6d257f;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  transition: .2s;
}
.btn-outline-light-magnetic:hover {
  color: #8529a7;
  border-color: #a95bc2;
  background: #fbf5fd;
}

@media (max-width: 767px) {
  .rights-article-heading { padding: 25px 24px 20px; }
  .rights-article-list > li { padding: 25px 22px 25px 68px; }
  .rights-article-list > li:before { left: 20px; top: 25px; width: 34px; min-height: 34px; }
  .rights-article-list h3 { font-size: 17px; }
}

/* Programación semanal */
.programming-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(70, 191, 229, .18), transparent 24%),
    radial-gradient(circle at 92% 66%, rgba(236, 92, 246, .15), transparent 30%),
    linear-gradient(128deg, #050119 0%, #101d4f 46%, #291047 100%);
}
.programming-hero:after {
  content: "89.7";
  position: absolute;
  right: 3.5vw;
  bottom: -44px;
  color: rgba(255,255,255,.035);
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 820;
  line-height: .82;
  letter-spacing: -.08em;
  pointer-events: none;
}
.programming-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(87, 182, 225, .08), transparent 24%),
    linear-gradient(180deg, #f8f6fb 0%, #f5f8fc 100%);
}
.programming-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 30px;
}
.programming-intro h2 {
  margin: 6px 0 8px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 43px);
  font-weight: 790;
  letter-spacing: -.035em;
}
.programming-intro p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}
.programming-live-button { flex: 0 0 auto; gap: 9px; }
.schedule-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px;
  border: 1px solid #ddd9e9;
  border-radius: 14px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 10px 28px rgba(30,20,63,.045);
}
.schedule-tab {
  position: relative;
  min-height: 54px;
  padding: 11px 18px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #675e75;
  font: inherit;
  font-size: 14px;
  font-weight: 760;
  cursor: pointer;
  transition: .2s ease;
}
.schedule-tab:hover { background: #f4eef9; color: #5e2780; }
.schedule-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, #4f54bc 0%, #8335b4 58%, #bb45d5 100%);
  box-shadow: 0 8px 22px rgba(106,53,161,.19);
}
.schedule-today-label {
  display: none;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  color: #f8d7fb;
  background: rgba(255,255,255,.13);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.schedule-tab.is-today .schedule-today-label { display: inline-block; }
.schedule-panel {
  display: none;
  overflow: hidden;
  border: 1px solid #ded9e8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(24,15,58,.075);
}
.schedule-panel.is-active { display: block; }
.schedule-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 28px 32px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 28%, rgba(80,202,234,.20), transparent 25%),
    linear-gradient(120deg, #081437 0%, #17295e 55%, #32104b 100%);
}
.schedule-kicker {
  margin-bottom: 4px;
  color: #9eddf0;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.schedule-panel-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 3.4vw, 34px);
  line-height: 1.15;
  font-weight: 780;
  letter-spacing: -.025em;
}
.schedule-frequency {
  flex: 0 0 auto;
  color: #d9d7e8;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .09em;
}
.schedule-frequency span {
  color: #fff;
  font-size: 29px;
  letter-spacing: -.04em;
  vertical-align: -2px;
}
.schedule-list { padding: 9px 30px 18px; }
.schedule-item {
  display: grid;
  grid-template-columns: 158px 30px minmax(0, 1fr);
  min-height: 116px;
  border-bottom: 1px solid #ebe7ef;
}
.schedule-item:last-child { border-bottom: 0; }
.schedule-time {
  display: flex;
  align-items: center;
  padding: 23px 0;
  color: #39304d;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.schedule-marker {
  position: relative;
  display: flex;
  justify-content: center;
}
.schedule-marker:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #e5dfeb;
  transform: translateX(-50%);
}
.schedule-item:first-child .schedule-marker:before { top: 50%; }
.schedule-item:last-child .schedule-marker:before { bottom: 50%; }
.schedule-marker span {
  position: relative;
  z-index: 1;
  width: 11px;
  height: 11px;
  margin-top: 31px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #786bd7;
  box-shadow: 0 0 0 2px #cfc7eb;
}
.schedule-item--programa .schedule-marker span {
  background: #c640d6;
  box-shadow: 0 0 0 2px #e4b8e9, 0 0 18px rgba(198,64,214,.22);
}
.schedule-item--oficial .schedule-marker span {
  background: #3998bd;
  box-shadow: 0 0 0 2px #b9dce9;
}
.schedule-copy { padding: 20px 0 20px 17px; }
.schedule-meta-row { min-height: 20px; margin-bottom: 4px; }
.schedule-type {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border: 1px solid #e4dceb;
  border-radius: 999px;
  background: #faf8fc;
  color: #766a81;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.schedule-item--programa .schedule-type { border-color: #ecd1f0; background: #fcf2fd; color: #8b2aa1; }
.schedule-item--oficial .schedule-type { border-color: #cfe7ef; background: #f2fafc; color: #277994; }
.schedule-copy h3 {
  margin: 0 0 4px;
  color: #15102b;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 780;
}
.schedule-copy p {
  margin: 0;
  color: #776e82;
  font-size: 14px;
}
.programming-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid #dde1ea;
  border-radius: 11px;
  background: rgba(255,255,255,.72);
  color: #6b6475;
  font-size: 13px;
}
.programming-note-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef5fb;
  color: #377da0;
  font-size: 18px;
}
.programming-note strong { display: block; margin-bottom: 2px; color: #342b47; }
.programming-note span { display: block; }

@media (max-width: 767px) {
  .programming-intro { align-items: flex-start; flex-direction: column; }
  .schedule-tabs { grid-template-columns: 1fr; }
  .schedule-tab { min-height: 48px; }
  .schedule-panel-head { padding: 23px 21px; }
  .schedule-frequency { display: none; }
  .schedule-list { padding: 5px 18px 14px; }
  .schedule-item { grid-template-columns: 1fr; min-height: 0; padding: 18px 0; }
  .schedule-time { padding: 0 0 5px; color: #6b5f78; font-size: 13px; }
  .schedule-marker { display: none; }
  .schedule-copy { padding: 0; }
  .schedule-meta-row { margin-bottom: 5px; }
  .schedule-copy h3 { font-size: 19px; }
}


/* Programas destacados */
.featured-programs-home {
  background:
    radial-gradient(circle at 12% 12%, rgba(88,183,226,.08), transparent 24%),
    linear-gradient(180deg, #fcfbfe 0%, #f7f5fb 100%);
}
.program-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.program-poster-card {
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid #e5def0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(28,19,62,.07);
}
.program-poster-card--wide { grid-column: span 12; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); }
.program-poster-media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.program-poster-copy { padding: 20px 22px 22px; }
.program-poster-kicker,
.featured-program-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #f4eefc;
  color: #7b32ab;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.program-poster-copy h3,
.featured-program-body h3 {
  margin: 10px 0 6px;
  color: #16112c;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  font-weight: 800;
}
.program-poster-copy p,
.featured-program-body p {
  margin: 0;
  color: #6f677b;
  font-size: 15px;
}
.program-poster-link {
  display: inline-flex;
  margin-top: 14px;
  color: #6d2db0;
  font-weight: 700;
}
.program-poster-link:hover { color: #4e2192; text-decoration: none; }

.featured-programs-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}
.featured-program-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #e2dbec;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 44px rgba(28,19,62,.06);
}
.featured-program-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.featured-program-body { padding: 18px 18px 20px; }
.featured-program-time {
  margin: 0 0 9px;
  color: #332b48;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

@media (max-width: 1199px) {
  .program-poster-card { grid-column: span 6; }
  .program-poster-card--wide { grid-column: span 12; }
  .featured-program-card { grid-template-columns: 190px minmax(0, 1fr); }
}
@media (max-width: 991px) {
  .program-spotlight-grid,
  .featured-programs-strip { grid-template-columns: 1fr; }
  .program-poster-card,
  .program-poster-card--wide { grid-column: span 1; display: block; }
  .featured-program-card { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .program-poster-copy { padding: 18px; }
  .featured-program-card { grid-template-columns: 1fr; }
  .featured-program-body { padding: 16px; }
}


/* Estado dinámico de programación */
.current-program-strip {
  position: relative;
  z-index: 5;
  margin-top: -28px;
  padding: 0 0 12px;
}
.current-program-card {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(182,151,217,.34);
  border-radius: 16px;
  background: rgba(10,5,35,.96);
  color: #fff;
  box-shadow: 0 18px 45px rgba(16,7,45,.22);
  backdrop-filter: blur(16px);
}
.current-program-live,
.programming-now-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f2b7ff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.current-program-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}
.current-program-name { color: #fff; font-size: 20px; font-weight: 800; line-height: 1.15; }
.current-program-description { margin-top: 3px; color: #c7bed4; font-size: 13px; }
.current-program-time { color: #fff; font-size: 13px; font-weight: 800; white-space: nowrap; }
.current-program-listen { flex: 0 0 auto; }

.programming-now {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 18px;
  margin: -4px 0 22px;
  padding: 15px 18px;
  border: 1px solid #d9cfea;
  border-radius: 14px;
  background: linear-gradient(110deg,#0a1237 0%,#23104b 62%,#48175c 100%);
  box-shadow: 0 14px 36px rgba(33,19,71,.10);
}
.programming-now-copy { display: flex; flex-direction: column; min-width: 0; }
.programming-now-copy strong { color: #fff; font-size: 18px; line-height: 1.2; }
.programming-now-copy span { margin-top: 3px; color: #c7bdd4; font-size: 13px; }
.programming-now-time { color: #fff; font-size: 13px; font-weight: 800; white-space: nowrap; }

.schedule-item.is-on-air {
  position: relative;
  margin: 0 -14px;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(118,77,196,.075), rgba(198,64,214,.045));
  box-shadow: inset 3px 0 0 #a144cc;
}
.schedule-item.is-on-air .schedule-copy h3 { color: #642784; }
.on-air-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f6e6fb;
  color: #8429a2;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.on-air-badge .live-pulse { width: 7px; height: 7px; }
.featured-today-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 4px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg,#6535bd,#bc43d4);
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.program-poster-card.is-featured-today,
.featured-program-card.is-featured-today {
  border-color: rgba(160,79,197,.48);
  box-shadow: 0 24px 60px rgba(84,39,132,.14);
}

@media (max-width: 991px) {
  .current-program-card { grid-template-columns: 1fr auto; }
  .current-program-live { grid-column: 1 / -1; }
  .current-program-main { display: block; }
  .current-program-time { margin-top: 5px; }
}
@media (max-width: 767px) {
  .current-program-strip { margin-top: -16px; }
  .current-program-card { grid-template-columns: 1fr; gap: 12px; }
  .current-program-listen { width: 100%; justify-content: center; }
  .programming-now { grid-template-columns: 1fr; gap: 8px; }
  .programming-now-time { margin-top: 2px; }
  .schedule-item.is-on-air { margin-left: -8px; margin-right: -8px; padding-left: 8px; padding-right: 8px; }
}
