/* 
 * NusantaraNetwork Main CSS
 * Warna: Biru #1e3c72, Merah #c0392b
 * Versi: 1.2 (Sticky header fixed)
 */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: #1e3c72;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c0392b;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== STICKY HEADER ===== */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    transition: box-shadow 0.3s ease;
}

.sticky-header.sticky {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #1e3c72;
    color: white;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 2px solid #c0392b;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.current-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.breaking-news {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breaking-label {
    background: #c0392b;
    padding: 2px 10px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
}

.breaking-ticker {
    max-width: 400px;
    overflow: hidden;
    white-space: nowrap;
}

.breaking-ticker a {
    color: white;
    margin-right: 30px;
    display: inline-block;
    animation: ticker 20s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.top-bar-right {
    display: flex;
    gap: 20px;
}

.top-bar-right a {
    color: white;
}

.top-bar-right a:hover {
    color: #c0392b;
}

/* ===== MAIN HEADER ===== */
.main-header {
    padding: 20px 0;
    background: white;
}

.main-header .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
}
/* Main header dengan flex */
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-area {
    flex-shrink: 0;
}

.header-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.header-banner {
    flex-shrink: 0;
    max-width: 728px;
    width: 100%;
}

/* Responsive: saat layar kecil, banner turun ke bawah */
@media (max-width: 991px) {
    .main-header .container {
        flex-wrap: wrap;
    }
    .header-left {
        width: 100%;
        justify-content: space-between;
    }
    .header-banner {
        width: 100%;
        max-width: 100%;
        order: 3; /* letakkan di bawah */
        margin-top: 10px;
    }
}
/* Logo */
.logo-area .site-title {
    font-size: 28px;
    margin: 0;
    line-height: 1.2;
}

.logo-area .site-title a {
    color: #1e3c72;
}

.text-red {
    color: #c0392b;
}

.site-tagline {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.custom-logo {
    max-height: 60px;
    width: auto;
}

/* Header Banner */
.header-banner {
    width: 100%;
    max-width: 728px;
    height: 90px;
    background: #f5f5f5;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-placeholder {
    color: #999;
    font-size: 14px;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 9999;
}

.search-toggle,
.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #1e3c72;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.3s;
    position: relative;
    z-index: 10000;
    pointer-events: auto;
}

.search-toggle:hover,
.mobile-menu-toggle:hover {
    background: #f5f5f5;
    color: #c0392b;
}

.mobile-menu-toggle {
    display: none;
}

/* ===== NAVIGATION ===== */
.main-navigation {
    border-top: 1px solid #e5e5e5;
    border-bottom: 2px solid #c0392b;
    background: white;
}

.main-navigation .container {
    position: relative;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    position: relative;
}

.primary-menu a {
    display: block;
    padding: 15px 20px;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid transparent;
}

.primary-menu a:hover {
    color: #c0392b;
    border-bottom-color: #c0392b;
}

.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
    color: #c0392b;
    border-bottom-color: #c0392b;
}

/* Dropdown */
.primary-menu .menu-item-has-children > a:after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
    display: inline-block;
}

.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 0 0 5px 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 999;
    border-top: 2px solid #c0392b;
    list-style: none;
    padding: 0;
}

.primary-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu a {
    padding: 10px 15px;
    border-bottom: 1px solid #e5e5e5;
}

/* ===== MEGA MENU ===== */
.mega-menu-insight {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 2px solid #c0392b;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 998;
    padding: 20px;
}

.mega-menu-insight.active,
.menu-item:hover + .mega-menu-insight,
.mega-menu-insight:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mega-col h4 {
    color: #1e3c72;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e5e5e5;
}

/* ===== SEARCH POPUP ===== */
.search-form-popup {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 0 0 5px 5px;
    width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 998;
}

.search-form-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    padding: 80px 20px 30px;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid #e5e5e5;
}

.mobile-menu-list a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
}

.mobile-menu-list a:hover {
    color: #c0392b;
}

.mobile-menu-list .sub-menu {
    padding-left: 20px;
    display: none;
}

.mobile-menu-list .sub-menu.active {
    display: block;
}

.mobile-menu-list .sub-menu a {
    font-size: 14px;
    padding: 10px 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1e3c72;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.mobile-menu-toggle:hover {
    background: #f5f5f5;
    color: #c0392b;
}

.mobile-menu-toggle.active {
    color: #c0392b;
}

/* ===== SINGLE KOLOM LAYOUT ===== */
.single-kolom {
    padding: 40px 0;
}

.kolom-layout-3col {
    display: flex;
    gap: 40px;
    position: relative;
}

/* Kolom Kiri - Share */
.kolom-share {
    width: 80px;
    flex-shrink: 0;
}

.share-wrapper.sticky {
    position: sticky;
    top: 200px;
}

.share-wrapper h4 {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.share-wrapper a {
    display: block;
    padding: 10px;
    margin-bottom: 10px;
    background: #f5f5f5;
    color: #333;
    text-align: center;
    border-radius: 5px;
    font-size: 12px;
    transition: all 0.3s;
}

.share-wrapper a:hover {
    background: #c0392b;
    color: white;
}

/* Kolom Tengah */
.kolom-main {
    flex: 1;
    max-width: 700px;
}

.kolom-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.kolom-badge {
    margin-bottom: 20px;
}

.badge-opini {
    background: #1e3c72;
    color: white;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    margin-right: 10px;
}

.badge-category {
    background: #c0392b;
    color: white;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 3px;
}

.kolom-title {
    font-size: 42px;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.kolom-excerpt {
    font-size: 20px;
    color: #666;
    font-style: italic;
    border-left: 4px solid #c0392b;
    padding-left: 20px;
    margin-bottom: 30px;
}

/* Author Box */
.kolom-author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #1e3c72;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
}

.author-info {
    flex: 1;
}

.by {
    color: #666;
    font-size: 14px;
    margin-right: 5px;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: #1e3c72;
}

.author-title {
    color: #c0392b;
    font-size: 14px;
    margin: 5px 0;
}

.post-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

/* Kolom Content */
.kolom-content {
    font-family: Georgia, serif;
    font-size: 18px;
    line-height: 1.7;
    margin: 40px 0;
}

.kolom-content p {
    margin-bottom: 1.5em;
}

.kolom-content h2 {
    font-size: 28px;
    margin: 2em 0 1em;
}

.kolom-content h3 {
    font-size: 24px;
    margin: 1.5em 0 1em;
}

/* Tags */
.kolom-tags {
    margin: 30px 0;
}

.kolom-tags a {
    display: inline-block;
    background: #f0f0f0;
    padding: 5px 15px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 20px;
    color: #555;
    font-size: 14px;
}

.kolom-tags a:hover {
    background: #1e3c72;
    color: white;
}

/* Disclaimer */
.kolom-disclaimer {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 30px 0;
    font-size: 14px;
    color: #856404;
}

/* Author Bio Detail */
.kolom-author-bio {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
}

.bio-header {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.bio-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.bio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-title h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.bio-jabatan {
    color: #c0392b;
    margin-bottom: 10px;
}

.bio-social {
    display: flex;
    gap: 15px;
}

.bio-social a {
    color: #1e3c72;
}

.bio-content {
    margin-bottom: 20px;
}

.btn-view-all {
    display: inline-block;
    padding: 10px 20px;
    background: #1e3c72;
    color: white;
    border-radius: 5px;
}

.btn-view-all:hover {
    background: #c0392b;
    color: white;
}

/* Related Articles */
.related-articles {
    margin: 40px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.related-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
}

.related-thumb {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 10px;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.related-date {
    font-size: 12px;
    color: #666;
}

/* Kolom Kanan - Sidebar */
.kolom-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.sidebar-wrapper.sticky {
    position: sticky;
    top: 200px;
}

.sidebar-widget {
    margin-bottom: 40px;
}

.widget-title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1e3c72;
}

/* Popular Insight */
.popular-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.popular-number {
    width: 25px;
    height: 25px;
    background: #1e3c72;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.popular-item a {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.popular-item a:hover {
    color: #c0392b;
}

/* Featured Authors */
.authors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.author-card a {
    display: block;
    text-align: center;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 5px;
    transition: all 0.3s;
}

.author-card a:hover {
    background: #1e3c72;
}

.author-card a:hover .author-card-name,
.author-card a:hover .author-card-title {
    color: white;
}

.author-card-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
}

.author-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-card-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e3c72;
}

.author-card-title {
    font-size: 11px;
    color: #666;
    line-height: 1.3;
}

/* ===== FRONT PAGE STYLES ===== */
/* Hero Slider */
.hero-slider {
    padding: 40px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.hero-large {
    grid-row: span 2;
}

.hero-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.hero-image {
    position: relative;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
}

.hero-category {
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-radius: 3px;
}

.hero-large .hero-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero-small .hero-content h2 {
    font-size: 18px;
}

.hero-date {
    font-size: 12px;
    opacity: 0.8;
}

/* Breaking Ticker Full */
.breaking-ticker-full {
    background: #c0392b;
    color: white;
    padding: 10px 0;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ticker-label {
    background: #1e3c72;
    padding: 5px 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 3px;
}

.ticker-content {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content a {
    color: white;
    margin-right: 30px;
    display: inline-block;
    animation: ticker 30s linear infinite;
}

/* News Grid */
.news-grid {
    padding: 40px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 28px;
    position: relative;
    padding-bottom: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #c0392b;
}

.view-all {
    color: #1e3c72;
    font-weight: 600;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.grid-article {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.grid-article.featured {
    flex-direction: column;
}

.article-thumb {
    width: 100px;
    height: 70px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 5px;
}

.featured .article-thumb {
    width: 100%;
    height: 200px;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.featured .article-content h3 {
    font-size: 24px;
}

.article-date {
    font-size: 12px;
    color: #666;
}

/* Insight Section */
.insight-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.insight-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.insight-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.insight-image {
    height: 200px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.insight-card:hover .insight-image img {
    transform: scale(1.05);
}

.insight-body {
    padding: 20px;
}

.insight-body h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.insight-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.author-mini-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

.author-mini-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 14px;
    color: #1e3c72;
}

.insight-date {
    font-size: 12px;
    color: #666;
}

/* Global Section */
.global-section {
    padding: 40px 0;
}

.global-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.global-featured {
    position: relative;
}

.global-featured-image {
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 15px;
}

.global-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.global-featured h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.global-list-item {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

.global-list-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-title {
    font-size: 16px;
    color: #333;
}

.list-date {
    font-size: 12px;
    color: #666;
}

/* Opinion Quote */
.opinion-quote {
    padding: 60px 0;
    color: white;
    text-align: center;
}

.quote-content blockquote {
    font-size: 32px;
    font-family: Georgia, serif;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.4;
}

.quote-content cite {
    font-size: 16px;
    opacity: 0.8;
}

/* Newsletter */
.newsletter-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.newsletter-box {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.newsletter-box p {
    margin-bottom: 20px;
    color: #666;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    background: #1e3c72;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #c0392b;
}

/* ===== SINGLE POST (berita biasa) ===== */
.single-wrapper {
    display: flex;
    gap: 40px;
    margin: 60px auto;
    padding: 0 20px;
}

.content-area {
    flex: 3;
}

.sidebar-area {
    flex: 1;
}

.post-category a {
    background: #c0392b;
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    text-decoration: none;
    border-radius: 3px;
}

.post-title {
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.3;
}

.post-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.post-share {
    margin: 20px 0 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 8px 14px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
}

.share-btn:hover {
    opacity: 0.85;
}

.share-btn.whatsapp { background: #25D366; }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.linkedin { background: #0077b5; }

.post-thumbnail img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.post-content {
    font-size: 18px;
    line-height: 1.9;
}

.post-content p {
    margin-bottom: 24px;
}

.post-content h2,
.post-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
    margin-bottom: 24px;
    padding-left: 25px;
}

.post-content li {
    margin-bottom: 10px;
}

.related-posts {
    margin-top: 60px;
}

.related-posts h3 {
    margin-bottom: 20px;
}

.related-grid {
    display: flex;
    gap: 20px;
}

.related-item {
    flex: 1;
}

.related-item img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.related-item h4 {
    font-size: 16px;
    line-height: 1.4;
}

/* ===== CATEGORY PAGE ===== */
.nn-category {
    padding: 50px 0;
}

.nn-category-title {
    font-family: Georgia, serif;
    font-size: 44px;
    color: #1e3c72;
    margin-bottom: 10px;
}

.nn-category-desc {
    color: #666;
    margin-bottom: 40px;
}

.nn-category-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.nn-featured img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 8px;
}

.nn-featured-title {
    font-family: Georgia, serif;
    font-size: 32px;
    margin: 15px 0;
    line-height: 1.3;
}

.nn-featured-title a {
    color: #111;
    text-decoration: none;
}

.nn-featured-title a:hover {
    color: #c0392b;
}

.nn-meta {
    font-size: 13px;
    color: #888;
}

.nn-post-list {
    margin-top: 40px;
}

.nn-post {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.nn-thumb {
    width: 220px;
    height: 140px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
}

.nn-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nn-post-title {
    font-size: 21px;
    margin: 5px 0;
    line-height: 1.3;
}

.nn-post-title a {
    text-decoration: none;
    color: #111;
}

.nn-post-title a:hover {
    color: #c0392b;
}

.nn-excerpt {
    color: #555;
}

.nn-pagination {
    margin-top: 40px;
}

/* ===== INSIGHT ELITE (arsip insight) ===== */
.insight-header {
    margin-bottom: 50px;
    border-bottom: 3px solid #c0392b;
    padding-bottom: 15px;
}

.insight-header h1 {
    font-size: 42px;
    font-weight: 800;
}

.insight-desc {
    color: #666;
    max-width: 700px;
}

.insight-layout {
    display: grid;
    gap: 50px;
}

.insight-hero a {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 35px;
    text-decoration: none;
    color: inherit;
}

.hero-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
}

.hero-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero-meta {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.insight-card a {
    text-decoration: none;
    color: inherit;
}

.card-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.card-body h3 {
    font-size: 18px;
    margin-top: 10px;
}

.card-meta {
    font-size: 13px;
    color: #888;
}

.insight-card:hover {
    transform: translateY(-6px);
    transition: 0.25s;
}

.insight-hero:hover {
    transform: translateY(-6px);
    transition: 0.25s;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #1e3c72;
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-widget-title {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #c0392b;
    padding-bottom: 10px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #c0392b;
    color: white;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #aaa;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .container {
        padding: 0 15px;
    }
    .main-header .container {
        gap: 20px;
    }
    .header-banner {
        max-width: 600px;
    }
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-large {
        grid-column: span 2;
    }
    .insight-grid-3col {
        gap: 20px;
    }
    .kolom-layout-3col {
        gap: 30px;
    }
    .kolom-share {
        width: 70px;
    }
    .kolom-sidebar {
        width: 280px;
    }
}

@media (max-width: 991px) {
    /* Header */
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    .top-bar-left {
        width: 100%;
        justify-content: space-between;
    }
    .top-bar-right {
        width: 100%;
        justify-content: center;
    }
    .main-header .container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .header-banner {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 70px;
        margin: 5px 0;
    }
    .header-banner img {
        width: 100%;
        height: auto;
        max-height: 90px;
        object-fit: contain;
    }
    .header-actions {
        justify-content: center;
        margin-top: 5px;
    }
    .primary-menu {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-large {
        grid-column: auto;
    }

    /* Grid */
    .grid-2col {
        grid-template-columns: 1fr;
    }
    .insight-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
    .global-layout {
        grid-template-columns: 1fr;
    }
    .global-featured-image {
        height: 250px;
    }

    /* Single kolom */
    .kolom-layout-3col {
        flex-direction: column;
    }
    .kolom-share {
        width: 100%;
        margin-bottom: 20px;
    }
    .share-wrapper.sticky {
        position: static;
    }
    .share-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .share-wrapper h4 {
        width: 100%;
    }
    .share-wrapper a {
        flex: 1;
        min-width: 80px;
        margin-bottom: 0;
    }
    .kolom-sidebar {
        width: 100%;
        margin-top: 40px;
    }
    .sidebar-wrapper.sticky {
        position: static;
    }

    /* Category page */
    .nn-category-grid {
        grid-template-columns: 1fr;
    }
    .nn-thumb {
        width: 100%;
        height: 200px;
    }
    .nn-post {
        flex-direction: column;
    }
    .nn-featured img {
        height: 320px;
    }

    /* Insight archive */
    .insight-hero a {
        grid-template-columns: 1fr;
    }
    .hero-img img {
        height: 260px;
    }
    .insight-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Single post */
    .single-wrapper {
        flex-direction: column;
    }
    .sidebar-area {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .top-bar-left {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .breaking-news {
        width: 100%;
        justify-content: center;
    }
    .breaking-ticker {
        max-width: 250px;
    }
    .main-header {
        padding: 10px 0;
    }
    .logo-area .site-title {
        font-size: 20px;
    }
    .custom-logo {
        max-height: 40px;
    }
    .header-banner {
        min-height: 60px;
    }
    .header-banner img {
        max-height: 60px;
    }

    .hero-slider {
        padding: 20px 0;
    }
    .hero-large .hero-content h2 {
        font-size: 22px;
    }
    .hero-small .hero-content h2 {
        font-size: 16px;
    }
    .section-title {
        font-size: 24px;
    }
    .grid-article.featured .article-thumb {
        height: 150px;
    }
    .grid-article.featured .article-content h3 {
        font-size: 20px;
    }
    .insight-grid-3col {
        grid-template-columns: 1fr;
    }
    .insight-image {
        height: 180px;
    }
    .global-featured h3 {
        font-size: 20px;
    }
    .opinion-quote {
        padding: 40px 0;
    }
    .quote-content blockquote {
        font-size: 24px;
    }
    .newsletter-section {
        padding: 40px 0;
    }
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    .newsletter-form button {
        width: 100%;
    }

    .kolom-title {
        font-size: 32px;
    }
    .kolom-excerpt {
        font-size: 18px;
    }
    .kolom-author-box {
        flex-direction: column;
        text-align: center;
    }
    .author-avatar {
        margin: 0 auto;
    }
    .post-meta {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
    .kolom-content {
        font-size: 16px;
    }
    .kolom-content h2 {
        font-size: 24px;
    }
    .kolom-content h3 {
        font-size: 20px;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .bio-header {
        flex-direction: column;
        text-align: center;
    }
    .bio-avatar {
        margin: 0 auto;
    }
    .bio-social {
        justify-content: center;
    }
    .authors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insight-grid {
        grid-template-columns: 1fr;
    }
    .insight-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 479px) {
    .top-bar-left {
        font-size: 12px;
    }
    .breaking-ticker {
        max-width: 180px;
    }
    .header-banner {
        min-height: 50px;
    }
    .header-banner img {
        max-height: 50px;
    }
    .share-wrapper a {
        min-width: 50px;
        font-size: 11px;
        padding: 8px 5px;
    }
    .authors-grid {
        grid-template-columns: 1fr;
    }
    .popular-item {
        flex-wrap: wrap;
    }
    .popular-number {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    .mega-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== GLOBAL FIXES ===== */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

#page, .site, .site-content {
    width: 100%;
    max-width: 100%;
}

.sticky-header.fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: #fff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
}

/* ===== COMMENTS STYLES ===== */
.comments-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
}

.comments-title,
.comment-reply-title {
    font-size: 24px;
    margin-bottom: 30px;
    font-family: Georgia, serif;
    color: #1e3c72;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.comment-list .comment {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.comment-body {
    position: relative;
    padding-left: 70px;
}

.comment-author .avatar {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.comment-author .fn {
    font-weight: 600;
    color: #1e3c72;
}

.comment-author .says {
    display: none;
}

.comment-metadata {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.comment-content {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.reply {
    margin-top: 10px;
}

.reply a {
    font-size: 13px;
    color: #c0392b;
    text-decoration: none;
}

.reply a:hover {
    text-decoration: underline;
}

/* Comment Form */
.comment-respond {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.comment-form {
    display: grid;
    gap: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    border-color: #c0392b;
    outline: none;
}

.comment-form textarea {
    height: 150px;
    resize: vertical;
}

.comment-form .form-submit {
    text-align: right;
}

.comment-form .submit {
    background: #1e3c72;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.comment-form .submit:hover {
    background: #c0392b;
}

.comment-notes {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.logged-in-as {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.logged-in-as a {
    color: #c0392b;
}

/* ===== PERBAIKAN BREAKING NEWS TICKER ===== */
.breaking-news {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0; /* Penting: izinkan elemen menyusut */
}

.breaking-ticker {
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.breaking-ticker a {
    display: inline-block;
    color: white;
    margin-right: 30px;
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
}

/* Hentikan animasi saat hover agar bisa dibaca */
.breaking-ticker:hover a {
    animation-play-state: paused;
}

/* Animasi bergerak ke kiri */
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Pastikan top bar tidak membungkus */
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    flex: 1;
    min-width: 0;
}

/* Responsive: jika layar terlalu kecil, kurangi gap */
@media (max-width: 768px) {
    .top-bar-left {
        gap: 10px;
    }
    .breaking-news {
        gap: 5px;
    }
    .breaking-ticker a {
        font-size: 12px;
        margin-right: 20px;
    }
}

/* ===== PERBAIKAN BREAKING NEWS TICKER (FULL WIDTH) ===== */
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1 1 0;         /* Memungkinkan elemen tumbuh dan menyusut */
    min-width: 0;        /* Penting untuk flex item */
    overflow: hidden;    /* Mencegah konten keluar */
}

.breaking-news {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
}

.breaking-ticker {
    overflow: hidden;
    white-space: nowrap;
    flex: 1 1 0;
    min-width: 0;
}

.breaking-ticker a {
    display: inline-block;
    color: white;
    margin-right: 30px;
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
}

/* Hentikan animasi saat hover */
.breaking-ticker:hover a {
    animation-play-state: paused;
}

/* Animasi ticker */
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar-left {
        gap: 10px;
    }
    .breaking-news {
        gap: 5px;
    }
    .breaking-ticker a {
        font-size: 12px;
        margin-right: 20px;
    }
}

/* ===== BREAKING NEWS TICKER FINAL FIX ===== */
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1 1 100%;
    min-width: 0;
    width: 100%;
}

.current-date {
    white-space: nowrap;
    flex-shrink: 0; /* Jangan biarkan tanggal mengecil */
}

.breaking-news {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
}

.breaking-ticker {
    overflow: hidden;
    white-space: nowrap;
    flex: 1 1 0;
    min-width: 0;
}

.breaking-ticker a {
    display: inline-block;
    color: white;
    margin-right: 30px;
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
}

.breaking-ticker:hover a {
    animation-play-state: paused;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar-left {
        gap: 10px;
    }
    .breaking-news {
        gap: 5px;
    }
    .breaking-ticker a {
        font-size: 12px;
        margin-right: 20px;
    }
}

/* ===== BREAKING NEWS FULL WIDTH FIX ===== */
.top-bar .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0 15px !important;
}

.top-bar-left {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex: 1 1 auto !important;  /* mengambil semua ruang tersisa */
    min-width: 0 !important;
    max-width: none !important;
}

.current-date {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

.breaking-news {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

.breaking-label {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

.breaking-ticker {
    overflow: hidden !important;
    white-space: nowrap !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
}

.breaking-ticker a {
    display: inline-block !important;
    color: white !important;
    margin-right: 30px !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
    animation: ticker 20s linear infinite !important;
}

.breaking-ticker:hover a {
    animation-play-state: paused !important;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.top-bar-right {
    display: none !important;
}

/* ===== BREAKING NEWS FULL WIDTH FINAL ===== */
.top-bar .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
}

.top-bar-left {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: 100% !important;
}

.current-date {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

.breaking-news {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

.breaking-label {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

.breaking-ticker {
    overflow: hidden !important;
    white-space: nowrap !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
}

.breaking-ticker a {
    display: inline-block !important;
    color: white !important;
    margin-right: 30px !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
    animation: ticker 20s linear infinite !important;
}

.breaking-ticker:hover a {
    animation-play-state: paused !important;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Sembunyikan top-bar-right jika masih ada */
.top-bar-right {
    display: none !important;
}

/* ===== INSIGHT ARCHIVE PAGE ===== */
.insight-archive {
    padding: 60px 0;
}

.insight-header {
    margin-bottom: 40px;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 20px;
}

.insight-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 10px;
}

.insight-desc {
    font-size: 16px;
    color: #666;
    max-width: 800px;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.insight-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.insight-card a {
    text-decoration: none;
    color: inherit;
}

.card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.insight-card:hover .card-img img {
    transform: scale(1.05);
}

.card-img-placeholder {
    background: #f0f0f0;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 600;
    color: #333;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-mini-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.author-mini-avatar.placeholder {
    background: #1e3c72;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    width: 24px;
    height: 24px;
}

.card-date {
    white-space: nowrap;
}

/* Pagination */
.insight-pagination {
    margin-top: 50px;
    text-align: center;
}

.insight-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.insight-pagination .page-numbers.current {
    background: #1e3c72;
    color: #fff;
    border-color: #1e3c72;
}

.insight-pagination .page-numbers:hover {
    background: #c0392b;
    color: #fff;
    border-color: #c0392b;
}

/* Responsive */
@media (max-width: 992px) {
    .insight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .insight-grid {
        grid-template-columns: 1fr;
    }
    .insight-title {
        font-size: 32px;
    }
}

/* ===== GOOGLE TRANSLATE CUSTOM ===== */
#google_translate_element {
    position: absolute;
    left: -9999px;
    top: 0;
    opacity: 0;
    pointer-events: none;
}

/* Sembunyikan teks "Powered by Google" dan tautan */
.goog-logo-link,
.goog-te-gadget span:not(:first-child) {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
}

/* Styling bendera */
.language-flags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 10px;
}

.flag-item {
    display: inline-block;
    line-height: 0;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.3s;
}

.flag-item:hover {
    transform: scale(1.1);
    border-color: #c0392b;
}

.flag-item img {
    display: block;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* ===== AUTHOR ARCHIVE PAGE ===== */
.author-archive {
    padding: 40px 0;
}

.author-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.author-bio-box {
    display: flex;
    gap: 30px;
    align-items: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #1e3c72;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 20px;
    margin-bottom: 5px;
    color: #1e3c72;
}

.author-title {
    color: #c0392b;
    font-size: 16px;
    margin-bottom: 15px;
}

.author-bio {
    color: #555;
    line-height: 1.6;
}

.author-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.post-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-card a {
    text-decoration: none;
    color: inherit;
}

.card-img {
    height: 180px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 15px;
}

.card-body h3 {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.post-date {
    font-size: 12px;
    color: #666;
}

/* Responsive */
@media (max-width: 992px) {
    .author-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .author-bio-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .author-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================
EDITORIAL NARROW 3 COLUMN
====================================== */

.editorial-wrapper {
    max-width: 1150px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.editorial-main-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

/* Section title lebih elegan */
.editorial-wrapper .section-title {
    font-size: 30px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.editorial-wrapper .section-title:after {
    width: 40px;
    height: 2px;
}

/* Featured */
.category-featured {
    margin-bottom: 25px;
}

.category-featured-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 6px;
}

.category-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-featured-content h3 {
    margin-top: 12px;
    line-height: 1.3;
}

/* Politik dominan */
.col-politik .category-featured-content h3 {
    font-size: 28px;
}

/* Ekonomi & Global */
.col-ekonomi .category-featured-content h3,
.col-global .category-featured-content h3 {
    font-size: 20px;
}

/* Regular list */
.grid-article.regular {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.grid-article.regular h3 {
    font-size: 16px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1199px) {
    .editorial-main-layout {
        grid-template-columns: 1fr;
    }
}

/* ======================================
EDITORIAL FINAL POLISHED
====================================== */

.editorial-wrapper {
    max-width: 1200px;
    margin: 40px auto 60px;
    padding: 0 20px;
}

.editorial-main-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.editorial-wrapper .section-title {
    font-size: 26px;
    margin-bottom: 18px;
}

.category-featured-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
}

.category-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.col-politik .category-featured-content h3 {
    font-size: 26px;
}

.col-ekonomi .category-featured-content h3,
.col-global .category-featured-content h3 {
    font-size: 20px;
}

.grid-article.regular {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.grid-article.regular h3 {
    font-size: 15px;
    line-height: 1.4;
}

@media (max-width: 1199px) {
    .editorial-main-layout {
        grid-template-columns: 1fr;
    }
}

/* ======================================
BREAKING TICKER – SMOOTH INFINITE
====================================== */

.breaking-ticker-full {
    background: #c0392b;
    padding: 10px 0;
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #1e3c72;
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    flex-shrink: 0;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff3b3b;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {opacity: 1;}
    50% {opacity: .4;}
    100% {opacity: 1;}
}

.ticker-outer {
    overflow: hidden;
    width: 100%;
}

.ticker-track {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: tickerMove 30s linear infinite;
}

.ticker-item a {
    color: #fff;
    font-size: 14px;
}

/* Pause on hover */
.breaking-ticker-full:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ===============================
   SIDEBAR WIDGET SPACING FIX
================================ */

.sidebar-area .widget,
.sidebar-inner .widget {
    margin-bottom: 30px;
}

.sidebar-area .widget:last-child,
.sidebar-inner .widget:last-child {
    margin-bottom: 0;
}

/* Spacing antar title dan konten */
.widget-title {
    margin-bottom: 15px;
}

/* Optional: beri padding dan background */
.sidebar-area .widget {
    padding: 20px;
    background: #ffffff;
    border: 1px solid #eee;
}