section.produce-gallery {
    width: 100%;
    margin-top: 0;
    margin-bottom: 40px;
}

@media (min-width: 1160px) {
    section.produce-gallery {
        margin-bottom: 80px;
    }
}

.section-head .produce-gallery__title {
    font-size: 26px;
    font-weight: 500;
    line-height: 120%;
}

@media (min-width: 1160px) {
    .section-head .produce-gallery__title {
        font-size: 36px;
        font-weight: 500;
        line-height: 120%;
        margin-bottom: 30px;
    }
}

.produce-gallery__slider {
    margin-right: -16px;
}

@media (min-width: 768px) {
    .produce-gallery__slider {
        margin-right: 0;
    }
}

.produce-gallery-item {
    display: flex;
    flex-direction: column;
}

.produce-gallery__slide {
    height: auto;
    width: auto;
}

.produce-gallery__slide .produce-gallery-item {
    height: 100%;
}

.produce-gallery-item__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 24px;
}

.produce-gallery-item__image img,
.produce-gallery-item__video {
    width: 300px;
    height: 195px;
    object-fit: cover;
    border-radius: 10px;
}

.produce-gallery-item__video {
    position: relative;
}

.produce-gallery-item__play {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background-color: #1497e0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.produce-gallery-item__play::before {
    content: "";
    position: absolute;
    top: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 14px;
    height: 16px;
    background: url("../../../icons/svg/play-video.svg") no-repeat center;
    background-size: contain;
}

@media (min-width:1160px) {
    .produce-gallery-item__image img,
    .produce-gallery-item__video {
        width: 339px;
        height: 220px;
        border-radius: 20px;
    }   
}

