/* === NEWS STYLES === */
.news-wrapper { padding:50px 20px; background:#f5f7fa; }
.news-container { display:grid; grid-template-columns:2.5fr 1fr; gap:30px; max-width:1200px; margin:auto; }
.main-news-card { background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 10px 25px rgba(0,0,0,0.08); transition: transform 0.3s ease; }
.main-news-card:hover { transform:translateY(-5px); }
.main-news-card img { width:100%; height:320px; object-fit:cover; }
.main-news-content { padding:25px; }
.main-news-content .date { font-size:14px; color:#777; }
.main-news-content h2 { font-size:26px; margin:12px 0; color:#1b5e20; }
.main-news-content p { font-size:15px; color:#444; line-height:1.7; }
.read-btn { display:inline-block; margin-top:15px; background:#1b5e20; color:#fff; padding:10px 22px; border-radius:25px; text-decoration:none; font-weight:600; }
.news-sidebar { background:#fff; padding:20px; border-radius:12px; box-shadow:0 8px 20px rgba(0,0,0,0.08); }
.news-sidebar h3 { margin-bottom:15px; color:#0d47a1; }
.side-news-item { display:flex; gap:12px; margin-bottom:15px; border-bottom:1px solid #eee; padding-bottom:12px; cursor:pointer; transition:background 0.2s ease; }
.side-news-item:hover { background:#f0f0f0; }
.side-news-item img { width:70px; height:60px; object-fit:cover; border-radius:6px; }
.side-news-item span { font-size:12px; color:#777; }
.side-news-item a { display:block; font-size:14px; color:#222; font-weight:600; text-decoration:none; }
.side-news-item a:hover { color:#1b5e20; }
@media(max-width:900px) {
    .news-container { grid-template-columns:1fr; }
    .main-news-card img { height:220px; }
    .news-sidebar { margin-top:25px; }
}
.latest-news {
    background: #f8f9fa;
}

.section-header h2 {
    color: #1b5e20;
    font-weight: 700;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-6px);
}

.news-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-date {
    font-size: 0.85rem;
    color: #777;
}

.news-body h3 {
    margin: 10px 0;
    color: #004080;
}

.btn-read {
    margin-top: auto;
    background: #007bff;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.btn-read:hover {
    background: #0056b3;
}

.btn-all-news {
    background: #28a745;
    color: #fff;
    padding: 9px 18px;
    border-radius: 6px;
    text-decoration: none;
}

.btn-all-news:hover {
    background: #1e7e34;
}