.news-title {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0;
    text-align: center;
}

#news-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.news-card {
    background: var(--card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    transition: 0.3s;
}

.news-date {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.news-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.news-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
}

.news-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}