.scrolling-logo-wrapper-489dbfc4 {
    overflow: hidden;
    width: 100%;
    display: flex;
    white-space: nowrap;
    position: relative;
}

.scrolling-logo-track-489dbfc4 {
    display: flex;
    align-items: center;
    animation: scrolling_logo_scroll_489dbfc4 20s linear infinite;
    will-change: transform;
}

.scrolling-logo-track-489dbfc4:hover {
    animation-play-state: paused;
}

.scrolling-logo-item-489dbfc4 {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box; /* Ensure padding is calculated correctly */
}

.scrolling-logo-item-489dbfc4 img {
    display: block;
    width: 100%; /* Make image take full available width of container */
    height: 100%; /* Keep aspect ratio if height constrained */
    object-fit: contain;
}

.scrolling-logo-item-489dbfc4 a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

@keyframes scrolling_logo_scroll_489dbfc4 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}