/* News Detail Styles */

.news-breadcrumb {
    padding: 20px 0;
    color: #999;
    font-size: 14px;
}

.news-breadcrumb a {
    color: #666;
}

.news-breadcrumb a:hover {
    color: var(--accent);
}

.news-article {
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    /* Box shadow? Optional */
}

.article-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.article-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: normal;
}

.article-meta {
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-divider {
    color: #ddd;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.article-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 4px;
}

.article-content strong {
    color: #333;
    font-weight: bold;
}

.article-footer {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.prev-next p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.prev-next a {
    color: #333;
}

.prev-next a:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .news-article {
        padding: 20px;
    }
    
    .article-title {
        font-size: 22px;
    }
    
    .article-meta {
        flex-wrap: wrap;
    }
}
