/* Video Embed element */

.video-embed {
    margin: var(--spacing-xl) 0;
}

.video-embed__title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.video-embed__subline {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-lg);
}

.video-embed__ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.video-embed__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
