/**
 * FILE: css/14-video.css
 * VERSION: 1.0
 * LAST MODIFIED: June 02, 2026
 * DESCRIPTION: Styles für das YouTube-Modul.
 */

.module-video-youtube {
    margin-bottom: var(--sync-gap);
}

.video-aspect-ratio {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Verhältnis */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 4px;
    box-shadow: 3px 3px 5px #666;
}

.video-aspect-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
