        body {
            background: #f0f9ff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
        }

        .glass-panel {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }

        .text-gradient {
            background: linear-gradient(135deg, #0284C7, #D97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-gradient {
            background: linear-gradient(145deg, #0B1528 0%, #1a2a4a 60%, #0B1528 100%);
        }

        .shape-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.12;
            pointer-events: none;
        }

        .mobile-menu-hidden {
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
        }

        .mobile-menu-visible {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 {
            transition-delay: 0.05s;
        }

        .delay-2 {
            transition-delay: 0.1s;
        }

        .delay-3 {
            transition-delay: 0.15s;
        }

        .delay-4 {
            transition-delay: 0.2s;
        }

        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: #e0f2fe;
        }

        ::-webkit-scrollbar-thumb {
            background: #38bdf8;
            border-radius: 8px;
        }

        /* Card Berita */
        .card-berita {
            background: #ffffff;
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            transition: all 0.35s ease;
            box-shadow: 0 4px 20px -6px rgba(0, 0, 0, 0.04);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .card-berita:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 30px -10px rgba(2, 132, 199, 0.15);
            border-color: #38BDF8;
        }

        .card-berita .thumb {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/10;
            background: #e2e8f0;
        }

        .card-berita .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .card-berita:hover .thumb img {
            transform: scale(1.05);
        }

        .card-berita .category-badge {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
            padding: 0.2rem 0.8rem;
            border-radius: 999px;
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            color: white;
            backdrop-filter: blur(4px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .card-berita .content {
            padding: 1rem 1.25rem 1.25rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-berita .title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #0F172A;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 0.35rem;
        }

        .card-berita .excerpt {
            font-size: 0.8rem;
            color: #64748B;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }

        .card-berita .meta {
            font-size: 0.65rem;
            color: #94A3B8;
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 0.75rem;
            padding-top: 0.75rem;
            border-top: 1px solid #f1f5f9;
        }

        .card-berita .meta i {
            margin-right: 0.2rem;
            width: 0.9rem;
            text-align: center;
        }

        /* Featured card */
        .card-featured {
            background: #ffffff;
            border-radius: 1.5rem;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            transition: all 0.4s ease;
            box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.08);
        }

        .card-featured:hover {
            transform: translateY(-4px);
            box-shadow: 0 30px 60px -20px rgba(2, 132, 199, 0.2);
        }

        .card-featured .thumb {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/9;
            background: #e2e8f0;
        }

        .card-featured .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .card-featured:hover .thumb img {
            transform: scale(1.03);
        }

        .card-featured .category-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            padding: 0.3rem 1rem;
            border-radius: 999px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(8px);
            color: #0284C7;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        }

        .card-featured .content {
            padding: 1.5rem 2rem 2rem;
        }

        .card-featured .title {
            font-size: 1.4rem;
            font-weight: 800;
            color: #0F172A;
            line-height: 1.25;
            margin-bottom: 0.5rem;
        }

        .card-featured .excerpt {
            font-size: 0.95rem;
            color: #475569;
            line-height: 1.6;
        }

        .card-featured .meta {
            font-size: 0.75rem;
            color: #94A3B8;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #f1f5f9;
        }

        .card-featured .meta i {
            margin-right: 0.3rem;
            width: 1rem;
            text-align: center;
        }

        /* Sidebar */
        .sidebar-card {
            background: #ffffff;
            border-radius: 1rem;
            padding: 1.25rem 1.5rem;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 20px -6px rgba(0, 0, 0, 0.04);
        }

        .sidebar-card .title-side {
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #0284C7;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #E0F2FE;
        }

        .sidebar-card .title-side i {
            margin-right: 0.5rem;
        }

        .kategori-item {
            display: flex;
            justify-content: space-between;
            padding: 0.4rem 0;
            font-size: 0.8rem;
            color: #475569;
            font-weight: 500;
            border-bottom: 1px solid #f8fafc;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .kategori-item:hover {
            color: #0284C7;
            padding-left: 0.5rem;
        }

        .kategori-item .count {
            background: #F1F5F9;
            padding: 0.05rem 0.6rem;
            border-radius: 999px;
            font-size: 0.65rem;
            font-weight: 700;
            color: #64748B;
        }

        .popular-item {
            display: flex;
            gap: 0.75rem;
            padding: 0.6rem 0;
            border-bottom: 1px solid #f8fafc;
            align-items: center;
        }

        .popular-item:last-child {
            border-bottom: none;
        }

        .popular-item .num {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #F1F5F9;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.6rem;
            font-weight: 800;
            color: #64748B;
            flex-shrink: 0;
        }

        .popular-item .text {
            font-size: 0.78rem;
            font-weight: 600;
            color: #0F172A;
            line-height: 1.2;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .popular-item .text:hover {
            color: #0284C7;
        }

        .arsip-item {
            display: flex;
            justify-content: space-between;
            padding: 0.3rem 0;
            font-size: 0.8rem;
            color: #475569;
            font-weight: 500;
            border-bottom: 1px solid #f8fafc;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .arsip-item:hover {
            color: #0284C7;
        }

        .pagination-btn {
            padding: 0.4rem 0.9rem;
            border-radius: 999px;
            border: 1px solid #e2e8f0;
            font-size: 0.8rem;
            font-weight: 600;
            color: #475569;
            background: white;
            transition: all 0.25s ease;
            cursor: pointer;
        }

        .pagination-btn:hover {
            background: #f8fafc;
            border-color: #94A3B8;
        }

        .pagination-btn.active {
            background: #0284C7;
            color: white;
            border-color: #0284C7;
        }

        .pagination-btn.active:hover {
            background: #0369a1;
        }

        .search-berita {
            padding: 0.5rem 1rem 0.5rem 2.5rem;
            border-radius: 999px;
            border: 1px solid #e2e8f0;
            background: white;
            font-size: 0.8rem;
            font-weight: 500;
            outline: none;
            transition: all 0.25s ease;
            width: 100%;
        }

        .search-berita:focus {
            border-color: #38BDF8;
            box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
        }

        .search-wrapper {
            position: relative;
        }

        .search-wrapper i {
            position: absolute;
            left: 0.9rem;
            top: 50%;
            transform: translateY(-50%);
            color: #94A3B8;
            font-size: 0.75rem;
        }

        .filter-tab {
            padding: 0.3rem 1rem;
            border-radius: 999px;
            font-size: 0.7rem;
            font-weight: 600;
            color: #475569;
            background: white;
            border: 1px solid #e2e8f0;
            transition: all 0.25s ease;
            cursor: pointer;
            white-space: nowrap;
        }

        .filter-tab:hover {
            background: #f8fafc;
        }

        .filter-tab.active {
            background: #0284C7;
            color: white;
            border-color: #0284C7;
        }

        .berita-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 640px) {
            .berita-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .berita-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Nav link active */
        .nav-link.active {
            color: #0284C7;
            position: relative;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2.5px;
            background: #0284C7;
            border-radius: 4px;
        }

        /* ===========================================
   FEATURED HERO BERITA
=========================================== */

        .hero-featured {
            position: relative;
            overflow: hidden;
            border-radius: 28px;
            height: 520px;
            background: #ddd;
            box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
            transition: .4s ease;
        }

        .hero-featured:hover {
            transform: translateY(-4px);
            box-shadow: 0 35px 70px rgba(0, 0, 0, .25);
        }

        .hero-featured img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .8s ease;
        }

        .hero-featured:hover img {
            transform: scale(1.06);
        }

        /* Overlay */

        .hero-featured::after {

            content: "";

            position: absolute;

            inset: 0;

            background:
                linear-gradient(180deg,
                    rgba(0, 0, 0, .05) 0%,
                    rgba(0, 0, 0, .20) 30%,
                    rgba(0, 0, 0, .85) 100%);

        }

        .hero-content {

            position: absolute;

            left: 0;
            right: 0;
            bottom: 0;

            z-index: 5;

            padding: 45px;

            color: white;

        }

        .hero-badge {

            display: inline-flex;

            align-items: center;

            gap: 8px;

            background: #10B981;

            color: white;

            padding: 8px 18px;

            border-radius: 999px;

            font-size: .75rem;

            font-weight: 700;

            letter-spacing: .08em;

            text-transform: uppercase;

            margin-bottom: 18px;

        }

        .hero-title {

            font-size: clamp(2rem, 4vw, 3.3rem);

            font-weight: 800;

            line-height: 1.15;

            margin-bottom: 18px;

            max-width: 760px;

            display: -webkit-box;

            -webkit-line-clamp: 3;

            -webkit-box-orient: vertical;

            overflow: hidden;

        }

        .hero-desc {

            max-width: 700px;

            color: rgba(255, 255, 255, .9);

            font-size: 1.05rem;

            line-height: 1.8;

            display: -webkit-box;

            -webkit-line-clamp: 2;

            -webkit-box-orient: vertical;

            overflow: hidden;

        }

        .hero-meta {

            display: flex;

            align-items: center;

            flex-wrap: wrap;

            gap: 22px;

            margin-top: 28px;

            font-size: .9rem;

            color: rgba(255, 255, 255, .9);

        }

        .hero-meta span {

            display: flex;

            align-items: center;

            gap: 8px;

        }

        .hero-meta i {

            color: #38BDF8;

        }

        .hero-btn {

            margin-left: auto;

            display: inline-flex;

            align-items: center;

            gap: 10px;

            padding: 12px 24px;

            border-radius: 999px;

            background: white;

            color: #0284C7;

            font-weight: 700;

            transition: .3s;

            text-decoration: none;

        }

        .hero-btn:hover {

            background: #38BDF8;

            color: white;

            transform: translateX(4px);

        }

        /* ===========================================
   RESPONSIVE TABLET
=========================================== */

        @media(max-width:992px) {

            .hero-featured {

                height: 430px;

            }

            .hero-content {

                padding: 32px;

            }

            .hero-title {

                font-size: 2rem;

                -webkit-line-clamp: 3;

            }

            .hero-desc {

                font-size: .95rem;

                -webkit-line-clamp: 2;

            }

            .hero-meta {

                font-size: .8rem;

                gap: 15px;

            }

        }


        /* ===========================================
   RESPONSIVE MOBILE
=========================================== */

        @media(max-width:768px) {

            .hero-featured {

                height: 360px;

                border-radius: 20px;

            }

            .hero-content {

                padding: 22px;

            }

            .hero-badge {

                font-size: .65rem;

                padding: 6px 14px;

                margin-bottom: 12px;

            }

            .hero-title {

                font-size: 1.45rem;

                line-height: 1.3;

                margin-bottom: 12px;

                -webkit-line-clamp: 2;

            }

            .hero-desc {

                font-size: .88rem;

                line-height: 1.6;

                -webkit-line-clamp: 2;

            }

            .hero-meta {

                display: grid;

                grid-template-columns: 1fr 1fr;

                gap: 10px;

                margin-top: 18px;

                font-size: .72rem;

            }

            .hero-btn {

                grid-column: 1/3;

                justify-content: center;

                width: 100%;

                margin-left: 0;

                margin-top: 10px;

                padding: 10px;

                font-size: .82rem;

            }

        }


        /* ===========================================
   RESPONSIVE HP KECIL
=========================================== */

        @media(max-width:480px) {

            .hero-featured {

                height: 320px;

            }

            .hero-content {

                padding: 18px;

            }

            .hero-title {

                font-size: 1.2rem;

            }

            .hero-desc {

                display: none;

            }

            .hero-meta {

                grid-template-columns: 1fr;

                gap: 8px;

            }

            .hero-btn {

                grid-column: 1;

            }

        }