.news-detail-page {
    padding: 40px 0;
    background-color: #f8f9fa;
    position: relative;
    z-index: 1;
    margin-top: 0 !important;
    clear: both;
    padding-top: 40px;
    display: block;
    float: none;
}

.news-detail-page .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.news-detail-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.news-article {
    color: #333;
    position: relative;
    z-index: 1;
}

.news-header {
    padding-bottom: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.news-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-meta {
    font-size: 14px;
    color: #999;
}

.news-body {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.news-image-container {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.news-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.news-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.news-body p {
    /*margin-bottom: 20px;
    text-align: justify;*/
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.news-body p:last-child {
    margin-bottom: 0;
}

.news-back {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.back-link:hover {
    color: #d4af37;
}

.back-link i {
    margin-right: 8px;
}

.news-sidebar {
    width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.news-sidebar h3 {
    font-size: 18px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4af37;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list li {
    margin-bottom: 15px;
}

.news-list li:last-child {
    margin-bottom: 0;
}

.news-list li a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s;
}

.news-list li a:hover {
    background-color: #f0f4f8;
    color: #1e3a5f;
    padding-left: 15px;
}

.news-not-found {
    text-align: center;
    padding: 60px 20px;
}

.news-not-found h2 {
    font-size: 24px;
    color: #1e3a5f;
    margin-bottom: 20px;
}

.news-not-found p {
    color: #666;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .news-detail-page .container {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .news-detail-content {
        padding: 20px;
    }
    
    .news-header h1 {
        font-size: 22px;
    }
    
    .news-sidebar {
        width: 100%;
        padding: 20px;
    }
}