/* 1. Grid-Setup (bleibt wie bei dir) */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
    justify-content: center;
    
    
}

.video-item {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 5px;
    
   
}

/* 2. Vorschaubild-Container */
.thumb-box {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px; /* Etwas weicher für den modernen Look */
}

/* 3. Das Overlay (jetzt mit OAG-Blau-Touch) */
.video-button-overlay {
    position: absolute;
    top: -40px; 
    left: -40px; 
    width: 100%; 
    height: 100%;
    display: flex;
    justify-content: flex-end; /* Horizontal nach rechts */
    align-items: flex-end;     /* Vertikal nach unten */
    background: rgba(1, 67, 133, 0.00);
    
    /* ÄNDERUNG HIER: */
    padding: 20px; /* Setzt den Abstand zu allen Seiten auf 20px */
    
    transition: background 0.3s ease;
}

/* Optional: Button im Grid etwas kleiner machen, damit er unten rechts nicht zu wuchtig wirkt */
.play-button {
    width: 60px; 
    height: 40px;
    /* ... restliches Design bleibt gleich ... */
}



/* 4. Der NEUE Glossy Play-Button für das Grid */
.play-button {
    width: 60px; /* Im Grid etwas kompakter als im Header */
    height: 30px;
    /* Der gläserne OAG-Verlauf */
    background: linear-gradient(180deg, #4da6ff 0%, #014385 100%);
    border-radius: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3), inset 0 2px 5px rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Der Glanz-Reflex im kleinen Button */
.play-button::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
}

/* Das weiße Play-Dreieck */
.play-arrow {
    width: 0; height: 0;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 3px;
    z-index: 2;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

/* 5. Hover-Effekte für das Video-Item */
.video-item:hover .video-button-overlay {
    background: rgba(1, 67, 133, 0.0); 
      widht: 400px;/* Wird beim Hover blauer */
}

.video-item:hover .play-button {
    transform: scale(1.1);
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(1, 67, 133, 0.5), inset 0 2px 5px rgba(255, 255, 255, 0.8);
  
}

.video-teaser {
    margin: 12px 0px 12px 0px;
    font-weight: bold;
    font-size: 1.1rem;
    color: #014385; /* Titel in OAG-Blau */
    text-align: center;
    background: #fff;
}


