/* --- VSK Logo Slider Styles --- */
.vsk-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.vsk-slider-track {
    display: flex;
    animation: vsk-scroll 40s linear infinite;
}

.vsk-slider-wrapper:hover .vsk-slider-track {
    animation-play-state: paused;
}

.vsk-logo-slide {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    max-height: 70px;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.vsk-logo-slide a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.vsk-logo-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.vsk-logo-slide .vsk-logo-title {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.vsk-logo-slide a:hover img {
    transform: scale(1.1);
}
.vsk-logo-slide a:hover .vsk-logo-title {
    color: #0073aa;
}

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