/* video.html — компонент секції, винесено з css/pages/video.css */

 .bz-video-scenarios {
     position: relative;
     padding: 105px 0;
     background:
             radial-gradient(circle at 18% 28%, rgba(224, 0, 31, 0.2), transparent 34%),
             radial-gradient(circle at 82% 72%, rgba(224, 0, 31, 0.12), transparent 32%),
             #020202;
     color: #fff;
     overflow: hidden;
 }

.bz-video-scenarios:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
            linear-gradient(0deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 88px 88px;
    opacity: 0.18;
    pointer-events: none;
}

.bz-video-scenarios .container {
    position: relative;
    z-index: 2;
}

.bz-video-scenarios-head {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.48fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 54px;
}

.bz-section-label {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 13px;
    color: #e0001f;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.bz-section-label:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 112px;
    height: 1px;
    background: #e0001f;
}

.bz-video-scenarios-title {
    max-width: 780px;
    font-size: clamp(34px, 4.3vw, 62px);
    line-height: 1.08;
    letter-spacing: 0.025em;
    font-weight: 400;
}

.bz-video-scenarios-title span {
    color: #e0001f;
}

.bz-video-scenarios-text {
    max-width: 470px;
    color: rgba(255,255,255,0.68);
    font-size: 16px;
    line-height: 1.7;
}

.bz-video-scenarios-slider-wrap {
    position: relative;
}

.bz-video-scenarios-slider {
    overflow: visible;
}

.bz-video-scenarios-slider .swiper-slide {
    width: 420px;
    height: auto;
}

.bz-video-scenario-card {
    position: relative;
    min-height: 520px;
    border: 1px solid rgba(255,255,255,0.13);
    background: rgba(255,255,255,0.025);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.bz-video-scenario-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 0, 31, 0.68);
    background: rgba(224, 0, 31, 0.08);
}

.bz-video-scenario-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bz-video-scenario-img:before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background:
            linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.58) 52%, rgba(0,0,0,0.96) 100%),
            linear-gradient(90deg, rgba(224,0,31,0.22), transparent 56%);
}

.bz-video-scenario-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    opacity: 0.72;
    transform: scale(1.02);
    transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
}

.bz-video-scenario-card:hover .bz-video-scenario-img img {
    transform: scale(1.08);
    opacity: 0.86;
    filter: grayscale(0.45);
}

.bz-video-scenario-content {
    position: relative;
    z-index: 3;
    min-height: 520px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bz-video-scenario-num {
    position: absolute;
    left: 28px;
    top: 28px;
    color: #e0001f;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.12em;
}

.bz-video-scenario-name {
    margin-bottom: 16px;
    color: #fff;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bz-video-scenario-desc {
    max-width: 320px;
    color: rgba(255,255,255,0.68);
    font-size: 15px;
    line-height: 1.6;
}

.bz-video-scenarios-controls {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 28px;
}

.bz-video-scenarios-prev,
.bz-video-scenarios-next {
    width: 52px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.025);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.bz-video-scenarios-prev:hover,
.bz-video-scenarios-next:hover {
    border-color: #e0001f;
    background: #e0001f;
    color: #fff;
}

@media (max-width: 991.98px) {
    .bz-video-scenarios {
        padding: 82px 0;
    }

    .bz-video-scenarios-head {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .bz-video-scenarios-text {
        max-width: 680px;
    }

    .bz-video-scenarios-slider .swiper-slide {
        width: 360px;
    }

    .bz-video-scenario-card,
    .bz-video-scenario-content {
        min-height: 460px;
    }
}

@media (max-width: 767.98px) {
    .bz-video-scenarios {
        padding: 68px 0;
    }

    .bz-video-scenarios-title {
        font-size: 34px;
    }

    .bz-video-scenarios-slider .swiper-slide {
        width: 310px;
    }

    .bz-video-scenario-card,
    .bz-video-scenario-content {
        min-height: 420px;
    }

    .bz-video-scenario-name {
        font-size: 26px;
    }

    .bz-video-scenario-content {
        padding: 24px;
    }

    .bz-video-scenario-num {
        left: 24px;
        top: 24px;
    }

    .bz-video-scenarios-controls {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .bz-video-scenarios-slider .swiper-slide {
        width: 86vw;
    }
}
