
    /* --- NECTAR NEWS DESIGN STYLE --- */
    :root {
        --primary: #284469;
        --primary-deep: #1e3554;
        --accent: #FEC763;
        --accent-light: #e8c95a;
        --academic-cream: #fcfbf9;
        --academic-border: #e2dfd5;
        --text-main: #284469;
        --text-dark: #1e3554;
        --white: #ffffff;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { background-color: #f4f3ef; color: var(--text-main); font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; }

    /* NAVBAR GLASSMORPHISM */
    nav {
      background-color: #284469;
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      color: var(--white); padding: 0 5%; height: 75px;
      display: flex; justify-content: space-between; align-items: center;
      position: fixed; width: 100%; top: 0; z-index: 1000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-brand { display: flex; align-items: center; gap: 14px; }
    .nav-logo { height: 64px; width: 64px; object-fit: contain; border-radius: 50%; border: 1.5px solid var(--accent); }
    .brand-text h1 { font-family: 'Montserrat', serif; font-size: 1.35rem; font-weight: 700; letter-spacing: 0.5px; color: var(--white); }
    .brand-text p { font-size: 0.72rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
    .nav-links { display: flex; list-style: none; gap: 24px; align-items: center; }
    .nav-links a { color: #f1f5f9; text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover { color: var(--accent); }
    .nav-btn { background: transparent; border: 1px solid var(--accent) !important; color: var(--accent) !important; padding: 6px 16px; border-radius: 4px; font-weight: 600; }
    .nav-btn:hover { background: var(--accent); color: var(--primary) !important; }
    
    /* HAMBURGER */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 22px; height: 2px; background: white; }
    /* --- CONTAINER SINGLE COLUMN FEED --- */
    .container { max-width: 850px; margin: 120px auto 60px; padding: 0 20px; }

    /* --- EDITORIAL HEADER --- */
    .academic-editorial-header { text-align: center; margin-bottom: 50px; }
    .academic-editorial-header h2 { font-family: 'Montserrat', serif; color: var(--primary); font-size: 2.8rem; font-weight: 700; margin-bottom: 5px; }
    .editorial-subtitle { font-size: 0.85rem; color: #475569; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
    .editorial-double-line { margin: 15px auto; width: 120px; }
    .line-thick { height: 3px; background-color: var(--primary); width: 100%; margin-bottom: 3px; }
    .line-thin { height: 1px; background-color: var(--accent); width: 100%; }

    /* --- ADMIN FORM --- */
    .post-form { background: var(--white); border: 1px solid var(--academic-border); padding: 30px; border-radius: 8px; margin-bottom: 40px; display: none; box-shadow: 0 4px 20px rgba(0,0,0,0.03); border-top: 4px solid var(--primary); }
    .post-form input, .post-form textarea { width: 100%; padding: 14px; margin-top: 12px; border: 1px solid var(--academic-border); border-radius: 5px; font-family: 'Inter', sans-serif; font-size: 0.95rem; background: #fafaf9; }
    .post-form input:focus, .post-form textarea:focus { outline: none; border-color: var(--accent); background: var(--white); }
    .btn-publish { background: var(--primary); color: white; border: none; padding: 14px 25px; border-radius: 5px; font-weight: 700; cursor: pointer; margin-top: 15px; width: 100%; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
    .btn-publish:hover { background: var(--accent); color: var(--primary); }

    /* --- THE MODERN CARD LIST LAYOUT --- */
    .news-feed-stack {
        display: flex;
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }

    .modern-news-card {
        background: var(--white);
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 33, 71, 0.05);
        border: 1px solid var(--academic-border);
        overflow: hidden;
        width: 100%;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .modern-news-card:hover {
        box-shadow: 0 10px 30px rgba(0, 33, 71, 0.1);
        transform: translateY(-3px);
    }
    
    .news-cover-img {
        width: 100%;
        max-height: 380px;
        object-fit: cover;
        border-bottom: 4px solid var(--accent);
        display: block;
    }
    
    .news-card-body {
        padding: 35px 40px;
    }
    
    .news-badge {
        display: inline-block;
        background: rgba(197, 160, 33, 0.12);
        color: #b08b17;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
        border: 1px solid rgba(197, 160, 33, 0.2);
    }
    
    .news-card-title {
        font-family: 'Montserrat', serif;
        color: var(--primary);
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 18px;
        font-weight: 700;
    }
    
    .news-meta-flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--academic-border);
      margin-bottom: 25px;
      color: #64748b;
      font-size: 0.9rem;
    }
    
    .author-box { display: flex; align-items: center; gap: 12px; }
    
    .author-avatar-modern {
        width: 38px;
        height: 38px;
        background: var(--primary);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1rem;
    }
    
    .news-card-content {
        font-size: 1.05rem;
        line-height: 1.8;
        color: var(--text-main);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .news-card-content p { margin-bottom: 16px; text-align: justify; }
    .news-card-content h3 { color: var(--primary); margin: 30px 0 15px; font-family: 'Montserrat', serif; font-size: 1.5rem; border-left: 4px solid var(--accent); padding-left: 12px; }
    .news-card-content h4 { color: var(--text-dark); margin: 25px 0 10px; font-size: 1.15rem; font-weight: 600; }
    .news-card-content ul, .news-card-content ol { margin-left: 25px; margin-bottom: 20px; }
    .news-card-content li { margin-bottom: 8px; }
    
    /* --- PERBAIKAN TOMBOL ADMIN AGAR PROPORSIONAL --- */
    .modern-admin-controls {
        margin-top: 25px; 
        padding-top: 20px;
        padding-bottom: 5px; 
        border-top: 1px dashed var(--academic-border);
        display: flex;
        justify-content: flex-end;
        align-items: center; 
        gap: 15px; 
        flex-wrap: wrap; 
    }

    .btn-edit-modern { 
        background: var(--accent); 
        color: var(--primary); 
        font-weight: 700; 
        padding: 10px 20px; 
        border: none; 
        border-radius: 6px; 
        cursor: pointer; 
        font-size: 0.9rem; 
        transition: 0.2s; 
        display: flex;
        align-items: center;
        gap: 8px; 
    }
    
    .btn-delete-modern { 
        background: #fee2e2; 
        color: #dc2626; 
        border: 1px solid #f87171; 
        padding: 10px 20px; 
        border-radius: 6px; 
        font-size: 0.9rem; 
        font-weight: 700; 
        cursor: pointer; 
        transition: 0.2s;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .btn-edit-modern:hover { opacity: 0.8; transform: translateY(-1px); }
    .btn-delete-modern:hover { background: #dc2626; color: white; transform: translateY(-1px); }

    @media (max-width: 768px) { 
        .nav-links { display: none; } 
        .academic-editorial-header h2 { font-size: 2rem; } 
        .news-card-body { padding: 25px 20px; }
        .news-card-title { font-size: 1.5rem; }
    }
    
    /* ================= MOBILE BOTTOM NAVIGATION CSS ================= */
    .mobile-bottom-nav {
        display: none; /* Disembunyikan di layar besar (PC/Laptop) */
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 -4px 20px rgba(0, 33, 71, 0.08);
        z-index: 9999;
        justify-content: space-around;
        padding: 12px 0 15px 0;
        border-top: 1px solid #e2e8f0;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #64748b;
        font-size: 0.7rem;
        font-weight: 600;
        gap: 6px;
        transition: all 0.3s ease;
    }
    
    .mobile-bottom-nav .nav-item i {
        font-size: 1.3rem;
        transition: transform 0.2s ease;
    }
    
    /* Status saat disentuh atau sedang berada di halaman tersebut */
    .mobile-bottom-nav .nav-item.active,
    .mobile-bottom-nav .nav-item:hover {
        color: var(--primary, #002147);
    }
    
    .mobile-bottom-nav .nav-item.active i {
        color: var(--accent, #FEC763);
        transform: scale(1.15);
    }
    
    /* --- QUILL EDITOR IMAGE FIX --- */
    .ql-editor img {
        max-width: 100%;
        height: auto;
        border-radius: 6px; /* Memberikan sudut manis pada screenshot */
        cursor: pointer; /* Memberikan efek bisa diklik */
    }
    
    /* Tampilkan HANYA saat layar seukuran HP (Maksimal 768px) */
    @media (max-width: 768px) {
        .mobile-bottom-nav {
            display: flex;
        }
        
        /* Tambahkan ruang di bawah body agar berita tidak tertutup menu */
        body {
            padding-bottom: 75px !important; 
        }
    }
    /* ================================================================= */
