        .artikel-page { background: #f7f8fa; }
        
        .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;
        }

        .artikel-content { padding: 70px 0 100px; }

        .chart-box {
            background: #fff;
            padding: 30px;
            border-radius: 20px;
            border: 1px solid #e7eaf0;
            box-shadow: 0 4px 18px rgba(15, 23, 42, .045);
            margin-bottom: 30px;
            height: 100%;
        }
        .chart-title {
            font-family: "Barlow", sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .chart-title i { color: #2563eb; }

        .filter-box {
            background: #fff;
            padding: 25px;
            border-radius: 16px;
            border: 1px solid #e7eaf0;
            box-shadow: 0 4px 18px rgba(15, 23, 42, .045);
            margin-bottom: 40px;
        }

        .table-container {
            background: #fff;
            border-radius: 16px;
            border: 1px solid #e7eaf0;
            box-shadow: 0 4px 18px rgba(15, 23, 42, .045);
            overflow-x: auto;
            margin-top: 40px;
        }
        .table-custom {
            margin-bottom: 0;
            white-space: nowrap;
            width: 100%;
        }
        .table-custom th {
            background: #0f172a;
            color: #fff;
            font-weight: 600;
            padding: 15px;
            font-size: 14px;
        }
        .table-custom td {
            padding: 15px;
            vertical-align: middle;
            font-size: 14px;
            color: #334155;
        }
        .kader-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid #cbd5e1;
        }

        #statistikContent.is-loading {
            position: relative;
            min-height: 200px;
            opacity: .5;
            pointer-events: none;
            transition: opacity .2s ease;
        }
