/* ===============================
   News Details Page
================================= */

.news-details-container {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
}

/* Back Button */
.back-btn .btn {
    font-size: 0.95rem;
}

/* Header */
.news-details-header {
    margin-bottom: 30px;
}

.news-details-header .news-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.news-details-header .news-meta {
    font-size: 0.85rem;
    color: #777;
}

/* Image */
.news-details-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

/* Content */
.news-details-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #444;
}

/* Related News Section */
.related-news h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.related-news .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .related-news .news-grid {
        grid-template-columns: 1fr;
    }
}
