/* Sponsor Background Manager v4.2 - Frontend */

/* I wrapper del tema devono stare sopra con sfondo bianco */
.site, #page, .wrapper, .site-wrapper, .l-wrapper,
#content, .site-content, .container, .td-page-wrap {
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

/* ===== BANNER TABLET =====
   Di default nascosto — le media query inline in wp_head lo attivano
   nel range min/max configurato. NON usare display:none inline sul div. */
#sbm-tablet-banner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    line-height: 0;
    overflow: hidden;
}
#sbm-tablet-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ===== BANNER MOBILE =====
   Di default nascosto — le media query inline in wp_head lo attivano
   sotto il breakpoint configurato. NON usare display:none inline sul div. */
#sbm-mobile-banner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    line-height: 0;
    overflow: hidden;
}
#sbm-mobile-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ===== RESPONSIVE DESKTOP ===== */
@media (max-width: 1024px) {
    body {
        background-attachment: scroll !important;
    }
}

/* ===== PRINT ===== */
@media print {
    body { padding: 0 !important; background: #fff !important; }
    #sbm-tablet-banner,
    #sbm-mobile-banner { display: none !important; }
}
