.video-overlay {
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
}

.videoWrapper iframe:focus-visible {
    outline: 2px solid #005fcc; /* Fokus-Stil nur bei Tastatursteuerung */
}

.play-icon {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 10;
    justify-content: center;
    display: grid;
    align-items: center;
    color: #fff;
    opacity: .75;
    font-size: 9rem;
    transition: all .3s ease-in-out;
    cursor: pointer;
    &:focus-visible i {
        box-shadow: 0 0 0 .25rem rgba(13, 110, 253, 0.25);
    }
}

.play-icon:hover {
     font-size: 11rem;
 }
