.related-posts {
  background-color: #eaeaeb;
  padding: 60px 0px 80px;
  margin-top: 60px;
}
.related-posts-wrapper {
  display: flex;
  justify-content: space-between;
}
.related-blog-item {
  width: 30%;
}
.related-blog-title {
  margin-bottom: 18px;!important
}
.related-blog-item-link {
  text-decoration: none;
  color: #303030;
}
.related-post-img {
  max-height: 170px;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 5px;
}
.realted-post-img > img {
  height: auto;
  max-width: 100%;
}
.more-link {
  background: #003468;
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    margin: 0;
    padding: 5px 16px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.more-link:hover {
  background: #004991;
}
@media(max-width:768px){
  .related-posts-wrapper {
    flex-direction: column;
}
  .related-blog-item {
    width: 100%;
    margin-bottom: 40px;
}
}