/* --- Styles speziell für die FOOH Video Seite --- */

.video-content {
    /* NEU: Verringert den Abstand nach oben drastisch (Standard war 100px) */
    padding-top: 20px; 
    
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-color);
}

.video-wrapper {
    width: 100%;
    display: flex;
    justify-content: center; 
    
    /* Schatten bleibt */
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.3)); 
}

.project-video {
    /* Fix für die Größe (aus dem vorherigen Schritt) */
    width: auto;          
    max-width: 100%;      
    height: auto;         
    max-height: 80vh;     /* Maximal 80% der Bildschirmhöhe */
    
    display: block;
    margin: 0 auto;       
    border-radius: 4px; 
}

.video-description {
    margin-top: 40px;
    text-align: center;
    max-width: 600px;
    color: var(--accent-color);
    font-size: 1.1rem;
    line-height: 1.6;
}