.carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    margin: 20px auto;
    background: #fff;
    padding: 10px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 50%; /* 2 per view */
    box-sizing: border-box;
    padding: 10px;
}

.carousel-slide img {
    width: 100%;
    display: block;
}

.slide-caption {
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
    font-weight: bold;
}

.slide-caption a {
    text-decoration: none;
    color: #333;
}

.carousel-dots {
    text-align: center;
    margin-top: 10px;
}

.carousel-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: #333;
}

/* Responsive */
@media (max-width: 600px) {
    .carousel-slide {
        min-width: 100%; /* 1 per view on mobile */
    }
}
