/******************************************/
/* Masthead promo swiper (главная)        */
/******************************************/

.masthead-promo {
}

.masthead-promo__swiper {
    width: 100%;
}

/* На всю ширину экрана — закрашивает поля слева/справа от центрированного .container */
.masthead-promo__slide-bleed {
    width: 100%;
    background-color: var(--masthead-promo-slide-bg, var(--primary-color));
}

.masthead-promo__slide,
.masthead-promo__media {
    background-color: var(--masthead-promo-slide-bg, var(--primary-color));
}

.masthead-promo__slide {
    position: relative;
    width: 100%;
}

.masthead-promo--desk .masthead-promo__slide {
    aspect-ratio: 16 / 9;
}

.masthead-promo--mobi .masthead-promo__slide {
    aspect-ratio: 9 / 16;
}

.masthead-promo__media {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.masthead-promo__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--masthead-promo-slide-bg, var(--primary-color));
}

.masthead-promo__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    height: auto;
    pointer-events: none;
}

.masthead-promo__content .masthead-promo__hit {
    pointer-events: auto;
}

.masthead-promo__hit {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    color: transparent;
}

.masthead-promo__hit:focus-visible {
    outline: 3px solid var(--secondary-color, #0d6efd);
    outline-offset: -3px;
}

.masthead-promo .swiper-pagination {
    bottom: 24px;
}

.masthead-promo .swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 6px;
}

.masthead-promo .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
}

@media screen and (max-width: 767px) {
    .masthead-promo .swiper-pagination {
        bottom: 8px;
    }

    .masthead-promo .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}
