/* =======================================================
   BASE GLOBAL CSS (BERSIH & TANPA KONFLIK)
======================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { font-size: 16px; }

body {
    font-family: Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.6;
    color: #222;
    background: #f9f9f9;
}

h1, h2, h3, h4 {
    font-family: inherit;
    color: #111;
    line-height: 1.25;
}

/* =======================================================
   MOBILE GLOBAL (TANPA ADA OVERWRITE HOME LAGI)
======================================================= */

@media (max-width: 768px) {

    /* JANGAN ubah header layout disini — home.css sudah handle */

    /* Navigation (global safe style) */
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    /* Layout umum */
    .main-container {
        width: 100%;
        padding: 0 16px;
    }

    /* Sidebar tidak diangkat ke atas */
    .sidebar {
        width: 100%;
    }

    /* Grid global aman */
    .articles-grid,
    .top3-container {
        gap: 18px;
    }

    /* Footer global aman */
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}
ini tambahin di base.css

/* =====================================
   HEADER FIX — MOBILE RESPONSIVE
===================================== */
@media (max-width: 768px) {

  /* HEADER WRAPPER */
  .header {
    border-bottom: 1px solid #ddd;
  }

  .header-top {
    font-size: 11px;
    padding: 4px 0;
  }

  /* HEADER MAIN JADI 1 KOLOM */
  .header-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
  }

  .header-main .left,
  .header-main .right {
    display: none; /* cuaca & icon HILANG di mobile */
  }

  .header-main .center {
    text-align: center;
  }

  /* LOGO */
  .logo-img {
    height: 42px;
    margin-bottom: 2px;
  }

  /* TAGLINE */
  .tagline {
    font-size: 11px;
    line-height: 1.3;
    margin-top: 2px;
  }

  /* NAV */
  .nav-links {
    flex-wrap: wrap;
    gap: 10px 14px;
    padding: 8px 12px;
    font-size: 13px;
  }
}