        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: #f5f7fb;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: auto;
            padding: 0 20px;
        }

        /* ==============================HEADER  ==============================*/
        .desktop-navbar {
            position: sticky;
            top: 0;
            z-index: 9999;
            height: 72px;
            background: #1aa3d9;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 128px;
            font-family: 'Poppins', sans-serif;
        }

        /* LOGO */
        .desktop-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .desktop-logo img {
            height: 48px;
        }

        .logo-gemari {
            margin-top: 12px;
        }

        /* ===================================MENU DESKTOP=================================== */
        .desktop-menu {
            display: flex;
            gap: 28px;
            align-items: center;
        }

        .desktop-menu a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        /* ===================================DROPDOWN=================================== */
        .desktop-dropdown {
            position: relative;
        }

        .desktop-dropdown-toggle {
            cursor: pointer;
            color: #fff;
        }

        .desktop-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            min-width: 220px;
            border-radius: 6px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: 0.25s ease;
        }

        .desktop-dropdown:hover .desktop-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .desktop-dropdown-menu a {
            display: block;
            padding: 12px 16px;
            font-size: 13px;
            color: #333;
        }

        .desktop-dropdown-menu a:hover {
            background: #f1f5f9;
        }

        /* ===================================BURGER=================================== */
        .burger {
            display: none;
            font-size: 26px;
            color: #fff;
            cursor: pointer;
        }


        /* ============ MOBILE NAVBAR ============ */
        .mobile-navbar {
            height: 56px;
            background: #1aa3d9;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            position: sticky;
        }

        .logo img {
            height: 45px;
        }

        /* ===================================BURGER=================================== */
        .mobile-navbar .burger {
            width: 24px;
            height: 18px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
        }

        .mobile-navbar .burger span {
            height: 3px;
            background: #fff;
            border-radius: 2px;
        }

        /* MENU */
        .mobile-menu {
            display: none;
            background: #fff;
            border-top: 1px solid #eee;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .mobile-menu li {
            border-bottom: 1px solid #eee;
        }

        .mobile-menu a {
            display: block;
            padding: 14px 16px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
        }

        /* ===================================DROPDOWN=================================== */
        .dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 16px;
            cursor: pointer;
        }

        .dropdown-menu {
            display: none;
            background: #f9f9f9;
        }

        .dropdown-menu a {
            padding-left: 32px;
            font-size: 13px;
        }

        .dropdown.active .dropdown-menu {
            display: block;
        }

        /* DESKTOP HIDE */
        @media (min-width: 768px) {

            .mobile-navbar,
            .mobile-menu {
                display: none;
            }
        }

        /* MOBILE HIDE DESKTOP NAV */
        @media (max-width: 768px) {
            .desktop-navbar {
                display: none;
            }
        }

        /* ============================== CONTENT  ==============================*/
        .content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 15px;
            margin: 40px auto;
        }

        /* ===================================ARTICLE=================================== */
        .article {
            background: #fff;
            padding: 30px;
            border-radius: 10px;
        }

        .breadcrumb {
            font-size: 13px;
            color: #999;
            margin-bottom: 15px;
        }

        .hastag {
            color: #ffffff;
            font-weight: 500;
            background-color: #2fb9e6;
            padding: 0 10px 0 10px;
            border-radius: 20px;
            text-align: center;
        }

        .article h1 {
            font-size: 28px;
            margin-bottom: 15px;
        }

        .article-meta {
            font-size: 17px;
            color: #777;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .date {
            font-size: 14px;
            color: #333;
        }

        .article-image {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 20px;
        }



        .lead {
            font-weight: 500;
            margin-bottom: 15px;
        }

        .sumber-gambar {
            text-align: center;
        }

        .backlink {
            font-weight: 600;
            margin-bottom: 30px;
        }

        .link {
            font-weight: 600;
            text-decoration: none;
            color: #2fb9e6;
        }


        .article p {
            margin-bottom: 15px;
            line-height: 1.7;
        }

        /*=================================== AUTHOR=================================== */
        .author-box {
            display: flex;
            align-items: center;
            background: #eaf6fb;
            padding: 15px;
            border-radius: 10px;

        }

        .avatar {
            width: 50px;
            height: 50px;
            background: #ccc;
            border-radius: 50%;
            margin-right: 15px;
        }

        /* ===================================SHARE ===================================*/
        .share {
            /*margin-top: 20px;*/
        }

        .share a {
            margin-left: 10px;
            font-size: 14px;
            text-decoration: none;
            color: #1aaad9;
        }

        .headline-share {
            font-size: 20px;
            font-weight: 600;
        }

        .share img {
            margin-bottom: -7px;
        }

        /* ===================================SIDEBAR ===================================*/
        .sidebar {
            position: sticky;
            top: 10px;
            /* jarak dari header */
            align-self: start;
            flex-direction: column;
        }

        /*.promo {
  background: linear-gradient(135deg, #7be495, #00c6ff);
  padding: 20px;
  border-radius: 15px;
  color: #fff;
}

.promo-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: -15px;
}


.promo button {
  display: block;
  margin: 15px auto 0;
  padding: 10px 15px;
  border: none;
  border-radius: 20px;
  background: #ff7a00;
  color: #fff;
  cursor: pointer;

}*/

        .promo-slider {
            position: relative;
            background: linear-gradient(135deg, #7be495, #00c6ff);
            border-radius: 15px;
            padding: 15px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .promo-slide {
            display: none;
            text-align: center;
        }

        .promo-slide.active {
            display: block;
        }

        .promo-image {
            width: 100%;
            border-radius: 10px;
        }

        .promo-button {
            display: block;
            margin: 5px auto 0;
            padding: 10px 15px;
            border: none;
            border-radius: 20px;
            background: #ff7a00;
            color: #fff;
            cursor: pointer;
        }

        .link-promo {
            text-decoration: none;
        }


        /* NAV BUTTON */
        .promo-slider .nav {
            position: absolute;
            top: 80%;
            transform: translateY(-30%);
            background: rgba(0, 0, 0, 0.35);
            border: none;
            color: #fff;
            font-size: 15px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
        }

        .promo-slider .prev {
            left: 30px;
        }

        .promo-slider .next {
            right: 30px;
        }

        .promo-slider .nav:hover {
            background: rgba(0, 0, 0, 0.55);
        }


        .widget {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
        }

        .widget h4 {
            margin-bottom: 15px;
            font-size: 23px;
        }

        .post {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .headline-artikel {
            font-size: 13px;
            font-weight: 600;
        }

        .link-artikel {
            text-decoration: none;
            color: #333;
            line-height: 1.1;
        }

        .post img {
            border-radius: 5px;
            width: 150px;
            height: 80px;
        }

        /* -FOOTER */
        .footer {
            background: linear-gradient(180deg, #0b2a45, #081f33);
            color: #ffffff;
            font-family: Arial, sans-serif;
        }

        .footer-container {
            max-width: 1200px;
            margin: auto;
            padding: 60px 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .footer-col h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .footer-col p {
            font-size: 14px;
            line-height: 1.7;
            color: #d1d9e0;
        }

        .footer-logo {
            width: 120px;
            margin-bottom: 15px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 4px;
            font-size: 14px;
        }

        .footer-col ul li a {
            color: #d1d9e0;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: #ffd55e;
        }

        .contact li {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact i {
            font-size: 16px;
            color: #ffffff;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icons a {
            width: 38px;
            height: 38px;
            background: #ffffff;
            color: #081f33;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
            font-size: 16px;
            text-decoration: none;
        }

        .social-icons a:hover {
            background: #1da1f2;
            color: #ffffff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            padding: 15px 10px;
            font-size: 13px;
            color: #cfd8df;
        }

        /* =====================
   RESPONSIVE
===================== */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }


        }

        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .contact li {
                justify-content: center;
            }

            .social-icons {
                justify-content: center;
            }
        }


        /* ================= MOBILE & TABLET CONTENT ================= */
        /* ================= MOBILE & TABLET FINAL FIX ================= */
        @media (max-width: 1024px) {

            /* Layout jadi satu kolom */
            .content {
                display: flex;
                flex-direction: column;
                gap: 20px;
                margin-top: 20px;
            }

            /* Nonaktifkan sticky */
            .sidebar {
                position: static;
                display: contents;
                /* PENTING */
            }

            /* PROMO DI ATAS */
            .promo-slider {
                order: 1;
            }

            /* ISI ARTIKEL DI TENGAH */
            .article {
                order: 2;
                padding: 20px;
            }

            /* ARTIKEL TERBARU DI BAWAH */
            .widget.latest-post {
                order: 3;
                padding: 16px;
            }
        }




        /* =====================================================
   MOBILE & TABLET RESPONSIVE CONTENT
   (TANPA UBAH NAVBAR)
===================================================== */

        /* ================= TABLET & MOBILE ================= */
        @media (max-width: 1024px) {

            /* Layout utama jadi 1 kolom */
            .content {
                display: flex;
                flex-direction: column;
                gap: 20px;
                margin-top: 20px;
            }

            /* ===== PROMO ===== */
            .promo-slider {
                order: 1;
                padding: 12px;
                border-radius: 12px;
            }

            .promo-image {
                border-radius: 8px;
            }

            .promo-button {
                padding: 8px 14px;
                font-size: 13px;
            }

            /* ===== ARTIKEL ===== */
            .article {
                order: 2;
                padding: 20px;
                border-radius: 12px;
            }

            .article h1 {
                font-size: 22px;
                line-height: 1.4;
            }

            .article-meta {
                font-size: 14px;
            }

            .article p {
                font-size: 14px;
                line-height: 1.7;
            }

            .article-image {
                margin: 15px 0;
                border-radius: 8px;
            }

            /* ===== ARTIKEL TERBARU ===== */
            .widget.latest-post,
            .widget {
                order: 3;
                padding: 15px;
            }

            .widget h4 {
                font-size: 18px;
            }

            .post {
                gap: 12px;
            }

            .post img {
                width: 110px;
                height: 70px;
                object-fit: cover;
            }

            .headline-artikel {
                font-size: 13px;
                line-height: 1.4;
            }
        }

        /* ================= MOBILE ONLY ================= */
        @media (max-width: 600px) {

            /* Container lebih rapat */
            .container {
                padding: 0 14px;
            }

            /* ===== PROMO ===== */
            .promo-slider {
                padding: 10px;
            }

            .promo-slider .nav {
                width: 26px;
                height: 26px;
                font-size: 13px;
                top: 78%;
            }

            .promo-slider .prev {
                left: 10px;
            }

            .promo-slider .next {
                right: 10px;
            }

            /* ===== ARTIKEL ===== */
            .article {
                padding: 16px;
            }

            .breadcrumb {
                font-size: 11px;
            }

            .hastag {
                font-size: 11px;
                padding: 2px 8px;
            }

            .article h1 {
                font-size: 20px;
            }

            .article-meta {
                font-size: 13px;
            }

            .lead {
                font-size: 14px;
            }

            .article p {
                font-size: 14px;
            }

            /* ===== SHARE ===== */
            .headline-share {
                font-size: 16px;
            }

            .share img {
                width: 26px;
                height: 26px;
            }

            /* ===== ARTIKEL TERBARU (LEBIH RINGKAS) ===== */
            .widget {
                padding: 12px;
            }

            .widget h4 {
                font-size: 17px;
                margin-bottom: 12px;
            }

            .post {
                align-items: center;
                margin-bottom: 14px;
            }

            .post img {
                width: 90px;
                height: 60px;
            }

            .headline-artikel {
                font-size: 12.5px;
            }

            /* Sidebar stop sticky di mobile */
            .sidebar {
                position: static;
            }
        }

/* Content Preview Styles */
.preview-alert {
    margin-bottom: 0;
    border-radius: 0;
}

.article-img-responsive {
    width: 100% !important;
}

.article-thumbnail-preview {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    max-height: 400px;
    object-fit: cover;
}

.article-meta-preview {
    margin-bottom: 15px;
    color: #777;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.category-badge {
    background: rgba(0, 123, 159, 0.1);
    color: #007b9f;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.excerpt-box {
    background: #f5f5f5;
    padding: 15px;
    border-left: 4px solid #007b9f;
    margin-bottom: 20px;
    border-radius: 5px;
}

.excerpt-text {
    margin: 0;
    font-style: italic;
    color: #555;
}

.content-body {
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.recent-post-flex {
    display: flex;
}
