.vn-news-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    background: #8e1818;
    padding: 5px 0;
}

.vn-news-track {
    display: inline-block;
    white-space: nowrap;
    animation: vn-scroll 120s linear infinite;
}

.vn-news-text {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    padding: 0 150px;
    line-height: 1.2;
}

@keyframes vn-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 768px) {
    .vn-news-wrapper {
        padding: 6px 0;
    }

    .vn-news-text {
        font-size: 13px;
    }
}

@media (min-width: 1200px) {
    .vn-news-text {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vn-news-track {
        animation: none;
    }
}
