
.youtubeVideo {    
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}
.videoPrivacy {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../../assets/images/video-teaser.jpg');
    background-repeat: no-repeat;
    background-size: auto 100%;
    cursor: pointer;
}
.videoPrivacy > div {    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    box-sizing: border-box;
}
.videoPrivacy .youtubeLogo {
    width: 200px;
    margin-bottom: 20px;
}
.videoPrivacy p {
    padding: 0 15px;
    margin: 15px 0 0;
}
.videoPrivacy a { color: #fff; }
.videoPrivacy a:hover { color: var(--gradient-headline-end); }
.youtubeFrame {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
}
.youtubeVideo.small .youtubeLogo {
    width: 120px;
    margin-bottom: 0;
}
.youtubeVideo.small p {
    margin-bottom: 0;
}