.blog-related-posts__items {
  display: flex;
  padding-left: 0;
  justify-content: center;
}

.blog-related-posts .post--card {
  box-shadow: 0 14px 28px rgba(0,0,0,.15), 0 3px 10px rgba(0,0,0,.12);
  margin: 20px;
  position: relative;
  text-align: left;
  transition: all 0.3s;
  flex-grow: 0;
  width: calc(33% - 40px);
}

.blog-related-posts .post--card .post__photo {
  padding-bottom: 0;
}

.blog-related-posts .post--card .post__photo img {
  width: 100%:
}

.blog-related-posts .post__read-more {
  text-align: left;
  position: initial;
}

.blog-related-posts .cta-btn--inline-link:after {
  display: none;
}

.blog-related-posts .post--card a::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
}

.blog-related-posts .post--card:hover {
  transform: translateY(-7px);
}

@media (max-width: 767px) {
  .blog-related-posts__items {
    flex-direction: column;
  }
  
  .blog-related-posts .post--card {
    width: calc(100% - 40px);
  }
}