.blog-post {
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  padding: 15px;
  position: relative;
}
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-post-list .blog-post {
  border: 2px solid #dddddd;
  margin: 10px 1px;
  width: 236px;
}
.blog-post-list-small {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-post-list-small .blog-post {
  width: 16.66%;
}
.blog-posts-image {
  aspect-ratio: 1.5;
  display: inline-block;
  object-fit: contain;
  padding-bottom: 10px;
  width: 100%;
}
.blog-post-category-title {
  color: #525252;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}
.blog-post-title {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
.blog-post-list-small .blog-post-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.blog-post-image {
  text-align: center;
}
.blog-post-image-image {
  display: inline-block;
  max-height: 350px;
  object-fit: contain;
  width: 100%;
}
.blog-post-list-small .blog-post-image {
  display: inline-block;
  height: auto;
  width: 100%;
}
.blog-post-description img {
  display: block;
  margin: auto;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .blog-post-list-small .blog-post {
    width: 33.33%;
  }
}
@media (max-width: 480px) {
  .blog-post-list-small .blog-post {
    width: 50%;
  }
}
@media (max-width: 840px) {
  .blog-post-list .blog-post {
    width: calc(33.3% - 4px);
  }
}
@media (max-width: 520px) {
  .blog-post-list .blog-post {
    width: calc(50% - 4px);
  }
}
@media (max-width: 360px) {
  .blog-post-list .blog-post {
    margin: 10px 0;
    width: 100%;
  }
}