:root {
    --primary-color: #2E7D32;
    --primary-hover-color: #256228;
    --secondary-action-color: #e91e63;
    --secondary-action-hover-color: #c2185b;
    --text-dark: #343a40;
    --text-light: #f8f9fa;
    --text-muted: #6c757d;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --border-radius-md: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 0.8rem;
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 1.2rem 3rem rgba(0, 0, 0, 0.1);
    --bg-card: #ffffff;
    --page-bg-color: #f0f2f5;
}

/* === SLIDER PART === */
.single-slider.bg_cover.pt-150 {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 100px;
}

.single-slider .slider-cont h1 {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
    font-weight: 700;
    font-family: var(--font-primary);
}

.single-slider .slider-cont p {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    color: #e0e0e0;
    line-height: 1.6;
    max-width: 700px;
    margin: 1.2rem auto 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    font-family: var(--font-secondary);
}

/* === HALAMAN UTAMA "STRUKTUR ORGANISASI" === */
#org-structure-page-section {
    background-color: var(--page-bg-color);
    padding-top: 1px;
    padding-bottom: 60px;
    font-family: var(--font-primary);
}

/* === KARTU PEMBUNGKUS KONTEN === */
.content-card-wrapper {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

@media (max-width: 991.98px) {
    .content-card-wrapper {
        margin-top: -60px;
        padding: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .content-card-wrapper {
        margin-top: -40px;
        padding: 1.8rem;
        border-radius: var(--border-radius-lg);
    }
    #org-structure-page-section {
        padding-bottom: 40px;
    }
}

/* === KONTEN UTAMA "STRUKTUR ORGANISASI" DI DALAM KARTU === */
.main-content-org-structure .page-main-title {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--text-dark);
    font-size: clamp(2rem, 5vw, 2.6rem);
    margin-top: 0;
    margin-bottom: 2.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.main-content-org-structure .structure-image-container {
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #f9f9f9;
}

.main-content-org-structure .scrollable-image-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    padding: 0.5rem 0;
    -webkit-overflow-scrolling: touch;
}

.main-content-org-structure .scrollable-image-wrapper::-webkit-scrollbar {
    height: 8px;
}

.main-content-org-structure .scrollable-image-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.main-content-org-structure .scrollable-image-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* [DINONAKTIFKAN] Efek hover pada scrollbar dimatikan */
/*
.main-content-org-structure .scrollable-image-wrapper::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}
*/

.main-content-org-structure .org-structure-image {
    min-width: 1000px;
    width: auto;
    max-width: none;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.main-content-org-structure .image-source-caption {
    text-align: left;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-family: var(--font-secondary);
}

.main-content-org-structure .action-button-container {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.main-content-org-structure .btn-view-large {
    display: inline-block;
    background-color: var(--secondary-action-color);
    color: white;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    /* [DINONAKTIFKAN] transition: background-color 0.3s ease, transform 0.2s ease; */
}

/* [DINONAKTIFKAN TOTAL] Efek hover pada tombol juga dimatikan */
/*
.main-content-org-structure .btn-view-large:hover {
    background-color: var(--secondary-action-hover-color);
    transform: translateY(-2px);
}
*/

.main-content-org-structure .btn-view-large i {
    margin-right: 6px;
}


/* === SIDEBAR MODERN (Tidak ada perubahan) === */
.blog-sidebar {
    padding-left: 15px;
}

.blog-sidebar .widget {
    background-color: #f9fafb;
    padding: 1.8rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 2.2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e9ecef;
}

.blog-sidebar .widget:last-child {
    margin-bottom: 0;
}

.blog-sidebar .widget .widget-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 1.3rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.blog-sidebar .widget ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.blog-sidebar .widget ul li {
    margin-bottom: 0.8rem;
    font-family: var(--font-secondary);
    font-size: 0.88rem;
    position: relative;
}

.blog-sidebar .widget ul li:last-child {
    margin-bottom: 0;
}

.blog-sidebar .widget ul li a {
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.blog-sidebar .widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.blog-sidebar .widget ul li a:hover::before {
    content: '';
    position: absolute;
    left: -0.15rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Tambahkan atau modifikasi di dalam file CSS Anda */

/* SIDEBAR MODERN */
.blog-sidebar .widget-custom-search .custom-search-form,
.blog-sidebar .widget_search .wp-block-search__inside-wrapper {
    display: flex; /* Ini sudah benar */
    position: relative; /* Kunci untuk ikon di dalam input */
}

.blog-sidebar .widget-custom-search .custom-search-input,
.blog-sidebar .widget_search .wp-block-search__input {
    flex-grow: 1;
    width: 100%; /* Pastikan mengisi ruang */
    padding: 0.7rem 0.9rem;
    font-family: var(--font-secondary);
    font-size: 0.88rem;
    color: var(--text-dark);
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: var(--border-radius-md); /* Radius di semua sisi */
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-sidebar .widget-custom-search .custom-search-button,
.blog-sidebar .widget_search .wp-block-search__button {
    /* [MODIFIKASI] Ubah tombol menjadi ikon di dalam input */
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45px; /* Lebar area tombol */
    border: none;
    background: transparent; /* Hilangkan background tombol */
    color: var(--text-muted); /* Ubah warna ikon */
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.blog-sidebar .widget-custom-search .custom-search-button:hover,
.blog-sidebar .widget_search .wp-block-search__button:hover {
    color: var(--primary-color);
}

/* Penyesuaian agar ikon tidak tumpang tindih dengan teks */
.blog-sidebar .widget-custom-search .custom-search-input,
.blog-sidebar .widget_search .wp-block-search__input {
    padding-right: 45px; /* Beri ruang di kanan untuk tombol */
}

/* Fokus tetap sama */
.blog-sidebar .widget-custom-search .custom-search-input:focus,
.blog-sidebar .widget_search .wp-block-search__input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

@media (max-width: 991.98px) {
    .main-content-org-structure .page-main-title {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .blog-sidebar {
        margin-top: 2.5rem;
        padding-left: 0;
    }
}