.logo-ticker-container {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    padding: 30px 0;
    position: relative;
    box-sizing: border-box;
}

.logo-ticker {
    display: flex;
    align-items: center;
    animation: scroll linear infinite;
    width: fit-content;
    gap: 0;
}

.logo-ticker-container[data-pause="1"] .logo-ticker:hover {
    animation-play-state: paused;
}

.logo-ticker-item {
    flex-shrink: 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    box-sizing: border-box;
}

/* Ensure first and last items have consistent spacing */
.logo-ticker-item:first-child {
    padding-left: 40px;
}

.logo-ticker-item:last-child {
    padding-right: 40px;
}

.logo-ticker-item img {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-ticker-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.logo-ticker-item a {
    display: block;
    line-height: 0;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-ticker-item {
        padding: 0 25px;
        height: 60px;
    }
    
    .logo-ticker-item img {
        max-height: 45px;
        max-width: 120px;
    }
}
