Terdapat **kesalahan struktur** pada kode CSS yang Anda berikan sebelumnya.

Masalahnya: Blok kode `/* --- STYLES HALAMAN SINGLE (PAGE.PHP) --- */` berada **DI DALAM** (nested) blok `@media (max-width: 768px)` yang pertama. Ini menyebabkan tampilan halaman detail (seperti Analisis/Khutbah) menjadi berantakan atau tidak muncul di layar desktop karena dianggap sebagai style khusus mobile.

Berikut adalah kode CSS yang sudah saya **perbaiki**, **dirapikan**, dan dipisahkan strukturnya dengan benar. Silakan **Ganti SELURUH** isi file `style.css` Anda dengan kode di bawah ini:

```css
:root {
    --primary-green: #238e00;
    --dark-green: #1a6b00;
    --accent-red: #d00;
    --text-dark: #333;
    --bg-light: #f9f9f9;
}

body { margin: 0; font-family: 'Roboto', 'Helvetica Neue', sans-serif; color: var(--text-dark); background: #fff; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }

/* --- NAVIGATION BAR (Rapih & Dropdown) --- */
.main-navigation {
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); /* Bayangan halus */
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
}

.container {
    max-width: 1140px; margin: 0 auto; padding: 0 15px;
    display: flex; justify-content: space-between; align-items: center;
    height: 80px; /* Tinggi header sedikit diperbesar agar lega */
}

/* Logo Styling */
.menu-logo img { height: 55px; transition: 0.3s; }
.menu-logo:hover img { transform: scale(1.05); }

/* Menu Utama (Horizontal) */
.header-menu {
    display: flex; gap: 5px; list-style: none; padding: 0; margin: 0;
    align-items: center;
}

.header-menu > li {
    position: relative; /* Penting untuk positioning dropdown */
}

.header-menu > li > a {
    display: block;
    padding: 10px 18px;
    font-weight: 700; color: #333;
    font-size: 15px; text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.header-menu > li > a:hover {
    color: #d00; /* Merah sesuai request */
    background-color: #fef2f2;
}

/* Icon Panah Dropdown */
.fa-chevron-down {
    font-size: 12px; margin-left: 5px; color: #666; transition: 0.3s;
}
.header-menu > li:hover > a .fa-chevron-down {
    transform: rotate(180deg); /* Panah berputar saat hover */
    color: #d00;
}

/* --- DROPDOWN MENU (Submenu) --- */
.sub-menu {
    position: absolute;
    top: 100%; /* Muncul tepat di bawah menu induk */
    left: 0;
    background: #ffffff;
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    
    /* Animasi muncul */
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

/* Trigger Hover: Munculkan Submenu */
.header-menu > li:hover > .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}

/* Style Item Submenu */
.sub-menu li {
    position: relative;
}

.sub-menu li a {
    display: block;
    padding: 12px 25px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: 0.2s;
}

.sub-menu li a:hover {
    background-color: #f8fafc;
    color: #238e00; /* Hijau KNRP saat hover submenu */
    border-left-color: #238e00;
    padding-left: 30px; /* Efek geser sedikit */
}

/* Garis pemisah antar item submenu (opsional) */
.sub-menu li:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
}

/* Hero Section */
.hero-section { 
    height: 80vh; 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://knrpjabar.or.id/wp-content/uploads/2022/09/website-2-1.jpg');
    background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
}
.hero-content h6 { font-size: 1.5rem; margin-bottom: 10px; color: #e0e0e0; }

/* Sections */
.elementor-section { padding: 60px 0; }
.elementor-container { display: flex; flex-wrap: wrap; max-width: 1140px; margin: 0 auto; }
.elementor-col-50 { width: 50%; padding: 15px; box-sizing: border-box; }
.elementor-col-33 { width: 33.33%; padding: 15px; box-sizing: border-box; }
.elementor-col-100 { width: 100%; padding: 15px; box-sizing: border-box; }

/* Typography & Elements */
h1, h2, h3 { color: #000; line-height: 1.2; }
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; border-bottom: 3px solid var(--primary-green); display: inline-block; padding-bottom: 10px; margin-bottom: 30px; }
.elementor-button { background-color: var(--accent-red); color: #fff; padding: 12px 30px; border-radius: 5px; font-weight: bold; display: inline-block; }
.elementor-button:hover { background-color: #b00; }
.elementor-button.lg { padding: 15px 40px; font-size: 1.2rem; background-color: var(--primary-green); }
.elementor-button.lg:hover { background-color: var(--dark-green); }

.elementor-testimonial-wrapper { background: #f4f4f4; padding: 30px; border-radius: 8px; border-left: 5px solid var(--primary-green); }
.elementor-testimonial-content { font-style: italic; margin-bottom: 20px; }
.elementor-testimonial-meta { display: flex; align-items: center; gap: 15px; }
.elementor-testimonial-image img { width: 80px; height: auto; border-radius: 50%; }

.elementor-image-box { text-align: center; padding: 20px; background: #fff; border: 1px solid #eee; transition: 0.3s; }
.elementor-image-box:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.elementor-image-box img { height: 80px; margin-bottom: 15px; }
.elementor-image-box-title { font-size: 1.2rem; margin-bottom: 10px; font-weight: bold; }
.elementor-image-box-description { color: #666; font-size: 0.9rem; line-height: 1.6; }

.bg-donate { background-color: #f0f0f0; text-align: center; background-image: url('https://knrpjabar.or.id/wp-content/uploads/2022/09/4X1A0775-1-scaled.jpg'); background-size: cover; position: relative; }
.bg-donate::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(255,255,255,0.9); }
.bg-donate .elementor-container { position: relative; z-index: 1; }

.lp-posts-grid-wrapper ul li { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.lp-posts-grid-wrapper img { width: 100px; height: 100px; object-fit: cover; border-radius: 5px; }
.lp-posts-grid-wrapper h4 { margin: 0 0 5px 0; font-size: 1.1rem; }
.lp-posts-grid-wrapper h4 a:hover { color: var(--accent-red); }
.lp-posts-grid-wrapper p { font-size: 0.9rem; color: #555; margin: 0; }
.readmore { font-size: 0.8rem; color: var(--primary-green); font-weight: bold; }

.site-footer-widgets { background-color: #efefef; padding: 50px 0; }
.footer-grid { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-col { flex: 1; min-width: 250px; }
.site-footer { background-color: var(--primary-green); color: #fff; text-align: center; padding: 20px 0; }
.wp-social-link { display: inline-block; margin-right: 10px; color: #333; font-size: 1.2rem; }
.wp-social-link:hover { color: var(--accent-red); }
.joinchat { position: fixed; bottom: 20px; right: 20px; background: #25d366; color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 9999; }

/* --- RESPONSIVE UTAMA (Home & Layout) --- */
@media (max-width: 768px) {
    .elementor-col-50, .elementor-col-33 { width: 100%; }
    .container { flex-direction: column; height: auto; padding: 10px; }
    
    /* Mobile Menu Sederhana */
    .header-menu { 
        flex-direction: column; 
        width: 100%; 
        display: none; /* Disembunyikan default */
        margin-top: 15px;
    }
    /* Muncul saat hover header (Solusi sementara tanpa JS) */
    .main-navigation:hover .header-menu { display: flex; }
    
    /* Dropdown di Mobile */
    .sub-menu { 
        position: static; 
        box-shadow: none; 
        border: none; 
        padding-left: 20px; 
        width: 100%; 
        opacity: 1; 
        visibility: visible; 
        transform: none; 
        display: none;
        background: #fafafa;
    }
    .header-menu li:hover > .sub-menu { display: block; }

    h1 { font-size: 1.8rem; }
}

/* --- STYLES HALAMAN SINGLE (PAGE.PHP) --- */
/* DIPINDAHKAN KE LUAR AGAR BERJALAN DI DESKTOP & MOBILE DENGAN BENAR */

.breadcrumb { background: #f9f9f9; padding: 15px 0; border-bottom: 1px solid #eee; margin-bottom: 30px; font-size: 14px; color: #666; }
.breadcrumb ul { display: flex; list-style: none; padding: 0; margin: 0; }
.breadcrumb li { margin-right: 10px; }
.breadcrumb li a { color: var(--primary-green); text-decoration: none; }
.breadcrumb li a:hover { text-decoration: underline; }

.entry-post { max-width: 800px; margin: 0 auto; padding-bottom: 50px; }
.entry-header { text-align: center; margin-bottom: 40px; }
.entry-image { width: 100%; height: auto; border-radius: 8px; margin-bottom: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.entry-title { font-size: 2.5rem; color: #000; margin: 0 0 15px 0; line-height: 1.3; }
.entry-meta { color: #888; font-size: 14px; margin-bottom: 20px; }
.entry-content { font-size: 1.1rem; line-height: 1.8; color: #333; }
.entry-content p { margin-bottom: 20px; }
.entry-content img { max-width: 100%; height: auto; border-radius: 5px; }
.entry-content strong { color: var(--primary-green); }

.share-social { margin-top: 50px; padding-top: 20px; border-top: 1px solid #eee; display: flex; align-items: center; gap: 15px; }
.share-label { font-weight: bold; color: #333; }
.share-link { display: inline-flex; align-items: center; gap: 5px; padding: 8px 15px; border-radius: 4px; color: white; font-size: 14px; text-decoration: none; }
.share-facebook { background: #3b5998; }
.share-twitter { background: #1da1f2; }
.share-whatsapp { background: #25d366; }
.share-link:hover { opacity: 0.9; }

/* --- RESPONSIVE KHUSUS HALAMAN SINGLE --- */
@media (max-width: 768px) {
    .entry-title { font-size: 1.8rem; }
    .entry-content { font-size: 1rem; }
    .share-social { flex-wrap: wrap; }
}
```