.artikel-wrapper {
    margin-top: 40px;
    margin-bottom: 200px;
}

.artikel-list {
    flex: 2;
    margin-bottom: 200px;
}

.artikel-detail {
    flex: 3;
    border-left: 1px solid #ccc;
    padding-left: 20px;
}


/* ====== DETAIL ARTIKEL ====== */
.detail-artikel {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 200px;
    padding: 12px 23px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    line-height: 1.7;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    animation: fadeIn 0.3s ease-in-out;
}

/* Tombol kembali */
.detail-artikel button {
    background-color: #1e3a5f;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.detail-artikel button:hover {
    background-color: #163152;
}

/* Gambar utama */
.detail-artikel img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Tanggal */
.detail-artikel .date {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
    margin-top: -25px;
}

/* Judul artikel */
.detail-artikel h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1e3a5f;
}

/* Konten */
.detail-artikel .content {
    font-size: 1rem;
    color: #444;
    margin-bottom: 50px;
}

.detail-artikel .content p{
    margin-bottom: -20px;
}

/* Tags */
.detail-artikel .tags {
    display: inline-block;
    background-color: #e1e7f0;
    color: #1e3a5f;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Animasi fade in */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px);}
    to { opacity: 1; transform: translateY(0);}
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
    .detail-artikel {
        padding: 15px 20px;
    }

    .detail-artikel h2 {
        font-size: 1.5rem;
    }

    .detail-artikel .content {
        font-size: 0.95rem;
    }
}
