.swiper-container {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.swiper-slide {
    text-align: right;
    overflow: hidden;
    margin-top: 0px !important;
    margin-bottom: 15px !important;
}

/* Desktop - Default layout: 5 per row, 2 rows */
@media (min-width: 1024px) {
    .swiper-slide {
        width: calc(100% / 5 - 10px); /* 5 slides per row */
        max-width: calc(100% / 5 - 10px);
    }
}

/* Tablet - 3 full slides per row, 4th peeking */
@media (max-width: 768px) {
    .swiper-slide {
        width: calc(100% / 3.3); /* Show 3 full slides, 4th peeking */
        max-width: calc(100% / 3.3);
    }
}

/* Mobile - 3 full slides per row, 4th peeking */
@media (max-width: 480px) {
    .swiper-slide {
        width: calc(100% / 3.3); /* Show 3 full slides, 4th peeking */
        max-width: calc(100% / 3.3);
        margin-top: 0px !important;
    }
}

/* Ensure images are positioned correctly */
.swiper-slide img {
    width: 120px !important;
    height: 90px !important;
    object-fit: cover;
    display: block;
    border-radius: 20px !important;
}

/* Title styling */
.swiper-slide h3 {
    margin-top: 5px;
    font-size: 12px;
    font-weight: bold;
    color: #333;
    text-align: left;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* My addsons */
a.swiper-slide {
    margin-top: 0px !important;
}
