.sponsor-scroller {
    overflow: hidden;
    width: 100%;
    background: transparent;
}

.sponsor-track {
    display: inline-flex;
    align-items: center;
    animation: scroll-left 25s linear infinite;
    white-space: nowrap;
}

.sponsor-track:hover {
    animation-play-state: paused;
}

.sponsor-track a {
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
}

.sponsor-logo {
    height: 80px; /* Set your desired height here */
    width: auto;
    max-width: none;
    object-fit: contain;
}

@keyframes scroll-left {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}
