.video-wrapper {
    position: relative;
    /* padding-bottom: 56.25%; */
    height: auto;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0.5rem;
    background: #EAEAEA;
    padding: 0.75rem;
}

.video-inner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    /* aspect-ratio: 16 / 9; */
    border-radius: 0.4rem;
    overflow: hidden;
}

.video-wrapper video,
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.video-element-block {
    --darkblue: #012752;

    width: 100%;
    margin-block: 5rem;
}

.video-element-block .video-headline {
    color: var(--accentColor);
    font-size: var(--fs-h4);
    font-family: var(--font-sans);
    text-transform: uppercase;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    line-height: 1.2;
    margin-block: 0;
}

.video-element-block .video-headline::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 28' fill='none'%3E%3Cpath d='M12.2869 28C12.0771 27.9883 7.10658 27.5981 3.17377 18.783C-0.596799 10.3376 0.0269671 1.51074 0.0549387 1.13819L0.141651 0H25V8.60681H22.6392V2.47585H2.36819C2.33742 5.05437 2.56958 11.5931 5.3108 17.7328C8.58907 25.0783 12.4016 25.5241 12.438 25.53L12.2869 28Z' fill='%23DDDB00'/%3E%3C/svg%3E");
    width: 25px;
    height: 28px;
}

.video-element-block .video-subline {
    font-size: var(--fs-h3);
    font-family: var(--font-serif);
    line-height: 1.3;
    color: var(--darkblue);
}

.video-element-block .video-element-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.video-element-block .video-element-content > div {
    flex: 1 1 0;
    min-width: 100%;

    @media (width > 500px) {
        min-width: 450px;
    }
}
.video-element-block .video-element-header {
    max-width: 500px;
}