/* version 1.1.73 */
.newsthemes-header-global {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* 1. Container Utama */
.newsthemes-site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* 2. Wrapper Dua Kolom */
.newsthemes-page-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* 3. Area Konten Utama */
.newsthemes-content-area {
    flex: 1; 
    min-width: 0;
}

/* Judul Page - Hitam Tajam */
.newsthemes-entry-title {
    font-size: x-large;
    font-weight: 800;
    margin-bottom: 25px;
    color: #0f172a; /* Slate 900 - Sangat kontras di putih */
}

/* Isi Konten - Abu Gelap Standar UI Modern */
.newsthemes-entry-content {
    line-height: 1.8;
    color: #334155; /* Slate 700 - Nyaman dibaca lama */
    font-size: 17px;
}

/* Link di dalam konten */
.newsthemes-entry-content a {
    color: #25d366; /* Hijau trust Bos buat link */
    text-decoration: none;
    font-weight: 600;
}

/* 4. Area Sidebar (Kanan) */
#newsthemes-secondary-page,
.newsthemes-page-sidebar {
    width: 320px;
    flex-shrink: 0;
    min-height: 100px; /* Biar kolom tetap ada wujudnya */
    border-left: 1px solid #f1f5f9; /* Garis tipis pemisah */
    padding-left: 30px;
}

/* --- Responsive Mode --- */
@media (max-width: 991px) {
    .newsthemes-page-wrapper {
        flex-direction: column;
    }
    
    #newsthemes-secondary-page,
    .newsthemes-page-sidebar {
        width: 100%;
        margin-top: 40px;
        border-top: 2px solid #f1f5f9;
        border-left: none;
        padding-left: 0;
        padding-top: 30px;
    }
}