/* ============================
   WRAPPER
============================ */
.banner-berita-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    background: #4a4a4a;
    /* fallback jika gambar gagal */
}

/* ============================
   BACKGROUND
============================ */
.banner-berita-bg {
    width: 100%;
    min-height: 520px;
    padding-bottom: 180px;
    /* RUANG PANEL + FOOTER */
    background-size: cover;
    background-position: center;
    position: relative;
}

/* overlay gelap */
.banner-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .75) 0%,
            rgba(0, 0, 0, .5) 45%,
            rgba(0, 0, 0, .15) 100%);
    z-index: 1;
} 
.banner-breadcrumb {
    font-family: 'Kollektif', Arial, sans-serif;
    position: absolute;
    top: 26px;
    left: 40px;
    color: #fff;
    font-size: 13px;
    letter-spacing: .5px;
    opacity: .9;
    z-index: 2;
}

.banner-breadcrumb span {
    margin: 0 6px;
}

/* ============================
   KONTEN KIRI
============================ */
.banner-kiri {
    position: absolute;
    left: 40px;
    bottom: 55px;
    max-width: 56%;
    color: #fff;
    z-index: 2;
    padding: 60px;
}

.banner-kiri .kategori {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.banner-kiri h1 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 18px;
}

.banner-kiri .tanggal {
    font-size: 14px;
    opacity: .85;
    margin-bottom: 22px;
}

/* tombol */
.btn-baca {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 26px;
    background: #b30f12;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.btn-baca:hover {
    background: #950c0f;
}

/* slide info */
.slide-indicator {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, .6);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
}

/* ============================
   PANEL BERITA TERKAIT
============================ */
.panel-terkait {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 370px;
    background: #eef2f3;
    border-radius: 18px;
    padding: 18px;
    z-index: 3;
}

/* judul panel */
.panel-title {
    background: #b30f12;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* item */
.item-terkait {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #d9d9d9;
}

.item-terkait:last-child {
    border-bottom: none;
}

.item-terkait img {
    width: 74px;
    height: 74px;
    object-fit: cover;
    border-radius: 12px;
}

.item-terkait .tag {
    font-size: 11px;
    font-weight: 700;
    color: #666;
}

.item-terkait h4 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    margin: 4px 0 6px;
    color: #111;
}

.item-terkait small {
    font-size: 12px;
    color: #666;
}

/* ============================
   RESPONSIVE
============================ */

/* ===== Tablet ===== */
@media (max-width: 1199px) {

    .banner-berita-bg {
        padding-bottom: 80px;
    }

    .banner-kiri {
        max-width: 65%;
        bottom: 40px;
    }

    .banner-kiri h1 {
        font-size: 32px;
    }

    .panel-terkait {
        position: relative;
        top: auto;
        right: auto;
        width: calc(100% - 60px);
        margin: 40px auto 0;
    }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {

    .banner-berita-bg {
        padding-bottom: 60px;
    }

    .banner-breadcrumb {
        left: 20px;
        top: 20px;
        font-size: 12px;
    }

    .banner-kiri {
        position: relative;
        left: auto;
        bottom: auto;
        max-width: 100%;
        padding: 120px 20px 20px;
    }

    .banner-kiri h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .banner-kiri .tanggal {
        font-size: 13px;
    }

    .panel-terkait {
        width: 100%;
        border-radius: 0;
        margin: 30px 0 0;
    }

    .panel-title {
        border-radius: 20px;
        font-size: 14px;
    }

    .item-terkait img {
        width: 64px;
        height: 64px;
    }

    .item-terkait h4 {
        font-size: 13px;
    }
}

/* ===== Mobile kecil ===== */
@media (max-width: 480px) {
    .banner-kiri h1 {
        font-size: 22px;
    }

    .btn-baca {
        width: 100%;
        justify-content: center;
    }

    .slide-indicator {
        justify-content: center;
        width: 100%;
    }
}

/* ================= PIMPINAN SELECTION ================= */
.pimpinan-selection {
    padding: 40px 0;
    background: #f7f7f7;
}

.pimpinan-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* ===== KIRI ===== */
.pimpinan-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.pimpinan-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.pimpinan-content {
    padding: 26px;
}

.pimpinan-label {
    font-size: 13px;
    font-weight: 700;
    color: #a10000;
    letter-spacing: .5px;
}

.pimpinan-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 12px 0;
    line-height: 1.4;
}

.pimpinan-date {
    font-size: 14px;
    color: #777;
}

.btn-selengkapnya {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #a10000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn-selengkapnya span {
    background: rgba(255, 255, 255, .2);
    padding: 6px 9px;
    border-radius: 50%;
}

/* ===== KANAN ===== */
.pimpinan-sidebar {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.sidebar-header {
    background: #a10000;
    color: #fff;
    padding: 16px;
    text-align: center;
    font-weight: 700;
    border-radius: 0 0 18px 18px;
}

.sidebar-list {
    padding: 18px;
}

.sidebar-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
}

.sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-item img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

.sidebar-item span {
    font-size: 12px;
    font-weight: 700;
    color: #a10000;
}

.sidebar-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 4px 0;
    line-height: 1.4;
}

.sidebar-item p {
    font-size: 12px;
    color: #777;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .pimpinan-container {
        grid-template-columns: 1fr;
    }

    .pimpinan-card img {
        height: 260px;
    }
}

/* ======================
   LIST + SELECTION
====================== */

/* SECTION */
.pimpinan-selection {
    background: #fff;
    padding: 32px 0;
}

/* WRAPPER KHUSUS SECTION INI */
.pimpinan-wrapper {
    max-width: 1300px;
    margin: auto;
    padding: 0 40px;
}

/* LAYOUT 2 KOLOM */
.pimpinan-layout {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 42px;
}

/* ================= LEFT ================= */
.pimpinan-list {
    display: flex;
    flex-direction: column;
}

.news-item {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid #eaeaea;
}

.news-thumb {
    width: 120px;
    height: 120px;
    border-radius: 14px;
    object-fit: cover;
}

.news-category {
    font-size: 12px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
    display: block;
}

.news-content h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 6px;
}

.news-content p {
    font-size: 13px;
    color: #888;
    margin: 0;
}

/* ================= RIGHT ================= */
.pimpinan-filter {
    padding-top: 8px;
}

.chip-grid {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 12px 14px;
}

/* CHIP */
.chip {
    height: 38px;
    padding: 0 22px;
    border-radius: 999px;
    background: #f8eed7;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.chip.active {
    background: #d89b1c;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .pimpinan-layout {
        grid-template-columns: 1fr;
    }

    .chip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card-berita-list {
    background: #fff;
    padding: 28px;
    box-shadow: 0px -3px 8px rgb(0 0 0 / 54%);
}