

/* Start:/local/templates/kuhni/components/bitrix/news.list/promotions_grid/style.css?17770938193860*/
/* ===== Promotions Grid — блок сетки акций ===== */

.promotions-grid {
    padding: 0px 0 60px 0;
    background-color: #ffffff;
    font-family: 'Inter Tight', sans-serif;
}

.promotions-grid__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 0px;
}

/* Заголовок */
.promotions-grid__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.page-title.promo {text-align:left;}

.promotions-grid__title {
    margin: 0;
    color: #303030;
    font-size: 32px;
    font-weight: 600;
    font-family: 'Inter Tight', sans-serif;
}

.promotions-grid__btn-all {
    color: #ce2e2e;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    padding: 8px 16px;
    border-radius: 40px;
    border: 1px solid #ce2e2e;
    white-space: nowrap;
}

.promotions-grid__btn-all:hover {
    background-color: #ce2e2e;
    color: white;
    text-decoration: none;
}

/* Сетка: базово 4 колонки */
.promotions-grid__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Элемент сетки */
.promotions-grid__item {
    position: relative;
}

/* === СПЕЦИАЛЬНЫЙ КЛАСС ДЛЯ ШИРОКОГО ЭЛЕМЕНТА (3-й в ряду) === */
@media (min-width: 993px) {
    .promotions-grid__item--wide {
        grid-column: span 2; /* Занимает место двух колонок */
    }
}
/* ========================================================== */

/* Баннер */
.promotions-grid__banner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 32px;
    box-sizing: border-box;
    height: 294px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*background-color: rgba(0, 0, 0, 0.41);*/
    background-blend-mode: overlay;
    text-decoration: none;
    transition: all 0.3s ease;
}

.promotions-grid__banner:hover {
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    text-decoration: none;
}

/* Текст */
.promotions-grid__banner-label {
    color: white;
    font-size: 20px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    word-wrap: break-word;
    max-width: 185px;
    text-decoration: none;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .promotions-grid__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    /* На планшетах убираем ширину, чтобы не ломать сетку 3 колонки */
    .promotions-grid__item--wide {
        grid-column: auto; 
    }
}

@media (max-width: 992px) {
    .promotions-grid__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .promotions-grid__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .promotions-grid__grid {
        grid-template-columns: 1fr;
    }
    
    .promotions-grid__banner {
        height: 240px;
        padding: 24px;
    }
    
    .promotions-grid__banner-label {
        font-size: 18px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .promotions-grid {
        padding: 40px 0;
    }
    
    .promotions-grid__title {
        font-size: 24px;
    }
    
    .promotions-grid__banner {
        height: 220px;
        padding: 20px;
    }
    
    .promotions-grid__banner-label {
        font-size: 16px;
    }
}
/* End */
/* /local/templates/kuhni/components/bitrix/news.list/promotions_grid/style.css?17770938193860 */
