.news-wrapper{
    display: flex;
    flex-direction: row;
    align-items: top;
    padding: 20px 0;
}

.news-image{
    margin: 15px 0 0 0;
    width: 150px;
    height: 150px;
}

.news-image img{
    width: 100%;
    height: 100%; 
    object-fit: cover;
}

.news-content {
    width: 70%;
    margin: 0 0 0 20px;
}

.news-content h2 {
    font-size: 1.3em;
    font-weight: 600;
    font-family: "Roboto Slab", Sans-serif
    
}
.news-content h2 a {
    text-decoration: none;
}

.news-content h2 a:hover {
    text-decoration: underline;
}

.post_search {
    display: flex;
    flex-direction: row;
}

.search-filter {
    margin-left: 10px;
    max-width: 200px;
}

.pagination {
 display: flex;
    justify-content: center;
    margin: 30px 0 50px 0; }
    
@media screen and (max-width: 768px) {
  .news-wrapper{
    display: flex;
    flex-direction: column;
    margin: 10px;
}
.news-content {
    width: 100%;
    margin: 0;
}
.news-image{
    margin: 20px auto;
    width: 200px;
    height: 200px;
}

}