/* News Article Styles */

.news-article {
    background-color: #fff;
    padding: 30px;
}

.article-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.article-meta .source-link {
    color: #004ea2;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.article-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.article-image {
    margin: 20px 0;
    width: 100%;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.highlight-text {
    font-weight: bold;
    margin-top: 20px;
}

/* Mobile Responsive for News Page */
@media (max-width: 768px) {
    .news-article {
        padding: 15px;
    }
    .article-title {
        font-size: 20px;
    }
    .article-content {
        font-size: 15px;
    }
}