.blog-section {
  overflow: hidden;
  padding-top: 104px;
  padding-bottom: 132px;
}
.blog-section .blog-section__subheader {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #DBDAD6;
  color: #141414;
  margin-bottom: 100px;
}
.blog-section .blog-posts-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0px;
  border-top: 1px solid #DBDAD6;
  border-left: 1px solid #DBDAD6;
}
@media (max-width: 767px) {
  .blog-section .blog-posts-container {
    gap: 30px;
    border: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.blog-section .blog-posts-container.without-border {
  border-top: 0;
  border-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 767px) {
  .blog-section .blog-posts-container.without-border {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}