/* ======================================================== */
/* 1. IMPORT FONT (Plus Jakarta Sans & Space Grotesk)       */
/* ======================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background-color: #022c22; 
    color: white; 
}

/* ======================================================== */
/* 2. GLASSMORPHISM & MESH BACKGROUND (V4 DESIGN)           */
/* ======================================================== */
.glass { 
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(20px); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
}

.glass-hover:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(52, 211, 153, 0.5); 
    transform: translateY(-4px);
}

.text-glow { 
    text-shadow: 0 0 15px rgba(52, 211, 153, 0.5); 
}

.box-glow {
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.2);
}

.bg-mesh {
    background-color: #064e3b;
    background-image: 
        radial-gradient(at 50% 50%, #047857 0%, transparent 80%),
        radial-gradient(at 0% 100%, #022c22 0%, transparent 50%),
        radial-gradient(at 100% 100%, #022c22 0%, transparent 50%);
    background-attachment: fixed;
    background-size: cover;
}

/* ======================================================== */
/* 3. CUSTOM BUTTONS & ANIMATIONS                           */
/* ======================================================== */
.btn-green {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.5);
    color: #34d399;
    transition: all 0.3s ease;
}

.btn-green:hover {
    background: rgba(52, 211, 153, 1);
    color: #022c22;
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.6);
}

.dropdown-menu { display: none; }
.dropdown-wrapper:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ======================================================== */
/* 4. TYPOGRAPHY DETAIL BERITA / ARTIKEL LAMA               */
/* ======================================================== */
.prose-news p { margin-bottom: 1.5rem; line-height: 1.8; color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.prose-news h2 { font-weight: 700; color: #34d399; margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.5rem; font-family: 'Space Grotesk', sans-serif;}
.prose-news h3 { font-weight: 600; color: #a7f3d0; margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.25rem; font-family: 'Space Grotesk', sans-serif;}
.prose-news ul, .prose-news ol { padding-left: 1.5rem; margin-bottom: 1.5rem; color: rgba(255,255,255,0.7); }
.prose-news blockquote { border-left: 4px solid #34d399; padding-left: 1rem; font-style: italic; color: #a7f3d0; background: rgba(255,255,255,0.05); padding: 1rem; border-radius: 0 0.5rem 0.5rem 0; margin-bottom: 1.5rem; }
.prose-news img { border-radius: 1rem; margin-top: 1rem; margin-bottom: 1rem; }


/* ======================================================== */
/* 5. RICH TEXT FORMATTING (KONSISTEN UNTUK SEMUA DETAIL)   */
/* ======================================================== */
.rich-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem; /* Disamakan dengan detail berita */
    line-height: 1.8;
}
.rich-text p {
    margin-bottom: 1.5rem;
}
.rich-text ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.rich-text ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.rich-text li {
    margin-bottom: 0.5rem;
}
.rich-text li > p {
    margin-bottom: 0;
}
/* HEADING: Font disamakan Space Grotesk & Warna Putih Bersih */
.rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4, .rich-text h5, .rich-text h6 {
    color: #ffffff !important;
    font-family: 'Space Grotesk', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.rich-text h1 { font-size: 2rem; font-weight: 800; }
.rich-text h2 { font-size: 1.5rem; font-weight: 700; }
.rich-text h3 { font-size: 1.25rem; font-weight: 600; }

.rich-text strong, .rich-text b {
    color: #34d399; /* Teks tebal tetap pakai hijau stabilo biar kontras */
    font-weight: 700;
}
.rich-text em, .rich-text i {
    font-style: italic;
}
.rich-text a {
    color: #34d399;
    text-decoration: underline;
}
.rich-text a:hover {
    color: #10b981;
}
.rich-text blockquote {
    border-left: 4px solid #34d399;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
    font-style: italic;
    color: #a7f3d0;
}
.rich-text img {
    border-radius: 1rem;
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}