/* Global Styles */
  
/* Main Content */
.main-content {
    margin-top: 20px;
}

/* Language Switcher */
.language-switcher {
    text-align: right;
    margin-bottom: 20px;
}
.language-switcher a {
    text-decoration: none;
    color: #007bff;
    margin: 0 5px;
}
.language-switcher a:hover {
    text-decoration: underline;
}

/* News List */
.news-list {
    width: 100%;
}
.news-article {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    background-color: #f9f9f9;
}
.news-image img {
    width: 150px;
    height: auto;
    margin-right: 20px;
    border-radius: 5px;
}
.news-info {
    flex: 1;
}
.news-info h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #333;
}
.news-info p {
    font-size: 16px;
    color: #666;
}
.news-info .date {
    font-size: 14px;
    color: #999;
}
.pagination {
    margin-top: 20px;
    text-align: center;
}
.pagination a {
    text-decoration: none;
    margin: 0 5px;
    color: #333;
    padding: 5px 10px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    background-color: #f9f9f9;
}
.pagination a:hover {
    background-color: #e1e1e1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 10px;
    }
    .news-article {
        flex-direction: column;
    }
    .news-image img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}