.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0;
    display: flex;
}

.marquee-container {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    animation: marquee-scroll var(--animation-duration, 20s) linear infinite;
}

.marquee-item {
    display: inline-block;
}

.marquee-item a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.marquee-item a:hover {
    opacity: 0.7;
}

@keyframes marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}
