.news-section {
padding: 5rem 0;
background: #fff;
min-height: 60vh;
}

.news-article {
background: #f8f9fa;
padding: 2.5rem;
margin-bottom: 2rem;
border-radius: 12px;
border-left: 5px solid #0070d1;
transition: all 0.3s;
}

.news-article:hover {
box-shadow: 0 5px 20px rgba(0,112,209,0.1);
}

.news-article h2 {
color: #0070d1;
margin-bottom: 1rem;
font-size: 1.8rem;
}

.news-date {
color: #666;
font-size: 0.9rem;
margin-bottom: 1.5rem;
font-weight: 600;
}

.news-article p {
line-height: 1.8;
color: #333;
}

@media (max-width: 768px) {
.news-article {
padding: 1.5rem;
}
.news-article h2 {
font-size: 1.4rem;
}
}