
/* ===============================
   Video Block
   =============================== */
.video-block {
    position: relative;
		max-height: 85vh;
    width: 100%;
    margin: 0 auto;
    background-color: var(--color-background-light, #f5f5f5);
    border-radius:0;
    overflow: hidden;
    aspect-ratio: 720 / 400;
}

.video-block__player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 2;
}

.video-block__player.loaded {
    opacity: 1;
}

.video-block__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.video-block__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-block.is-loaded .video-block__poster {
    opacity: 0;
    pointer-events: none;
}

.protect-panel H3 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #444343;
    font-size: 20px;
}

.protect-panel {
    background-color: #EDEDED;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 40px;
}

.protect-panel .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.protect-panel .info-row__text {
    margin: 0;
    flex: 1;
    color: #444343;
}

.protect-panel .info-row__link {
    white-space: nowrap;
    background-color: #444343;
    color: #fff;
    padding: 13px 20px;
    border-radius: 6px;
}


@media (max-width: 768px) {
    .protect-panel .info-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .protect-panel H3 {        
        font-size: 18px;
    }

    .protect-panel .info-row__link {
        width: 100%;
        font-size: 14px;
        text-align: center;
    }

    .protect-panel .info-row__text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .video-block {
        aspect-ratio: 480/250;
    }
}

