/* ==============================
   📝 POST HERO (Judul Atas)
============================== */
.post-hero {
    background: linear-gradient(135deg, #2f2c2c, #574f4f);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.post-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.post-meta {
    font-size: 14px;
    opacity: 0.8;
}

/* ==============================
   📄 POST CONTENT
============================== */
.post-content {
    padding: 40px 0;
}

.post-container {
    max-width: 800px;
}

/* ==============================
   🖼️ GAMBAR ARTIKEL
============================== */
.post-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ==============================
   ✍️ ISI ARTIKEL
============================== */
.post-body p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 16px;
}

.post-body h2 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 22px;
    color: #333;
}

.post-body ul {
    margin: 10px 0 20px 20px;
}

.post-body ul li {
    margin-bottom: 8px;
}

/* ==============================
   🔙 NAVIGASI POST
============================== */
.post-navigation {
    margin-top: 30px;
}

.btn-back {
    display: inline-block;
    padding: 10px 18px;
    background: #2c7a4b;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-back:hover {
    background: #66bb6a;
}

/* ==============================
   📱 RESPONSIVE
============================== */
@media (max-width: 768px) {
    .post-hero h1 {
        font-size: 26px;
    }

    .post-container {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .post-hero {
        padding: 30px 0;
    }

    .post-hero h1 {
        font-size: 22px;
    }

    .post-body p {
        font-size: 15px;
    }
}