/* ==========================================================================
   PENGATURAN DASAR & GLOBAL RESET
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

html,
body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #fcfcfc;
    background-image:
        radial-gradient(at 0% 0%, rgba(204, 229, 227, 0.4) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(220, 240, 230, 0.4) 0px, transparent 50%);
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

/* ==========================================================================
   HEADER & NAVIGASI UTAMA
   ========================================================================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: linear-gradient(to left, rgba(80, 124, 112, 0.85), rgba(225, 241, 239, 0.85));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(17, 66, 50, 0.12);
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo img {
    height: 55px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.03);
}

.navigasi-utama {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigasi-utama ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navigasi-utama a {
    font-weight: bold;
    font-size: 18px;
    color: #555;
    position: relative;
    padding: 5px 0;
    line-height: 1;
    display: inline-block;
    transition: color 0.3s ease;
}

.navigasi-utama a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #114232;
    transition: width 0.3s ease;
}

.navigasi-utama a:hover {
    color: #A86600;
}

.navigasi-utama a:hover::after {
    width: 100%;
}

.sosial-media {
    flex: 1;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.sosial-media a,
.sosial-media .sosmed-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    color: #FFF8E5;
    font-size: 1.2rem;
}

.sosial-media a:hover,
.sosial-media .sosmed-icon:hover {
    transform: scale(1.15);
}

.sosial-media a:hover .fa-facebook {
    color: #1877f2;
}

.sosial-media a:hover .fa-instagram {
    color: #e1306c;
}

.sosial-media a:hover .fa-youtube {
    color: #ff0000;
}

.sosial-media a:hover .fa-linkedin {
    color: #0077b5;
}

.tombol-menu {
    display: none;
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #114232;
}

.pilihan-bahasa {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 14px;
}

.btn-bahasa {
    border: 1px solid rgba(17, 66, 50, 0.18);
    background: rgba(255, 255, 255, 0.55);
    color: #114232;
    border-radius: 999px;
    padding: 6px 9px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-bahasa:hover {
    background: #fff8e5;
    transform: translateY(-1px);
}

/* Sembunyikan kotak asli Google Translate */
#google_translate_element,
.google-translate-box,
#google_translate_element .goog-te-gadget,
#google_translate_element .goog-te-combo,
#google_translate_element .goog-logo-link,
#google_translate_element span {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Sembunyikan banner Google Translate di atas halaman */
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
.skiptranslate iframe {
    display: none !important;
}

body {
    top: 0 !important;
}

@media (max-width: 768px) {
    .pilihan-bahasa {
        width: 100%;
        justify-content: center;
        margin: 12px 0 0;
        order: 4;
    }
}

/* ==========================================================================
   HERO UTAMA BERANDA
   ========================================================================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.hero-teks {
    flex: 1;
}

.hero-teks h4 {
    color: #114232;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-teks h1 {
    font-size: 40px;
    color: #1a1a1a;
    line-height: 1.2;
    margin-top: 0;
}

.hero-teks p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-gambar {
    flex: 1;
    background-color: #eaf4f0;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.hero-gambar img {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 300px;
    background: #ddd;
    border-radius: 10px;
    object-fit: cover;
}

.font-kaifama-hero {
    font-weight: 900;
    color: #114232;
    letter-spacing: -1px;
    line-height: 1.1;
}

/* ==========================================================================
   TOMBOL, INTERAKSI & STRUKTUR KONTEN UMUM
   ========================================================================== */
.grup-tombol {
    display: flex;
    gap: 15px;
}

.tombol {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.tombol-primer {
    background-color: #114232;
    color: #fff;
    border: none;
}

.tombol-primer:hover {
    background-color: #0a2e22;
}

.tombol-sekunder {
    background-color: #fff;
    color: #114232;
    border: 2px solid #114232;
}

.tombol-sekunder:hover {
    background-color: #f4f4f4;
}

.tombol-merah {
    background-color: #dc3545;
    color: #fff;
}

.wadah-utama {
    padding: 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.halaman-detail-berita,
.halaman-berita,
.halaman-kontak {
    background-color: #fcfcfc;
}

.judul-seksi {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    color: #114232;
    position: relative;
    padding-bottom: 15px;
    font-weight: 800;
}

.judul-seksi::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #114232;
    border-radius: 2px;
}

.judul-seksi-tanpa-margin-atas {
    margin-top: 0;
}

.wadah-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.kartu {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.kartu:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
    border-color: rgba(204, 229, 227, 0.8);
}

.wadah-grid .kartu img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: transform 0.5s ease;
}

.wadah-grid .kartu:hover img {
    transform: scale(1.03);
}

/* ==========================================================================
   JUDUL JURNAL KHUSUS BERANDA
   ========================================================================== */
.link-judul-jurnal {
    display: block;
    margin-top: 40px;
}

.judul-jurnal-spesial {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: #114232;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.judul-jurnal-spesial:hover {
    color: #f39c12;
    transition: color 0.3s ease;
}

.judul-jurnal-spesial::after {
    display: none !important;
}

/* ==========================================================================
   RESPONSIVE DASAR AWAL
   ========================================================================== */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-teks {
        order: 1;
    }

    .hero-gambar {
        order: 2;
        margin-top: 30px;
        width: 100%;
    }

    .grup-tombol {
        justify-content: center;
    }
}



@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .logo {
        flex: none;
    }

    .tombol-menu {
        display: block;
    }

    .navigasi-utama {
        display: none;
        width: 100%;
        margin-top: 15px;
        flex: none;
    }

    .navigasi-utama ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .navigasi-utama.tampil {
        display: flex;
        flex-direction: column;
    }

    .sosial-media {
        justify-content: center;
        width: 100%;
        margin-top: 15px;
        flex: none;
    }

    .hero h1 {
        font-size: 30px;
    }

    .wadah-utama {
        padding: 20px 15px;
    }

    .judul-jurnal-spesial {
        font-size: 2rem;
    }
}

/* ==========================================================================
   BERITA TERBARU BERANDA
   ========================================================================== */
.header-flex-berita {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 15px;
}

.judul-seksi-berita {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    color: #114232;
}

.link-lihat-semua {
    color: #114232;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
    margin-bottom: 5px;
}

.link-lihat-semua:hover {
    color: #f39c12;
}

.grid-berita-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.kartu-berita-baru {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.kartu-berita-baru:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: #114232;
}

.gambar-berita-baru {
    width: 100%;
    height: 110px;
    overflow: hidden;
}

.gambar-berita-baru img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kartu-berita-baru:hover .gambar-berita-baru img {
    transform: scale(1.05);
}

.konten-berita-baru {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.konten-berita-baru small {
    color: #888;
    font-size: 12px;
    margin-bottom: 8px;
}

.konten-berita-baru small i {
    color: #114232;
}

.konten-berita-baru h3 {
    font-size: 14px;
    margin: 0 0 5px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.konten-berita-baru h3 a {
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.konten-berita-baru h3 a:hover {
    color: #114232;
}

.konten-berita-baru p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   TOMBOL ARSIP / CTA KECIL
   ========================================================================== */
.wadah-tombol-arsip {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.tombol-arsip-tautan {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #114232;
    color: #114232;
    font-weight: bold;
    font-size: 15px;
    border-radius: 30px;
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.tombol-arsip-tautan:hover {
    background-color: #114232;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(17, 66, 50, 0.15);
}

/* ==========================================================================
   SEKSI LAYANAN YAYASAN
   ========================================================================== */
.seksi-layanan-penuh {
    width: 100%;
    background-color: rgba(204, 229, 227, 0.25);
    padding: 60px 0;
    border-top: 1px solid rgba(17, 66, 50, 0.05);
    border-bottom: 1px solid rgba(17, 66, 50, 0.05);
}

.wadah-layanan-dalam {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}

.grid-layanan {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.kartu-layanan {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.kartu-layanan:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(17, 66, 50, 0.08);
    border-color: #114232;
}

.ikon-layanan {
    width: 65px;
    height: 65px;
    background-color: rgba(204, 229, 227, 0.45);
    color: #114232;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px auto;
    font-size: 26px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.kartu-layanan:hover .ikon-layanan {
    background-color: #114232;
    color: #ffffff;
    transform: scale(1.05);
}

.kartu-layanan h3 {
    color: #114232;
    font-size: 1.25rem;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.kartu-layanan p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   SEKSI JURNAL BERANDA
   ========================================================================== */
.tombol-ojs {
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    border-radius: 8px;
}

.ikon-tombol-ojs {
    margin-left: 5px;
    font-size: 12px;
}
.grid-jurnal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
    margin-top: 20px;
}

.kartu-jurnal {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    padding: 35px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    border: 1px solid #4dbe60;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.kartu-jurnal:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(17, 66, 50, 0.1);
    border-color: #114232;
}

.logo-jurnal {
    height: 380px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.logo-jurnal-placeholder {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
    margin-bottom: 20px;
}

.kartu-jurnal:hover .logo-jurnal {
    transform: scale(1.05);
}

.judul-jurnal-kartu {
    margin: 0 0 15px 0;
    color: #114232;
    font-size: 1.3rem;
}

.deskripsi-jurnal {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.teks-keterangan {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    transition: all 0.3s ease;
}

.teks-keterangan.terbuka {
    display: block;
    -webkit-line-clamp: unset;
}

.tombol-readmore {
    color: #114232;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
    display: inline-block;
    margin-top: 8px;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}

.tombol-readmore:hover {
    text-decoration: underline;
}
.ikon-readmore {
    margin-left: 3px;
    font-size: 10px;
}

.halaman-jurnal {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: #fcfcfc;
}

.header-jurnal {
    text-align: center;
    margin-bottom: 20px;
}

.jurnal-kosong {
    grid-column: 1 / -1;
    text-align: center;
    color: #777;
}

/* ==========================================================================
   SPANDUK AJAKAN PRA-FOOTER
   ========================================================================== */
.cta-pra-footer {
    width: 100%;
    background: linear-gradient(135deg, #fbc531 0%, #f39c12 100%);
    padding: 50px 0;
    text-align: center;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
}

.cta-pra-footer-dalam {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*.tautan-cta {
    color: #114232;
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4);
}*/

.tautan-cta i {
    font-size: 32px;
}

.tautan-cta:hover {
    color: #0b2b21;
    transform: scale(1.05);
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.6);
}

.pemisah-cta {
    font-size: 36px;
    color: rgba(17, 66, 50, 0.3);
    font-weight: 300;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-utama {
    background: linear-gradient(135deg, #114232 0%, #08241b 100%);
    color: white;
    padding: 40px 50px 20px;
    margin-top: 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 76px;
    align-items: flex-start;
    border-bottom: 1px solid #1e6b52;
    padding-bottom: 20px;
    text-align: left;
}

.footer-kolom p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.footer-kolom h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
}

.footer-kolom ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.6;
}

.footer-kolom ul li a,
.tautan-email,
.link-footer,
.tautan-press {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.footer-kolom ul li a:hover,
.tautan-email:hover,
.link-footer:hover,
.tautan-press:hover {
    color: #f39c12;
}

.footer-bawah {
    text-align: center;
    padding-top: 20px;
    color: #aaa;
    font-size: 14px;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 3px;
    display: inline-block;
}

/* ==========================================================================
   KOMPONEN INTERAKTIF GLOBAL
   ========================================================================== */

@keyframes efek-kedip {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.kedip {
    animation: efek-kedip 1s infinite;
    display: inline-block;
}

#tombolAtas {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    border: none;
    outline: none;
    background-color: #114232;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
}

#tombolAtas:hover {
    background-color: #0b2b21;
    transform: translateY(-5px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* ==========================================================================
   RESPONSIVE HOMEPAGE & FOOTER
   ========================================================================== */
@media (max-width: 992px) {
    .grid-berita-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-grid .footer-kolom:first-child {
        grid-column: 1 / -1;
        max-width: 760px;
    }
}

@media (max-width: 768px) {
    .cta-pra-footer-dalam {
        flex-direction: column;
        gap: 20px;
    }

    .pemisah-cta {
        display: none;
    }

    .tautan-cta {
        font-size: 20px;
    }

    .tautan-cta i {
        font-size: 24px;
    }

    .wadah-layanan-dalam {
        padding: 0 15px;
    }

    .seksi-layanan-penuh {
        padding: 40px 0;
        margin: 40px 0;
    }

    .footer-grid {
        gap: 32px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 576px) {
    .grid-berita-4 {
        grid-template-columns: 1fr;
    }

    .header-flex-berita {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-grid .footer-kolom:first-child {
        grid-column: auto;
        max-width: none;
    }
}

/* ==========================================================================
   HALAMAN DETAIL BERITA
   ========================================================================== */
.wadah-arsip-berita,
.wadah-kontak {
    padding-bottom: 60px;
}

.tombol-kembali {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #114232;
    font-weight: bold;
    margin-bottom: 25px;
    transition: transform 0.2s ease;
    font-size: 16px;
}

.tombol-kembali:hover {
    transform: translateX(-5px);
}

.konten-berita {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f0f0;
}

.konten-berita h1 {
    color: #114232;
    font-size: 2.2rem;
    line-height: 1.4;
    margin-top: 10px;
    margin-bottom: 15px;
}

.meta-berita {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.meta-berita i {
    color: #114232;
    margin-right: 5px;
}

.gambar-sampul-wadah {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.gambar-sampul-wadah img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    display: block;
}

.isi-artikel {
    white-space: pre-line;
    text-align: justify;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* ==========================================================================
   HALAMAN ARSIP DAN DAFTAR BERITA
   ========================================================================== */

.kartu-arsip,
.kartu-kontak {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.kartu-arsip {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.kartu-arsip:hover,
.kartu-kontak:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(17, 66, 50, 0.08);
    border-color: #114232;
}

.gambar-kartu-wadah {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.gambar-kartu-wadah img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kartu-arsip:hover .gambar-kartu-wadah img {
    transform: scale(1.05);
}

.konten-kartu-arsip {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.konten-kartu-arsip h3 {
    color: #114232;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.meta-kartu {
    color: #888;
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
}

.meta-kartu i {
    color: #114232;
    margin-right: 5px;
}

.konten-kartu-arsip p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.link-baca {
    color: #114232;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.2s ease;
    align-self: flex-start;
}

.link-baca:hover {
    color: #0b2b21;
    text-decoration: underline;
}

/* ==========================================================================
   HALAMAN KONTAK
   ========================================================================== */

.wadah-grid-arsip,
.grid-kontak {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.kartu-kontak {
    padding: 40px 30px;
    text-align: center;
}

.ikon-kontak {
    width: 60px;
    height: 60px;
    background-color: rgba(204, 229, 227, 0.5);
    color: #114232;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 24px;
}

.kartu-kontak h3 {
    color: #114232;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.kartu-kontak p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

.tautan-kontak p {
    margin-bottom: 15px;
}

.tautan-kontak p:last-child {
    margin-bottom: 0;
}

.tautan-kontak span {
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 2px;
}

.tautan-kontak a {
    color: #114232;
    font-weight: 600;
    transition: color 0.2s ease;
}

.tautan-kontak a:hover {
    color: #0b2b21;
    text-decoration: underline;
}

/* ==========================================================================
   HALAMAN TENTANG KAMI
   ========================================================================== */
.wadah-tentang {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.tentang-hero {
    background: #fff;
    border-radius: 18px;
    padding: 36px 32px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    margin-bottom: 34px;
}

.tentang-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #114232;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tentang-judul {
    margin: 0 0 12px 0;
    font-size: 34px;
    line-height: 1.2;
    color: #114232;
}

.tentang-subjudul {
    margin: 0 0 18px 0;
    font-size: 20px;
    color: #333;
    font-weight: 700;
}

.tentang-deskripsi {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.tentang-badan-hukum {
    margin-top: 20px;
    padding: 14px 16px;
    background: #f4f7f6;
    border-left: 4px solid #114232;
    border-radius: 8px;
    color: #444;
    font-size: 15px;
}

.tentang-badan-hukum strong {
    color: #114232;
}

.tim-section {
    margin-bottom: 40px;
}

.tim-section-title {
    margin: 0 0 18px 0;
    font-size: 28px;
    color: #114232;
}

.tim-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.tim-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tim-foto-wrap {
    aspect-ratio: 1 / 1;
    background: #f1f3f2;
    overflow: hidden;
}

.tim-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tim-no-photo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    background: #f1f3f2;
}

.tim-body {
    padding: 16px 15px 18px;
}

.tim-nama {
    margin: 0 0 7px 0;
    font-size: 18px;
    color: #114232;
    line-height: 1.3;
}

.tim-jabatan {
    margin: 0 0 10px 0;
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tim-keterangan {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.tim-keterangan p {
    margin: 0 0 10px 0;
}

.tim-keterangan p:last-child {
    margin-bottom: 0;
}

.tim-keterangan ul,
.tim-keterangan ol {
    padding-left: 18px;
    margin: 0 0 10px 0;
}

.tentang-kosong {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    color: #777;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   HALAMAN LOGIN
   ========================================================================== */
body.halaman-login {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(150deg, #f8faf9 0%, #e8edea 100%);
}

body.halaman-login .login-wrapper {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 20px;
    box-sizing: border-box;
    background: transparent;
}

body.halaman-login .login-footer {
    width: 100%;
    padding: 12px 20px 18px;
    box-sizing: border-box;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
    background: transparent;
}

.login-card {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    box-sizing: border-box;
    text-align: center;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(17, 66, 50, 0.08);
    backdrop-filter: blur(10px);
}

.login-title {
    margin: 0 0 22px;
    color: #114232;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
}

body.halaman-login .login-alert-error {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 22px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #dc3545;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    font-weight: 500;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #333333;
    font-size: 14px;
    font-weight: 600;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    box-sizing: border-box;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    color: #1f2937;
    background: #ffffff;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group input:focus {
    border-color: #114232;
    outline: none;
    box-shadow: 0 0 0 4px rgba(17, 66, 50, 0.1);
}

.turnstile-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.tombol-login {
    width: 100%;
    justify-content: center;
}

.login-back {
    margin-top: 28px;
    text-align: center;
}

.login-back .back-link {
    display: inline-block;
    color: #114232;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.login-back .back-link:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    body.halaman-login .login-wrapper {
        padding: 24px 16px;
    }

    .login-card {
        padding: 30px 22px;
        border-radius: 16px;
    }

    .login-title {
        font-size: 23px;
    }
}
/* ==========================================================================
   RESPONSIVE HALAMAN KHUSUS
   ========================================================================== */
@media (max-width: 1100px) {
    .tim-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .wadah-tentang {
        padding: 24px 16px 40px;
    }

    .tentang-hero {
        padding: 26px 20px;
    }

    .tentang-judul {
        font-size: 28px;
    }

    .tentang-subjudul {
        font-size: 18px;
    }

    .tim-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .tim-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SISTEM TABEL UMUM
   ========================================================================== */
table {
    width: 100%;
    border-collapse: collapse;
}

/* ==========================================================================
   JADWAL KEGIATAN BERANDA
   ========================================================================== */
.beranda-jadwal {
    padding: 55px 20px;
    background: #f8faf9;
}

.beranda-jadwal-header {
    text-align: center;
    margin-bottom: 30px;
}

.beranda-jadwal-header h3 {
    margin: 0 0 10px 0;
    color: #114232;
    font-size: 28px;
    font-weight: 700;
    text-transform: none;
}

.jadwal-kosong {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    color: #777;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.agenda-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.agenda-item {
    position: relative;
    width: 100%;
    display: block;
    background: #ffffff;
    border: none;
    border-radius: 18px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
    box-shadow: 0 8px 20px rgba(17, 66, 50, 0.04);
}

.agenda-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(
        90deg,
        rgba(17, 66, 50, 0.22) 0%,
        rgba(17, 66, 50, 0.12) 45%,
        rgba(17, 66, 50, 0.04) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.agenda-item.active {
    box-shadow: 0 12px 30px rgba(17, 66, 50, 0.1);
}

.agenda-item.active::before {
    background: linear-gradient(
        90deg,
        rgba(17, 66, 50, 0.34) 0%,
        rgba(17, 66, 50, 0.18) 45%,
        rgba(17, 66, 50, 0.05) 100%
    );
}

.agenda-toggle {
    position: relative;
    z-index: 1;
    width: 100%;
    background: transparent;
    border: none;
    padding: 15px 28px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    box-sizing: border-box;
}

.agenda-toggle-inner {
    flex: 1;
}

.agenda-tanggal-badge {
    display: inline-block;
    padding: 7px 14px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #eef4f1;
    color: #114232;
    font-size: 13px;
    font-weight: 700;
}

.agenda-judul {
    margin: 0;
    color: #114232;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
    word-break: break-word;
}

.agenda-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    margin-left: auto;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 28px;
    line-height: 1;
    color: #114232;
    font-weight: 400;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.agenda-item.active .agenda-icon {
    transform: rotate(180deg);
}

/* Bagian ini yang membuat accordion agenda lebih smooth */
.agenda-content {
    display: block !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    padding: 0 18px;
    transition:
        max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease,
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        padding-bottom 0.35s ease;
    will-change: max-height, opacity, transform;
}

.agenda-item.active .agenda-content {
    max-height: 1200px;
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 24px;
}

.agenda-content-inner {
    border-top: 1px solid #dfe7e3;
    padding-top: 12px;
}

.agenda-content-inner p {
    margin: 0;
    color: #4b5563;
    line-height: 1.8;
    font-size: 15px;
}

@media (max-width: 768px) {
    .beranda-jadwal-header h3 {
        font-size: 24px;
    }

    .agenda-toggle {
        padding: 20px;
        gap: 14px;
    }

    .agenda-judul {
        font-size: 18px;
    }

    .agenda-icon {
        width: 32px;
        height: 32px;
        font-size: 24px;
    }

    .agenda-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .agenda-item.active .agenda-content {
        padding-bottom: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .agenda-item,
    .agenda-icon,
    .agenda-content {
        transition: none;
    }
}


/* Animasi muncul saat halaman digulir */
.elemen-tersembunyi {
    opacity: 0 !important;
    transform: translate3d(0, 18px, 0) !important;
    transition-property: opacity, transform !important;
    transition-duration: 1.05s, 1.05s !important;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.elemen-tersembunyi.elemen-muncul {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
}


/* Animasi dibuat lebih ringan untuk pengguna yang mematikan motion */
@media (prefers-reduced-motion: reduce) {
    .elemen-tersembunyi {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
/* ==========================================================================
   LAYOUT ADMIN DASAR
   ========================================================================== */
.admin-body {
    margin: 0;
    background: #f4f7f6;
}

.admin-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.admin-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    background: #f4f7f6;
}

.admin-main {
    flex: 1;
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
}

.admin-main > .admin-panel {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}

.admin-panel {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.admin-panel h2,
.admin-panel-title {
    margin-top: 0;
    color: #114232;
    font-size: 20px;
}

.admin-panel-spaced {
    margin-bottom: 30px;
}

.admin-footer {
    padding: 16px 20px;
    text-align: center;
    color: #666666;
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
}

.admin-footer small {
    font-size: 13px;
    line-height: 1.6;
}

body.halaman-login .admin-footer {
    width: 100%;
    padding: 12px 20px 18px;
    box-sizing: border-box;
    color: #6b7280;
    border-top: none;
    background: transparent;
}

.admin-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
}

.admin-hero-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.admin-hero-logout:hover {
    background: rgba(255, 255, 255, 0.24);
    color: #ffffff;
    transform: translateY(-1px);
}

.admin-hero-logout-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
}

.admin-hero-logout-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

@media (max-width: 640px) {
    .admin-hero-grid {
        grid-template-columns: 1fr;
    }

    .admin-hero-logout {
        justify-self: start;
    }
}


/* ==========================================================================
   DASHBOARD ADMIN
   ========================================================================== */
.admin-hero {
    background: linear-gradient(135deg, #114232, #1f6f50);
    padding: 30px;
    border-radius: 14px;
    color: #ffffff;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.admin-hero h1 {
    margin: 0 0 10px 0;
}

.admin-hero p {
    margin: 0;
    opacity: 0.9;
}

.admin-role {
    display: inline-block;
    margin-left: 8px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 12px;
    text-transform: uppercase;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 18px;
    margin-bottom: 25px;
}

.admin-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.admin-card-label {
    color: #777777;
    font-size: 14px;
}

.admin-card-number {
    margin-top: 8px;
    color: #114232;
    font-size: 32px;
    font-weight: 700;
}

.admin-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.admin-actions .tombol {
    text-align: center;
}

.admin-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
}

.admin-panel-footer {
    margin-top: 18px;
}

.admin-popular-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f1f1;
}

.admin-popular-url {
    color: #333333;
    word-break: break-word;
}

.admin-popular-count {
    color: #114232;
}

/* ==========================================================================
   SIDEBAR ADMIN
   ========================================================================== */
.admin-sidebar,
.admin-sidebar * {
    box-sizing: border-box;
}

.admin-sidebar {
    width: 260px;
    min-width: 260px;
    min-height: 100vh;
    padding: 25px 18px;
    background: #114232;
    color: #ffffff;
}

.admin-sidebar-title {
    display: block;
    margin: 0 0 28px 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.admin-sidebar .admin-sidebar-nav {
    display: block;
    width: 100%;
}

.admin-sidebar .admin-sidebar-nav ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-sidebar .admin-sidebar-nav li {
    display: block;
    width: 100%;
    margin: 0 0 8px 0;
    padding: 0;
}

.admin-sidebar .admin-sidebar-nav a {
    display: block;
    width: 100%;
    padding: 11px 12px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    white-space: normal;
    transition: background 0.2s ease;
}

.admin-sidebar .admin-sidebar-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.admin-sidebar .admin-sidebar-nav a.active {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.admin-sidebar-account {
    display: block;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.admin-sidebar-user {
    display: block;
    margin-bottom: 14px;
}

.admin-sidebar-name {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.admin-sidebar-role {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    text-transform: uppercase;
}

.admin-sidebar-logout {
    display: block;
    width: 100%;
    padding: 11px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffe2e2;
    font-size: 14px;
    font-weight: 600;
}

.admin-sidebar-logout:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   ADMIN ALERT
   ========================================================================== */
.admin-alert {
    padding: 10px 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    color: #ffffff;
}

.admin-alert-error {
    background: #dc3545;
}

.admin-alert-success {
    background: #198754;
}

/* ==========================================================================
   ADMIN FORM
   ========================================================================== */
.admin-toolbar {
    margin-bottom: 20px;
}

.admin-section-title {
    margin-top: 0;
    margin-bottom: 20px;
    color: #114232;
}

.admin-subsection-title {
    margin: 0 0 16px 0;
    color: #114232;
    font-size: 18px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.admin-form-full {
    grid-column: 1 / -1;
}

.admin-form-label {
    display: block;
    margin-bottom: 6px;
    color: #555555;
    font-weight: 700;
}

.admin-form-input,
.admin-form-textarea,
.admin-form-select,
.admin-form-control {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
    background: #ffffff;
    font: inherit;
}

.admin-form-textarea {
    min-height: 110px;
    resize: vertical;
}

.admin-form-control-lg {
    margin-bottom: 20px;
}

.admin-form-file,
.admin-file-input {
    margin-top: 5px;
    margin-bottom: 20px;
}

.admin-form-help {
    margin-top: -8px;
    margin-bottom: 14px;
    color: #777777;
    font-size: 13px;
}

.admin-form-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.admin-input-compact,
.admin-select-compact,
.admin-textarea-compact {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
    background: #ffffff;
    font: inherit;
}

.admin-textarea-compact {
    min-height: 70px;
    resize: vertical;
}

.admin-input-number {
    width: 90px;
}

/* ==========================================================================
   ADMIN TABLE
   ========================================================================== */
.admin-table-wrap {
    overflow-x: auto;
}

.admin-table,
.table-modern {
    width: 95%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td,
.table-modern th,
.table-modern td {
    border-bottom: 1px solid #f0f2f1;
}

.admin-table th,
.table-modern th {
    padding: 12px 20px;
    text-align: left;
    color: #555555;
    font-weight: 700;
    border-bottom: 1px solid #e8ece9;
}

.admin-table td,
.table-modern td {
    padding: 13px 20px;
    color: #222222;
}

.admin-table-date {
    width: 120px;
    color: #777777;
    white-space: nowrap;
}

.admin-table-empty {
    text-align: center;
    color: #777777;
    padding: 18px 0;
}

.admin-table-center {
    text-align: center;
    margin: 0 25px 5px 0;
}

.admin-table-muted {
    color: #777777;
    font-size: 13px;
}

.admin-table-desc {
    margin: 0 35px 5px 0;
    color: #666666;
    font-size: 13px;
}

.admin-table-link {
    color: #007bff;
    font-size: 13px;
    text-decoration: underline;
}

.admin-table-description {
    max-width: 320px;
    color: #555555;
    font-size: 13px;
    line-height: 1.5;
}

.admin-empty-text {
    color: #777777;
}

.table-modern td:last-child {
    vertical-align: middle;
}

/* ==========================================================================
   ADMIN ACTION BUTTON
   ========================================================================== */
.admin-action-group,
.admin-action-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.admin-inline-form {
    display: inline-flex;
    margin: 0;
    padding: 0;
}

.btn-edit,
.btn-hapus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font: inherit;
    line-height: 1;
    white-space: nowrap;
}

.btn-edit {
    background: #ffc107;
    color: #000000;
}

.btn-hapus {
    background: #dc3545;
    color: #ffffff;
}

.admin-button-reset {
    border: none;
    cursor: pointer;
}

.admin-service-icon-cell {
    color: #114232;
}

.admin-service-icon {
    margin-bottom: 6px;
    font-size: 20px;
}

/* ==========================================================================
   ADMIN MEDIA, PREVIEW, BADGE
   ========================================================================== */
.admin-preview-hero {
    max-width: 260px;
}

.admin-preview-group {
    margin-bottom: 20px;
}

.admin-preview-image {
    display: block;
    margin-top: 10px;
    margin-bottom: 15px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    background: #ffffff;
}

.admin-preview-thumb {
    max-width: 200px;
    margin-top: 10px;
    margin-bottom: 15px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.admin-preview-logo {
    max-width: 160px;
}

.admin-preview-favicon {
    max-width: 64px;
}

.admin-preview-text {
    color: #777777;
    margin-top: 8px;
    margin-bottom: 15px;
}

.admin-table-logo {
    max-width: 80%;
    border: 1px solid #eeeeee;
    border-radius: 5px;
}

.admin-muted {
    color: #777777;
}

.admin-muted-small {
    color: #999999;
    font-size: 12px;
}

.admin-role-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    background: #114232;
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
}

.admin-current-account {
    color: #999999;
    font-style: italic;
}

.admin-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.admin-badge-utama {
    background: #e8f4ef;
    color: #114232;
}

.admin-badge-mentor {
    background: #eef2ff;
    color: #3730a3;
}

.admin-badge-asisten {
    background: #fff4e5;
    color: #9a3412;
}

.admin-status-active {
    color: #198754;
    font-weight: 700;
}

.admin-status-inactive {
    color: #999999;
    font-style: italic;
}

.admin-team-photo {
    max-width: 70px;
    border-radius: 8px;
    border: 1px solid #dddddd;
    display: block;
}

.admin-team-photo-preview {
    display: block;
    max-width: 120px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #dddddd;
}

.admin-photo-empty {
    color: #999999;
    font-size: 13px;
}

.admin-richtext-help code {
    background: #f4f4f4;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 12px;
}

/* ==========================================================================
   RESPONSIVE ADMIN
   ========================================================================== */
@media (max-width: 1100px) {
    .admin-stats-grid {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }

    .admin-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .admin-layout {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
        min-width: 0;
        min-height: auto;
    }

    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-form-full {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .admin-main {
        padding: 20px;
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-role {
        margin-left: 0;
        margin-top: 8px;
    }

    .admin-action-group,
    .admin-action-inline {
        flex-wrap: wrap;
    }
}

.editor-toolbar {
    display: flex;
    gap: 8px;
    margin: 0 0 8px;
}

.btn-editor {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 13px;
    border: 1px solid #d5ddd9;
    border-radius: 8px;
    background: #f7faf9;
    color: #114232;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.btn-editor:hover {
    background: #eef5f2;
}

.form-help {
    display: block;
    margin: 0 0 8px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
}

.isi-artikel a {
    color: #0f6b4f;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.isi-artikel a:hover {
    color: #0b4f3a;
}