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

        body {
            background: #fff;
            margin: 0;
            padding: 0;
        }

        .article-section {
            max-width: 1200px;
            margin: auto;
            padding: 10px 20px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: -5px;
        }

        .section-header h2 {
            font-size: 26px;
            font-weight: 700;
        }

        .lihat-semua {
            color: #0aa6a6;
            text-decoration: none;
            font-weight: 600;
        }

        .article-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;

        }

        .article-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            transition: .3s;
            margin-top: 5px;
        }

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

        .article-card:hover {
            transform: translateY(-4px);
        }

        .thumb {
            position: relative;
        }

        .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

        .badge {
            /* position: absolute;
    bottom: 12px;
    left: 12px;
    background: #2d6cdf;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 20px;
    font-weight: 600;*/
            display: none;
        }

        .badge.green {
            background: #16a085;
        }

        .badge.gray {
            background: #7f8c8d;
        }

        .article-card h3 {
            font-size: 16px;
            margin: 14px 0 8px;
            line-height: 1.4;
            font-weight: 600;
        }

        .meta {
            font-size: 13px;
            color: #777;

            font-weight: 600;
        }

        /* PAGINATION */
        .pagination {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
        }


        .pagination .numbers {
            display: flex;
            gap: 8px;
        }


        .page-btn {
            border: 1px solid #e0e0e0;
            background: #fff;
            padding: 8px 14px;
            border-radius: 6px;
            cursor: pointer;
        }

        .page-btn.active {
            background: #0aa6a6;
            color: #fff;
            border-color: #0aa6a6;
        }

        .page-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }



        /* SLIDE ANIMATION */
        .article-grid {
            position: relative;
            overflow: hidden;
        }


        /*atur kecepatan slide card blog*/
        .article-grid.slide-left {
            animation: slideLeft 1.4s ease;
        }

        .article-grid.slide-right {
            animation: slideRight 1.4s ease;
        }

        @keyframes slideLeft {
            from {
                opacity: 0;
                transform: translateX(40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideRight {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }


        /*=========================header================================*/
        /* NAVBAR */
        .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 {
            position: sticky;
            height: 56px;
            background: #1aa3d9;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
        }

        .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;
            }
        }


        @media (max-width: 768px) {

            /* GRID JADI LIST */
            .article-grid {
                display: flex;
                flex-direction: column;
                gap: 18px;
            }

            /* CARD */
            .article-card {
                display: grid;
                grid-template-columns: 90px 1fr;
                column-gap: 14px;
                row-gap: 3px;
                /* ⬅️ JARAK JUDUL & META */
                align-items: start;
            }

            /* IMAGE */
            .thumb {
                flex: 0 0 90px;
                height: 90px;
            }

            .thumb img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 12px;
            }

            /* BADGE */
            .badge {
                font-size: 10px;
                padding: 4px 8px;
                bottom: 6px;
                left: 6px;
            }

            /* TEXT WRAPPER (JUDUL + META JADI 1 BLOK) */
            .article-card h3 {
                font-size: 15px;
                line-height: 1.4;
                margin: 0 0 6px;
                font-weight: 600;
            }

            .meta {
                font-size: 12px;
                color: #777;
                margin: 0;
                font-weight: 500;
            }

            /* HILANGKAN HOVER DESKTOP */
            .article-card:hover {
                transform: none;
            }

            /* PAGINATION CENTER */
            .pagination {
                justify-content: center;
                margin-top: 18px;
            }
        }

        /* ================= MOBILE BLOG LIST ================= */

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 25px;
            }

            .lihat-semua {
                font-size: 15px;
            }
        }

        @media (max-width: 768px) {

            /* LIST */
            .article-grid {
                display: flex;
                flex-direction: column;
                gap: 16px;
            }

            /* CARD JADI GRID */
            .article-card {
                display: grid;
                grid-template-columns: 90px 1fr;
                column-gap: 14px;
                align-items: start;
            }

            /* IMAGE */
            .article-card .thumb {
                grid-row: 1 / span 2;
                width: 90px;
                height: 90px;
            }

            .article-card .thumb img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 12px;
            }

            /* HEADLINE */
            .article-card h3 {
                font-size: 14px;
                line-height: 1.4;
                margin: 0 0 4px;
                font-weight: 600;
            }

            /* SUBHEADLINE */
            .article-card .meta {
                font-size: 12px;
                margin: 0;
                color: #777;
                font-weight: 500;
            }

            /* MATIKAN EFEK DESKTOP */
            .article-card:hover {
                transform: none;
            }

            /* PAGINATION */
            .pagination {
                justify-content: center;
                margin-top: 16px;
            }
        }



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

        .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: -25px;
        }

        .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 {
                margin-top: 20px;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-col {
                margin-bottom: -30px;
            }
        }

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

            .contact li {
                justify-content: center;
            }

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

/* Loader and Helpers */
.loader-container {
    text-align: center;
    padding: 50px;
}

.loader-icon {
    font-size: 40px;
    color: #0aa6a6;
}

.loader-text {
    margin-top: 15px;
    color: #777;
}

.empty-state {
    grid-column: 1/-1;
    text-align: center;
    color: #999;
    padding: 20px;
}

.error-container {
    text-align: center;
    padding: 50px;
    color: red;
}
