.feedback {
    background: #bdb5b3;
    padding: 1.5rem 0 1.25rem;
    overflow: hidden;
}

.feedback > .wrapper {
    max-width: 1280px;
    padding: 0;
    overflow: hidden;
}

.feedback .block-banner > .head {
    margin-bottom: .75rem;
    text-align: center;
}

.feedback .block-banner > .head .title {
    color: #20232b;
}

.feedback .block-banner > .head .description {
    max-width: 900px;
    margin: .75rem auto 0;
    color: #20232b;
    font-size: .9375rem;
    line-height: 1.45;
}

.feedback .content.swiper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    padding: 0;
}

.feedback .content.swiper .banners {
    min-width: 0;
}

.feedback .content.swiper:not(.swiper-initialized) .banners {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    transform: none !important;
}

.feedback .item {
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    height: auto;
    overflow: hidden;
    border: 0;
    border-radius: 4px;
    background: #fff;
    box-shadow: none;
    padding: .5rem;
}

.feedback .item img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 6 / 5;
    border-radius: 3px !important;
    object-fit: cover;
    object-position: center bottom;
}

.feedback .banner-caption {
    display: flex;
    align-items: flex-start;
    background: #f2f4f6;
    color: #20232b;
    font-size: .9375rem;
    font-style: italic;
    line-height: 1.45;
    padding: 1rem .75rem .875rem;
}

.feedback .banner-caption::before {
    content: none;
}

.feedback .swiper-button-prev,
.feedback .swiper-button-next {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .68);
    color: #5b5048;
}

.feedback .swiper-button-prev::after,
.feedback .swiper-button-next::after {
    font-size: .875rem;
    font-weight: 700;
}

@media (max-width: 992px) {
    .feedback .content.swiper:not(.swiper-initialized) .banners {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .feedback .content.swiper:not(.swiper-initialized) .banners {
        grid-template-columns: 1fr;
    }

    .feedback .swiper-button-prev,
    .feedback .swiper-button-next {
        display: none;
    }

    .feedback .item {
        width: 100%;
    }
}
