.ticker-container-72877b18 {
    overflow: hidden;
    width: 100%;
    background-color: #0d1117;
    padding: 12px 0;
    box-sizing: border-box;
}

.ticker-wrap-72877b18 {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.ticker-track-72877b18 {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker-scroll-72877b18 20s linear infinite;
    gap: 40px;
    padding-left: 40px;
}

.ticker-item-72877b18 {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    display: inline-block;
}

@keyframes ticker-scroll-72877b18 {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-25%, 0, 0);
    }
}

/* Pause scroll on hover */
.ticker-container-72877b18:hover .ticker-track-72877b18 {
    animation-play-state: paused;
}
