.posts-container {
  padding: 0 9.375rem 7.5rem 9.375rem;
}
@media only screen and (max-width: 1099px) {
  .posts-container {
    padding: 0 40px 50px 40px;
  }
}
@media only screen and (max-width: 699px) {
  .posts-container {
    padding: 0 20px 50px 20px;
  }
}
.posts-container .posts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.75rem;
  padding-bottom: 3.75rem;
}
@media only screen and (max-width: 699px) {
  .posts-container .posts {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 699px) {
  .posts-container .posts {
    display: block;
  }
}
@media only screen and (max-width: 699px) {
  .posts-container .posts .post-item {
    margin-bottom: 25px;
  }
}
.posts-container .posts .post-item .post-image img {
  display: block;
  width: 100%;
}
.posts-container .posts .post-item .post-info .post-title {
  margin: 15px 0;
}
@media only screen and (max-width: 699px) {
  .posts-container .posts .post-item .post-info .post-title {
    margin-top: 12px;
    margin-bottom: 7px;
  }
}
.posts-container .posts .post-item .post-info .page-excerpt p {
  margin: 0;
}
.posts-container .posts .post-item .post-info .post-read-more {
  display: inline-block;
  font-weight: 600;
  margin-top: 12px;
}