/* --- Navigasi Tombol Kategori (Filter) --- */
.section-filters .btn-filter {
    display: inline-block;
    padding: 8px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1d4ed8;
    background-color: #ffffff;
    border: 1px solid #1d4ed8;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
    min-width: 100px;
    text-align: center;
}

/* Keadaan Aktif Berwarna Biru Solid (Sesuai Gambar) */
.section-filters .btn-filter.active, 
.section-filters .btn-filter:hover {
    background-color: #1d4ed8 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.2);
}

/* --- Pengunci Grid Horizontal --- */
.row.horizontal-news-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
}

/* --- Kartu Modul Halaman Berita --- */
.news-page-card {
    background: #ffffff;
    border-radius: 16px !important;
    overflow: hidden;
    border: 1px solid #e2e8f0 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08) !important;
}

/* Bingkai Gambar */
.card-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}

/* Judul Artikel Maksimal 2 Baris */
.news-title-text {
    font-size: 1.15rem;
    line-height: 1.4;
    color: #0f172a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.2em; /* Mengunci keselarasan tinggi text */
}

/* Deskripsi Singkat Maksimal 3 Baris */
.news-excerpt-text {
    line-height: 1.6;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Penataan Lencana Badge --- */
.category-pill-badge {
    padding: 6px 14px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    letter-spacing: 0.3px;
}

.badge-blue { background-color: #2563eb !important; color: #ffffff !important; }
.badge-green { background-color: #10b981 !important; color: #ffffff !important; }
.badge-orange { background-color: #f97316 !important; color: #ffffff !important; }

/* --- Tombol Baca Selengkapnya --- */
.btn-read-more {
    display: block;
    background-color: #1d4ed8;
    color: #ffffff !important;
    padding: 11px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    transition: background-color 0.2s;
}

.btn-read-more:hover {
    background-color: #1e40af;
}

.custom-pagination {
    gap: 8px; 
}

.custom-pagination .page-item .page-link {
    color: #1d4ed8; 
    background-color: #ffffff;
    border: 1px solid #1d4ed8;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 6px !important; 
    transition: all 0.2s ease;
}
.custom-pagination .page-item .page-link:hover {
    background-color: rgba(29, 78, 216, 0.05);
    border-color: #1e40af;
    color: #1e40af;
}

/* Keadaan Tombol Halaman Aktif (Biru Solid Penuh) */
.custom-pagination .page-item.active .page-link {
    background-color: #1d4ed8 !important;
    border-color: #1d4ed8 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(29, 78, 216, 0.25);
}

/* Keadaan Tombol Mati (Disabled jika halaman habis) */
.custom-pagination .page-item.disabled .page-link {
    color: #94a3b8;
    background-color: #f1f5f9;
    border-color: #cbd5e1;
    font-weight: 500;
    cursor: not-allowed;
}