.news-wrapper {
    width: 100%;
    background: var(--color-bg-card);
    padding: 5px 0 5px;
    margin-bottom: 20px;
}

.news-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.news-left {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    border-radius: 30px;
    width: 650px;
    height: 40px;
    gap: var(--space-md);
}

.news-label {
    font-weight: var(--font-weight-extrabold);
    white-space: nowrap;
    font-size: var(--font-size-btn);
    color: var(--color-text-body);
}

.news-scroll-box {
    flex: var(--z-base);
    height: 40px;
    overflow: hidden;
    position: relative;
}

.news-scroll {
    width: 100%;
    position: absolute;
    animation: scrollUp 12s infinite;
}

.news-item {
    height: 40px;
    line-height: 40px;
    font-size: var(--font-size-caption);
}

.news-item a {
    color: var(--color-text-body);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
}

.news-item a:hover {
    color: var(--color-primary);
}

.news-price {
    color: var(--color-primary);
    font-weight: var(--font-weight-extrabold);
}

@keyframes scrollUp {
    0%, 20% {
        transform: translateY(0);
    }
    25%, 45% {
        transform: translateY(-40px);
    }
    50%, 70% {
        transform: translateY(-80px);
    }
    75%, 95% {
        transform: translateY(-120px);
    }
    100% {
        transform: translateY(-160px);
    }
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-features span {
    display: flex;
    align-items: center;
    font-size: var(--font-size-caption);
    color: var(--color-text-secondary);
}

.service-features i {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 8px;
    font-style: normal;
    font-weight: bold;
    margin-right: 6px;
    height: 22px;
    color: var(--color-bg-card);
    width: 22px;
}