.elementor-kit-8{--e-global-color-primary:#9300FF;--e-global-color-secondary:#D4AF37;--e-global-color-text:#212121;--e-global-color-accent:#D32F2F;--e-global-color-171c1ef:#333333;--e-global-color-95055e4:#757575;--e-global-color-ca6b609:#F7F8FA;--e-global-color-18ff3e8:#E0E0E0;--e-global-typography-primary-font-family:"Outfit";--e-global-typography-primary-font-size:42px;--e-global-typography-primary-font-weight:700;--e-global-typography-primary-line-height:1.2em;--e-global-typography-secondary-font-family:"Outfit";--e-global-typography-secondary-font-size:26px;--e-global-typography-secondary-font-weight:600;--e-global-typography-secondary-line-height:1.3em;--e-global-typography-text-font-family:"Mulish";--e-global-typography-text-font-size:18px;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Outfit";--e-global-typography-accent-font-size:14px;--e-global-typography-accent-font-weight:700;--e-global-typography-accent-text-transform:uppercase;--e-global-typography-accent-letter-spacing:1px;--e-global-typography-c1d6d52-font-family:"Mulish";--e-global-typography-c1d6d52-font-size:13px;--e-global-typography-c1d6d52-font-weight:400;background-color:#FFFFFF;}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-8{--e-global-typography-primary-font-size:30px;--e-global-typography-primary-line-height:1.2em;--e-global-typography-secondary-font-size:22px;--e-global-typography-secondary-line-height:1.3em;--e-global-typography-text-font-size:17px;--e-global-typography-c1d6d52-font-size:12px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* --- STYLE NEWS TICKER KALTARA (REVISI) --- */
.kv-ticker-container {
    display: flex;
    align-items: stretch;
    background: #f5f5f5; /* Background Abu-abu (bukan putih) */
    overflow: hidden;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Mulish', sans-serif;
    height: 36px; /* Tinggi bar diperkecil sedikit biar manis */
}

/* 1. Label "VIRAL HARI INI" */
.kv-ticker-label {
    background-color: #9300FF; /* Ungu Utama */
    color: #ffffff;
    padding: 0 15px;
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 11px; /* Font lebih kecil */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 2;
    position: relative;
    padding-right: 25px; 
    /* Clip-path miring */
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

/* 2. Area Teks Berjalan */
.kv-ticker-wrapper {
    flex-grow: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    background: #f5f5f5; /* SAMA DENGAN CONTAINER (ABU-ABU) */
}

/* 3. Animasi Gerak (DIPERLAMBAT) */
.kv-ticker-move {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    /* Ubah angka 45s jika masih terlalu cepat/lambat */
    animation: kvara-marquee 75s linear infinite; 
}

/* Pause saat hover */
.kv-ticker-wrapper:hover .kv-ticker-move {
    animation-play-state: paused;
}

/* 4. Item Berita */
.kv-ticker-item {
    color: #333;
    text-decoration: none;
    margin-right: 40px;
    font-size: 13px; /* Ukuran font judul diperkecil */
    font-weight: 600;
    transition: color 0.2s;
}

.kv-ticker-item:hover {
    color: #9300FF;
    text-decoration: underline;
}

.kv-separator {
    color: #bbb; /* Warna pemisah jadi abu soft */
    font-size: 8px;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes kvara-marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* --- SUPPORT DARK MODE --- */
body.dark-mode .kv-ticker-container,
body.dark-mode .kv-ticker-wrapper {
    background: #1a1a1a; /* Gelap saat dark mode */
    border-color: #333;
}
body.dark-mode .kv-ticker-item {
    color: #ccc;
}
body.dark-mode .kv-ticker-item:hover {
    color: #D4AF37;
}

/* --- STYLE 1: SIDE KICK (MODERN NEWS) --- */
.kv-title-1 {
    font-family: 'Outfit', sans-serif; /* Font Utama */
    font-size: 20px;
    font-weight: 800; /* Tebal banget */
    color: #212121;
    text-transform: uppercase; /* Huruf Kapital Semua */
    letter-spacing: 0.5px;
    
    /* Garis Ungu di Kiri */
    border-left: 6px solid #9300FF; 
    padding-left: 15px; /* Jarak teks dari garis */
    line-height: 1.2;
    margin-bottom: 20px; /* Jarak ke konten bawahnya */
    display: block;
}

/* Dark Mode Support */
body.dark-mode .kv-title-1 {
    color: #ffffff;
    border-left-color: #D4AF37; /* Garis jadi Emas saat gelap */
}

/* --- LIMIT JUDUL 3 BARIS (KHUSUS WIDGET HEADING/TAJUK) --- */

/* Target kelas .elementor-heading-title di dalam widget yang kita beri nama .kv-limit-3 */
.kv-limit-3 .elementor-heading-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;      /* Batas 3 Baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;    /* Munculkan titik ... */
    white-space: normal;        /* Pastikan teks turun ke bawah (wrap) */
    line-height: 1.3em;         /* Jarak antar baris agar rapi */
    height: auto;               /* Reset tinggi paksa */
    max-height: 4.1em;          /* (1.3em x 3 baris) + sedikit toleransi */
}

/* Jika Anda menggunakan Widget 'Post Title' bawaan, tambahkan ini juga untuk jaga-jaga */
.kv-limit-3 .elementor-widget-container {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}/* End custom CSS */