/* =========================================
   LAYOUT UTAMA ARCHIVE
   ========================================= */
.archive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.archive-row {
    display: flex;
    gap: 40px; /* Jarak Artikel vs Sidebar */
    align-items: flex-start;
}

/* Kolom Kiri (List Artikel) */
.archive-main-content {
    flex: 1; /* Lebar otomatis mengisi sisa (70%) */
    min-width: 0;
}

/* Kolom Kanan (Sidebar) */
.archive-sidebar {
    width: 320px;
    flex-shrink: 0;
}

/* Sticky Sidebar (Opsional) */
.archive-sidebar .sidebar-inner {
    position: sticky;
    top: 90px;
}


/* =========================================
   HEADER ARSIP (Judul Kategori/Tag)
   ========================================= */
.archive-header {
    margin-bottom: 30px;
    border-bottom: 0px solid #003399; /* Garis biru di bawah judul besar */
    padding-bottom: 15px;
}

.archive-title {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.archive-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}


/* =========================================
   LIST ITEM (Gambar Kiri - Teks Kanan)
   ========================================= */
.archive-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Jarak antar artikel */
}

.archive-item {
    display: flex; /* Flexbox: Kunci agar gambar & teks sejajar */
    gap: 20px;
    border-bottom: 1px solid #eee; /* Garis tipis pemisah */
    padding-bottom: 25px;
}

/* Gambar Thumbnail */
.archive-thumb {
    width: 240px; /* Lebar tetap gambar desktop */
    height: 160px; /* Tinggi tetap */
    flex-shrink: 0; /* Gambar jangan mengecil */
    border-radius: 6px;
    overflow: hidden;
}

.archive-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Agar gambar full kotak tanpa gepeng */
    transition: transform 0.3s;
}

.archive-thumb:hover img {
    transform: scale(1.05); /* Efek zoom dikit saat hover */
}

/* Konten Teks */
.archive-content {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Teks rata tengah secara vertikal */
}

/* Kategori Kecil (Biru) */
.archive-cat a {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #003399;
    text-decoration: none;
    margin-bottom: 8px;
    display: inline-block;
}

/* Judul Artikel */
.archive-item-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 5px 0 10px 0;
}

.archive-item-title a {
    text-decoration: none;
    color: #111;
    /* Batasi 2 baris */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.archive-item-title a:hover {
    color: #003399;
}

/* Meta Tanggal */
.archive-meta {
    font-size: 13px;
    color: #999;
}

/* Pagination */
.archive-pagination {
    margin-top: 40px;
    text-align: center;
}
.nav-links a, .nav-links span {
    padding: 10px 15px;
    border: 1px solid #eee;
    margin: 0 5px;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
}
.nav-links .current {
    background: #003399;
    color: #fff;
    border-color: #003399;
}


/* =========================================
   3. KHUSUS MOBILE & TABLET (Tanpa Border & Jarak Rapat)
   ========================================= */
@media (max-width: 991px) {
    
    .archive-row {
        flex-direction: column;
    }

    /* Container lebih rapat di HP */
    .archive-container {
        padding: 80px 15px 0 15px; /* Padding bawah 0 agar tidak kosong */
    }

    /* ITEM ARTIKEL MOBILE */
    .archive-item {
        gap: 15px;
        
        /* PERMINTAAN: HAPUS BORDER & JARAK KOSONG */
        border-bottom: none !important; 
        margin-bottom: 20px; /* Jarak antar item saja */
        padding-bottom: 0;
    }
    
    /* Pastikan item terakhir benar-benar nempel bawah */
    .archive-item:last-child {
        margin-bottom: 0;
    }

    .archive-thumb {
        width: 100px; /* Gambar lebih kecil */
        height: 100px;
        border-radius: 0px;
    }

    .archive-item-title {
        font-size: 16px; /* Font Judul Mobile */
        line-height: 1.3;
        margin-bottom: 5px;
        
        /* Batasi 3 baris */
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .archive-cat a { font-size: 10px; margin-bottom: 2px; }
    .archive-meta { font-size: 11px; }
   /* SIDEBAR MOBILE (Tanpa Jarak & Tanpa Border) */
    .archive-sidebar {
        width: 100%;
        margin-top: 0;      /* HAPUS JARAK ATAS */
        padding-top: 0;     /* HAPUS PADDING ATAS */
        border-top: none;   /* HAPUS GARIS PEMISAH */
		margin-bottom: 40px;
    }
}