.news-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: system-ui, sans-serif;
}

.news-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.news-meta {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.news-date {
    font-weight: 500;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.news-tags span {
    background-color: #e5e7eb;
    color: #374151;
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    border-radius: 0.375rem;
}

.news-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1f2937;
}

.news-content h2,
.news-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.news-content p {
    margin-bottom: 1.25rem;
}