pre, code {
  font-family: Consolas, 'Courier New', Courier, Monaco, monospace;
}


.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.list .article {
  width: 300px;
  display: flex;
  flex-direction: column;
  border: 0;

}
.list .article .article-titles {
  order: 99;
  text-align: center;
}
.list .article .article-titles .article-title {
    font-size: 1rem;
  font-weight: normal;
}
.list .article .article-image {
  width: 284px;
  float: none;
  margin-left: 8px;
  margin-right: 8px;
}

.list .article .article-meta {
  display: none;
}
.list .article .article-content {
  display: none;
}
.list .article .article-readmore {
  display: none;
}

/* Mobile */
@media screen and (max-width: 768px) {
  .list .article {
    width: 200px;
    display: flex;
    flex-direction: column;
    border: 0;
  
  }
  .list .article .article-image {
    width: 190px;
    float: none;
    margin-left: 5px;
    margin-right: 5px;
  }
}