.elementor-4382 .elementor-element.elementor-element-4d392b7{--display:flex;--background-transition:0.3s;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-5befa0e *//* --- LAYOUT PRINCIPAL (DESKTOP) --- */
.main-layout-container {
  display: grid;
  grid-template-columns: 1fr minmax(auto, 600px) 1fr; /* Columna central con ancho máximo */
  gap: 25px; /* Espacio entre columnas */
  align-items: start;
}

/* Contenedor de los anuncios laterales */
.ad-sidebar {
  width: 100%;
  position: sticky; /* Fija los anuncios mientras se hace scroll */
  top: 20px;
}

/* --- CONTENIDO CENTRAL --- */
.podcast-container {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  font-family: "Roboto", Arial, sans-serif;
}

.podcast-container h5 {
  color: #0d2c54;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.podcast-player {
  border: none;
  width: 100%;
  height: 120px;
  margin-bottom: 25px;
}

.podcast-container p {
  color: #333;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- BOTONES --- */
.button-wrapper-podcast {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 25px;
}

.custom-btn-podcast {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 1;
  min-width: 200px;
}

.custom-btn-podcast:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-stream { background-color: #0d2c54; color: #ffffff; }
.btn-donate { background-color: #FFDD00; color: #212529; }


/* --- ANUNCIO FLOTANTE (MÓVIL) --- */
.mobile-ad-floating {
  display: none; /* Oculto por defecto */
  position: fixed;
  bottom: 10px;
  left: 50%; /* Centrado horizontalmente */
  transform: translateX(-50%); /* Ajuste para el centrado */
  width: calc(100% - 40px); /* Ancho responsivo con márgenes */
  max-width: 300px; /* Ancho máximo reducido para que sea más pequeño */
  background-color: #fff;
  padding: 5px; /* Padding reducido para achicar el contenedor */
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  z-index: 1000;
}

.close-ad-btn {
  position: absolute;
  top: -12px; /* Se mueve un poco más arriba para no ser cubierto */
  right: -12px; /* Se mueve un poco más a la derecha para no ser cubierto */
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  z-index: 1001; /* Se asegura que el botón esté sobre el contenido del anuncio */
  
  /* --- Ajuste con Flexbox para centrar la 'X' perfectamente --- */
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1; /* Se resetea la altura de línea para evitar conflictos */
}

/* --- REGLAS DE RESPONSIVIDAD --- */
/* Para tablets y móviles (991px o menos) */
@media (max-width: 991px) {
  .main-layout-container {
    grid-template-columns: 1fr; /* Cambia a una sola columna */
  }
  
  .ad-sidebar {
    display: none; /* Oculta los anuncios laterales */
  }

  .mobile-ad-floating {
    display: block; /* Muestra el anuncio flotante */
  }
}

/* Para móviles pequeños (ajuste de botones) */
@media (max-width: 767px) {
  .button-wrapper-podcast {
    flex-direction: column;
  }
}/* End custom CSS */