/*Card with image change on hover */
.card-img-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%; /* Verhältnis 16:9 */
}

.card-img-top, .alt-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.alt-image {
    opacity: 0;
}

.card:hover .alt-image {
    opacity: 1;
}

.card:hover .card-img-top {
    opacity: 0;
}

.card a:hover,
.card a:focus {
    text-decoration: none !important;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.video-container {
    margin-top: 20px;
}
