.page-hero { background: linear-gradient(135deg, var(--hijau), var(--hijau-muda)); color: white; padding: 60px 20px; text-align: center; }
.page-hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.page-hero p { opacity: 0.85; font-size: 1rem; }

.berita-layout { display: grid; grid-template-columns: 1fr 280px; gap: 32px; }
.berita-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.berita-card { border-radius: 12px; overflow: hidden; background: white; box-shadow: 0 2px 12px rgba(0,0,0,0.08); transition: transform 0.2s, box-shadow 0.2s; }
.berita-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.berita-card img { width: 100%; height: 200px; object-fit: cover; }
.berita-card .no-img { width: 100%; height: 200px; background: linear-gradient(135deg, #e8f5e9, #c8e6c9); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--hijau); }
.berita-body { padding: 16px; }
.berita-body h3 { font-size: 1rem; margin: 8px 0; line-height: 1.5; }
.berita-body h3 a { color: var(--teks); text-decoration: none; }
.berita-body h3 a:hover { color: var(--hijau); }
.berita-body .ringkasan { font-size: 0.85rem; color: #666; margin-bottom: 10px; line-height: 1.6; }
.berita-meta { font-size: 0.8rem; color: #888; display: flex; gap: 12px; }

.berita-sidebar {}
.sidebar-widget { background: white; border-radius: 12px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.sidebar-widget h4 { font-size: 0.95rem; color: var(--hijau); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid #e8f5e9; display: flex; align-items: center; gap: 8px; }
.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li a { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; color: var(--teks); text-decoration: none; font-size: 0.875rem; border-bottom: 1px solid #f0f0f0; transition: color 0.2s; }
.sidebar-widget ul li a:hover, .sidebar-widget ul li a.active { color: var(--hijau); font-weight: 600; }
.sidebar-widget ul li a span { background: #e8f5e9; color: var(--hijau); font-size: 0.75rem; padding: 2px 8px; border-radius: 20px; font-weight: 600; }

.artikel-card { background: white; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); overflow: hidden; }
.artikel-cover img { width: 100%; max-height: 400px; object-fit: cover; }
.artikel-content { padding: 32px; font-size: 1rem; line-height: 1.9; color: #333; }
.artikel-content p { margin-bottom: 16px; }

@media (max-width: 768px) {
    .berita-layout { grid-template-columns: 1fr; }
    .berita-sidebar { order: -1; }
}