﻿.swiper-container {
    display: none;
}

.video-container {
    display: block;
}


/* Kachel-Layout für Videos */
.videos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-evenly;
    margin-top: 30px;
    max-width: 1300px;
    margin: 80px auto auto auto;
    width: 90%;
    padding-right: 10px;
}

.video-container {
    /* width: 220px; */
    width: calc(33.33% - 15px);
    max-height: 310px;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 8px;
}

    .video-container a img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
    }

        .video-container a img:hover {
            transform: scale(1.05);
        }

/* Responsives Design */
@media screen and (max-width: 1200px) {
    .video-container {
        width: calc(50% - 15px); /* 2 Videos pro Zeile */
    }
}

@media screen and (max-width: 768px) {
    .video-container {
        width: 100%; /* 1 Video pro Zeile */
    }
}
