.top-banners {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    height: 180px;
    overflow: hidden;
}

.top-banners .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.top-banner__slide {
    --top-banner-background: #fff;

    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--top-banner-background);
}

.top-banner__picture {
    display: block;
    width: 100%;
    height: 100%;
}

.top-banner__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center;
}

/*
 * Один баннер: никакого Swiper,
 * обычный статичный блок.
 */
.top-banners--single .swiper-wrapper {
    display: block;
    transform: none !important;
}

.top-banners--single .swiper-slide {
    width: 100% !important;
    margin: 0 !important;
}

/*
 * Ссылка занимает весь баннер.
 */
.top-banners a,
.top-banners a:hover,
.top-banners a:focus {
    text-decoration: none;
}

/*
 * Desktop.
 */
@media (min-width: 768px) {
    .top-banners {
        height: 130px;
    }
}
@media (max-width: 767px) {
    .top-banners{
        top: 70px;
        height: 70px;
    }
}

/*
 * Для систем с отключённой анимацией
 * оставляем мгновенное переключение.
 */
@media (prefers-reduced-motion: reduce) {
    .top-banners .swiper-wrapper,
    .top-banners .swiper-slide {
        transition-duration: 0ms !important;
    }
}