/* ══════════════════════════════════════════════════════════
   esRadio Cantabria — Hoja de estilos principal
   Fuente: Google Fonts Lato — importada en index.html
══════════════════════════════════════════════════════════ */
*{margin:0;padding:0;box-sizing:border-box}
:root{
  --burdeos:#8C1515;
  --burdeos2:#6e0f0f;
  --burdeos-light:#f9eded;
  --burdeos-mid:#c0392b;
  --red-live:#D0021B;
  --navy:#1a2d5a;
  --dark:#1a1a1a;
  --mid:#555;
  --muted:#888;
  --border:#e8e8e8;
}
html{scroll-behavior:smooth}
body{font-family:'Lato',Arial,sans-serif;background:#fff;color:var(--dark);font-size:14px;overflow-x:hidden}
a{text-decoration:none;color:inherit}
img{display:block}
button{font-family:inherit;cursor:pointer}

/* ══════════════════════════
   HEADER
══════════════════════════ */
.site-header{
  background:#fff;border-bottom:1px solid var(--border);
  position:sticky;top:0;z-index:200;box-shadow:0 1px 4px rgba(0,0,0,.06);
}
.hdr-inner{
  max-width:1280px;margin:0 auto;
  display:grid;grid-template-columns:1fr auto 1fr;
  align-items:center;height:58px;padding:0 16px;
}
.hdr-left{display:flex;align-items:center;justify-self:start}
.hdr-menu{
  background:none;border:none;display:flex;align-items:center;gap:8px;
  cursor:pointer;padding:4px;font-size:11px;font-weight:700;
  color:var(--mid);text-transform:uppercase;letter-spacing:1px;
}
.hdr-menu:hover{color:var(--burdeos)}
.hdr-ham{display:flex;flex-direction:column;gap:4px;width:16px}
.hdr-ham span{display:block;height:2px;background:currentColor;border-radius:1px}

/* Header derecha */
.hdr-right{display:flex;align-items:center;gap:10px;justify-self:end;white-space:nowrap}

/* removed old ld-icon CSS */
/* removed old ld-icon CSS */
.ld-icon-waves{display:flex;flex-direction:column;gap:2px;margin-left:1px}
.ld-icon-waves span{display:block;background:var(--navy);border-radius:1px;height:2.5px}
.ld-icon-waves span:nth-child(1){width:5px}
.ld-icon-waves span:nth-child(2){width:8px}
.ld-icon-waves span:nth-child(3){width:10px}
.ld-wordmark{line-height:1.2}
.ld-wordmark b{display:block;font-size:15px;font-weight:900;color:var(--navy);letter-spacing:-.3px}
.ld-wordmark span{display:block;font-size:12px;font-weight:400;color:var(--navy)}

/* Bloque DIRECTO */
.hdr-directo{display:flex;align-items:center;gap:8px;cursor:pointer}
.hdr-play-circle{
  width:38px;height:38px;background:var(--burdeos);border-radius:50%;
  display:flex;align-items:center;justify-content:center;border:none;flex-shrink:0;
  box-shadow:0 2px 8px rgba(140,21,21,.3);transition:background .15s,transform .1s;
}
.hdr-play-circle:hover{background:var(--burdeos2);transform:scale(1.06)}
.hdr-play-circle svg{fill:#fff;width:13px;height:13px;margin-left:2px}
.hdr-directo-lbl{
  display:flex;align-items:center;gap:4px;
  font-size:9px;font-weight:700;color:var(--burdeos);
  letter-spacing:1px;text-transform:uppercase;
}
.live-dot{
  width:6px;height:6px;background:var(--red-live);border-radius:50%;
  animation:blink 1.1s ease-in-out infinite;flex-shrink:0;
}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.1}}
.hdr-directo-show{
  font-size:12px;font-weight:700;color:var(--dark);
  white-space:nowrap;max-width:160px;overflow:hidden;text-overflow:ellipsis;
}
.hdr-avatar{
  width:34px;height:34px;background:#f0f0f0;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;border:1px solid #e0e0e0;flex-shrink:0;
}

/* ══════════════════════════
   NAV SECUNDARIA
══════════════════════════ */
.sec-nav{background:#fff;border-bottom:1px solid var(--border);overflow-x:auto}
.sec-nav::-webkit-scrollbar{display:none}
.sec-nav-inner{
  max-width:1280px;margin:0 auto;
  display:flex;align-items:center;padding:0 16px;
}
.sec-nav a{
  font-size:11px;font-weight:700;color:var(--mid);
  text-transform:uppercase;letter-spacing:.4px;
  padding:12px 11px;display:block;white-space:nowrap;
  border-bottom:2px solid transparent;margin-bottom:-1px;
  transition:color .15s,border-color .15s;
}
.sec-nav a:hover{color:var(--burdeos)}
.sec-nav a.active{color:var(--burdeos);border-bottom-color:var(--burdeos);font-weight:900}

/* ══════════════════════════
   PLAYER BAR
══════════════════════════ */
#playerBar{background:var(--burdeos);display:none;border-bottom:2px solid var(--burdeos2)}
.pb-inner{max-width:1280px;margin:0 auto;display:flex;align-items:center;gap:14px;padding:10px 20px}
.pb-btn{
  width:36px;height:36px;background:#fff;border-radius:50%;
  border:none;display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.pb-btn svg{fill:var(--burdeos);width:12px;height:12px;margin-left:1px}
.pb-info{flex:1;min-width:0}
.pb-show{color:#fff;font-size:14px;font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.pb-sub{color:rgba(255,255,255,.7);font-size:10px;margin-top:1px}
.pb-waves{display:flex;align-items:center;gap:2px;height:22px}
.wv{width:3px;background:#fff;border-radius:2px;opacity:.8;animation:wv .75s ease-in-out infinite}
.wv:nth-child(1){height:6px;animation-delay:.0s}.wv:nth-child(2){height:16px;animation-delay:.1s}
.wv:nth-child(3){height:22px;animation-delay:.2s}.wv:nth-child(4){height:12px;animation-delay:.3s}
.wv:nth-child(5){height:18px;animation-delay:.08s}.wv:nth-child(6){height:8px;animation-delay:.18s}
@keyframes wv{0%,100%{transform:scaleY(1)}50%{transform:scaleY(.3)}}

/* ══════════════════════════
   BANNER SUPERIOR (NLTech)
══════════════════════════ */
.banner-top{
  background:#f7f6f4;border-bottom:1px solid #eee;
  display:flex;align-items:center;justify-content:center;padding:12px 16px;
}
.banner-nltech{max-height:160px;width:auto;max-width:900px;border-radius:6px;transition:opacity .15s;display:block}
.banner-nltech:hover{opacity:.88}

/* ══════════════════════════
   NOW PLAYING HERO
══════════════════════════ */
.now-hero{background:#fff;border-bottom:1px solid #f0f0f0;overflow:hidden}
.now-hero-inner{
  max-width:1280px;margin:0 auto;
  display:flex;align-items:center;padding:0 24px;min-height:175px;position:relative;
}
.nh-btn{
  width:78px;height:78px;background:var(--burdeos);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  border:none;flex-shrink:0;margin-right:32px;
  box-shadow:0 6px 24px rgba(140,21,21,.35);transition:background .15s,transform .1s;
}
.nh-btn:hover{background:var(--burdeos2);transform:scale(1.04)}
.nh-btn svg{fill:#fff;width:28px;height:28px;margin-left:4px}
.nh-info{flex:1;min-width:0;padding:20px 0}
.nh-label{color:var(--burdeos);font-size:13px;display:flex;align-items:center;gap:8px;margin-bottom:4px}
.nh-label strong{font-weight:700}
.nh-label .pipe{color:#ddd}
.nh-showname{font-size:46px;font-weight:300;color:#ccc;line-height:1.02;letter-spacing:-2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.nh-presenter{color:var(--mid);font-size:14px;margin-top:6px}
.nh-photo-wrap{position:absolute;right:24px;bottom:0;height:170px;pointer-events:none}
.nh-photo{
  height:170px;width:auto;max-width:160px;
  object-fit:cover;object-position:top center;
  border-radius:6px 6px 0 0;
}
.nh-photo-ph{
  width:130px;height:170px;
  background:linear-gradient(170deg,#f5eded,#fbeaea);
  border-radius:6px 6px 0 0;
  display:flex;align-items:center;justify-content:center;font-size:52px;
}
.next-bar{background:var(--burdeos-light);border-top:1px solid #e8c8c8}
.next-bar-inner{max-width:1280px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:8px 24px}
.next-txt{color:var(--mid);font-size:12px}
.next-txt strong{color:var(--burdeos);font-weight:700}
.prog-cta{
  background:var(--burdeos);color:#fff;font-size:11px;font-weight:700;
  padding:6px 14px;border-radius:2px;border:none;text-transform:uppercase;
  letter-spacing:.3px;transition:background .15s;
}
.prog-cta:hover{background:var(--burdeos2)}

/* ══════════════════════════
   CARRUSEL DE PROGRAMAS
══════════════════════════ */
.prog-strip{background:#1a1a1a;overflow-x:auto}
.prog-strip::-webkit-scrollbar{display:none}
.prog-strip-inner{max-width:1280px;margin:0 auto;display:flex;align-items:stretch}
.prog-tile{
  min-width:140px;flex-shrink:0;
  background:#222;border-right:1px solid #2e2e2e;
  padding:10px 8px 8px;cursor:pointer;transition:background .15s;
  display:flex;flex-direction:column;align-items:center;text-align:center;
}
.prog-tile:hover{background:#2c2c2c}
.prog-tile.now{background:#2d1a1a;border-bottom:3px solid var(--burdeos-mid)}
.pt-logo{font-size:9px;font-weight:700;color:var(--burdeos-mid);font-style:italic;margin-bottom:4px;letter-spacing:.3px}
.pt-img{
  width:86px;height:64px;border-radius:4px;overflow:hidden;
  background:#333;margin-bottom:6px;flex-shrink:0;
}
.pt-img img{
  width:100%;height:100%;object-fit:cover;object-position:top;
  /* Bypass hotlink protection con referrer vacío */
  display:block;
}
.pt-img-ph{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:24px;background:#2a2a2a}
.pt-name{color:#fff;font-size:9px;font-weight:700;text-transform:uppercase;letter-spacing:.3px;line-height:1.3}
.pt-time{color:#555;font-size:8px;margin-top:2px}
.pt-host{color:#444;font-size:8px;margin-top:1px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}

/* ══════════════════════════
   BANNER INVEN (horizontal)
══════════════════════════ */
.banner-inven-wrap{
  background:#f7f6f4;border-top:1px solid #eee;border-bottom:1px solid #eee;
  display:flex;align-items:center;justify-content:center;padding:10px 16px;
}
.banner-inven{max-width:1024px;width:100%;height:auto;border-radius:4px;display:block;transition:opacity .15s}
.banner-inven:hover{opacity:.9}

/* ══════════════════════════
   CUERPO PRINCIPAL
══════════════════════════ */
.page-body{max-width:1280px;margin:0 auto;padding:32px 24px}

.sec-title{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:20px;padding-bottom:8px;border-bottom:2px solid var(--burdeos);
}
.sec-title h2{font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:1.2px}
.sec-title a{font-size:11px;color:var(--burdeos);font-weight:700;transition:color .15s}
.sec-title a:hover{color:var(--burdeos2)}
.sec-title.fjl-hdr{border-bottom-color:var(--burdeos)}
.sec-title.fjl-hdr h2{color:var(--burdeos)}

/* ══════════════════════════
   PODCAST GRID — 6 columnas desktop
══════════════════════════ */
.podcast-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:12px;
  margin-bottom:8px;
}
.pod-card{
  background:#fff;border-radius:8px;overflow:hidden;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
  transition:box-shadow .2s,transform .2s;
  display:flex;flex-direction:column;
}
.pod-card:hover{box-shadow:0 6px 20px rgba(140,21,21,.14);transform:translateY(-2px)}
.pod-art{position:relative;width:100%;aspect-ratio:1/1;overflow:hidden;background:#eee;cursor:pointer}
.pod-art img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s}
.pod-card:hover .pod-art img{transform:scale(1.04)}
.pod-art-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.65) 0%,transparent 55%);
  opacity:0;transition:opacity .2s;
  display:flex;align-items:flex-end;padding:8px;
}
.pod-card:hover .pod-art-overlay{opacity:1}
.pod-art-play{
  width:36px;height:36px;background:var(--burdeos);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  border:none;flex-shrink:0;margin-right:6px;
  transition:transform .15s,background .15s;
}
.pod-art-play.playing{animation:pulse-play 1.8s ease-in-out infinite;background:var(--burdeos2)}
@keyframes pulse-play{0%,100%{box-shadow:0 0 0 0 rgba(140,21,21,.5)}50%{box-shadow:0 0 0 7px rgba(140,21,21,0)}}
.pod-art-play svg{fill:#fff;width:11px;height:12px;margin-left:2px}
.pod-art-dur{color:#fff;font-size:10px;font-weight:700}
.pod-body{padding:8px 10px 10px;flex:1;display:flex;flex-direction:column}
.pod-title{
  font-size:11px;font-weight:700;line-height:1.4;color:var(--dark);
  overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;
  margin-bottom:8px;flex:1;
}
.pod-progress-wrap{height:3px;background:#f0f0f0;border-radius:2px;cursor:pointer;margin-bottom:7px;overflow:hidden}
.pod-progress-bar{height:100%;background:var(--burdeos);border-radius:2px;width:0%;transition:width .3s}
.pod-controls{display:flex;align-items:center;justify-content:space-between}
.pod-time{font-size:9px;color:var(--muted)}
.pod-time.current{color:var(--burdeos);font-weight:700}
.pod-mini-play{
  width:26px;height:26px;background:var(--burdeos);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  border:none;transition:background .15s;
}
.pod-mini-play:hover{background:var(--burdeos2)}
.pod-mini-play svg{fill:#fff;width:8px;height:9px;margin-left:1px}
.pod-ivoox{font-size:9px;color:var(--muted);font-weight:700;transition:color .15s}
.pod-ivoox a{color:inherit}
.pod-ivoox:hover,.pod-ivoox a:hover{color:var(--burdeos)}

.load-more{
  display:block;margin:24px auto 0;
  background:none;border:2px solid var(--burdeos);
  color:var(--burdeos);font-size:12px;font-weight:700;
  padding:10px 32px;border-radius:20px;letter-spacing:.5px;text-transform:uppercase;
  transition:background .15s,color .15s;
}
.load-more:hover{background:var(--burdeos);color:#fff}

/* ══════════════════════════
   FEDERICO
══════════════════════════ */
.fjl-section{margin-top:40px}
.fjl-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:10px}
.fjl-item{
  background:#fafafa;border-radius:4px;padding:12px 14px;
  border-left:3px solid var(--burdeos);
  transition:background .15s,box-shadow .15s;
}
.fjl-item:hover{background:#fff;box-shadow:0 2px 10px rgba(0,0,0,.07)}
.fjl-item a{font-size:13px;font-weight:700;color:var(--dark);line-height:1.4;display:block}
.fjl-item a:hover{color:var(--burdeos)}
.fjl-date{color:var(--muted);font-size:10px;margin-top:4px}
.loading-msg{text-align:center;padding:32px;color:var(--burdeos);font-size:13px;grid-column:1/-1}

/* ══════════════════════════
   FOOTER
══════════════════════════ */
footer{background:#111;border-top:3px solid var(--burdeos);margin-top:48px}
.footer-inner{
  max-width:1280px;margin:0 auto;padding:32px 24px;
  display:grid;grid-template-columns:220px 1fr 1fr 1fr;gap:32px;
}
.footer-brand{}
.footer-brand img{
  height:38px;width:auto;
  /* Convierte el logo color a blanco para el fondo oscuro del footer */
  filter:brightness(0) invert(1);
  opacity:.85;margin-bottom:8px;
  display:block;
}
.footer-brand .ft-sub{
  font-size:9px;font-weight:700;letter-spacing:2px;text-transform:uppercase;
  color:var(--burdeos-mid);display:block;margin-top:2px;
}
.footer-brand .ft-desc{color:#555;font-size:11px;margin-top:10px;line-height:1.7}
.fl-social{display:flex;gap:8px;margin-top:14px}
.fsoc{
  width:28px;height:28px;background:#222;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;color:#777;font-size:11px;font-weight:700;
  transition:background .15s,color .15s;text-decoration:none;
}
.fsoc:hover{background:var(--burdeos);color:#fff}
.footer-col h4{
  color:#666;font-size:9px;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;
  margin-bottom:10px;padding-bottom:5px;border-bottom:1px solid #222;
}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:6px}
.footer-col ul li a{color:#555;font-size:11px;transition:color .15s}
.footer-col ul li a:hover{color:var(--burdeos-mid)}
.footer-bottom{background:#0a0a0a;border-top:1px solid #1f1f1f}
.footer-bottom-inner{
  max-width:1280px;margin:0 auto;padding:10px 24px;
  display:flex;justify-content:space-between;align-items:center;
}
.footer-legal{color:#333;font-size:10px}
.footer-ld{font-size:10px}
.footer-ld a{color:var(--burdeos-mid);transition:color .15s}
.footer-ld a:hover{color:#fff}

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */

/* Tablet */
@media(max-width:1024px){
  .podcast-grid{grid-template-columns:repeat(4,1fr)}
  .footer-inner{grid-template-columns:1fr 1fr;gap:24px}
  .nh-showname{font-size:36px}
}

/* Mobile */
@media(max-width:768px){
  /* Header */
  .hdr-inner{height:50px;padding:0 10px;grid-template-columns:auto 1fr auto}
  .hdr-menu-txt{display:none}
  .site-logo img
  .hdr-avatar{display:none}
  .ld-logo-wrap{display:none !important}
  .ld-svg-logo{height:22px!important;max-width:90px!important}
  .hdr-directo-show{display:none}
  .site-logo img

  /* Nav */
  .sec-nav-inner{padding:0 8px}
  .sec-nav a{font-size:10px;padding:10px 8px}

  /* Player */
  .pb-inner{padding:8px 12px;gap:10px}
  .pb-sub{display:none}
  .pb-waves{display:none}

  /* Banner */
  .banner-nltech{max-height:56px}
  .banner-top{padding:6px 12px}
  .banner-inven-wrap{padding:8px 12px}

  /* Hero */
  .now-hero-inner{padding:16px 12px;min-height:120px}
  .nh-btn{width:56px;height:56px;margin-right:14px}
  .nh-btn svg{width:18px;height:18px}
  .nh-showname{font-size:22px;letter-spacing:-1px}
  .nh-label{font-size:11px}
  .nh-presenter{font-size:12px}
  .nh-photo-wrap{display:none}
  .next-bar-inner{padding:7px 12px}
  .next-txt{font-size:11px}

  /* Carrusel */
  .prog-tile{min-width:110px;padding:8px 6px}
  .pt-img{width:72px;height:54px}
  .pt-name{font-size:8px}
  .pt-time,.pt-host{font-size:7px}

  /* Podcasts — 2 col en móvil */
  .podcast-grid{grid-template-columns:repeat(2,1fr);gap:10px}
  .pod-title{font-size:10px}
  .pod-body{padding:6px 8px 8px}
  .pod-art-dur{display:none}

  /* Federico */
  .fjl-grid{grid-template-columns:1fr}
  #ldNewsGrid{grid-template-columns:repeat(2,1fr)!important}
  .page-body{padding:20px 12px}
  .sec-title h2{font-size:11px}

  /* Footer */
  .footer-inner{grid-template-columns:1fr 1fr;gap:20px;padding:24px 12px}
  .footer-bottom-inner{flex-direction:column;gap:4px;text-align:center;padding:8px 12px}
}

/* Extra pequeño */
@media(max-width:420px){
  .ld-logo-wrap{display:none !important;}
  .podcast-grid{grid-template-columns:repeat(2,1fr);gap:8px}
  #ldNewsGrid{grid-template-columns:repeat(2,1fr)!important}
  .footer-inner{grid-template-columns:1fr}
  .nh-showname{font-size:18px}
  .hdr-directo-show{display:none}
  .ld-icon{display:none}
}

.ld-svg-logo{height:28px!important;max-height:28px!important;width:auto!important;max-width:140px!important;display:block;transition:opacity .15s;}
.ld-logo-wrap:hover .ld-svg-logo{height:28px!important;max-height:28px!important;width:auto!important;max-width:140px!important;display:block;transition:opacity .15s;}

/* ══════════════════════════════════════════════
   MOBILE FIXES COMPLETOS
══════════════════════════════════════════════ */

/* NLTech banner — 100% ancho en móvil */
@media(max-width:900px){
  .banner-top{padding:0;background:#f7f6f4;border-bottom:1px solid #eee}
  .banner-nltech{
    width:100% !important;
    max-width:100% !important;
    max-height:none !important;
    height:auto !important;
    border-radius:0 !important;
    display:block;
  }
  .banner-top a{display:block;width:100%}
}

/* Now hero — mejor en móvil */
@media(max-width:600px){
  .now-hero-inner{padding:20px 12px 16px;min-height:120px}
  .nh-btn{width:52px;height:52px;margin-right:12px;flex-shrink:0}
  .nh-btn svg{width:16px;height:16px}
  .nh-showname{font-size:20px;letter-spacing:-.5px}
  .nh-label{font-size:11px;margin-bottom:2px}
  .nh-presenter{font-size:11px;margin-top:4px}
  
  /* Barra "a continuación" */
  .next-bar-inner{padding:6px 12px;flex-wrap:wrap;gap:6px}
  .next-txt{font-size:10px;flex:1}
  .prog-cta{font-size:10px;padding:5px 10px}

  /* Carrusel */
  .prog-tile{min-width:100px;padding:8px 6px 6px}
  .pt-img{width:66px;height:50px}
  .pt-name{font-size:8px}
  .pt-time,.pt-host{font-size:7px}

  /* Podcast grid — 2 columnas ajustadas */
  .podcast-grid{grid-template-columns:repeat(2,1fr);gap:8px}
  .pod-body{padding:6px 8px 8px}
  .pod-title{font-size:10px}
  
  /* Bloque Federico + LD */
  .page-body{padding:16px 10px}
  
  /* Sección doble Federico/LD en móvil — 1 columna */
  #noticias-federico > div:last-child{
    grid-template-columns:1fr !important;
  }
  #noticias-federico > div:first-child{
    grid-template-columns:1fr !important;
  }
  
  /* Footer */
  .footer-inner{grid-template-columns:1fr;gap:20px;padding:20px 12px}
  .footer-bottom-inner{flex-direction:column;gap:4px;text-align:center;padding:8px 12px;font-size:9px}
}


/* ── Logo ─────────────────────────────────────── */
.logo-img{
  height:40px;
  width:auto;
  display:block;
  object-fit:contain;
}
.logo-text-css{
  font-family:"Lato","Arial Black",Arial,sans-serif;
  font-style:italic;
  font-weight:400;
  font-size:20px;
  color:#8C1515;
  letter-spacing:-1px;
  white-space:nowrap;
  line-height:1;
}
.logo-text-css b{
  font-style:normal;
  font-weight:900;
  color:#1a1a1a;
}
.logo-text-css small{
  display:block;
  font-size:8px;
  font-weight:700;
  font-style:normal;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#8C1515;
  text-align:right;
}
@media(max-width:768px){
  .logo-img{height:32px}
  .logo-text-css{font-size:16px}
}

/* ── Skeleton loader para podcasts ─────────────── */
@keyframes shimmer {
  0%   { background-position: -600px 0 }
  100% { background-position:  600px 0 }
}
.pod-skeleton {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0f0f0;
}
.skel-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 600px 100%;
  animation: shimmer 1.2s infinite linear;
}
.skel-line {
  height: 11px;
  border-radius: 3px;
  margin: 8px 10px 4px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 600px 100%;
  animation: shimmer 1.2s infinite linear;
}
.skel-line.short { width: 55%; height: 9px; }
.skel-line.xshort { width: 35%; height: 8px; margin-bottom: 10px; }

/* ── Botón compartir en tarjetas podcast ─── */
.pod-share-btn {
  width: 26px;
  height: 26px;
  border: none;
  background: none;
  color: #aaa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, color .15s;
  flex-shrink: 0;
  padding: 0;
}
.pod-share-btn:hover {
  background: #f0f0f0;
  color: var(--burdeos);
}
