/* ===============================
   BACK BUTTON
================================ */

.news-back {
    width: 90%;
    max-width: 900px;
    margin: 40px auto 0;
}

.news-back a {
    text-decoration: none;
    font-weight: 600;
    color: #0056b3;
    font-size: 15px;
    transition: all 0.3s ease;
}

.news-back a:hover {
    color: #ff4500;
    padding-left: 5px;
}


/* ===============================
   NEWS DETAIL PAGE
================================ */

.news-detail {
    width: 90%;
    max-width: 900px;
    margin: 60px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(54, 51, 51, 0.993);
}

.news-detail h1 {
    font-size: 30px;
    margin-bottom: 10px;
}

.news-date {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
}

.news-detail img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 25px;
}

.news-detail p {
    line-height: 1.8;
    font-size: 16px;
    color: #444;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

    .news-detail {
        padding: 20px;
    }

    .news-detail h1 {
        font-size: 24px;
    }

}

