/* =====================================================
   KIDS AM DÖNBERG E.V.
   JUGENDFILM – NOTEENSLAND
   ===================================================== */


/* =====================================================
   EINLEITUNG
   ===================================================== */

.youth-film-intro {
    background-color: var(--white);
}

.youth-film-text {
    max-width: 760px;
}

.youth-film-text p {
    margin: 0 0 18px;

    line-height: 1.65;
}

.youth-film-text .button {
    margin-top: 20px;
}


/* =====================================================
   VIDEO
   ===================================================== */

.video-consent {
    width: 100%;
    max-width: 900px;
    overflow: hidden;

    background-color: var(--white);

    border-radius: 24px;
}


/* Vorschaubild */

.video-consent-preview {
    overflow: hidden;

    aspect-ratio: 16 / 9;
}

.video-consent-preview img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* Datenschutzhinweis */

.video-consent-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;

    padding: 22px;
}

.video-consent-info p {
    max-width: 620px;

    margin: 0;

    line-height: 1.5;
}

.video-consent-info a {
    color: var(--blue);

    font-size: 0.85rem;
    font-weight: 700;
}

.video-consent-info a:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
}


/* Geladenes YouTube-Video */

.video-consent iframe {
    display: block;

    width: 100%;

    aspect-ratio: 16 / 9;

    border: 0;
}


/* =====================================================
   SEKTIONSHINTERGRÜNDE
   ===================================================== */

.youth-film-background {
    background-color: var(--background-beige);
}

/* =====================================================
   Desktop
   ===================================================== */
@media (min-width: 1000px) {

    .video-consent {
        max-width: 700px;
        margin-inline: auto;
    }

    .youth-film-text {
        max-width: none;
    }


}
