:root {
            --primary-600: #3aa89d;
            --heading-font: 'Plus Jakarta Sans', sans-serif;
            --body-font: 'Inter', sans-serif;
            --alt-font: 'DM Sans', sans-serif;
        }

        /* ========== Base ========== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html,
        body {
            height: 100%;
            overflow-x: hidden;
        }

        body {
            margin: 0;
            color: #333;
            background: #fff;
            font-family: var(--body-font);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--heading-font);
        }

        a,
        button {
            -webkit-tap-highlight-color: transparent;
        }

        /* ========== Page: Article ========== */
        .section-article {
            padding: 35px 16px 40px;
            max-width: 1920px;
            margin: 0 auto;
        }

        .article-container {
            max-width: 1460px;
            margin: 0 auto;
        }

        .judul {
            width: min(696px, 100%);
            margin: 0 auto 28px;
            text-align: left;
        }

        .article-content {
            width: min(696px, 100%);
            margin: 0 auto;
        }

        .breadcrumbs {
            margin-bottom: 12px;
            font-size: clamp(16px, 2.2vw, 21px);
            font-weight: 500;
            font-family: var(--heading-font);
        }

        .breadcrumbs span {
            color: #1e7d60;
        }

        .breadcrumbs a {
            color: #000;
            text-decoration: none;
        }

        .breadcrumbs a:hover {
            text-decoration: underline;
        }

        .article-title {
            margin-bottom: 12px;
            font-size: clamp(26px, 4.6vw, 42px);
            font-weight: 700;
            line-height: 1.2;
            font-family: var(--heading-font);
        }

        .article-info {
            display: flex;
            align-items: center;
            gap: 8px 12px;
            margin-bottom: 20px;
            color: #666;
            font-size: 14px;
            flex-wrap: wrap;
        }

        .article-tag {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 35px;
            padding: 6px 15px;
            min-width: 96px;
            color: #fff;
            background: #737373;
            border-radius: 1000px;
            text-transform: uppercase;
            font-weight: 600;
            font-family: var(--heading-font);
            font-size: 14px;
        }

        .date {
            color: #aaabb0;
            font-size: 18px;
            font-family: var(--alt-font);
        }

        .social-icons {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-left: auto;
        }

        .social-icons a {
            color: #737373;
            font-size: 24px;
            text-decoration: none;
            transition: color .2s;
        }

        .social-icons a:hover {
            color: var(--primary-600);
        }

        /* ========== Cover Atas ========== */
        .article-detail {
            width: min(1420px, 100%);
            margin: 0 auto 24px;
        }

        .article-detail img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            object-fit: cover;
            aspect-ratio: 1416/797;
        }

        /* ========== Gambar di Konten ========== */
        .article-content img {
            width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 12px;
            object-fit: cover;
            aspect-ratio: 696/420;
        }

        .article-content h5 {
            margin: 24px 0 10px;
            font-weight: 700;
            font-size: 26px;
            font-family: var(--heading-font);
            color: #292929;
        }

        .article-content p {
            margin-bottom: 14px;
            color: #84858a;
            font-size: 17px;
            line-height: 1.7;
            font-family: var(--body-font);
        }

        /* ========== Recommended (Unified) ========== */
        #blog.recommended-section {
            background: #fff;
            padding-top: 12px;
            padding-bottom: 10px;
            margin-top: -4px;
        }

        #blog.recommended-section .container {
            width: 100%;
            max-width: 1420px;
            margin-inline: auto;
            padding-left: 16px;
            padding-right: 16px;
        }

        #blog h2 {
            line-height: 1.3;
            font-size: clamp(22px, 4.2vw, 36px);
            font-weight: 700;
            font-family: var(--heading-font);
        }

        .badge-youlike {
            color: #292929;
            background: #D8F3E5;
            border-radius: 999px;
            font-weight: 600;
            pointer-events: none;
            font-family: var(--body-font);
        }

        .btn-see-more {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: .5rem 1rem;
            color: #27272A;
            border: 1px solid #262626;
            border-radius: 16px;
            white-space: nowrap;
            font-size: 21px;
            font-weight: 600;
            text-decoration: none;
            transition: color .2s, border-color .2s;
            font-family: var(--heading-font);
        }

        .btn-see-more .icon-arrow {
            width: 15px;
            height: 15px;
            display: inline-block;
            flex: 0 0 15px;
            background-color: currentColor;
            -webkit-mask-image: var(--icon-url);
            mask-image: var(--icon-url);
            -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
            -webkit-mask-size: contain;
            mask-size: contain;
            -webkit-mask-position: center;
            mask-position: center;
        }

        .btn-see-more:hover,
        .btn-see-more:focus {
            color: var(--primary-600);
            border-color: var(--primary-600);
            text-decoration: none;
        }

        /* ========== Blog Card ========== */
        .blog-card {
            display: block;
            color: inherit;
            text-decoration: none;
            font-family: var(--body-font);
        }

        .blog-card .image-wrap {
            overflow: hidden;
            border-radius: 12px;
        }

        .blog-card .image-wrap img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 456/300;
            transition: transform .4s ease, filter .4s ease;
            will-change: transform;
        }

        .blog-card:hover .image-wrap img {
            transform: scale(1.06);
        }

        @media (hover:none) {
            .blog-card:hover .image-wrap img {
                transform: none;
            }
        }

        .blog-card .meta {
            margin-top: 10px;
            color: #7a7a7a;
            font-size: 16px;
        }

        .blog-card .category {
            color: #0d6efd;
            font-weight: 600;
            font-family: var(--heading-font);
        }

        .blog-card .dot {
            margin: 0 6px;
        }

        .blog-card .title {
            margin-top: 8px;
            color: #222;
            font-weight: 600;
            font-family: var(--heading-font);
            font-size: 26px;
            line-height: 1.35;
        }

        /* ========== Grid Behavior ========== */
        @media (min-width:992px) {
            .col-lg-4 {
                flex: 0 0 auto;
                width: 33.333333%;
            }
        }

        /* ========== Shared Nav / Utilities ========== */
        nav,
        .navbar,
        .btn-contact,
        .carousel-indicators,
        .container-custom {
            font-family: var(--heading-font);
        }

        .hero-img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
        }

        .rounded-shape {
            border-radius: 0 0 0 120px;
            overflow: hidden;
        }

        .btn-contact {
            background-color: #4FB893;
            color: #fff;
            font-weight: 500;
        }

        .btn-contact:hover {
            background-color: #4FB893;
            color: #fff;
        }

        .carousel-item {
            padding: 100px 0;
        }

        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #333;
        }

        .container-custom {
            margin-left: 252px;
            margin-right: 252px;
        }

        @media (max-width:1199.98px) {
            .container-custom {
                margin-left: 0 !important;
                margin-right: 0 !important;
                padding-left: 16px !important;
                padding-right: 16px !important;
                max-width: 100% !important;
                width: 100% !important;
            }
        }

        @media (max-width:991.98px) {
            .carousel-indicators-wrapper {
                justify-content: center !important;
            }

            .rounded-shape {
                border-radius: 20px;
            }
        }

        @media (max-width:767.98px) {
            .section-article {
                padding: 0px 16px 32px;
            }

            .judul {
                margin-bottom: 18px;
            }

            .article-info {
                gap: 10px 12px;
            }

            .article-tag {
                height: auto;
                padding: 4px 12px;
                font-size: 14px;
            }

            .date {
                font-size: 14px;
            }
        }

        /* ========== Responsive Tablet (≤ 991.98px) ========== */
        @media (max-width:991.98px) {
            .article-title {
                font-size: 28px;
            }

            .breadcrumbs {
                font-size: 16px;
            }

            .article-content h5 {
                font-size: 22px;
            }

            .article-content p {
                font-size: 15px;
                line-height: 1.6;
            }

            .blog-card .title {
                font-size: 20px;
            }
        }

        /* ========== Responsive Mobile (≤ 575.98px) ========== */
        @media (max-width:575.98px) {
            .article-title {
                font-size: 22px;
                line-height: 1.3;
            }

            .breadcrumbs {
                font-size: 14px;
            }

            .article-info {
                font-size: 13px;
                gap: 6px 8px;
            }

            .date {
                font-size: 13px;
            }

            .article-content h5 {
                font-size: 18px;
            }

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

            .blog-card .title {
                font-size: 18px;
            }

            .blog-card .meta {
                font-size: 14px;
            }

            .btn-see-more {
                font-size: 16px;
                font-weight: 600;
                padding: 6px 14px;
                border-radius: 12px;
                gap: 6px;
            }

            .btn-see-more .icon-arrow {
                width: 12px;
                height: 12px;
                flex: 0 0 12px;
            }
        }