.news-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-surface);
    overflow: hidden;
}

.news-ticker {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: var(--spacing-md) 0;
}

.news-track {
    display: flex;
    gap: var(--spacing-xl);
    white-space: nowrap;
    will-change: transform;
}

.news-item {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    background: var(--color-background);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
    overflow: hidden;
    position: relative;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-item a {
    display: block;
    text-decoration: none;
    color: var(--color-text-primary);
    height: 100%;
    width: 100%;
}

.news-content {
    padding: var(--spacing-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-image {
    margin: -var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    height: 140px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    max-height: none;
}

.news-item.has-image .news-title {
    -webkit-line-clamp: 2;
}

.news-meta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.news-author {
    color: var(--color-primary);
    font-weight: 500;
}

.news-date {
    color: var(--color-text-muted);
}

.news-source {
    color: var(--color-accent);
    font-weight: 500;
}

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

/* Responsive */
@media (max-width: 768px) {
    .news-item {
        width: 260px;
        height: 260px;
    }

    .news-image {
        height: 120px;
    }

    .news-content {
        padding: var(--spacing-sm);
    }

    .news-title {
        font-size: 1rem;
        margin-bottom: var(--spacing-sm);
        -webkit-line-clamp: 3;
    }

    .news-meta {
        font-size: 0.8rem;
    }
}