.mn-vsg {
    position: relative;
    overflow: hidden;
    width: 100%;
    --mn-vsg-columns: 2;
}

.mn-vsg--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 1.5rem;
    text-align: center;
    color: #6b7280;
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    border-radius: 8px;
}

.mn-vsg__columns {
    display: flex;
    gap: 16px;
    height: 100%;
    align-items: flex-start;
}

.mn-vsg__column {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    height: 100%;
    flex-basis: calc(100% / var(--mn-vsg-columns, 2));
    max-width: calc(100% / var(--mn-vsg-columns, 2));
}

.mn-vsg__track {
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.mn-vsg__set {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mn-vsg__item {
    display: block;
    overflow: hidden;
    line-height: 0;
    text-decoration: none;
}

.mn-vsg__item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.mn-vsg--animated .mn-vsg__track {
    animation: mn-vsg-scroll var(--mn-vsg-duration, 30s) linear infinite;
}

.mn-vsg--animated .mn-vsg__column--down .mn-vsg__track {
    animation-direction: reverse;
}

.mn-vsg--pause-hover:hover .mn-vsg__track {
    animation-play-state: paused;
}

@keyframes mn-vsg-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(0, -50%, 0);
    }
}

.mn-vsg__fade {
    --mn-vsg-fade-color: #ffffff;
    --mn-vsg-fade-size: 80px;
    position: absolute;
    left: 0;
    right: 0;
    height: var(--mn-vsg-fade-size);
    pointer-events: none;
    z-index: 2;
}

.mn-vsg__fade--top {
    top: 0;
    background: linear-gradient(
        to bottom,
        var(--mn-vsg-fade-color) 0%,
        color-mix(in srgb, var(--mn-vsg-fade-color) 60%, transparent) 45%,
        transparent 100%
    );
}

.mn-vsg__fade--bottom {
    bottom: 0;
    background: linear-gradient(
        to top,
        var(--mn-vsg-fade-color) 0%,
        color-mix(in srgb, var(--mn-vsg-fade-color) 60%, transparent) 45%,
        transparent 100%
    );
}

@media (max-width: 767px) {
    .mn-vsg--no-animate-mobile .mn-vsg__track {
        animation: none !important;
        transform: none !important;
    }

    .mn-vsg--no-animate-mobile .mn-vsg__set[aria-hidden="true"] {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mn-vsg--animated .mn-vsg__track {
        animation: none;
    }

    .mn-vsg--animated .mn-vsg__set[aria-hidden="true"] {
        display: none;
    }
}
