/* ============================================
   Radio La Discusión - Main CSS
   Modern, Clean, Dynamic Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --red: #c41e3a;
  --red-dark: #9e1830;
  --red-light: #e8394f;
  --navy: #0d0d1a;
  --navy-mid: #1a1a2e;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --gray-100: #f0f0f0;
  --gray-200: #e0e0e0;
  --gray-400: #9e9e9e;
  --gray-600: #616161;
  --gray-800: #212121;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-h: 72px;
  --player-h: 72px;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-img {
  height: 46px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,30,58,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(196,30,58,0); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
  margin-right: 1.5rem;
}
.nav-link {
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--red); background: rgba(196,30,58,0.06); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s;
  overflow: hidden;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--gray-700);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-item:hover { background: var(--off-white); color: var(--red); }
.nav-dropdown-item svg { width: 15px; flex-shrink: 0; opacity: 0.6; }

/* Live badge */
.nav-live {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0.45rem 1rem;
  background: var(--red);
  color: white;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.nav-live:hover { background: var(--red-dark); transform: scale(1.03); }
.nav-live-dot {
  width: 7px; height: 7px;
  background: white;
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   LIVE PLAYER (sticky bottom)
   ============================================ */
.player-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--player-h);
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 1.5rem;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
}
.player-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.player-logo {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.player-logo svg { width: 20px; fill: white; }
.player-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-status {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.player-controls { display: flex; align-items: center; gap: 1rem; }
.player-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
}
.player-btn:hover { background: var(--red-light); transform: scale(1.08); }
.player-btn svg { width: 18px; fill: white; }
.player-btn.playing .icon-play { display: none; }
.player-btn.playing .icon-pause { display: block !important; }
.icon-pause { display: none; }

.player-volume {
  display: flex;
  align-items: center;
  gap: 8px;
}
.player-volume svg { width: 16px; fill: rgba(255,255,255,0.6); flex-shrink: 0; }
.player-volume input[type=range] {
  -webkit-appearance: none;
  width: 90px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  outline: none;
}
.player-volume input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
}
.player-visualizer {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 30px;
}
.player-visualizer span {
  display: block;
  width: 3px;
  border-radius: 3px;
  background: var(--red);
  animation: wave 1.2s ease-in-out infinite;
}
.player-visualizer span:nth-child(1){height:8px;animation-delay:0s}
.player-visualizer span:nth-child(2){height:20px;animation-delay:0.15s}
.player-visualizer span:nth-child(3){height:14px;animation-delay:0.3s}
.player-visualizer span:nth-child(4){height:24px;animation-delay:0.45s}
.player-visualizer span:nth-child(5){height:10px;animation-delay:0.6s}
.player-visualizer span:nth-child(6){height:18px;animation-delay:0.75s}
.player-visualizer.paused span { animation-play-state: paused; }

@keyframes wave {
  0%,100%{transform:scaleY(0.5);opacity:0.6}
  50%{transform:scaleY(1);opacity:1}
}

/* ============================================
   SECTIONS BASE
   ============================================ */
.section {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 80px) 2rem calc(var(--player-h) + 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.section-header {
  margin-bottom: 3rem;
  text-align: center;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--red);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-mid);
  letter-spacing: -0.02em;
}
.section-subtitle {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
#inicio {
  min-height: 100vh;
  padding-top: var(--nav-h);
  padding-bottom: var(--player-h);
  display: grid;
  place-items: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: var(--red);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: var(--navy-mid);
  bottom: -100px; left: -100px;
  animation-delay: 4s;
}
@keyframes float {
  0%,100%{transform:translateY(0) scale(1)}
  50%{transform:translateY(-30px) scale(1.05)}
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 1rem;
  background: rgba(196,30,58,0.08);
  border: 1px solid rgba(196,30,58,0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--navy-mid);
  margin-bottom: 1rem;
}
.hero-title span { color: var(--red); }
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--gray-600);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 4px 20px rgba(196,30,58,0.3);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,30,58,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--navy-mid);
  border: 2px solid var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--navy-mid);
  background: var(--navy-mid);
  color: white;
}
.btn svg { width: 18px; }
.hero-scroll {
  position: absolute;
  bottom: calc(var(--player-h) + 24px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-400), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%{height:0;opacity:1}
  100%{height:40px;opacity:0}
}

/* ============================================
   HERO — 3D ENTRY ANIMATIONS
   ============================================ */
@keyframes hero3DIn {
  0% {
    opacity: 0;
    transform: perspective(900px) rotateX(22deg) translateY(44px) scale(0.97);
    filter: blur(4px);
  }
  60% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: perspective(900px) rotateX(0deg) translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-content { transform-style: preserve-3d; }

.hero-badge   { animation: hero3DIn 0.85s 0.15s cubic-bezier(0.22,0.61,0.36,1) both; }
.hero-title   { animation: hero3DIn 0.85s 0.32s cubic-bezier(0.22,0.61,0.36,1) both; }
.hero-subtitle { animation: hero3DIn 0.85s 0.48s cubic-bezier(0.22,0.61,0.36,1) both; }
.hero-actions { animation: hero3DIn 0.85s 0.63s cubic-bezier(0.22,0.61,0.36,1) both; }

/* ============================================
   HERO — ICON PARTICLES
   ============================================ */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-particle {
  position: absolute;
  pointer-events: none;
  animation: particleDrift linear infinite;
  will-change: transform;
}
.hero-particle svg {
  fill: var(--navy-mid);
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes particleDrift {
  0%   { transform: translateY(0)    rotate(0deg)   scale(1);   }
  25%  { transform: translateY(-18px) rotate(8deg)  scale(1.04); }
  50%  { transform: translateY(-30px) rotate(-4deg) scale(1);   }
  75%  { transform: translateY(-14px) rotate(6deg)  scale(0.97); }
  100% { transform: translateY(0)    rotate(0deg)   scale(1);   }
}

/* ============================================
   INDICADORES SECTION
   ============================================ */
.indicadores-section {
  background: var(--navy-mid);
  padding: 2.5rem 2rem;
}
.indicadores-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 2rem;
}

/* --- Clima --- */
.indicador-weather {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  flex-shrink: 0;
  min-width: 280px;
}
.indicador-weather-icon {
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.indicador-weather-icon svg { width: 28px; fill: white; }
.indicador-ciudad {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.15rem;
}
.indicador-temp {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.indicador-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.2rem;
  text-transform: capitalize;
}
.indicador-weather-extra {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.indicador-extra-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.indicador-extra-item svg { width: 14px; fill: rgba(255,255,255,0.4); flex-shrink: 0; }

/* --- Divisor --- */
.indicadores-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
  align-self: stretch;
}

/* --- Índices económicos --- */
.indicadores-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
}
.indicador-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
  transition: background 0.2s;
}
.indicador-item:hover { background: rgba(255,255,255,0.09); }
.indicador-sigla {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.3rem;
}
.indicador-valor {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  white-space: nowrap;
}
.indicador-nombre {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
}

/* Responsive indicadores */
@media (max-width: 1100px) {
  .indicadores-grid { grid-template-columns: repeat(2, 1fr); }
  .indicador-valor { font-size: 1.1rem; }
}
@media (max-width: 768px) {
  .indicadores-section { padding: 1.25rem 1rem; }
  .indicadores-inner { flex-direction: column; gap: 0.75rem; }
  .indicador-weather {
    min-width: unset;
    padding: 0.85rem 1rem;
    gap: 0.85rem;
  }
  .indicador-weather-icon { width: 38px; height: 38px; }
  .indicador-weather-icon svg { width: 18px; }
  .indicador-temp { font-size: 1.4rem; }
  .indicador-desc { font-size: 0.75rem; }
  .indicadores-divider { width: 100%; height: 1px; }
  .indicadores-grid { grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
  .indicador-item { padding: 0.65rem 0.5rem; }
  .indicador-valor { font-size: 0.9rem; }
  .indicador-sigla { font-size: 0.62rem; }
  .indicador-nombre { font-size: 0.62rem; display: none; }
  .indicador-weather-extra { gap: 0.4rem; }
  .indicador-extra-item { font-size: 0.7rem; }
}
@media (max-width: 480px) {
  .indicadores-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .indicador-nombre { display: none; }
  .indicador-weather-extra { flex-direction: row; margin-left: 0; gap: 0.75rem; flex-wrap: wrap; }
}

/* ============================================
   NOTICIAS SECTION
   ============================================ */
#noticias { background: var(--white); }

.news-featured-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.news-featured-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}
.news-featured-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-featured-main:hover img { transform: scale(1.04); }
.news-featured-main .news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,26,0.85) 0%, rgba(13,13,26,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}
.news-cat-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  width: fit-content;
}
.news-featured-main .news-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.news-meta-sm {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
}

.news-side-list { display: flex; flex-direction: column; gap: 1rem; }
.news-side-item {
  display: flex;
  gap: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  padding: 0.75rem;
  transition: background 0.2s;
}
.news-side-item:hover { background: var(--off-white); }
.news-side-img {
  width: 90px; height: 70px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.news-side-img img { width: 100%; height: 100%; object-fit: cover; }
.news-side-body { flex: 1; min-width: 0; }
.news-side-body .news-cat-badge { margin-bottom: 0.4rem; }
.news-side-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gray-800);
  margin-bottom: 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-side-meta { font-size: 0.72rem; color: var(--gray-400); }

/* News grid */
.news-section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.news-section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-mid);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.news-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.news-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-body { padding: 1.25rem; }
.news-card-body .news-cat-badge { margin-bottom: 0.6rem; }
.news-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy-mid);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-excerpt {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}
.news-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 0.75rem;
  color: var(--gray-400);
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
}
.news-card-meta svg { width: 13px; fill: currentColor; flex-shrink: 0; }
.news-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.news-meta-item svg { width: 13px; fill: currentColor; flex-shrink: 0; }
/* Meta en cards Ñuble y dos-cat */
.nuble-card-meta,
.dos-cat-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 0.72rem;
  color: var(--gray-400);
}

.view-all-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  transition: gap 0.2s;
}
.view-all-btn:hover { gap: 10px; }
.view-all-btn svg { width: 16px; }

/* ============================================
   PROGRAMACIÓN SECTION
   ============================================ */
#programacion { background: var(--off-white); }
.prog-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.prog-tab {
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  background: white;
  border: 1px solid var(--gray-200);
  transition: all 0.2s;
  text-transform: capitalize;
}
.prog-tab.active, .prog-tab:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.prog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.prog-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid var(--gray-100);
  transition: transform 0.2s, box-shadow 0.2s;
}
.prog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.prog-time {
  flex-shrink: 0;
  text-align: center;
  padding: 0.5rem 0.75rem;
  background: rgba(196,30,58,0.07);
  border-radius: 8px;
}
.prog-time-start {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--red);
  display: block;
}
.prog-time-end {
  font-size: 0.72rem;
  color: var(--gray-400);
}
.prog-info { flex: 1; min-width: 0; }
.prog-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-mid);
  margin-bottom: 0.25rem;
}
.prog-conductor {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}
.prog-desc {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prog-empty { text-align: center; padding: 3rem; color: var(--gray-400); font-size: 0.9rem; }

/* ============================================
   SECTION CATEGORY HEADER (shared)
   ============================================ */
.section-cat {
  min-height: unset;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.section-dark { background: var(--navy-mid); }
.section-header-cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.section-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}
.section-cat-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-mid);
  letter-spacing: -0.02em;
}
.section-cat-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
  margin-top: .5rem;
  transition: gap 0.2s;
}
.section-cat-more:hover { gap: 10px; }
.section-cat-more svg { width: 16px; fill: currentColor; }

/* ============================================
   ÑUBLE — vertical cards grid
   ============================================ */
.nuble-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.nuble-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: transform 0.25s, box-shadow 0.25s;
}
.nuble-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.nuble-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
}
.nuble-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.nuble-card:hover .nuble-card-img img { transform: scale(1.05); }
.nuble-card-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.nuble-card-meta { font-size: 0.72rem; color: var(--gray-400); font-weight: 500; }
.nuble-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-mid);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nuble-card-excerpt {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: auto;
}
@media (max-width: 900px) { .nuble-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .nuble-grid { grid-template-columns: 1fr; } }

/* ============================================
   CHILLÁN — slider 2 visible
   ============================================ */
.chillan-slider-wrap {
  overflow: hidden;
  border-radius: var(--radius);
}
.chillan-slider {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  touch-action: pan-y;
  user-select: none;
}
.chillan-slide {
  flex: 0 0 calc(50% - 0.625rem);
  min-width: 0;
}
.chillan-slide-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius);
}
.chillan-slide-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.chillan-slide:hover .chillan-slide-img img { transform: scale(1.04); }
.chillan-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.chillan-slide-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-size: 0.72rem;
  color: rgba(255,255,255,.7);
  margin-bottom: .4rem;
}
.chillan-slide-meta .news-meta-item { color: rgba(255,255,255,.7); }
.chillan-slide-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Slider controls */
.slider-controls { display: flex; gap: .5rem; }
.slider-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.slider-btn:hover { background: var(--red); }
.slider-btn svg { width: 18px; fill: white; }
/* Variante para fondo blanco */
.slider-btn-dark {
  background: var(--gray-100);
  border-color: var(--gray-200);
}
.slider-btn-dark svg { fill: var(--gray-800); }
.slider-btn-dark:hover { background: var(--red); border-color: var(--red); }
.slider-btn-dark:hover svg { fill: white; }

.slider-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.25rem; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.slider-dot.active { background: var(--red); transform: scale(1.3); }
/* Variante para fondo blanco */
.slider-dot-dark { background: var(--gray-200); }
.slider-dot-dark.active { background: var(--red); }
@media (max-width: 600px) {
  .chillan-slider { gap: 0; }
  .chillan-slide { flex: 0 0 100%; }
  .chillan-slide-img { aspect-ratio: 1/1; }
  .chillan-slide-title { font-size: .9rem; }
}

/* ============================================
   TRES CATEGORÍAS (EDUCACIÓN / EFEMÉRIDES / SALUD)
   ============================================ */
.tres-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tres-cat-col {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.tres-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
/* Card */
.tres-cat-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
}
.tres-cat-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-mid);
}
.tres-cat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.tres-cat-card:hover .tres-cat-img img { transform: scale(1.06); }
/* Placeholder sin imagen */
.tres-cat-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-mid);
}
.tres-cat-placeholder svg { width: 48px; fill: rgba(255,255,255,.2); }
/* Overlay de color en hover */
.tres-cat-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--cat-r), var(--cat-g), var(--cat-b), 0);
  transition: background .4s ease;
  z-index: 1;
}
.tres-cat-card:hover .tres-cat-overlay {
  background: rgba(var(--cat-r), var(--cat-g), var(--cat-b), 0.35);
}
/* Gradiente oscuro base para leer el texto */
.tres-cat-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem;
  z-index: 2;
}
.tres-cat-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  font-size: .7rem;
  color: rgba(255,255,255,.7);
  margin-bottom: .45rem;
}
.tres-cat-meta .news-meta-item { color: rgba(255,255,255,.7); }
.tres-cat-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 900px) {
  .tres-cat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .tres-cat-grid { grid-template-columns: 1fr; }
}

/* ============================================
   DOS CATEGORÍAS (NACIONAL + POLICIAL)
   ============================================ */
.dos-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.dos-cat-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dos-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .25rem;
}
/* Noticia principal */
.dos-cat-principal {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  text-decoration: none;
  color: inherit;
}
.dos-cat-principal-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
}
.dos-cat-principal-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.dos-cat-principal:hover .dos-cat-principal-img img { transform: scale(1.04); }
.dos-cat-principal-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  transition: color .2s;
}
.dos-cat-principal:hover .dos-cat-principal-title { color: var(--cat-color, var(--red)); }
/* Noticia secundaria */
.dos-cat-secundaria {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding-top: .75rem;
  border-top: 1px solid var(--gray-100);
}
.dos-cat-secundaria-img {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.dos-cat-secundaria-img img { width:100%; height:100%; object-fit:cover; transition: transform .4s; }
.dos-cat-secundaria:hover .dos-cat-secundaria-img img { transform: scale(1.06); }
.dos-cat-secundaria-body { flex: 1; min-width: 0; }
.dos-cat-secundaria-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
}
.dos-cat-secundaria:hover .dos-cat-secundaria-title { color: var(--red); }
.dos-cat-meta {
  font-size: .75rem;
  color: var(--gray-400);
  margin-top: .3rem;
}
@media (max-width: 700px) {
  .dos-cat-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================
   ENTREVISTAS SECTION
   ============================================ */
.entrevistas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.entrevista-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.entrevista-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.entrevista-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--navy-mid);
}
.entrevista-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.entrevista-card:hover .entrevista-card-img img { transform: scale(1.05); }
.entrevista-img-placeholder {
  width:100%; height:100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-mid), rgba(196,30,58,.2));
}
.entrevista-img-placeholder svg { width: 48px; fill: rgba(255,255,255,.2); }
.entrevista-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--red, #c41e3a);
  color: white;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .65rem;
  border-radius: 50px;
}
.entrevista-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.entrevista-programa {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--red, #c41e3a);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.entrevista-programa svg { width: 13px; fill: var(--red, #c41e3a); }
.entrevista-entrevistado {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-mid);
  line-height: 1.25;
}
.entrevista-titulo {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.entrevista-meta { font-size: .72rem; color: var(--gray-400); margin-top: auto; padding-top: .5rem; }
@media (max-width: 900px) { .entrevistas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .entrevistas-grid { grid-template-columns: 1fr; } }

/* ============================================
   PODCAST SECTION
   ============================================ */
#podcast { background: var(--white); }
.podcast-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.podcast-intro-tag { margin-bottom: 1rem; }
.podcast-intro-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-mid);
  margin-bottom: 1rem;
}
.podcast-intro-desc { color: var(--gray-600); line-height: 1.8; margin-bottom: 2rem; }
.spotify-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 1.5rem;
  background: #1DB954;
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}
.spotify-btn:hover { background: #1aa34a; transform: translateY(-2px); }
.spotify-btn svg { width: 22px; fill: white; }

.podcast-embed-list { display: flex; flex-direction: column; gap: 1rem; }
.podcast-embed-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.podcast-embed-item iframe { display: block; }

/* Grid de podcasts adicionales (3 columnas) */
.podcast-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .podcast-more-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .podcast-more-grid { grid-template-columns: 1fr; } }

/* ============================================
   SINGLE NEWS PAGE
   ============================================ */
.single-news {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) 2rem calc(var(--player-h) + 3rem);
}
.single-news-cat { margin-bottom: 1rem; }
.single-news-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-mid);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.single-news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.single-news-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
/* Audio player en noticia */
.news-audio-player {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--navy-mid);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
}
.news-audio-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulse-red 2s ease-in-out infinite;
}
.news-audio-icon svg { width: 20px; fill: white; }
.news-audio-info {
  flex: 1;
  min-width: 0;
}
.news-audio-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.35rem;
}
.news-audio-info audio {
  width: 100%;
  height: 36px;
  accent-color: var(--red);
  border-radius: 4px;
}
@media (max-width: 480px) {
  .news-audio-player { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .news-audio-info { width: 100%; }
}

.single-news-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray-800);
}
.single-news-body p { margin-bottom: 1.5rem; }
.single-news-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-mid);
  margin: 2rem 0 1rem;
}
.single-news-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-mid);
  margin: 1.5rem 0 0.75rem;
}
.single-news-body img { border-radius: var(--radius-sm); margin: 1.5rem 0; }
.single-news-body blockquote {
  border-left: 4px solid var(--red);
  padding: 1rem 1.5rem;
  background: var(--off-white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--gray-600);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-mid);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem calc(var(--player-h) + 2rem);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand {}
.footer-logo {
  margin-bottom: 1rem;
}
.footer-logo-img {
  height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  /* El footer es oscuro; si el logo tiene fondo transparente queda directo.
     Si el logo es oscuro sobre blanco, usa filter para invertirlo: */
  filter: brightness(0) invert(1);
}
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social-link:hover { background: var(--red); }
.footer-social-link svg { width: 16px; fill: rgba(255,255,255,0.7); }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link {
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-link:hover { color: white; }
.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--red); }

/* ============================================
   ANIMATION UTILITIES
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   NOTICIAS PAGE (full listing)
   ============================================ */
.news-page {
  padding: calc(var(--nav-h) + 3rem) 2rem calc(var(--player-h) + 3rem);
  max-width: 1200px;
  margin: 0 auto;
}
.news-page-header { margin-bottom: 2.5rem; }
.news-page-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.filter-btn {
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  background: white;
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.news-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.load-more-wrap { text-align: center; margin-top: 2.5rem; }
.btn-load-more {
  padding: 0.85rem 2rem;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  background: white;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-load-more:hover {
  border-color: var(--red);
  color: var(--red);
}
.btn-load-more svg { width: 18px; }

/* No image fallback */
.news-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-img-placeholder svg { width: 40px; opacity: 0.3; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .news-featured-grid { grid-template-columns: 1fr; }
  .news-side-list { display: grid; grid-template-columns: 1fr 1fr; }
  .podcast-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; --player-h: 64px; }
  .nav-links { display: none; flex-direction: column; position: fixed;
    top: var(--nav-h); left: 0; right: 0; background: white;
    padding: 1rem; border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-live { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .news-side-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .player-volume { display: none; }
  .player-visualizer { display: none; }
  .section { padding: calc(var(--nav-h) + 60px) 1.25rem calc(var(--player-h) + 60px); }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .prog-grid { grid-template-columns: 1fr; }
  .news-list-grid { grid-template-columns: 1fr; }
}
