.carousel-rc {
    position: relative;
    padding: 16px 0px;
    width: 100%;
    margin: 0px auto 12px;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

.carousel-track-rc {
    display: flex;
    width: max-content;
    transform: translateX(0);
    will-change: transform;
}

.carousel-item-rc {
    min-width: 280px;
    flex-shrink: 0;
    text-align: center;
    padding: 12px 0px;
}

.carousel-item-rc img {
    max-width: 280px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.carousel-item-rc img:hover {
    filter: grayscale(0);
}

.slider-title-rc h4 {
    margin: 0px;
    text-align: center;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
