@charset "UTF-8";
/* =========================================================
   Hero Slider (dentro del hero)
   - SSR-first: scroll-snap sin JS
   - JS solo para dots/teclado (enhancement)
   ========================================================= */
.hero-slider {
  position: relative;
  min-width: 0;
}
/* Viewport: NO clipea (capa externa) */
.hero-slider__viewport {
  position: relative;
  overflow: visible;
  min-width: 0;
}
/* Track: scroller horizontal + snap */
.hero-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0;
  overflow-x: auto;
  overflow-y: visible; /* ðŸ”¥ intento de NO recortar tilt */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  min-width: 0;
  scrollbar-width: none;
}
.hero-slider__track::-webkit-scrollbar {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slider__track {
    scroll-behavior: auto;
  }
}
/* Slide: NO clipea (si clipea, el tilt muere) */
.hero-slide {
  position: relative;
  min-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: visible; /* âœ… clave */
  /*min-width: 0;*/ /* grid safety */
}
/* Solo el slide activo es interactivo */
.hero-slide {
  pointer-events: none;
  user-select: none;
}
.hero-slide[data-active="1"] {
  pointer-events: auto;
  user-select: auto;
}
.hero-slide[data-active="0"] a, .hero-slide[data-active="0"] button, .hero-slide[data-active="0"] input, .hero-slide[data-active="0"] select, .hero-slide[data-active="0"] textarea {
  pointer-events: none;
}
/* Dots flotantes */
@media (max-width: 880px) {
  .hero-slider__dots {
    position: relative;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: inline-flex;
    padding: 8px 10px;
    border-radius: var(--r-md);
    background: rgba(var(--ma-ink-rgb), 0.35);
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(12px) saturate(1.1);
    margin: 22px auto 0;
  }
}
/* Desktop: acciones a la derecha en fila */
@media (min-width: 821px) {
  .hero-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--r-md);
    background: rgba(var(--ma-ink-rgb), 0.35);
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(12px) saturate(1.1);
  }
}
.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, .55);
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.hero-slider__dot[aria-current="true"] {
  background: rgba(255, 255, 255, .92);
}
.hero-slider__dot:focus-visible {
  outline-offset: 4px;
}
/* Clipa todo lo que pinte fuera del slide (incluye box-shadow) */
.hero-slide {
  overflow: hidden; /* <- clave poner en hidden  */
}
/**************
===== event-marquee v0 (from scratch) =====
****************/
.event-marquee {
  width: 100%;
}
.event-marquee__viewport {
  position: relative;
  overflow: hidden; 
  padding-block: 0px;
  touch-action: pan-y; /* permite scroll vertical en móvil */
  cursor: grab;
  user-select: none;
}
.event-marquee__viewport.is-dragging {
  cursor: grabbing;
}
.event-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.event-grid--marquee {
  display: flex;
  gap: 16px; /* ajusta */
  padding-inline: 16px; /* aire lateral */
  flex: 0 0 auto;
}
.event-grid--marquee .event-card {
  flex: 0 0 auto;
  width: min(360px, 82vw);
}
@media (min-width: 900px) {
  .event-grid--marquee .event-card {
    width: 360px;
  }
}
/******************
fin event-marquee
*******************/
/*overlay*/
/* Card: base para overlay */
.event-grid--marquee .event-card {
  position: relative;
  border-radius: var(--r-md); /* ajusta a tu token */
  overflow: hidden; /* clip del overlay */
}
/* Imagen ocupa todo el alto de la card */
.event-grid--marquee .event-card__media {
  display: block;
  width: 100%;
  height: 100%;
}
.event-grid--marquee .event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* BODY -> overlay */
.event-grid--marquee .event-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 14px 12px;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  /* overlay glass/gradiente (sin tocar colores fijos si no quieres) */
  background: linear-gradient(to top, rgb(var(--ma-dark-blue-rgb)) 0%, rgb(var(--ma-dark-blue-rgb)) 40%, rgba(var(--ma-blue-rgb), 0) 70%, rgba(var(--ma-blue-rgb), 0) 100%);
  transition: opacity .22s ease, transform .22s ease;
}
/* Mostrar overlay */
@media (hover: hover) and (pointer: fine) {
  .event-grid--marquee .event-card:hover .event-card__body {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
/* Accesibilidad: si navegas con teclado, que aparezca también */
.event-grid--marquee .event-card:focus-within .event-card__body {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* Ajustes de texto/botones encima del overlay */
.event-grid--marquee .event-card__title a, .event-grid--marquee .event-card__subtitle a {
  color: rgba(255, 255, 255, .96);
  text-decoration: none;
}
.event-grid--marquee .event-card__subtitle a {
  color: rgba(255, 255, 255, .78);
}
.event-grid--marquee .event-card__when, .event-grid--marquee .event-card__when * {
  color: rgba(255, 255, 255, .86);
}
.event-grid--marquee .event-card__btns {
  display: flex;
  gap: 10px;
  align-items: center;
}
.event-grid--marquee .event-card__footer {
  margin-top: inherit;
}
/* Mobile: no hay hover -> lo dejamos oculto por defecto,
   pero aparece con focus-within (tap en link/botón) */
@media (hover: none) {
  .event-grid--marquee .event-card__body {
    /* opcional: que se vea un poquito siempre */
    /* opacity: 1; transform:none; pointer-events:auto; background: linear-gradient(...); */
  }
}
/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .event-grid--marquee .event-card__body {
    transition: none;
  }
}
.event-marquee__viewport.is-dragging a, .event-marquee__viewport.is-dragging img {
  pointer-events: none;
	
}
/* ============================================================
   INTERIOR MOVISTAR ARENA — Sección post-slider
   Imagen + overlay invertido
   ============================================================ */
.home-interior {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(400px, 60vh, 800px);
  padding: 0;
  overflow: hidden;
}
/* Imagen fondo */
.home-interior__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 55%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.25) 85%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 55%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.25) 85%, rgba(0, 0, 0, 0) 100%);
}
/* Overlay invertido (oscuro arriba → transparente abajo) */
.home-interior__wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(5, 20, 60, 1) 0%, rgba(5, 20, 60, 0.95) 18%, rgba(5, 20, 60, 0.55) 38%, rgba(5, 20, 60, 0.25) 52%, rgba(5, 20, 60, 0.00) 70%);
}
/* Contenido */
/*
.home-interior__content{
  position: relative;
  z-index: 2;
  max-width: 90%;
  margin: 0 auto;
  padding: 48px var(--pad);
  color: #fff;
}
*/ :root {
  --home-interior-left: 420px; /* ajusta aquí el ancho de la izquierda */
}
.home-interior__content {
  position: relative;
  z-index: 2;
  max-width: 90%;
  margin: 0 auto;
  padding: 48px var(--pad);
  display: grid;
  gap: 24px;
  color: #fff;
  align-items: end !important;
}
/* Móvil: 1 columna */
.home-interior__content {
  grid-template-columns: 1fr;
}
/* Desktop: izquierda fija + derecha flexible */
@media (min-width: 900px) {
  .home-interior__content {
    grid-template-columns: minmax(280px, var(--home-interior-left)) 1fr;
    align-items: start; /* suele quedar mejor con cards */
  }
}
.home-interior__side {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}
/* Si quieres 3 columnas en pantallas grandes */
@media (min-width: 1200px) {
  .home-interior__side {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.home-interior__side .home-interior__logo {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  text-align: center;
  font-size: 24px;
}
.home-interior__hero {
  /* max-width: 800px;*/
  max-width: 100%;
  /*margin: 0 auto;*/
  padding: 64px 16px;
  color: #fff;
  text-align: left;
}
.home-interior__logo {
  display: block;
  width: 180px;
  max-width: 60%;
  margin: 0 0 24px;
  opacity: 0.95;
}
.home-interior__title {
  margin: 0 0 16px;
  font-size: var(--fs-section-hero);
  line-height: 1.1;
  font-weight: 700;
}
.home-interior__lead {
  margin: 0;
  font-size: var(--fs-section-title);
  line-height: 1.55;
  opacity: 0.95;
  max-width: 720px;
}
/* ============================================================
   REVEAL on scroll — home-interior (logo/title/lead)
   ============================================================ */
.home-interior [data-reveal] {
  opacity: 0;
  transition:
    opacity 650ms ease, transform 650ms cubic-bezier(.2, .9, .2, 1);
  will-change: opacity, transform;
}
.home-interior [data-reveal="logo"] {
  transform: scale(1.15);
  transform-origin: left center;
}
.home-interior [data-reveal="title"] {
  transform: translateX(-26px);
}
.home-interior [data-reveal="lead"] {
  transform: translateX(26px);
}
.home-interior [data-reveal="logo"] {
  transition-delay: 0ms;
}
.home-interior [data-reveal="title"] {
  transition-delay: 90ms;
}
.home-interior [data-reveal="lead"] {
  transition-delay: 180ms;
}
.home-interior.is-inview [data-reveal] {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .home-interior [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================
   HOME BASKET — 2 cards (Real Madrid + Estudiantes)
========================================= */

.home-basket{
 /* padding: 80px 20px;*/
}

.home-basket__inner{
  max-width: 1200px;
  margin: 0 auto;
}

/* 1 col en móvil, 2 cols en desktop */
.home-basket__layout{
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  --h-basket: 440px;
}

@media (min-width: 992px){
  .home-basket__layout{
    grid-template-columns: repeat(2, 1fr);
    --h-basket: 480px;
  }
}

/* Card */
.home-basket__card{
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden; /* recorta overlay/media */
}

.home-basket__link{
  display: block;
  position: relative;
  height: var(--h-basket);
  text-decoration: none;
  color: inherit;
}

/* Imagen */
.home-basket__media{
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}

.home-basket__card:hover .home-basket__media{
  transform: scale(1.06);
}

/* Overlay */
.home-basket__overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 34px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.9) 30%,
    rgba(0,0,0,.68) 48%,
    rgba(0,0,0,0) 78%
  );
}

/* Contenido */
.home-basket__content{
  max-width: 86%;
  min-width: 0;
  color: #fff;
}

.home-basket__brand{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  min-width: 0;
}

.home-basket__logo{
  height: 72px;
  width: auto;
  object-fit: contain;
  max-width: 100%;
}

.home-basket__logo.liga{
  height: 30px;
}

.home-basket__title{
  margin: 0 0 6px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 750;
}

.home-basket__desc{
  margin: 0;
  font-size: 16px;
  opacity: .92;
}

.home-basket__actions{
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.home-basket__actions .btn{
  white-space: nowrap;
}

/* móvil: botones más cómodos */
@media (max-width: 520px){
  .home-basket__content{ max-width: 100%; }

  .home-basket__actions .btn{
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
  }
}

/* Divider vertical */
.divider--v{
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.35);
  opacity: .7;
}

/* =========================================
   HOME NOW (Actualidad)
   - Col izq: FEATURE (auto, con max) + SUBSCRIBE (min + flex para cuadrar)
   - Der: 2 cards pequeñas (altura a contenido) + PODCAST LIST (altura a contenido)
   - Total “visual” = alto(2 pequeñas) + alto(podcast)
========================================= */

.home-now{
  /* padding: 72px var(--pad, 16px); */
}

.home-now__inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--pad, 16px); /* asegura ancho “caja” y no full viewport */
}

/* Grid editorial */
.home-now__grid{
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  align-items: start;
  min-width: 0;
}

/* Desktop: 3 columnas / 2 filas
   Row 1 = altura natural de las cards pequeñas
   Row 2 = altura natural del bloque podcast
   Col izq = wrapper que spanea row1+row2 y dentro cuadra: feature (max) + subscribe (flex)
*/
@media (min-width: 900px){
  .home-now__grid{
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-template-rows: auto auto;
    align-items: stretch;
  }

  /* Wrapper columna izquierda */
  .now-col--left{
    grid-column: 1 / 2;
    grid-row: 1 / 3;          /* ocupa row1 + row2 */
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;

    /* CLAVE: el alto de esta celda es (row1 + row2) por definición del grid */
    height: 100%;
    min-height: 0;
  }

  /* Cards pequeñas arriba a la derecha (altura a contenido) */
  .home-now__grid > .now-card--small:nth-of-type(1){
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .home-now__grid > .now-card--small:nth-of-type(2){
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

  /* Podcast list abajo ocupando 2 columnas */
  .home-now__grid > .now-list{
    grid-column: 2 / 4;
    grid-row: 2 / 3;
  }
}

/* Mobile: apila normal */
@media (max-width: 899px){
  .now-col--left{
    display: grid;
    gap: 16px;
  }
}

/* =========================================
   CARDS (base)
========================================= */

.now-card{
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
  min-width: 0;
}

.now-card__link{
  display: grid;
  grid-template-rows: auto 1fr; /* media arriba, body abajo */
  text-decoration: none;
  height: 100%;
  min-height: 0;
}

/* Imagen apaisada arriba */
.now-card__media{
  width: 100%;
  aspect-ratio: 16 / 9;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.001);
  transition: transform .8s ease;
}

.now-card__link:hover .now-card__media{
  transform: scale(1.06);
}

/* Cuerpo debajo */
.now-card__body{
  padding: 18px 20px 20px;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.06),
    rgba(255,255,255,.04)
  );
}

.now-card__meta{
  display: flex;
  align-items: center;
  gap: 10px;
}

.now-card__date,
.now-card__min{
  font-size: var(--fs-element-nav);
}

.now-card__h{
  margin: 0;
  font-size: var(--fs-element-title);
  line-height: var(--lh-element-title);
  letter-spacing: -0.01em;
    display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.now-card__p{
  margin: 0;
  font-size: var(--fs-element-body);
  line-height: var(--lh-element-body);
  max-width: 70ch;
}

.now-card__cta{
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-element-button);
  line-height: var(--lh-element-button);
  font-weight: var(--fw-element-button);;
  opacity: .95;
}

.now-card__cta::after{
  content: "→";
  transform: translateY(-1px);
}

/* =========================================
   FEATURE (izq)
   - Auto según contenido, pero con máximo para no comerse el subscribe
   - OJO: el “límite” que notabas venía de:
     - la altura total de la celda (row1+row2)
     - y el min-height de subscribe
     Por eso aunque subas max-height, visualmente no pasa de (total - minSub).
========================================= */

.now-card--feature{
  flex: 0 0 auto;
  min-width: 0;
  min-height: 0;
}

/* Control fino del alto máximo del feature */
@media (min-width: 900px){
  .now-card--feature{
	  flex: 1 1 auto;
  min-height: 0;
   /* max-height: 560px; */ /* <- aquí lo puedes subir (p.ej. 560/600) */
  }
  .now-card--feature .now-card__link{
    height: 100%;
  }
  .now-card--feature .now-card__body{
    overflow: hidden; /* evita empujar */
  }
}

/* excerpt con clamp */
.now-card__excerpt{
  margin-top: 2px;
  font-size: var(--fs-section-body);
  line-height: var(--lh-section-body);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.now-card__excerpt p{
  margin: 0 0 6px;
}


/* ==========================
   Actualidad DETALLE
   - No cortar contenido por line-clamp
   ========================== */
.now-detail .now-card__excerpt{
  display: block;              /* anula el -webkit-box del clamp */
  overflow: visible;
  -webkit-box-orient: initial;
  -webkit-line-clamp: initial; /* o: unset */
  max-height: none;
}

/* Mejor tipografía/lectura para el cuerpo */
.now-detail .now-card__excerpt{
  max-width: 78ch;
  font-size: var(--fs-body, 16px);
  line-height: 1.65;
}

.now-detail .now-card__excerpt p{
  margin: 0 0 12px;
}

.now-detail .now-card__excerpt h2,
.now-detail .now-card__excerpt h3{
  margin: 18px 0 10px;
  line-height: 1.2;
}


/* =========================================
   SMALL cards (der)
   - Altura al contenido (sin min-height)
   - Sin “aire”
========================================= */

.now-card--small{
  min-width: 0;
}


.now-card--small .now-card__h {
  font-size: var(--fs-element-title);
  line-height: var(--lh-element-title);

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.now-card--small .now-card__body{
  padding: 16px 18px 18px;
}

/* IMPORTANTÍSIMO: altura a contenido */
.now-card--small .now-card__link{
  height: auto;
}

/* =========================================
   CHIPS
========================================= */

.now-chip{
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: var(--r-md);
  font-size: var(--fs-element-badge);
  font-weight: var(--fw-element-badge);
  letter-spacing: .02em;
  border: 1px solid rgba(255,255,255,1);
  background: var(--ma-green-100);
}

.now-chip--news{
  background: rgba(var(--ma-aqua-rgb,1));
  border: 0px solid var(--ma-aqua-150);
  color: var(--ma-aqua-150);
}

.now-chip--pod{
  background: rgba(var(--ma-green-rgb,1));
  border: 0px solid var(--ma-green-150);
  color: var(--ma-green-150);
	
}

/* =========================================
   SUSCRIPCIÓN
   - min-height = “mínimo necesario”
   - flex = absorbe el resto para cuadrar
   NOTA: si bajas min-height “y no baja”, es porque:
   - el contenido interno (input+botones+textos+padding)
     ya ocupa más que ese mínimo.
   - o porque el alto disponible de la celda (row1+row2)
     está fijando el resultado visual.
========================================= */

.now-subcard{
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 34px rgba(0,0,0,.12);
  min-width: 0;

  flex: 1 1 auto;
  min-height: 170px; /* <- puedes bajarlo, pero nunca menos que su contenido real */
  min-height: 0;     /* <- clave para que pueda “encoger” si el contenido lo permite */
}

.now-sub__inner{
  padding: 18px 18px;
  display: grid;
  gap: 10px;
  height: 100%;
  min-height: 0;
  align-content: start;
}

.now-sub__k{
  font-size: var(--fs-element-nav);
  letter-spacing: .14em;
  
}

.now-sub__h{
  font-size: var(--fs-element-title);
  font-weight: var(--fw-element-title);
  line-height: var(--lh-element-title);
}

.now-sub__p{
  font-size: var(--fs-section-body);
  font-weight: var(--fw-section-body);
  line-height: var(--lh-section-body);
}

/* Form (con estilo) */
.now-sub__form{
  margin-top: 6px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.now-sub__label{ min-width: 0; }

.now-sub__input{
  width: 100%;
  height: 44px;
  border-radius: var(--r-md);
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  outline: none;
  font-size: var(--fs-element-body);
  font-weight: var(--fw-element-body);
}

.now-sub__input::placeholder{
  font-size: var(--fs-section-body);
  font-weight: var(--fw-section-body);
  color: rgba(234,240,255,.55);
}

.now-sub__input:focus{
  border-color: rgba(var(--ma-blue-rgb), .55);
  box-shadow: 0 0 0 4px rgba(var(--ma-blue-rgb), .18);
}

.now-sub__btn{
  height: 44px;
  border-radius: var(--r-md);
  white-space: nowrap;
}

.now-sub__btn--ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}

/* Mobile: form apila */
@media (max-width: 520px){
  .now-sub__form{ grid-template-columns: 1fr; }
  .now-sub__btn{
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
   PODCAST LIST (Último)
   - altura por contenido (la marca el contenido siempre)
========================================= */

.now-list{
  border-radius: var(--r-md);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 34px rgba(0,0,0,.12);
  padding: 18px;
  min-width: 0;
  height: auto;
}

.now-list__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.now-list__title{
  margin: 0;
  font-size: var(--fs-section-subtitle);
  font-weight: var(--fw-section-subtitle);
  letter-spacing: -0.01em;
}

.now-list__more{
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}
.now-list__more:hover{ text-decoration: underline; }

.now-list__items{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

/* =========================================
   Mobile tweaks
========================================= */

@media (max-width: 520px){
  .now-card__body{ padding: 16px 16px 18px; }
}

/* =========================
   PODCAST ROW (audiovisual) — v2
========================= */


/* =========================
   PODCAST ROW (audiovisual) — v2
========================= */
.now-item--podcast{
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
}

/* Contenedor */
.podrow{
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
}

/* Link overlay (click general) */
.podrow__link{
  position: absolute;
  inset: 0;
  z-index: 1;
  text-decoration: none;
  border-radius: var(--r-md);
}

/* Asegura que botones y thumb queden por encima del link */
.podrow__thumb,
.podrow__main,
.podrow__right{
  position: relative;
  z-index: 2;
}

/* Hover/focus del row */
.podrow:hover{
  background: rgba(255,255,255,.06);
}

.podrow__link:focus-visible{
  outline: 3px solid rgba(var(--ma-blue-rgb), .55);
  outline-offset: 2px;
}

/* -------------------------
   Thumb
------------------------- */

.podrow__thumb{
  width: 200px;
  height: 110px;
  border-radius: var(--r-md);
  overflow: hidden;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}

.podrow__thumbShade{
  position:absolute;
  inset:0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.20) 55%,
    rgba(0,0,0,0) 100%
  );
}



.podrow__playWrap{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none; /* importante */
}

.podrow__play{
  pointer-events:auto; /* solo el botón clicable */
  position:absolute;
}





.podrow:hover .podrow__play{
  background: rgba(0,0,0,.48);
}

/* Focus del botón play */
.podrow__play:focus-visible{
  outline: 3px solid rgba(17,255,134,.35);
  outline-offset: 2px;
}

/* -------------------------
   Main
------------------------- */

.podrow__main{ min-width: 0; }

.podrow__top{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.podrow__date{
  font-size: 12px;
  font-size: var(--fs-element-badge);
  white-space: nowrap;
}

.podrow__title{
  font-size: var(--fs-element-body);
  line-height: var(--lh-element-body);
  font-weight: var(--fw-element-body);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Waveform */
.podrow__wave{
  margin-top: 8px;
  height: 14px;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  background: rgba(0,0,0,.10);
  border: 1px solid rgba(255,255,255,.08);
}

.podrow__wave::before{
  content:"";
  position:absolute; inset:0;
  background: rgba(var(--ma-ink-rgb), .30);
  opacity: .55;
  -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 3px, transparent 3px 6px);
  mask-image: repeating-linear-gradient(90deg, #000 0 3px, transparent 3px 6px);
}

.podrow__waveFill{
  position:absolute; inset:0;
  width: var(--p, 35%);
  background: rgba(var(--ma-green-rgb),1);
  border-right: 5px solid rgba(var(--ma-cream-rgb),1);
  -webkit-mask-image: repeating-linear-gradient(90deg, #fff 0 3px, transparent 3px 6px);
  mask-image: repeating-linear-gradient(90deg, #fff 0 2px, transparent 2px 4px);
}

/* -------------------------
   Right actions
------------------------- */

.podrow__right{
  display: grid;
  justify-items: end;
  gap: 8px;
  padding-left: 6px;
}

.podrow__stats{
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  white-space: nowrap;
}

.podrow__stat{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.podrow__more{
  width: 34px;
  height: 34px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  cursor: pointer;
}

.podrow__more:focus-visible{
  outline: 3px solid rgba(var(--ma-blue-rgb), .45);
  outline-offset: 2px;
}


/* -------------------------
   Mobile
------------------------- */

@media (max-width: 520px){
  .podrow{
    grid-template-columns: 84px 1fr;
    grid-template-rows: auto auto;
    align-items: start;
  }

  .podrow__right{
    grid-column: 2 / 3;
    justify-items: start;
  }

  .podrow__stats{ gap: 10px; }
}



/* =========================
   PODCAST MODAL (fullscreen mobile)
========================= */

.podmodal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.podmodal.is-open{ display:block; }

.podmodal.is-open {
    display: block;
    /*width: 80vw;*/
    height: 80vh !important;
    margin: auto;
	aspect-ratio: 16 / 10.1;
}

.podmodal__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px) saturate(1.1);
}

/* Panel: fullscreen en móvil */
.podmodal__panel{
  position: absolute;
  inset: 0;
  background: rgba(8,12,24,.96);
  display: grid;
  grid-template-rows: auto 1fr;
}

/* Desktop: si quieres, lo podemos convertir en “center modal”.
   De momento lo dejo también fullscreen (consistente). */

.podmodal__topbar{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.podmodal__close{
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.podmodal__meta{ min-width:0; }
.podmodal__title{
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.podmodal__sub{
  font-size: 12px;
  opacity: .7;
}

.podmodal__playerWrap{
  position: relative;
  height: 100%;
}

.podmodal__frame{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Bloquea scroll del body */
body.is-modal-open{
  overflow: hidden;
  touch-action: none;
}


/* =========================================
   ADS ROW — 3 cards horizontales
========================================= */

.ma-adsrow__inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--pad, 16px);
}

.ma-adsrow__grid{
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px){
  .ma-adsrow__grid{
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
  }
}

/* =========================================
   Card base
========================================= */

.card-ads{
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
  min-width: 0;
  min-height: 240px;

  /* hover affordance */
  cursor: pointer;
  
}

@media (min-width: 900px){
  .card-ads{ min-height: 260px; }
}
/*
.card-ads:hover{
  transform: translateY(-20px);
  transform: scale(1.15);
  transform-origin: center center;
  border-color: rgba(var(--ma-aqua-rgb),.6);
  box-shadow: var(--shadow-2);
  z-index: 1;
}
*/
/* Click target “total” (para que el click sea fácil).
   El click real lo harás con JS leyendo data-link. */
.card-ads::after{
  content:"";
  position:absolute;
  inset:0;
  z-index: 1;          /* por debajo del copy (z=2) */
  pointer-events: auto; /* importante: la card es click target */
}

/* Media full */
.card-ads__media{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.12);
}



/* =========================================
   VIDEO
========================================= */

.card-ads[data-type="video"] .card-ads__media video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

/* =========================================
   IMAGE + COPY (posiciones)
========================================= */

.card-ads[data-type="image"] .card-ads__media{
  background-size: cover;
  background-position: center;
}

/* El copy NO debe bloquear el click de la card */
.card-ads__copy{
  position: absolute;
  z-index: 2;
  max-width: min(85%, 360px);

  display: grid;
  gap: 10px;

  padding: 14px 14px;
  border-radius: var(--r-md);
  background: rgba(8,12,24,.52);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px) saturate(1.1);

  pointer-events: none; /* clave: hover/click cae en la card */
}

/* Posiciones (3x3) */
/* Top */
.card-ads[data-pos="tl"] .card-ads__copy{ top: 10px; left: 10px; }
.card-ads[data-pos="tc"] .card-ads__copy{ top: 10px; left: 50%; transform: translateX(-50%); }
.card-ads[data-pos="tr"] .card-ads__copy{ top: 10px; right: 10px; }

/* Center */
.card-ads[data-pos="cl"] .card-ads__copy{ top: 50%; left: 10px; transform: translateY(-50%); }
.card-ads[data-pos="cc"] .card-ads__copy{ top: 50%; left: 50%; transform: translate(-50%, -50%); }
.card-ads[data-pos="cr"] .card-ads__copy{ top: 50%; right: 10px; transform: translateY(-50%); }

/* Bottom */
.card-ads[data-pos="bl"] .card-ads__copy{ bottom: 10px; left: 10px; }
.card-ads[data-pos="bc"] .card-ads__copy{ bottom: 10px; left: 50%; transform: translateX(-50%); }
.card-ads[data-pos="br"] .card-ads__copy{ bottom: 10px; right: 10px; }

/* Texto 3 líneas */
.card-ads__lines{
  display: grid;
  gap: 4px;
}

.card-ads__line1{
  font-size: 14px;
  font-weight: 700;
  color: rgba(234,240,255,.92);
}

.card-ads__line2{
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(234,240,255,.98);
}

.card-ads__line3{
  font-size: 14px;
  color: rgba(234,240,255,.78);
  line-height: 1.25;
}

/* =========================================
   HTML5 banner (iframe) — (si lo reactivas)
========================================= */

.card-ads[data-type="html5"] .card-ads__media iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display:block;
  background: transparent;
}

/* =========================================
   Focus
========================================= */

.card-ads:focus-visible{
  outline: 3px solid rgba(var(--ma-blue-rgb), .55);
  outline-offset: 2px;
}


/* Desactivar overlay cuando sea baloncesto */
.page-hero.no-overlay::before,
.page-hero.no-overlay.page-hero--overlay_::before,
.page-hero.no-overlay.page-hero--overlay::before {
  content: none !important;
  display: none !important;
}



/* Crossfade de fondo (barato) */
.page-hero.ParallaxBlock{
  --bg: url('/assets/img/recursos/concierto-linternas.webp');
  --bg-next: var(--bg);
  --bg-alpha: 0;
}

/* Asegura que el fondo se pinta aquí (ajusta a tu estructura si ya lo haces) */
.page-hero.ParallaxBlock .ParallaxBlock__bg{
  position: absolute;
  inset: 0;
  background-image: var(--bg), var(--bg-next);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;

  /* 1º layer (bg) siempre visible.
     2º layer (bg-next) se funde con alpha */
  background-blend-mode: normal;
  opacity: 1;
}

/* Creamos una “mascara” para el 2º layer usando un pseudo overlay con filter:
   Truco: usamos un pseudo con el next únicamente para controlar opacidad sin hacks */
.page-hero.ParallaxBlock .ParallaxBlock__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--bg-next);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: var(--bg-alpha);
  transition: opacity 320ms ease;
  will-change: opacity;
}

/* Si el usuario reduce motion, sin animación */
@media (prefers-reduced-motion: reduce){
  .page-hero.ParallaxBlock .ParallaxBlock__bg::after{
    transition: none;
  }
}


.event-info__tex-sub{
    margin-top: 10px !important;
}


/* DEBUG OVERLAY */
body.debug-overlay .event-grid--marquee .event-card__body {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}


/* =========================================================
   SAFARI FIX — HERO MAIN / STRIP / TICKER
   ========================================================= */

/* 1) Regla base: en Safari los hijos flex/grid necesitan min-width:0
   para no desbordar ni comerse el reparto de columnas */
.page-hero--main .page-hero__inner,
.page-hero--main .hero,
.page-hero--main .hero__left,
.page-hero--main .hero__right,
.page-hero--main .event-info__content,
.page-hero--main .event-info__row,
.page-hero--main .event-info__text-block,
.page-hero--main .event-info__actions-block,
.page-hero--strip .page-hero__inner,
.page-hero--strip .event-info__content,
.page-hero--strip .event-info__row,
.page-hero--strip .event-info__text-block,
.page-hero--strip .event-info__actions-block,
.page-hero--strip .event-media-block,
.page-hero--ticker .page-hero__inner,
.page-hero--ticker .event-marquee,
.page-hero--ticker .event-marquee__viewport,
.page-hero--ticker .event-marquee__track {
  min-width: 0;
}

/* 2) HERO principal */
.page-hero--main .hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 48px);
}

.page-hero--main .hero__left {
  flex: 1 1 0%;
  min-width: 0;
}

.page-hero--main .hero__right {
  flex: 0 0 clamp(260px, 25vw, 420px);
  width: clamp(260px, 25vw, 420px);
  max-width: clamp(260px, 25vw, 420px);
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.page-hero--main .hero__float {
  width: 100%;
  max-width: clamp(260px, 25vw, 420px);
  margin-left: auto;
}

.page-hero--main .hero__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* evita que el bloque de texto fuerce el ancho total */
.page-hero--main .event-info__text-block,
.page-hero--main .event-info__content,
.page-hero--main .event-info__row {
  min-width: 0;
}

.page-hero--main .event-info__tex-title,
.page-hero--main .event-info__tex-sub,
.page-hero--main .event-info__text-meta-line {
  min-width: 0;
}

/* 3) STRIP secundaria */
.page-hero--strip .event-info__content.event-sales {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
}

.page-hero--strip .event-media-block {
  flex: 0 0 140px;
  width: 140px;
  min-width: 140px;
}

.page-hero--strip .event-media-block img {
  /*display: block;
  width: 100%;
  height: auto;*/
	
 display: block;
    width: auto !important;
    height: auto !important;
    max-height: 100%;
	padding: 0px;
}

.page-hero--strip .event-info__row.event-sales {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
}

.page-hero--strip .event-info__date-block {
  flex: 0 0 auto;
}

.page-hero--strip .event-info__text-block {
  flex: 1 1 0%;
  min-width: 0;
}

.page-hero--strip .event-info__actions-block {
  flex: 0 0 auto;
  margin-left: auto;
  /*min-width: fit-content;*/
	min-width: fit-content;
}

.page-hero--strip .actions-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

/* importante para Safari: permitir que el texto realmente encoja */
.page-hero--strip .event-info__tex-title,
.page-hero--strip .event-info__tex-sub,
.page-hero--strip .event-info__text-meta-line {
  min-width: 0;
  max-width: 100%;
}

/* 4) Ticker */
.page-hero--ticker {
  overflow: hidden;
}

.page-hero--ticker .page-hero__inner {
  overflow: hidden;
}

.page-hero--ticker .event-marquee__viewport {
  overflow: hidden;
}

.page-hero--ticker .event-marquee__track {
  will-change: transform;
  transform: translateZ(0);
}

/* 5) Backdrop en Safari */
.hero-slider__dots,
.card-ads__copy,
.podmodal__backdrop {
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  backdrop-filter: blur(12px) saturate(1.1);
}

/* 6) Breakpoint de seguridad */
@media (max-width: 1100px) {
  .page-hero--main .hero {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-hero--main .hero__right {
    width: min(360px, 70vw);
    max-width: min(360px, 70vw);
    margin: 0 auto;
    justify-content: center;
  }

  .page-hero--main .hero__float {
    margin: 0 auto;
  }

  .page-hero--strip .event-info__content.event-sales,
  .page-hero--strip .event-info__row.event-sales {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-hero--strip .event-media-block {
    width: 120px;
    min-width: 120px;
  }

  .page-hero--strip .event-info__actions-block {
    margin-left: 0;
  }

  .page-hero--strip .actions-ctas {
    justify-content: flex-start;
  }
}


/*MANUAL*/
.page-hero--main .hero__right {
    height: max-content;
    padding: 25px 0 0 0;
}
@media (max-width: 768px) {
	.page-hero--main {
        height: auto;
    }
	.page-hero--strip {
		display: none;
	}
	.page-hero--ticker{
		display: none;
	}
	.actions-icons{
		display: none;
	}
    .hero__float {
        aspect-ratio: 762 / 1080;
        width: min(520px, 100%);
    }

  .actions-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr; /* ← 2 columnas */
    gap: 10px;
  }

  .event-info__actions-block .btn {
    width: 100%;
    white-space: nowrap;
  }
}
