/* ============================================
   Ads Banner — Above "OUR CONTENT PREVIEWS"
   Visible on ALL screen sizes
   ============================================ */

.ads-banner {
    display: block;
    position: relative;
    width: 88%;
    max-width: 1060px;
    height: 250px;
    margin: 40px auto 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #111;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.ads-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

.ads-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    /* Parent <a> handles the clicks now */
}

.ads-slide.active {
    opacity: 1;
}

.ads-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .ads-banner {
        width: calc(100% - 24px);
        height: auto;
        aspect-ratio: 32 / 9;
        margin: 24px 12px;
        border-radius: 8px;
        /* Match watch view banner border radius */
    }
}