.page_text{
    margin-bottom: 120px;
}
h1{
    margin-bottom: 56px;
}


.foto-list__sld {
    position: relative;
    overflow: hidden;
}

.video-list__sld {
    position: relative;
    overflow: hidden;
}
.video-list__row{
    position: relative;
}




.video {
    position: relative;
    max-width: 800px;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 0 15px 0 rgba(9, 54, 7, 0.12);
}
.video__preview {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.video__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--text-ffffff);
    background-image: url("img/video_play.svg");
    background-repeat: no-repeat;
    background-position: 50%;
    border: none;
    color: white;
    font-size: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    cursor: pointer;
}
.video__fullscreen-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: var(--text-ffffff);
    background-image: url("img/video_full.svg");
    background-repeat: no-repeat;
    background-position: 50%;
    border: none;
    color: white;
    font-size: 20px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    border-radius: 2px;
}
.video--playing{
    width: 100%;
}
.video--playing .video__preview,
.video--playing .video__play-btn,
.video--playing .video__fullscreen-btn {
    display: none;
}
.video iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

/* Модальное окно */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
}

.video-modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 80%;
    max-width: 1000px;
    background: #000;
}

.video-modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: #fff;
    border: none;
    font-size: 24px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 10001;
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Адаптивность */
@media (max-width: 768px) {
    .video-modal__content {
        width: 95%;
        height: 60%;
    }

    .video__play-btn {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }

    .video__fullscreen-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}