/* ══════════════════════════════════════════
   VIDEO HERO (homepage add-on)
   Requires: hero-section.css
   ══════════════════════════════════════════ */
.video_block_wrapper {
    position: relative;
    margin-top: 56px;
    transform: scale(0.9);
}
.video_block_wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 1;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    transition: opacity 0.2s;
    z-index: 2;
}
.video_block_wrapper.is-playing::before {
    opacity: 0;
}

.video_block_video {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    display: block;
}

.video_block_play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    background-color: rgba(33, 31, 29, 0.7);
    padding: 16px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
    transition: background-color 0.2s, opacity 0.3s;
}
.video_block_play:hover {
    background-color: rgba(33, 31, 29, 0.4);
}

/* ══════════════════════════════════════════
   VIDEO HERO RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
    .video_block_wrapper { margin-top: 32px; transform: scale(1) !important; }
    .video_block_play { padding: 10px 16px; }
}
