.related-posts--section {
  width: 100%;
  max-width: 100%;
  position: relative;
  margin-top: 20px;
  padding-bottom: 100px;
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .related-posts--section {
    margin-top: 100px;
  }
}
.related-posts--section .top--decorator {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  width: 100%;
}
.related-posts--section__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .related-posts--section__container {
    padding: 0 60px;
  }
}
@media screen and (min-width: 1500px) {
  .related-posts--section__container {
    padding: 0 30px;
  }
}
.related-posts--section .heading--container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .related-posts--section .heading--container {
    margin-bottom: 50px;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
.related-posts--section .heading--container .heading {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: var(--green1);
}
@media screen and (min-width: 768px) {
  .related-posts--section .heading--container .heading {
    font-size: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .related-posts--section .heading--container .heading {
    font-size: 40px;
  }
}
.related-posts--section .swiper {
  overflow: visible;
  position: relative;
  --swiper-scrollbar-size: 14px;
}
.related-posts--section .swiper .swiper-wrapper {
  margin-bottom: 20px;
}
.related-posts--section .swiper .swiper-slide {
  height: auto;
}
.related-posts--section .swiper .swiper-scrollbar {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  margin-top: 40px;
  cursor: grab;
  background: rgba(20, 51, 45, 0.1);
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .related-posts--section .swiper .swiper-scrollbar {
    margin-top: 50px;
  }
}
.related-posts--section .swiper .swiper-scrollbar:active {
  cursor: grabbing;
}
.related-posts--section .swiper .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--green1);
  border-radius: 10px;
}
.related-posts--section .related-post__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.related-posts--section .related-post__card:hover, .related-posts--section .related-post__card:focus {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  outline: none;
}
.related-posts--section .related-post__card:focus-visible {
  outline: 2px solid var(--green3);
  outline-offset: 2px;
}
.related-posts--section .related-post__card .image--container {
  position: relative;
  width: 100%;
  padding: 10px 10px 0 10px;
}
@media screen and (min-width: 768px) {
  .related-posts--section .related-post__card .image--container {
    padding: 15px 15px 0 15px;
  }
}
.related-posts--section .related-post__card .image--container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
  height: 150px;
}
@media screen and (min-width: 768px) {
  .related-posts--section .related-post__card .image--container img {
    border-radius: 16px;
    height: 250px;
  }
}
.related-posts--section .related-post__card .content--container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 15px;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .related-posts--section .related-post__card .content--container {
    padding: 20px;
    gap: 20px;
  }
}
.related-posts--section .related-post__card .content--container-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.related-posts--section .related-post__card .categories {
  font-size: 12px;
  font-weight: 400;
  color: var(--green1);
  letter-spacing: 0.5px;
  border: 1px solid var(--green1);
  border-radius: 999px;
  padding: 5px 10px;
}
@media screen and (min-width: 768px) {
  .related-posts--section .related-post__card .categories {
    font-size: 14px;
  }
}
.related-posts--section .related-post__card .post-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--green1);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .related-posts--section .related-post__card .post-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .related-posts--section .related-post__card .post-title {
    font-size: 22px;
  }
}
.related-posts--section .related-post__card .post-date {
  font-size: 14px;
  font-weight: 400;
  color: var(--sand);
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .related-posts--section .related-post__card .post-date {
    font-size: 15px;
  }
}
.related-posts--section .related-post__card .explore-now {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 25px;
  color: var(--green1);
  font-size: 14px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .related-posts--section .related-post__card .explore-now {
    font-size: 16px;
  }
}
.related-posts--section .related-post__card .explore-now svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}
.related-posts--section .related-post__card .explore-now svg path:first-child {
  fill: var(--green1);
}
.related-posts--section .related-post__card .explore-now svg path:last-child {
  fill: #ffffff;
}
.related-posts--section .related-post__card:hover .explore-now svg {
  transform: translateX(3px);
  transition: transform 0.3s ease;
}
.related-posts--section.related-posts--mrktblog-posts {
  background: var(--purple3);
}
.related-posts--section.related-posts--advantage360-reports {
  background: var(--green1);
}
.related-posts--section.related-posts--advantage360-reports .heading {
  color: var(--sand);
}
.related-posts--section.related-posts--advantage360-reports .swiper-scrollbar-drag {
  background: #ffffff !important;
}

.related-posts__container {
  overflow: hidden;
}

/*# sourceMappingURL=related-posts.css.map */
