:root{
  --nrll-bg:#0f1324;
  --nrll-card:#161b33;
  --nrll-soft:#1d2343;
  --nrll-txt:#ffffff;
  --nrll-muted:rgba(255,255,255,.65);
  --nrll-yellow:#f9b800;
  --nrll-radius:18px;
}

.nrll-wrap{
  color:var(--nrll-txt);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

.nrll-archive, .nrll-alc{ background:transparent; }

.nrll-empty{ color:var(--nrll-muted); margin:10px 0; }

.nrll-sec{ margin-top:34px; }
.nrll-h2{
  margin: 0 0 12px;
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(255,255,255,.70);
}

/* =========================
   FILTROS (ARCHIVE)
   ========================= */
.nrll-filters{
  display:grid;
  grid-template-columns: 1fr 260px 220px 140px;
  gap:12px;
  align-items:end;
  margin: 0 0 18px;
}
.nrll-field label{
  display:block;
  font-size:12px;
  color:var(--nrll-muted);
  margin-bottom:6px;
}
.nrll-field input,
.nrll-field select{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:var(--nrll-txt);
  outline:none;
  box-sizing:border-box;
}
.nrll-field-btn{ display:flex; }
.nrll-btn{
  width:100%;
  padding:10px 14px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  font-weight:800;
  background:var(--nrll-yellow);
  color:#000;
}

/* =========================
   GRID / CARDS
   ========================= */
.nrll-grid{
  display:grid;
  grid-template-columns: repeat(var(--nrll-cols, 3), minmax(0, 1fr));
  gap:14px;
}

.nrll-card{
  background:var(--nrll-card);
  border-radius:var(--nrll-radius);
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.nrll-card-img{
  display:block;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,.06);
  overflow:hidden;
}
.nrll-card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.nrll-img-ph{
  display:block;
  width:100%;
  height:100%;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.nrll-card-body{
  padding:14px 14px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.nrll-card-title{
  color:var(--nrll-txt);
  text-decoration:none;
  font-weight:800;
  line-height:1.15;
}
.nrll-card-meta{
  font-size:12px;
  color:var(--nrll-muted);
}

/* =========================
   PLAY (base)
   ========================= */
.nrll-play{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.12);
  color:var(--nrll-txt);
  cursor:pointer;
  font-weight:800;
  overflow:visible;
}
.nrll-play:hover{ border-color: rgba(255,255,255,.22); }

.nrll-play .nrll-play-ic{
  display:inline-block;
  width:18px;
  height:18px;
  flex:0 0 18px;
  position:relative;
}

.nrll-play:not(.is-playing) .nrll-play-ic{
  background: var(--nrll-yellow);
  clip-path: polygon(30% 20%, 30% 80%, 80% 50%);
  border-radius:4px;
}

.nrll-play.is-playing .nrll-play-ic{
  background:transparent;
  clip-path:none;
  border-radius:0;
}
.nrll-play.is-playing .nrll-play-ic::before,
.nrll-play.is-playing .nrll-play-ic::after{
  content:"";
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:5px;
  height:14px;
  background: var(--nrll-yellow);
  border-radius:2px;
}
.nrll-play.is-playing .nrll-play-ic::before{ left:3px; }
.nrll-play.is-playing .nrll-play-ic::after{ right:3px; }

/* =========================
   A LA CARTA - TITULO
   ========================= */
.nrll-alc-h1{
  margin: 0 0 14px;
  font-size:40px;
  font-weight:900;
  letter-spacing:-.02em;
}

/* =========================
   HERO + PLAYER (como tu referencia)
   50/50 + barra abajo full width + play centrado + tiempo debajo
   ========================= */
.nrll-hero{
  position:relative;
  min-height:560px;
  padding:120px 0 190px;

  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  align-items:center;

  background:transparent;
  box-shadow:none;
  border-radius:0;
}

.nrll-hero-left{ padding:0; min-width:0; }
.nrll-hero-top{ display:flex; flex-direction:column; gap:8px; }

.nrll-hero-title{
  font-size:30px;
  font-weight:900;
  line-height:1.15;
  letter-spacing:-.02em;
  margin:0;
}
.nrll-hero-date{
  font-size:14px;
  color:var(--nrll-muted);
}

.nrll-hero-right{
  width:100%;
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:flex-start;
}
.nrll-hero-img{
  width:100%;
  aspect-ratio:16/9;
  border-radius:18px;
  overflow:hidden;
  background: rgba(255,255,255,.10);
}
.nrll-hero-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.nrll-hero-side{ padding:0; }
.nrll-hero-program{ font-weight:900; font-size:18px; }
.nrll-hero-desc{
  margin-top:8px;
  color:var(--nrll-muted);
  font-size:14px;
  line-height:1.4;
}

/* ===== Player abajo ===== */
.nrll-hero-player{
  position:absolute;
  left:0;
  right:0;
  bottom:18px;
  height:120px;
  pointer-events:none;
}

.nrll-wave{
  position:absolute;
  left:0;
  right:0;
  bottom:42px;
  margin:0;
  background:transparent;
  pointer-events:auto;
}
.nrll-wave-bars{ display:none !important; }

.nrll-progress{
  position:relative;
  width:100%;
  height:6px;
  border-radius:999px;
  background: rgba(255,255,255,.85);
  cursor:pointer;
  overflow:visible;
  touch-action:none;
}
.nrll-progress-inner{
  height:100%;
  width:0%;
  background: var(--nrll-yellow);
  border-radius:999px;
  position:relative;
}
.nrll-progress-inner::after{
  content:"";
  position:absolute;
  right:-7px;
  top:50%;
  transform:translateY(-50%);
  width:14px;
  height:14px;
  border-radius:999px;
  background:#fff;
  border:2px solid rgba(0,0,0,.18);
  box-shadow:none;
}

.nrll-hero-controls{
  position:absolute;
  left:0;
  right:0;
  bottom:92px;
  display:flex;
  justify-content:center;
  pointer-events:auto;
}

.nrll-hero-play.nrll-play{
  width:70px;
  height:70px;
  padding:0;
  border-radius:999px;
  border:0 !important;
  background: var(--nrll-yellow) !important;
  color:#000 !important;
  justify-content:center;
  box-shadow:none !important;
}
.nrll-hero-play .nrll-hero-play-txt{ display:none !important; }

.nrll-hero-play.nrll-play .nrll-play-ic{ width:22px; height:22px; }
.nrll-hero-play.nrll-play:not(.is-playing) .nrll-play-ic{
  background:#000 !important;
  clip-path: polygon(28% 18%, 28% 82%, 84% 50%);
  border-radius:4px;
}
.nrll-hero-play.nrll-play.is-playing .nrll-play-ic{
  background:transparent !important;
  clip-path:none !important;
  padding: 10px;
}
.nrll-hero-play.nrll-play.is-playing .nrll-play-ic::before,
.nrll-hero-play.nrll-play.is-playing .nrll-play-ic::after{
  content:"";
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:6px;
  height:18px;
  background:#000 !important;
  border-radius:3px;
}
.nrll-hero-play.nrll-play.is-playing .nrll-play-ic::before{ left:3px; }
.nrll-hero-play.nrll-play.is-playing .nrll-play-ic::after{ right:3px; }

/* Tiempo debajo de barra + fade-in */
.nrll-time{
  position:absolute;
  left:0;
  right:0;
  bottom:8px;
  text-align:center;

  font-size:14px;
  font-weight:500;
  color: rgba(255,255,255,.70);
  letter-spacing:.01em;

  opacity:0;
  transform: translateY(-4px);
  transition: opacity .28s ease, transform .28s ease;
  pointer-events:none;
}
.nrll-hero.is-time-visible .nrll-time{
  opacity:1;
  transform:none;
}

/* =========================
   PAGINACIÓN
   ========================= */
.nrll-pagination{ margin-top:16px; }
.nrll-pagination .page-numbers{
  color:var(--nrll-txt);
  text-decoration:none;
  padding:8px 10px;
  margin-right:6px;
  border-radius:10px;
  background: rgba(255,255,255,.06);
}
.nrll-pagination .current{
  background: var(--nrll-yellow);
  color:#000;
  font-weight:900;
}
/* =========================
   Responsive
   ========================= */
@media (max-width: 980px){
  .nrll-filters{ grid-template-columns: 1fr 1fr; }
  .nrll-grid{ --nrll-cols: 1; }

  .nrll-hero{
    grid-template-columns:1fr;
    gap:22px;
    padding:80px 0 190px;
    min-height:520px;
  }
}
.nrll-card-meta{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.nrll-card-dur{
  font-weight:600;
  color: rgba(255,255,255,.75);
}
.nrll-share-btn {
    color: #ffffff;
}
.nrll-card-link {
    color: #ffffff;
    font-size: 12px;
}