.eduhub-partner-slider {
    width: 70vw;
    margin-left: calc(50% - 35vw);
    margin-right: calc(50% - 35vw);
    overflow: hidden;
    padding: 20px 0;
}

.eduhub-partner-track {
    display: flex;
    width: max-content;
    animation: eduhubPartnerLoop 45s linear infinite;
    opacity: 0;
}

.eduhub-partner-track.is-ready {
    opacity: 1;
    transition: opacity .3s ease;
}

.eduhub-partner-slider:hover .eduhub-partner-track {
    animation-play-state: paused;
}

.eduhub-partner {
    width: 180px;
    height: 100px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
}

.eduhub-partner img {
    max-width: 160px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform .25s ease;
}

.eduhub-partner:hover img {
    transform: scale(1.08);
}

@keyframes eduhubPartnerLoop {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}