.marquee-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 22px;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 15s linear infinite;
    font-weight: 300;
    font-family: serif;
    color: #ccc;
    font-size: 14px;
    padding-left: 100%;
}

/* Smooth 60fps GPU-accelerated scroll */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}
