.video-section {
    /* margin-top: 60px;
    margin-bottom: 60px; */
}

.video-section__title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.video-block {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-preview {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 41.25%; /* 16:9 соотношение сторон */
    background: #000;
    cursor: pointer;
}

.video-preview__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-logo {
    background-image: url("/local/templates/ozera/assets/images/new-main-page/video-logo.svg");
    width: 578px;
    height: 440px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-image: url("/local/templates/ozera/assets/images/new-main-page/video-btn.svg");
    background-position: center;
    background-repeat: no-repeat;
    /* background: rgba(255, 75, 75, 0.9); */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-btn:hover {
    /* background: #ff4b4b; */
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
    width: 40px;
    height: 40px;
    fill: white;
    margin-left: 5px;
}

.video-player {
    position: relative;
    width: 100%;
    background: #000;
}

.video-element {
    width: 100%;
    display: block;
}
@media (max-width: 420px){
    .video-logo {
    background-image: url(/local/templates/ozera/assets/images/new-main-page/video-logo.svg);
    width: 257px;
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-image: url(/local/templates/ozera/assets/images/new-main-page/video-btn.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    /* background: rgba(255, 75, 75, 0.9); */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
  }
  .video-preview {
    position: relative;
    width: 100%;
    height: 320px;
    padding-bottom: 41.25%; /* 16:9 соотношение сторон */
    background: #000;
    cursor: pointer;
  }
}