/* ===== ADS PREMIUM ===== */

.ad {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 18px 0;
}

/* evita quebrar layout */
.ad iframe,
.ad ins,
.ad div {
    max-width: 100%;
}

/* depois do título */
.ad-post_after_title {
    margin: 12px 0 20px;
}

/* meio do texto */
.ad-post-middle {
    margin: 28px 0;
    opacity: 0.95;
}

/* final */
.ad-post_end {
    margin: 30px 0 10px;
}

/* efeito suave */
.ad {
    transition: opacity 0.2s ease;
}

.ad:hover {
    opacity: 1;
}

/* mobile */
@media (max-width: 768px) {
    .ad {
        margin: 16px 0;
    }
}