.news-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.news-container .single-post {
    flex-basis: 45%;
    margin: 10px;
}

.news-pagination {
    display: flex;
    justify-content: center;
    margin: 10px;
}

.news-pagination > * {
    margin: 0 5px;
}

@media (max-width: 685px) {
    .news-container .single-post {
        flex-basis: auto;
        width: 90%;
    }
}
