/* 
   SISTEMA DE MONETIZACIÓN PROFESIONAL 
   - Bloques preparados para inserción automática.
   - Invisibles cuando están vacíos (sin anuncios).
   - Modo Producción Activado.
*/

.ad {
    display: block;
    margin: 32px auto;
    text-align: center;
    width: 100%;
    /* Altura automática: si no hay anuncio, ocupa 0px y no se ve hueco */
    min-height: 0;
    background-color: transparent;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

/* El texto de depuración de "ESPACIO PUBLICITARIO" queda oculto */
.ad::before {
    content: "";
    display: none;
}

/* --- VARIANTES --- */

/* Top */
.ad-top {
    margin-top: 20px;
    margin-bottom: 40px;
    max-width: 980px;
}

/* In-Content */
.ad-incontent {
    margin: 40px auto;
    max-width: 728px;
}

/* Bottom */
.ad-bottom {
    margin-top: 50px;
    margin-bottom: 20px;
    max-width: 980px;
}

/* Sidebar: Se intentará hacer sticky si tiene contenido, pero sin min-height */
@media (min-width: 1024px) {
    .ad-sidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 100px;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- OPTIMIZACIÓN MÓVIL --- */
@media (max-width: 768px) {
    .ad-sidebar {
        display: none !important;
    }

    .ad {
        margin: 20px auto;
        width: 100%;
        max-width: 100%;
    }
}

/* --- REGLAS ROBUSTAS PARA OCULTAR HUECOS --- */
.ad:empty,
.ad-container:empty,
.ad-slot:empty {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
    height: 0 !important;
}