.modul.video_header {
    padding: 0;
}

.modul.video_header .video_header_container {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.modul.video_header .video_bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.modul.video_header .video_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 1;
}

.modul.video_header .video_controls {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 3;
    display: flex;
    gap: 6px;
}

.modul.video_header .video_header_inner {
    position: relative;
    z-index: 2;
    min-height: 300px;
    max-width: var(--wrap_w);
    margin: 0 auto;
    padding: 40px var(--wrap_padding);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modul.video_header .video_ctrl_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #fff;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
    color: #37460d;
    transition: opacity .15s ease-out;
}

.modul.video_header .video_ctrl_btn svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    display: block;
}

.modul.video_header .video_ctrl_btn:hover {
    opacity: .8;
}

.modul.video_header .video_title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    margin: 0 0 20px;
    max-width: 640px;
    line-height: 1.2;
}

.modul.video_header .video_text {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #fff;
    max-width: 640px;
    line-height: 1.6;
}

.modul.video_header .video_text p { margin: 0; }
.modul.video_header .video_text p + p { margin-top: .75em; }

.modul.video_header .video_header_container.style-box .video_controls {
    top: 40px;
}

.modul.video_header .video_header_container.style-box .video_overlay {
    display: none;
}

.modul.video_header .video_header_container.style-box .video_content_card {
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    border-top: 10px solid var(--special_color);
    padding: 28px 32px;
    align-self: flex-start;
    max-width: 560px;
}

.modul.video_header .video_header_container.style-box .video_title {
    color: #37460d;
    max-width: none;
}

.modul.video_header .video_header_container.style-box .video_text {
    color: #000;
    max-width: none;
}

@media (max-width: 800px) {
    .modul.video_header .video_header_container.style-box .video_content_card {
        max-width: 85%;
    }
}

@media (max-width: 600px) {
    .modul.video_header .video_header_container,
    .modul.video_header .video_header_inner {
        min-height: 260px;
    }

    .modul.video_header .video_title {
        font-size: 22px;
    }

    .modul.video_header .video_controls {
        top: 12px;
    }
}
