/* =========================================
   Jornal Ilustrado — Publicidade
   ========================================= */

.jip-ad {
    --jip-ad-min-height: 100px;

    display: block;
    clear: both;
    width: 100%;
    min-height: var(--jip-ad-min-height);
    margin: 32px auto;
    overflow: hidden;
    text-align: center;
}

.jip-ad__label {
    margin-bottom: 8px;
    color: #8a8a8a;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.jip-ad__content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: var(--jip-ad-min-height);
    overflow: hidden;
}

.jip-ad .adsbygoogle {
    display: block !important;
    width: 100%;
    max-width: 100%;
}

/* Anúncios dentro das matérias */

.jip-ad--article {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Anúncios no feed */

.jip-ad--feed {
    margin-top: 32px;
    margin-bottom: 32px;
}

/* Anúncios laterais */

.jip-ad--sidebar {
    margin-top: 32px;
    margin-bottom: 32px;
}

/* Erros visíveis somente para administradores */

.jip-ad-error {
    clear: both;
    margin: 16px 0;
    padding: 12px 16px;
    border-left: 4px solid #d63638;
    background: #fcf0f1;
    color: #8a2424;
    font-size: 13px;
}

/* Mobile */

@media (max-width: 767px) {
    .jip-ad {
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .jip-ad--sidebar {
        min-height: 100px;
    }
}