/* ==========================================================================
   Landing Page — Radio Online Barichara
   El Pueblito Más Lindo de Colombia · Barichara, Santander
   ========================================================================== */

/* ── Reset mínimo ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Variables — Modo Oscuro / Tierra (default) ── */
:root {
  --lp-accent:    #c8922a;   /* dorado colonial */
  --lp-accent2:   #e8b84b;   /* dorado claro */
  --lp-accent3:   #4a7a45;   /* verde fique/agave */
  --lp-bg:        #160c04;
  --lp-bg2:       #1f1007;
  --lp-bg3:       #2a160a;
  --lp-surface:   #35200f;
  --lp-surface2:  #432817;
  --lp-border:    rgba(200,146,42,.18);
  --lp-text:      #f5e8cc;   /* crema colonial */
  --lp-text2:     #ddc8a0;
  --lp-muted:     #9a7a50;
  --lp-radius:    12px;
  --lp-font:      'Montserrat', system-ui, sans-serif;
  --lp-shadow:    0 8px 32px rgba(0,0,0,.55);
  --lp-nav-bg:    rgba(22,12,4,.88);
  --lp-hero-bg:   #160c04;
}

/* ── Modo Día ── */
body.lp-body.lp-light {
  --lp-bg:       #fdf6ec;
  --lp-bg2:      #ffffff;
  --lp-bg3:      #f5ead8;
  --lp-surface:  #ffffff;
  --lp-surface2: #fdf0db;
  --lp-border:   rgba(139,80,20,.12);
  --lp-text:     #2a1608;
  --lp-text2:    #4a2e10;
  --lp-muted:    #7a5530;
  --lp-shadow:   0 8px 32px rgba(100,50,10,.14);
  --lp-nav-bg:   rgba(253,246,236,.92);
  --lp-hero-bg:  #fdf6ec;
}

/* Ajustes día */
body.lp-body.lp-light .lp-hero__title { color: #fff; }
body.lp-body.lp-light .lp-nav { border-bottom-color: rgba(139,80,20,.15); }
body.lp-body.lp-light .lp-nav__logo-txt { color: #2a1608; }
body.lp-body.lp-light .lp-nav__logo-txt strong { color: var(--lp-accent); }
body.lp-body.lp-light .lp-nav__links a  { color: #5a3215; }
body.lp-body.lp-light .lp-nav__links a:hover { color: var(--lp-accent); background: rgba(200,146,42,.08); }
body.lp-body.lp-light .lp-nav__burger { color: #2a1608; }
body.lp-body.lp-light .lp-nav__drawer a { color: #2a1608; }
body.lp-body.lp-light .lp-section--alt  { background: var(--lp-bg2); }
body.lp-body.lp-light .lp-stats         { background: var(--lp-bg2); }
body.lp-body.lp-light .lp-stat__number  { color: #2a1608; }
body.lp-body.lp-light .lp-footer        { background: var(--lp-bg3); }

/* ── Extras de identidad Barichara ── */

/* Hero con foto de fondo */
.lp-hero {
  background-image: url('../img/barichara/calle-bougainvillea.jpg') !important;
  background-size: cover !important;
  background-position: center 30% !important;
  background-repeat: no-repeat !important;
}
.lp-hero__overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(
    135deg,
    rgba(22,8,2,.82) 0%,
    rgba(22,8,2,.65) 50%,
    rgba(22,8,2,.50) 100%
  );
}

/* ── Ecualizador de audio — Hero ── */
.lp-hero__eq {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
  margin-bottom: 28px;
}
.lp-hero__eq span {
  display: block;
  width: 6px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--lp-accent), var(--lp-accent2));
  transform-origin: bottom center;
  animation: lp-eq-bar 1.4s ease-in-out infinite;
}

/* Alturas base distintas para parecer waveform */
.lp-hero__eq span:nth-child(1)  { height: 18px; animation-delay: 0s;    }
.lp-hero__eq span:nth-child(2)  { height: 30px; animation-delay: .12s;  }
.lp-hero__eq span:nth-child(3)  { height: 46px; animation-delay: .24s;  }
.lp-hero__eq span:nth-child(4)  { height: 26px; animation-delay: .36s;  }
.lp-hero__eq span:nth-child(5)  { height: 50px; animation-delay: .48s;  }
.lp-hero__eq span:nth-child(6)  { height: 20px; animation-delay: .60s;  }
.lp-hero__eq span:nth-child(7)  { height: 44px; animation-delay: .72s;  }
.lp-hero__eq span:nth-child(8)  { height: 32px; animation-delay: .84s;  }
.lp-hero__eq span:nth-child(9)  { height: 52px; animation-delay: .96s;  }
.lp-hero__eq span:nth-child(10) { height: 22px; animation-delay: 1.08s; }
.lp-hero__eq span:nth-child(11) { height: 38px; animation-delay: 1.20s; }
.lp-hero__eq span:nth-child(12) { height: 16px; animation-delay: 1.32s; }

@keyframes lp-eq-bar {
  0%, 100% { transform: scaleY(.25); opacity: .5; }
  50%       { transform: scaleY(1);  opacity: 1;  }
}

/* Decorador de ubicación */
.lp-location-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,146,42,.15);
  border: 1px solid rgba(200,146,42,.4);
  color: var(--lp-accent2);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 16px;
}

/* Galería de fotos Barichara */
.lp-gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 260px;
  gap: 12px;
  margin-top: 48px;
  border-radius: var(--lp-radius);
  overflow: hidden;
}
.lp-gallery__item {
  overflow: hidden;
  position: relative;
}
.lp-gallery__item:first-child {
  grid-row: span 1;
}
.lp-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.lp-gallery__item:hover img { transform: scale(1.06); }
.lp-gallery__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(22,8,2,.75));
  color: var(--lp-text2);
  font-size: .72rem; font-weight: 600;
  padding: 20px 12px 10px;
  opacity: 0; transition: opacity .3s;
}
.lp-gallery__item:hover .lp-gallery__caption { opacity: 1; }

@media (max-width: 768px) {
  .lp-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .lp-gallery__item { height: 160px; }
  .lp-gallery__item:first-child { grid-column: span 2; height: 200px; }
}
@media (max-width: 480px) {
  .lp-gallery { grid-template-columns: 1fr; }
  .lp-gallery__item,
  .lp-gallery__item:first-child { grid-column: span 1; height: 200px; }
}

html { scroll-behavior: smooth; }

body.lp-body {
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: var(--lp-font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Utilidades ── */
.lp-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.lp-section   { padding: 80px 0; }
.lp-section-sm { padding: 56px 0; }

.lp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,0,30,.12);
  color: var(--lp-accent2);
  border: 1px solid rgba(232,0,30,.25);
  border-radius: 100px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.lp-section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.lp-section-sub {
  color: var(--lp-muted);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 48px;
}

.lp-divider {
  width: 48px; height: 3px;
  background: var(--lp-accent);
  border-radius: 2px;
  margin: 16px 0 48px;
}

/* ══════════════════════════════════════════════════════
   NAVBAR — dos filas → barra compacta al scroll
══════════════════════════════════════════════════════ */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  background: var(--lp-nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lp-border);
  transition: background .35s, border-color .35s, box-shadow .35s;
}
.lp-nav--scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
}

/* Grid de 3 columnas: spacer | logo | controles */
.lp-nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "spc  logo  ctrl"
    "menu menu  menu";
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px 0;
  transition: grid-template-rows .35s ease, padding .35s ease;
}

/* Espaciador invisible que centra el logo */
.lp-nav__spc {
  grid-area: spc;
}

/* ── Logo ── */
.lp-nav__logo {
  grid-area: logo;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-decoration: none;
  transition: flex-direction .35s, gap .35s;
}

/* Anillo contenedor con ondas de radio */
.lp-nav__logo-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 116px; height: 116px;
  flex-shrink: 0;
}
/* Los rings parten DESDE el borde de la imagen y se expanden hacia afuera */
.lp-nav__logo-ring::before,
.lp-nav__logo-ring::after {
  content: '';
  position: absolute;
  inset: 0;                          /* mismo tamaño que la imagen */
  border-radius: 50%;
  border: 2px solid rgba(200,146,42,.65);
  animation: lp-radio-wave 2.8s ease-out infinite;
  pointer-events: none;
}
.lp-nav__logo-ring::after { animation-delay: 1.4s; }

@keyframes lp-radio-wave {
  0%   { transform: scale(1);   opacity: .75; }
  70%  { opacity: .2; }
  100% { transform: scale(2.1); opacity: 0; }
}

.lp-nav__logo-img {
  width: 112px; height: 112px;
  border-radius: 50%;
  border: 3px solid rgba(200,146,42,.7);
  box-shadow: 0 0 0 4px rgba(200,146,42,.12), 0 8px 28px rgba(0,0,0,.4);
  object-fit: cover;               /* cover = llena el círculo sin espacio muerto */
  background: #160c04;
  position: relative; z-index: 1;
  transition: width .35s, height .35s, border-width .35s, box-shadow .35s;
}

.lp-nav__logo-txt {
  font-size: .75rem; font-weight: 700;
  color: var(--lp-text);
  text-align: center;
  line-height: 1.3;
  margin-top: 6px;
  max-height: 40px;
  overflow: hidden;
  opacity: 1;
  transition: opacity .25s, max-height .3s, margin-top .3s;
  white-space: nowrap;
  letter-spacing: .01em;
}
.lp-nav__logo-txt strong { color: var(--lp-accent); font-size: .9em; }

/* ── Controles (toggle + burger) ── */
.lp-nav__ctrl {
  grid-area: ctrl;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 6px;
  transition: align-items .35s, padding-top .35s;
}

/* ── Menú (fila inferior) ── */
.lp-nav__menu {
  grid-area: menu;
  max-height: 48px;
  overflow: hidden;
  border-top: 1px solid var(--lp-border);
  margin-top: 6px;
  transition: max-height .35s ease, opacity .3s ease, border-color .3s, margin .3s;
}
.lp-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 6px 0 8px;
}
.lp-nav__links a {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: .83rem; font-weight: 600;
  letter-spacing: .025em;
  padding: 4px 10px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.lp-nav__links a:hover { color: var(--lp-text); background: var(--lp-surface); }

.lp-nav__cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--lp-accent);
  color: #fff !important;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: .78rem; font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s !important;
}
.lp-nav__cta:hover { background: var(--lp-accent2); transform: translateY(-1px); }

/* ── Burger (solo móvil) ── */
.lp-nav__burger {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--lp-text); padding: 6px;
}

/* ── Drawer móvil ── */
.lp-nav__drawer {
  display: none;
  position: fixed; inset: 0; z-index: 8999;
  background: var(--lp-bg);
  padding: 100px 32px 40px;
  transition: opacity .25s;
}
.lp-nav__drawer.is-open { display: block; }
.lp-nav__drawer ul { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.lp-nav__drawer a {
  font-size: 1.4rem; font-weight: 700;
  color: var(--lp-text); text-decoration: none;
}
.lp-nav__drawer .lp-nav__cta {
  display: inline-flex; margin-top: 12px; font-size: 1rem; padding: 12px 28px;
}

/* ══ ESTADO SCROLLED ══ */
.lp-nav--scrolled .lp-nav__inner {
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 58px;
  grid-template-areas: "logo menu ctrl";
  padding: 0 24px;
  align-items: center;
}

.lp-nav--scrolled .lp-nav__spc {
  display: none;
}

.lp-nav--scrolled .lp-nav__logo {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.lp-nav--scrolled .lp-nav__logo-ring {
  width: 44px; height: 44px;
}
.lp-nav--scrolled .lp-nav__logo-ring::before,
.lp-nav--scrolled .lp-nav__logo-ring::after {
  animation: none; opacity: 0;
}
.lp-nav--scrolled .lp-nav__logo-img {
  width: 42px; height: 42px;
  border-width: 2px;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
}

.lp-nav--scrolled .lp-nav__logo-txt {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  pointer-events: none;
}

.lp-nav--scrolled .lp-nav__menu {
  max-height: 58px;
  border-top: none;
  margin-top: 0;
  display: flex;
  align-items: center;
}

.lp-nav--scrolled .lp-nav__links {
  padding: 0;
  gap: 2px;
}

.lp-nav--scrolled .lp-nav__ctrl {
  align-items: center;
  padding-top: 0;
}

/* ── Botón modo día/noche ── */
.lp-mode-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  cursor: pointer;
  color: var(--lp-muted);
  transition: all .2s;
  flex-shrink: 0;
}
.lp-mode-toggle:hover {
  background: var(--lp-surface2);
  color: var(--lp-text);
  border-color: rgba(232,0,30,.3);
}
.lp-mode-toggle svg { width: 18px; height: 18px; transition: transform .4s; }
.lp-mode-toggle:hover svg { transform: rotate(20deg); }
.lp-icon-sun  { display: none; }
.lp-icon-moon { display: block; }
body.lp-light .lp-icon-sun  { display: block; }
body.lp-light .lp-icon-moon { display: none; }

/* ── Transición global de modo ── */
body.lp-body, body.lp-body * {
  transition: background-color .3s ease, border-color .3s ease, color .2s ease, box-shadow .3s ease;
}
/* Excluir transición en imágenes y elementos interactivos para no demorar */
body.lp-body img,
body.lp-body a,
body.lp-body button { transition: none; }
body.lp-body a,
body.lp-body button { transition: background-color .2s, color .2s, border-color .2s, transform .15s, opacity .2s; }

/* ── Hero ── */
.lp-hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 190px; /* navbar expandido: 112px logo + texto + menú + spacing */
  background: var(--lp-bg);
}

.lp-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(232,0,30,.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(100,0,200,.12) 0%, transparent 60%);
}

.lp-hero__grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.lp-hero__content {
  position: relative; z-index: 1;
  max-width: 680px;
}

.lp-hero__onair {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(232,0,30,.1);
  border: 1px solid rgba(232,0,30,.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  color: #ff6b7a;
  text-transform: uppercase;
}

.lp-hero__dot {
  width: 8px; height: 8px;
  background: var(--lp-accent);
  border-radius: 50%;
  animation: lp-pulse 1.4s ease-in-out infinite;
}

@keyframes lp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

.lp-hero__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.lp-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent2), #ff8fa0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero__desc {
  font-size: 1.1rem;
  color: var(--lp-muted);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.lp-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.lp-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: .9rem; font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer; border: none;
}

.lp-btn-primary {
  background: var(--lp-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,0,30,.4);
}
.lp-btn-primary:hover {
  background: var(--lp-accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,0,30,.5);
  color: #fff;
}

.lp-btn-outline {
  background: transparent;
  color: var(--lp-text);
  border: 1px solid var(--lp-border);
}
.lp-btn-outline:hover {
  background: var(--lp-surface);
  border-color: var(--lp-muted);
  color: var(--lp-text);
}

.lp-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Hero waveform decoration */
.lp-hero__wave {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; gap: 5px;
  opacity: .18;
  z-index: 0;
}
.lp-hero__wave span {
  display: block; width: 4px;
  background: var(--lp-accent);
  border-radius: 2px;
  animation: lp-wave 1.2s ease-in-out infinite alternate;
}
.lp-hero__wave span:nth-child(1)  { height: 30px; animation-delay: 0s; }
.lp-hero__wave span:nth-child(2)  { height: 55px; animation-delay: .1s; }
.lp-hero__wave span:nth-child(3)  { height: 80px; animation-delay: .2s; }
.lp-hero__wave span:nth-child(4)  { height: 110px; animation-delay: .3s; }
.lp-hero__wave span:nth-child(5)  { height: 140px; animation-delay: .15s; }
.lp-hero__wave span:nth-child(6)  { height: 110px; animation-delay: .25s; }
.lp-hero__wave span:nth-child(7)  { height: 80px; animation-delay: .35s; }
.lp-hero__wave span:nth-child(8)  { height: 55px; animation-delay: .05s; }
.lp-hero__wave span:nth-child(9)  { height: 30px; animation-delay: .4s; }
.lp-hero__wave span:nth-child(10) { height: 15px; animation-delay: .2s; }

@keyframes lp-wave {
  from { transform: scaleY(.4); }
  to   { transform: scaleY(1); }
}

/* ── Stats bar ── */
.lp-stats {
  background: var(--lp-bg2);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  padding: 36px 0;
}

.lp-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
}

.lp-stat {
  text-align: center;
  padding: 12px 24px;
  border-right: 1px solid var(--lp-border);
}
.lp-stat:last-child { border-right: none; }

.lp-stat__number {
  display: block;
  font-size: 2rem; font-weight: 900;
  color: var(--lp-text);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.lp-stat__number span { color: var(--lp-accent); }

.lp-stat__label {
  font-size: .78rem;
  color: var(--lp-muted);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── Secciones generales ── */
.lp-section--alt { background: var(--lp-bg2); }
.lp-section--surface { background: var(--lp-bg3); }

/* ════════════════════════════════════════════════════
   CARRUSEL DE PROGRAMACIÓN
════════════════════════════════════════════════════ */
.lp-carousel {
  position: relative;
  padding: 0 0 48px;
}

/* Viewport: oculta lo que se sale */
.lp-carousel__viewport {
  overflow: hidden;
  border-radius: var(--lp-radius);
}

/* Track: fila de slides que se traslada con JS */
.lp-carousel__track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

/* Cada slide ocupa 1/3 del viewport (3 visibles en desktop) */
.lp-carousel__slide {
  flex-shrink: 0;
  width: calc((100% - 40px) / 3);  /* (viewport - 2 gaps) / 3 */
}

@media (max-width: 1024px) {
  .lp-carousel__slide { width: calc((100% - 20px) / 2); } /* 2 visibles */
}
@media (max-width: 640px) {
  .lp-carousel__slide { width: 100%; }                     /* 1 visible */
}

/* Botones prev / next */
.lp-carousel__btn {
  position: absolute;
  top: calc(50% - 48px);
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  color: var(--lp-text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
  box-shadow: var(--lp-shadow);
}
.lp-carousel__btn:hover {
  background: var(--lp-accent);
  border-color: var(--lp-accent);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.lp-carousel__btn--prev { left: -22px; }
.lp-carousel__btn--next { right: -22px; }

@media (max-width: 640px) {
  .lp-carousel__btn--prev { left: 0; }
  .lp-carousel__btn--next { right: 0; }
}

/* Puntos de navegación */
.lp-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
}

.lp-carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lp-border);
  border: none; cursor: pointer; padding: 0;
  transition: background .25s, transform .2s, width .25s;
}
.lp-carousel__dot.is-active {
  background: var(--lp-accent);
  width: 24px;
  border-radius: 4px;
}

/* ════════════════════════════════════════════════════
   BADGE "EN VIVO AHORA"
════════════════════════════════════════════════════ */
/* Tarjeta cuando está en el aire */
.rwa-programa-card--onair {
  border-color: var(--lp-accent) !important;
  box-shadow: 0 0 0 1px var(--lp-accent), 0 8px 32px rgba(232,0,30,.25) !important;
}
.rwa-programa-card--onair .rwa-programa-card__photo img {
  filter: brightness(1.05);
}

/* Banner alert en vivo */
.lp-onair-alert {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--lp-accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px 5px 9px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(232,0,30,.5);
  pointer-events: none;
}

/* Punto parpadeante */
.lp-onair-dot {
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  animation: lp-blink 1.3s ease-in-out infinite;
}

/* Onda expansiva de fondo */
.lp-onair-pulse {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: var(--lp-accent);
  opacity: .4;
  animation: lp-onair-pulse 1.8s ease-out infinite;
  z-index: -1;
}

@keyframes lp-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .25; }
}

@keyframes lp-onair-pulse {
  0%   { transform: scale(1); opacity: .4; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* El card necesita position:relative para el badge absoluto */
.rwa-programa-card { position: relative; }

/* ════════════════════════════════════════════════════
   SHORTCODE: PROGRAMACIÓN [rwa_programacion] (grid fallback)
════════════════════════════════════════════════════ */
.rwa-programacion {
  display: grid;
  grid-template-columns: repeat(var(--rwa-prog-cols, 3), 1fr);
  gap: 20px;
}

.rwa-programa-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .2s, box-shadow .25s;
}
.rwa-programa-card:hover {
  border-color: rgba(232,0,30,.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}

.rwa-programa-card__photo {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--lp-bg3);
  flex-shrink: 0;
}
.rwa-programa-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.rwa-programa-card:hover .rwa-programa-card__photo img {
  transform: scale(1.05);
}
.rwa-programa-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--lp-muted);
  background: var(--lp-bg3);
}

.rwa-programa-card__info {
  padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}

.rwa-programa-card__name {
  font-size: 1rem; font-weight: 700;
  color: var(--lp-text);
  line-height: 1.3;
  margin: 0;
}

.rwa-programa-card__schedule {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .78rem; font-weight: 600;
  color: var(--lp-accent2);
  background: rgba(232,0,30,.1);
  border: 1px solid rgba(232,0,30,.2);
  border-radius: 100px;
  padding: 3px 10px;
  width: fit-content;
}
.rwa-programa-card__schedule svg { color: var(--lp-accent2); flex-shrink: 0; }

.rwa-programa-card__desc {
  font-size: .82rem;
  color: var(--lp-muted);
  line-height: 1.55;
  margin: 0;
}

.rwa-programa-card__locutores {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
}

.rwa-programa-card__locutor {
  display: flex; align-items: center; gap: 6px;
}
.rwa-programa-card__locutor img,
.rwa-programa-card__locutor-placeholder {
  width: 26px; height: 26px; border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--lp-border);
  background: var(--lp-bg3);
  display: flex; align-items: center; justify-content: center;
  color: var(--lp-muted);
}
.rwa-programa-card__locutor-name {
  font-size: .75rem;
  color: var(--lp-muted);
  font-weight: 600;
}

/* ════════════════════════════════════════════════════
   SHORTCODE: LOCUTORES [rwa_locutores]
════════════════════════════════════════════════════ */
.rwa-locutores {
  display: grid;
  grid-template-columns: repeat(var(--rwa-loc-cols, 4), 1fr);
  gap: 20px;
}

.rwa-locutor-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  text-align: center;
  transition: border-color .25s, transform .2s, box-shadow .25s;
}
.rwa-locutor-card:hover {
  border-color: rgba(232,0,30,.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}

.rwa-locutor-card__photo {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--lp-bg3);
}
.rwa-locutor-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.rwa-locutor-card:hover .rwa-locutor-card__photo img {
  transform: scale(1.06);
}
.rwa-locutor-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--lp-muted);
}

.rwa-locutor-card__info {
  padding: 16px;
  display: flex; flex-direction: column; gap: 6px; align-items: center;
}

.rwa-locutor-card__name {
  font-size: .95rem; font-weight: 700;
  color: var(--lp-text); margin: 0;
}

.rwa-locutor-card__role {
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--lp-accent2);
  background: rgba(232,0,30,.1);
  border: 1px solid rgba(232,0,30,.2);
  border-radius: 100px;
  padding: 2px 10px;
}

.rwa-locutor-card__schedule {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .75rem; color: var(--lp-muted); font-weight: 500;
}
.rwa-locutor-card__schedule svg { color: var(--lp-muted); }

.rwa-locutor-card__bio {
  font-size: .8rem; color: var(--lp-muted);
  line-height: 1.5; margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rwa-locutor-card__socials {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 4px;
}
.rwa-locutor-card__social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: var(--lp-bg3);
  border: 1px solid var(--lp-border);
  border-radius: 6px;
  color: var(--lp-muted);
  text-decoration: none;
  transition: all .2s;
}
.rwa-locutor-card__social svg { width: 14px; height: 14px; }
.rwa-locutor-card__social:hover {
  background: var(--lp-accent);
  border-color: var(--lp-accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════
   SHORTCODE: TOP MUSICAL [rwa_top_musical]
════════════════════════════════════════════════════ */
.rwa-top-musical-section { }

.rwa-top-musical {
  display: grid;
  grid-template-columns: repeat(var(--rwa-top-cols, 5), 1fr);
  gap: 12px;
}

.rwa-top-song {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.rwa-top-song:hover {
  border-color: rgba(232,0,30,.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.rwa-top-song__link {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}

.rwa-top-song__cover {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--lp-bg3);
  position: relative;
}
.rwa-top-song__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.rwa-top-song:hover .rwa-top-song__cover img { transform: scale(1.08); }

.rwa-top-song__cover-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--lp-muted);
}

.rwa-top-song__meta {
  padding: 10px 12px;
  display: flex; align-items: center; gap: 10px;
}

.rwa-top-song__position {
  font-size: 1.5rem; font-weight: 900;
  color: var(--lp-accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 28px;
  letter-spacing: -.04em;
}

.rwa-top-song__info {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.rwa-top-song__name {
  font-size: .82rem; font-weight: 700;
  color: var(--lp-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rwa-top-song__artist {
  font-size: .72rem; color: var(--lp-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.rwa-top-song__movement {
  padding: 4px 12px 8px;
  display: flex; align-items: center; justify-content: flex-end; gap: 3px;
  font-size: .7rem; font-weight: 700;
}
.rwa-top-song__movement--up   { color: #22c55e; }
.rwa-top-song__movement--down { color: #ef4444; }
.rwa-top-song__movement--same { color: var(--lp-muted); }
.rwa-top-song__movement--new  { color: #3b82f6; }

.rwa-top-song__badge-new {
  background: #3b82f6;
  color: #fff;
  border-radius: 4px;
  padding: 1px 6px;
  font-size: .65rem; font-weight: 800;
  letter-spacing: .06em;
}

/* Responsive shortcodes */
@media (max-width: 1024px) {
  .rwa-programacion { grid-template-columns: repeat(2, 1fr) !important; }
  .rwa-locutores    { grid-template-columns: repeat(3, 1fr) !important; }
  .rwa-top-musical  { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (max-width: 768px) {
  .rwa-programacion { grid-template-columns: repeat(1, 1fr) !important; }
  .rwa-locutores    { grid-template-columns: repeat(2, 1fr) !important; }
  .rwa-top-musical  { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 480px) {
  .rwa-locutores   { grid-template-columns: repeat(2, 1fr) !important; }
  .rwa-top-musical { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Features ── */
.lp-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.lp-feature-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px;
  transition: border-color .25s, transform .2s;
}
.lp-feature-card:hover {
  border-color: rgba(232,0,30,.35);
  transform: translateY(-4px);
}

.lp-feature-card__icon {
  width: 48px; height: 48px;
  background: rgba(232,0,30,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.lp-feature-card__title {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 8px; color: var(--lp-text);
}

.lp-feature-card__desc {
  font-size: .875rem;
  color: var(--lp-muted);
  line-height: 1.6;
}

/* ── Contacto ── */
.lp-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.lp-contact__info { }

.lp-contact__item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 24px;
}

.lp-contact__item-icon {
  width: 40px; height: 40px;
  background: rgba(232,0,30,.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.lp-contact__item-text strong {
  display: block; font-size: .9rem; color: var(--lp-text); margin-bottom: 2px;
}
.lp-contact__item-text span {
  font-size: .85rem; color: var(--lp-muted);
}

.lp-contact__form-wrap {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 36px;
}

/* CF7 overrides */
.lp-contact__form-wrap .wpcf7-form p { margin-bottom: 16px; }
.lp-contact__form-wrap input[type="text"],
.lp-contact__form-wrap input[type="email"],
.lp-contact__form-wrap textarea {
  width: 100% !important;
  background: var(--lp-bg) !important;
  border: 1px solid var(--lp-border) !important;
  border-radius: 8px !important;
  color: var(--lp-text) !important;
  padding: 11px 14px !important;
  font-family: var(--lp-font) !important;
  font-size: .9rem !important;
  transition: border-color .2s !important;
  outline: none !important;
}
.lp-contact__form-wrap input:focus,
.lp-contact__form-wrap textarea:focus {
  border-color: var(--lp-accent) !important;
}
.lp-contact__form-wrap textarea { min-height: 110px; resize: vertical; }

.lp-contact__form-wrap input[type="submit"],
.lp-contact__form-wrap .wpcf7-submit {
  background: var(--lp-accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 12px 28px !important;
  font-weight: 700 !important;
  font-size: .9rem !important;
  cursor: pointer !important;
  transition: background .2s, transform .15s !important;
}
.lp-contact__form-wrap input[type="submit"]:hover,
.lp-contact__form-wrap .wpcf7-submit:hover {
  background: var(--lp-accent2) !important;
  transform: translateY(-1px) !important;
}

/* ── Social links ── */
.lp-socials {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 28px;
}

.lp-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  color: var(--lp-muted);
  text-decoration: none;
  font-size: .95rem;
  transition: all .2s;
}
.lp-social-link:hover {
  background: var(--lp-accent);
  border-color: var(--lp-accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Footer ── */
.lp-footer {
  background: var(--lp-bg);
  border-top: 1px solid var(--lp-border);
  padding: 40px 0 24px;
}

.lp-footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}

.lp-footer__brand { font-weight: 800; font-size: 1.1rem; color: var(--lp-text); }
.lp-footer__copy  { font-size: .8rem; color: var(--lp-muted); margin-top: 6px; }

.lp-footer__links {
  display: flex; gap: 20px; list-style: none;
}
.lp-footer__links a {
  font-size: .825rem; color: var(--lp-muted);
  text-decoration: none;
  transition: color .2s;
}
.lp-footer__links a:hover { color: var(--lp-text); }

/* ── Mobile ── */
@media (max-width: 768px) {
  /* Ocultar menú horizontal; mostrar drawer vía burger */
  .lp-nav__menu { display: none; }
  .lp-nav__burger { display: flex; }

  /* Ocultar texto del logo en móvil — solo imagen circular */
  .lp-nav__logo-txt { display: none; }

  /* En móvil: navbar solo una fila (logo centrado + burger) */
  .lp-nav__inner {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto;
    grid-template-areas: "spc logo ctrl";
    padding: 10px 16px;
    align-items: center;
  }
  .lp-nav__ctrl { padding-top: 0; align-items: center; }
  .lp-nav__logo-ring { width: 70px; height: 70px; }
  .lp-nav__logo-img  { width: 66px; height: 66px; }

  /* Hero: menos padding-top en móvil */
  .lp-hero { padding-top: 110px; }

  .lp-hero__wave { display: none; }
  .lp-contact__grid { grid-template-columns: 1fr; }
  .lp-footer__inner { flex-direction: column; text-align: center; }
  .lp-footer__links { justify-content: center; }
  .lp-stats__grid { grid-template-columns: 1fr 1fr; }
  .lp-stat { border-right: none; border-bottom: 1px solid var(--lp-border); }
  .lp-stat:last-child, .lp-stat:nth-child(even) { border-right: none; }

  /* Scrolled en móvil: solo una fila compacta */
  .lp-nav--scrolled .lp-nav__inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo spc ctrl";
    padding: 0 16px;
    height: 52px;
  }
  .lp-nav--scrolled .lp-nav__menu { display: none; }
  .lp-nav--scrolled .lp-nav__logo-img { width: 34px; height: 34px; }
}

@media (max-width: 480px) {
  .lp-hero__title { font-size: 2rem; }
  .lp-section { padding: 56px 0; }
  .lp-stats__grid { grid-template-columns: 1fr; }
  .lp-stat { border-bottom: 1px solid var(--lp-border); border-right: none; }
}

/* ════════════════════════════════════════════════════
   SECCIONES CON FOTO DE FONDO
   Fuerza texto claro sin importar el modo día/noche
════════════════════════════════════════════════════ */
.lp-section--photo {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed;   /* parallax suave */
}

/* Overlay warm-dark sobre las fotos */
.lp-section--photo::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(
    160deg,
    rgba(22,8,2,.80) 0%,
    rgba(30,14,4,.72) 60%,
    rgba(22,8,2,.85) 100%
  );
}

/* Todo el contenido de la sección va por encima del overlay */
.lp-section--photo > .lp-container {
  position: relative; z-index: 1;
}

/* Fuerza colores claros sobre fotos */
.lp-section--photo,
.lp-section--photo .lp-section-title,
.lp-section--photo .lp-section-sub,
.lp-section--photo .lp-badge,
body.lp-light .lp-section--photo,
body.lp-light .lp-section--photo .lp-section-title,
body.lp-light .lp-section--photo .lp-section-sub {
  color: #f5e8cc !important;
}

.lp-section--photo .lp-badge {
  background: rgba(200,146,42,.2) !important;
  border-color: rgba(200,146,42,.45) !important;
  color: #e8b84b !important;
}

.lp-section--photo .lp-divider {
  background: var(--lp-accent) !important;
}

/* Sección Programación — panorámica del cerro */
.lp-section--prog-bg {
  background-image: url('../img/barichara/panoramica-catedral.webp');
  background-position: center 40% !important;
}

/* Sección Contacto — calle con catedral */
.lp-section--contact-bg {
  background-image: url('../img/barichara/vista-catedral.jpg');
  background-position: center 60% !important;
}

/* Tarjetas sobre fondo de foto — ajuste de superficie */
.lp-section--photo .rwa-programa-card,
.lp-section--photo .lp-carousel__btn,
.lp-section--photo .lp-contact__form-wrap {
  background: rgba(22,8,2,.75) !important;
  border-color: rgba(200,146,42,.25) !important;
  backdrop-filter: blur(6px);
}

.lp-section--photo .rwa-programa-card__name,
.lp-section--photo .rwa-programa-card__desc,
.lp-section--photo .rwa-programa-card__locutor-name {
  color: #f5e8cc !important;
}

/* Formulario CF7 sobre foto */
.lp-section--photo .lp-contact__item-text strong { color: #f5e8cc !important; }
.lp-section--photo .lp-contact__item-text span   { color: #c8a87a !important; }
.lp-section--photo .lp-contact__form-wrap input[type="text"],
.lp-section--photo .lp-contact__form-wrap input[type="email"],
.lp-section--photo .lp-contact__form-wrap textarea {
  background: rgba(10,4,0,.6) !important;
  color: #f5e8cc !important;
  border-color: rgba(200,146,42,.3) !important;
}
.lp-section--photo .lp-contact__form-wrap h3 { color: #f5e8cc !important; }

/* Desactiva parallax en móvil (evita problemas iOS) */
@media (max-width: 768px) {
  .lp-section--photo { background-attachment: scroll; }
}

/* ════════════════════════════════════════════════════
   SECCIÓN NOTICIAS
════════════════════════════════════════════════════ */
.lp-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-news-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .2s, box-shadow .25s;
}
.lp-news-card:hover {
  border-color: rgba(200,146,42,.4);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

.lp-news-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--lp-bg3);
  flex-shrink: 0;
}
.lp-news-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.lp-news-card:hover .lp-news-card__img img { transform: scale(1.06); }

/* Placeholder cuando no hay imagen destacada */
.lp-news-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--lp-bg3), var(--lp-surface2));
  color: var(--lp-accent);
  font-size: 2.5rem;
}

.lp-news-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.lp-news-card__meta {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}

.lp-news-card__date {
  font-size: .72rem; font-weight: 700;
  color: var(--lp-accent);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.lp-news-card__cat {
  font-size: .7rem; font-weight: 700;
  color: var(--lp-accent3);
  background: rgba(74,122,69,.12);
  border: 1px solid rgba(74,122,69,.25);
  border-radius: 100px;
  padding: 2px 9px;
}

.lp-news-card__title {
  font-size: 1rem; font-weight: 700;
  color: var(--lp-text);
  line-height: 1.35;
  margin: 0;
}
.lp-news-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.lp-news-card__title a:hover { color: var(--lp-accent); }

.lp-news-card__excerpt {
  font-size: .84rem;
  color: var(--lp-muted);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.lp-news-card__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .8rem; font-weight: 700;
  color: var(--lp-accent);
  text-decoration: none;
  margin-top: 6px;
  transition: gap .2s, color .2s;
  width: fit-content;
}
.lp-news-card__link:hover { gap: 9px; color: var(--lp-accent2); }
.lp-news-card__link svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Sin noticias */
.lp-news-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  color: var(--lp-muted);
  font-size: .9rem;
  border: 1px dashed var(--lp-border);
  border-radius: var(--lp-radius);
}
.lp-news-empty a { color: var(--lp-accent); }

/* Responsive noticias */
@media (max-width: 1024px) { .lp-news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .lp-news-grid { grid-template-columns: 1fr; } }
