/* Related Posts */
.related-posts {
  display: flex;
  margin: 15px 22px;
  padding: 15px 0;
  border-top: 1px solid #e8e8e1;
  border-bottom: 1px solid #e8e8e1;
  flex-direction: column;
  position: relative;
}
.related_posts__title {
  margin: 0;
  width: 100%;
  margin-top: 5px;
  font-weight: normal;
  color: #7f7f7f;
  padding: 0;
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 29px;
  font-style: normal;
}
.rp-container {
  flex-direction: row;
  justify-content: space-between;
  /*    flex-wrap: wrap;*/
  display: flex;
  width: 100%;
  overflow: hidden;
}
.related-posts h2 {
  padding: 0;
  width: 100%;
}
.related-post {
  width: 100%;
  margin: 0;
  max-width: 231px;
  margin-right: 10px;
  flex: none;
}
.related-post.first {
  margin-left: 0;
}
.related-post:last-child {
  margin-right: 0;
}
.related-post a {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.rp-overlay {
  position: absolute;
  background: linear-gradient(180deg, #fdd71c33 0%, #fdd71c 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 5px;
  opacity: 0;
}
.related-post:hover .rp-overlay {
  opacity: 0.3;
}
.rp-image {
  position: relative;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  max-height: 162px;
}
.rp-image img {
  border-radius: 5px;
  width: 100%;
  object-fit: cover;
  height: auto;
}
.rp-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  color: #303030;
  margin-top: 15px;
}
.related_posts-navigation {
  position: absolute;
  right: 15px;
  top: 20px;
  display: flex;
  align-items: center;
}
.related_posts-next-btn,
.related_posts-prev-btn {
  color: #7f7f7f;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.related_posts-navigation .swiper-button-disabled {
  opacity: 0.4;
}
.related_posts-next-btn::before,
.related_posts-prev-btn::before {
  font-family: "Sportbet";
  font-size: 12px;
}
.related_posts-next-btn::before {
  content: "\e902";
}
.related_posts-prev-btn::before {
  content: "\e901";
}

@media screen and (max-width: 650px) {
  .related-posts {
    margin: 15px 0;
    border: 0;
    padding: 15px;
    background-color: #fff;
  }
  .related_posts__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    color: #303030;
    padding-right: 40px;
    box-sizing: border-box;
  }
  /*
    .related-posts h2 {
        position: relative;
    }
    .related-posts h2::after {
        position: absolute;
        font-family: 'Sportbet';
        content: '\e903';
        right: 0;
        height: 14px;
        top: 0;
        bottom: 0;
        margin: auto;
        line-height: normal; 
        color:#7F7F7F;
        font-size: 14px;
        padding: 0;
    }
    .related-posts h2.close::after {
        content: '\e900';
    }
*/
  .rp-container {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }
  .rp-title {
    font-size: 14px;
  }
  .related_posts-navigation {
    top: 15px;
  }
}
@media screen and (max-width: 550px) {
  .related-post {
    opacity: 0.8;
    max-width: 210px;
  }
  .owl-item.active .related-post {
    opacity: 1;
  }
}
