/* News Detail Page Styles */

.news-detail-section {
    padding: 60px 0 100px;
    background: #ffffff;
}

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

/* Header */
.news-detail-header {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.news-detail-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin-bottom: 20px;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    color: #999;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Content */
.news-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 60px;
}

.news-detail-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.news-detail-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 40px 0 20px;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.news-detail-content blockquote {
    border-left: 4px solid #ff6b00;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

/* Navigation */
.news-detail-navigation {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-btn:hover {
    background: #ff6b00;
    color: #fff;
}

.back-btn {
    background: transparent;
    border: 1px solid #ddd;
}

.back-btn:hover {
    border-color: #ff6b00;
    background: #ff6b00;
    color: #fff;
}

@media (max-width: 768px) {
    .news-detail-title {
        font-size: 28px;
    }

    .news-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .news-detail-navigation {
        flex-direction: column;
        gap: 20px;
    }

    .nav-btn {
        width: 100%;
        justify-content: center;
    }
}