        .artikel-page { background: #f7f8fa; }
        
        /* Hero Section */
        .artikel-hero {
            position: relative;
            min-height: 430px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: #0f172a;
        }
        .artikel-hero-media { position: absolute; inset: 0; z-index: 0; }
        .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: scale(1.08);
            transition: opacity 1.5s ease-in-out, transform 8s ease;
        }
        .hero-slide.active {
            opacity: 1;
            transform: scale(1.12);
        }
        .artikel-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(15, 23, 42, .95) 0%, rgba(15, 23, 42, .78) 45%, rgba(15, 23, 42, .55) 100%);
            z-index: 1;
        }
        .artikel-hero-content { position: relative; z-index: 2; padding: 90px 0; }
        .artikel-hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border: 1px solid rgba(255, 255, 255, .22);
            border-radius: 999px;
            background: rgba(255, 255, 255, .08);
            backdrop-filter: blur(8px);
            color: rgba(255, 255, 255, .9);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 22px;
        }
        .artikel-hero-kicker i { color: #fbbf24; }
        .artikel-hero-title {
            max-width: 850px;
            margin: 0 auto 18px;
            color: #fff;
            font-family: "Barlow", sans-serif;
            font-size: clamp(40px, 5vw, 68px);
            font-weight: 800;
            line-height: 1.05;
        }
        .artikel-hero-title span { color: #fbbf24; }
        .artikel-hero-description {
            max-width: 720px;
            margin: 0 auto;
            color: rgba(255, 255, 255, .72);
            font-size: 17px;
            line-height: 1.75;
        }
        .artikel-hero-line {
            width: 70px;
            height: 4px;
            margin: 26px auto 0;
            border-radius: 999px;
            background: #fbbf24;
        }

        /* Content Styling */
        .artikel-content { padding: 70px 0 100px; }

        .artikel-section-header { margin-bottom: 34px; }
        .artikel-section-label {
            display: flex;
            align-items: center;
            gap: 9px;
            color: #64748b;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .artikel-section-label i { color: #2563eb; }
        .artikel-section-title {
            margin: 0;
            color: #0f172a;
            font-family: "Barlow", sans-serif;
            font-size: 34px;
            font-weight: 800;
        }
        .artikel-section-desc { margin: 8px 0 0; color: #64748b; font-size: 15px; }

        /* Profil Rayon Styles */
        .history-card {
            height: 100%;
            padding: 32px;
            background: #fff;
            border-radius: 20px;
            border: 1px solid #e7eaf0;
            box-shadow: 0 4px 18px rgba(15, 23, 42, .045);
            transition: all .3s ease;
        }
        .history-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 18px 40px rgba(15, 23, 42, .10);
        }

        /* Timeline */
        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        .timeline::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 2px;
            background: #d9dee7;
            transform: translateX(-50%);
        }
        .timeline-item {
            position: relative;
            width: 50%;
            padding: 0 45px 50px;
            box-sizing: border-box;
        }
        .timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
            clear: both;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
            text-align: left;
            clear: both;
        }
        .timeline-dot {
            position: absolute;
            top: 5px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #0f172a;
            border: 4px solid #fff;
            box-shadow: 0 0 0 4px rgba(15, 23, 42, .15);
            z-index: 2;
        }
        .timeline-item:nth-child(odd) .timeline-dot { right: -9px; }
        .timeline-item:nth-child(even) .timeline-dot { left: -9px; }
        
        .timeline-content {
            background: #fff;
            padding: 25px;
            border-radius: 16px;
            box-shadow: 0 4px 18px rgba(15, 23, 42, .045);
            border: 1px solid #e7eaf0;
            text-align: left;
            display: inline-block;
            width: 100%;
        }
        .timeline-year {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 14px;
            border-radius: 999px;
            background: #0f172a;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .timeline-year i { color: #fbbf24; }

        .identity-box {
            padding: 40px;
            border-radius: 20px;
            background: #0f172a;
            color: #fff;
            box-shadow: 0 10px 30px rgba(15, 23, 42, .15);
        }
        .identity-number {
            font-size: 70px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: -3px;
            color: #fbbf24;
            font-family: "Barlow", sans-serif;
        }
        .identity-date {
            font-size: 18px;
            opacity: .85;
        }

        .quote-box {
            position: relative;
            padding: 35px 35px 35px 45px;
            border-radius: 16px;
            background: #fff;
            border: 1px solid #e7eaf0;
            box-shadow: 0 4px 18px rgba(15, 23, 42, .045);
            overflow: hidden;
        }
        .quote-box::before {
            content: "“";
            position: absolute;
            top: -25px;
            left: 15px;
            font-family: Georgia, serif;
            font-size: 150px;
            line-height: 1;
            color: rgba(15, 23, 42, .05);
        }

        /* Value Item Layout */
        .value-item {
            display: flex;
            gap: 18px;
            padding: 24px;
            background: #fff;
            border: 1px solid #e7eaf0;
            border-radius: 16px;
            height: 100%;
            box-shadow: 0 4px 16px rgba(15, 23, 42, .03);
            transition: transform .3s ease, box-shadow .3s ease;
        }
        .value-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(15, 23, 42, .08);
        }
        .value-icon {
            flex: 0 0 46px;
            width: 46px;
            height: 46px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f1f5f9;
            color: #0f172a;
            font-size: 20px;
        }

        .image-rounded {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
            border: 1px solid #e7eaf0;
        }

        /* Styling Kartu Demisioner */
        .demisioner-card {
            background: #fff;
            border-radius: 14px;
            border: 1px solid #e7eaf0;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(15, 23, 42, .03);
            transition: all .3s ease;
            height: 100%;
        }
        .demisioner-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(15, 23, 42, .09);
        }
        .demisioner-img-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 5;
            overflow: hidden;
            background: #e2e8f0;
        }
        .demisioner-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }
        .demisioner-card:hover .demisioner-img-wrap img {
            transform: scale(1.06);
        }
        .demisioner-info {
            padding: 10px 4px;
            text-align: center;
        }
        .demisioner-name {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: 13px !important;
            line-height: 1.2;
        }
        .demisioner-periode {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 999px;
            background: #f1f5f9;
            color: #2563eb;
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        @media (max-width: 575px) {
            .demisioner-info { padding: 8px 2px; }
            .demisioner-periode { font-size: 9px; padding: 2px 5px; }
            .demisioner-name { font-size: 11px !important; }
            .demisioner-info p { font-size: 10px !important; }
        }

        @media (max-width: 991px) {
            .timeline::before { left: 20px; }
            .timeline-item,
            .timeline-item:nth-child(even),
            .timeline-item:nth-child(odd) {
                width: 100%;
                left: 0;
                text-align: left;
                padding-left: 50px;
                padding-right: 0;
                clear: both;
            }
            .timeline-item:nth-child(odd) .timeline-dot,
            .timeline-item:nth-child(even) .timeline-dot {
                left: 11px;
                right: auto;
            }
            .identity-number { font-size: 55px; }
        }
