.news-page-content {
    flex-grow: 1; /* Take up the remaining space after the sidebar */
    padding-left: 20px; /* Add some space between the sidebar and content */
}

.news-page-header {
    margin-bottom: 20px;
}

.news-page-header h1 {
    font-size: 2em;
    color: #416ca3; 
    font-family: 'Popins', sans-serif; /* Your chosen font */
    font-size: 3rem; /* Size of the page title */
}

.news-page-articles {
    display: flex;
    flex-direction: column;
}

.news-article-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5; /* Line separator */
}

.news-article-thumbnail img {
    width: 120px; /* Fixed width */
    height: 80px; /* Fixed height, adjust as needed */
    object-fit: cover;
    margin-right: 15px;
}

.news-article-details {
    flex-grow: 1;
}

.news-article-title {
    font-size: 1.5em;
    margin: 0;
}

.news-article-description {
    font-size: 1em;
    color: #666;
    margin: 5px 0;
}

.news-article-read-more {
    display: inline-block;
    margin-top: 10px;
    background-color: #416ca3;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.news-article-read-more:hover {
    background-color: #58a1ce;
}

/* Adjustments for responsiveness, if needed */
@media (max-width: 768px) {
    .news-page-wrapper {
        flex-direction: column;
    }

    .news-page-content {
        padding-left: 0;
    }
}
