/*
Theme Name: iPortal
Author: Gemini & Partner
Description: Tema berita modern dengan struktur CSS modular.
Version: 1.0.0
Text Domain: iportal
*/

/* --- 1. GLOBAL RESET --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }


/* --- 2. LOGIKA TAMPILAN (VISIBILITY) - PERBAIKAN --- */
/* Kita gunakan !important agar aturan ini menang 
   melawan 'display: flex' yang ada di header-desktop/mobile.css
*/

/* KONDISI DEFAULT (LAYAR KECIL / HP): 
   - Tampilkan Header Mobile
   - Sembunyikan Header Desktop 
*/
.d-desktop { 
    display: none !important; 
}
.d-mobile { 
    display: block !important; 
}


/* KONDISI LAYAR BESAR (LAPTOP / PC > 768px): 
   - Tampilkan Header Desktop
   - Sembunyikan Header Mobile
*/
@media (min-width: 769px) {
    .d-desktop { 
        display: block !important; 
    }
    .d-mobile { 
        display: none !important; 
    }
}