/* === Wrapping Card === */

.artikel-title {
    background-color: #f7b7b7;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 25px;
    border-radius: 5px;
}

.artikel-card {
    background: #ffe6ef; /* pink soft */
    border-radius: 18px;
    overflow: hidden;
    height: 420px; /* SEMUA CARD SAMA */
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.25s ease;
}

.artikel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* === Gambar === */
.artikel-img {
    width: 100%;
    height: 180px; /* FIX BIAR SAMA */
    overflow: hidden;
}

.artikel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* BIAR RAPI */
}

/* === Body === */
.artikel-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Tanggal */
.artikel-tanggal {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
}

/* Judul */
.artikel-judul {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;

    /* agar maksimal 2 baris */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Preview */
.artikel-preview {
    font-size: 14px;
    color: #444;
    margin-bottom: auto;

    /* potong otomatis jadi 3 baris */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Selengkapnya */
.artikel-more {
    margin-top: 12px;
    font-size: 14px;
    font-weight: bold;
    color: #d63384; /* pink strong */
    transition: 0.2s;
}

.artikel-card:hover .artikel-more {
    color: #b0266a;
    text-decoration: underline;
}



/* ===== DETAIL ARTIKEL — PINK PASTEL FULL BACKGROUND ===== */

/* Card konten artikel */
#artikel-detail .container {
    background: #ffe6f2;      /* tetap putih */
    width: 100%;
    max-width: 900px;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0px 6px 14px rgba(255, 140, 180, 0.30);
}

/* Judul artikel */
#artikel-detail .container h3 {
    color: #d24684;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Info tanggal & penulis */
#artikel-detail .container p strong {
    color: #e66ea6;
}

#artikel-detail .container p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

/* Gambar artikel */
#artikel-detail .container img {
    display: block;
    margin: 15px auto;
    border-radius: 12px;
    box-shadow: 0px 3px 8px rgba(235, 138, 175, 0.35);
}

/* Tombol kembali */
#artikel-detail .btn-secondary {
    background-color: #f3a4c4;
    border: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.25s;
}

#artikel-detail .btn-secondary:hover {
    background-color: #d96fa0;
    transform: translateY(-2px);
}

/* Responsif */
@media (max-width: 576px) {
    #artikel-detail {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #artikel-detail .container {
        padding: 22px;
    }
    #artikel-detail .container h3 {
        font-size: 22px;
    }
}
