/* ============================================
   РЕКЛАМНЫЕ БЛОКИ (300x250)
   ============================================ */
.ad-container {
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    margin: 25px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.ad-container .ad-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 600;
    background: #e8e8e8;
    padding: 2px 10px;
    border-radius: 3px;
    display: inline-block;
}

.ad-container ins {
    display: block !important;
    margin: 0 auto;
}

/* ============================================
   ПК (>1200px) — 4 блока 300x250 в ряд
   ============================================ */
@media (min-width: 1201px) {
    .news-rest-content .ad-container {
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        width: 100%;
        padding: 20px;
        min-height: auto;
    }
    .news-rest-content .ad-container .ad-label {
        width: 100%;
        margin-bottom: 10px;
    }
    .news-rest-content .ad-container ins {
        flex: 0 0 auto;
    }
}

/* ============================================
   Планшет (601–1200px) — 2 блока в ряд
   ============================================ */
@media (min-width: 601px) and (max-width: 1200px) {
    .news-rest-content .ad-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 15px;
        min-height: auto;
        justify-items: center;
    }
    .news-rest-content .ad-container .ad-label {
        grid-column: 1 / -1;
        width: 100%;
        text-align: center;
    }
    .news-rest-content .ad-container ins {
        max-width: 100%;
    }
}

/* ============================================
   Мобильные (<600px) — 1 блок в ряд
   ============================================ */
@media (max-width: 600px) {
    .news-rest-content .ad-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 12px;
        min-height: auto;
    }
    .news-rest-content .ad-container .ad-label {
        width: 100%;
        text-align: center;
    }
    .news-rest-content .ad-container ins {
        width: 300px !important;
        height: 250px !important;
        max-width: 100%;
    }
    .ad-container {
        padding: 10px;
        margin: 15px 0;
        min-height: 270px;
    }
}

/* ============================================
   Реклама в сайдбаре
   ============================================ */
.ad-sidebar,
.ad-sidebar-bottom {
    margin: 15px 0;
    min-height: auto;
    padding: 10px;
}

.ad-sidebar ins {
    width: 300px !important;
    height: 250px !important;
}

.ad-sidebar-bottom ins {
    width: 320px !important;
    height: 50px !important;
}

/* ============================================
   Финальный блок и блок перед похожими
   ============================================ */
.ad-final,
.ad-before-similar {
    margin: 30px 0;
    min-height: 280px;
}