﻿.multi-carousel .carousel-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.multi-carousel .carousel-image {
    width: 160px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #cfcfcf;
    padding: 2px;
    transition: transform 0.3s ease;
}

    .multi-carousel .carousel-image:hover {
        transform: scale(1.05);
    }

.carousel-placeholder {
    text-align: center;
    padding: 20px;
    font-size: 16px;
    color: #666;
}

.video-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
}

.video-player {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .video-player {
        height: auto;
    }
}

@media (max-width: 768px) {
    .multi-carousel .carousel-group {
        flex-wrap: wrap;
    }

    .multi-carousel .carousel-image {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .multi-carousel .carousel-image {
        width: 90%;
    }
}
