.floating-carousel-wrapper {
    width: 100%;
    max-width: 1300px;
    overflow: hidden;
    padding: 30px 0;
    margin: 0 auto;
}

.floating-carousel {
    position: relative;
    height: 100px;
    overflow: hidden;

    /* fade on left and right edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;

    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;

    display: flex;
    align-items: center;
    background: rgba(82, 83, 82, 0.089);
}

.carousel-track {
    display: flex;
    width: max-content;
    cursor: grab;
    user-select: none;
    will-change: transform;
}

.carousel-track.grabbing {
    cursor: grabbing;
}

.carousel-track img {
    height: 50px;
    margin-right: 50px;
    object-fit: contain;
    flex-shrink: 0;
    pointer-events: none; /* Prevent image drag */
}

/* Responsive ≤768px */
@media (max-width: 768px) {
    .floating-carousel {
        height: 70px;
    }
    .carousel-track img {
        height: 30px;
        margin-right: 30px;
    }
}