.promotions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
    justify-content: space-between;
    /* gap: 32px 15px; */
}

.promotions-list__item {
    background-size: cover;
    background-position: center;
    display: flex;
    /* gap: 32px */
}


.promotion-item-image{
    max-width: 112px;
    height: 112px;
    box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.17);
    object-fit: cover;
    border-radius: 8px;
}

.promotions-list__item .description-block {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    gap: 12px;
}

.promotion-tag {
    display: inline-block;
    width: max-content;
    background-color: #f4f3f3;
    border: 1px solid #e8e8e8;
    border-radius: 90px;
    padding: 6px 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #626E7C;
}

.promotion-title {
    font-weight: 600;
    font-size: 19px;
    line-height: 150%;
    color: #28313d;
    margin-bottom: 5px;
}

@media(max-width: 768px) {
    .promotion-item-image  {
        width: 80px;
        height: 80px;
    }

    .promotion-tag {
        padding: 7px;
    }
}


@media(max-width: 425px) {
    .promotions-list__item {
        gap: 16px
    }

    .promotion-tag {
        padding: 7px;
    }
}


/* promotions style_3 */


.swiper-container {
    width: 100%;
    height: auto; /* Или задайте фиксированную высоту, если нужно */
    overflow: hidden; /* Скрываем переполнение */
}

.swiper-wrapper {
    display: flex;
}


.promotions-style_3 .promotions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    row-gap: 50px;
}
/* .promotions-style_3 .promotions-list {
    display: flex;
    gap: 32px;
} */



.promotions-list.slick-initialized.slick-slider .slick-list .slick-slide {
    width: 100%;
    max-width: 394px;
    height: 515px;
    margin-right: 32px;

}
.item-description-block{
    width: 120px;
    height: 120px;
    border-radius: 10px;
    flex-shrink: 0;
}
.promotions-style_3 .promotions-list__item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.promotions-list-link{
    display: flex;
    gap: 20px;
}
.promotions-list__item a{
    text-decoration: none;
}
.promotions-list-link{
    display: flex;
}

.promotion-rigth_section{
    color: black;
}
.promotions-style_3 .item-description {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 40px;
}
.promotion-rigth_section{
    max-width: 300px;
}
.promotions-style_3 .item-description-block p {
    color: #fff;
    min-height: 90px;
}

.promotions-style_3 .promotion-title {
    position: relative;
    
}

.promotions-style_3 .more-link {
    position: relative;
    display: block;
    border-radius: 8px;
    text-decoration: none;
    width: 100%;
    padding: 15px 24px;
    text-align: center;
    transition: .3s ease-in-out;
}

.more-link:hover {
    background-color: #566d6a;

    color: #fff;
}

.slider__action button {
    background: transparent;
    width: 61px;
    height: 61px;
    border: 1px solid #D7E1EC;
    border-radius: 50%;
}

.dots.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: flex;
    gap: 24px;
    justify-content: center;
    position: unset;
}

.dots.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #d7e1ec;
}

.dots.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
    background-color: #566d6a;
}

.promotions-style_3 .slider__action {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media(max-width: 550px) {
    .promotions-style_3 .promotions-list {
        margin-bottom: 24px;
    }

    .promotions-style_3 .title-h1_medium {
        margin-bottom: 24px;
    }
    .promotion-title{
        font-size: 15px;

    }
    .promotion-rigth_section:last-child{
        font-size: 12px;
    }
}
@media(max-width: 424px) {
    .promotions-list-link{
        flex-direction: column;
}
}

