/* 
.related_posts_module{
  padding: 48px 24px;
}

.related_posts_module__heading{
  text-align: center;
  margin-bottom: 24px;
}
.related_posts_module__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.related_posts_module__grid--single{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.related_posts_module__grid--single .related_posts_module__card{
  justify-self: end;
}
.related_posts_module__grid--single .related_posts_module__card--prev{
  justify-self: start;
}
.related_posts_module__card{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.04);
  max-width: 450px;
  width: 100%;
}
.related_posts_module__card--prev{
  justify-self: start;
}
.related_posts_module__card--next{
  grid-template-columns: 1fr 120px;
  text-align: right;
  justify-self: end;
}
.related_posts_module__card--next img{
  order: 2;
}
.related_posts_module__card--next .related_posts_module__meta{
  order: 1;
}
.related_posts_module__card img{
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}
.related_posts_module__meta{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.related_posts_module__eyebrow{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #6b7280;
}
.related_posts_module__title{
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}

@media (max-width: 900px){
  .related_posts_module__grid{
    grid-template-columns: 1fr;
  }
  .related_posts_module__grid--single{
    grid-template-columns: 1fr;
  }
  .related_posts_module__card{
    grid-template-columns: 100px 1fr;
  }
  .related_posts_module__card--next,
  .related_posts_module__card--prev{
    justify-self: stretch;
    text-align: left;
  }
  .related_posts_module__card--next img{
    order: 0;
  }
  .related_posts_module__card--next .related_posts_module__meta{
    order: 0;
  }
} */






.row.related_posts_module{
    display: block;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.related_posts_module__heading{
  text-align: center;
}
 .row.related_posts_module .child-pages-columns-container{
   margin: 0 0 0 20% !important;
   width: 80%;
 }
 .row.related_posts_module .child-pages-columns-container:not(.section-is-slider){
   /* display: flex;
   align-items: flex-start;
   justify-content: center;
   flex-wrap: wrap; */
    
   display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 0 auto !important;
   width: 65%;
 }
 .row.related_posts_module .child-pages-columns-container.section-is-slider{
   visibility: hidden;
}
.row.related_posts_module .child-pages-columns-container.section-is-slider.slick-initialized{
   visibility: visible;
} 
.row.related_posts_module .child-pages-columns-container.section-is-slider .slick-track{
   display: flex;
}
 .row.related_posts_module .column{
    display: block;
    position: relative;
    aspect-ratio: 2 / 3;
    padding: 0;
    margin-right: 20px;
    margin-bottom: 20px;
    max-width: calc(25% - 20px);
 }

 .row.related_posts_module .child-pages-columns-container:not(.section-is-slider) .column{
    max-width: 100%;
 }

 .row.related_posts_module .column .card-image{
   position: absolute;
   width: 100%;
   z-index: 0;
   height: 100%;
}

.row.related_posts_module .column .card-image .card-image-wrapper{
   margin-bottom: 0;
    height: 100%;
    position: relative;
    border-radius: 30px !important;
    overflow: hidden;
}

.row.related_posts_module .column .card-image .card-image-wrapper::before{
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   left: 0;
   top: 0;
   background: linear-gradient(0deg, rgba(25, 29, 56, 1) 0%, rgba(25, 29, 56, 1) 25%, rgba(25, 29, 56, 0) 84%);
}

.row.related_posts_module .column .card-image .card-image-wrapper::after{
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   left: 0;
   top: 0;
   opacity: 0;
   background: linear-gradient(0deg, rgba(6, 151, 130, 1) 0%, rgba(6, 151, 130, 1) 18%, rgba(6, 151, 130, 0) 84%);
   transition: all .2s ease-in-out;
}


.row.related_posts_module .column:hover .card-image .card-image-wrapper::after{
   opacity: 1;
 }

 
 .row.related_posts_module .column:hover .card-image .card-image-wrapper .card-image-image{
   transform: scale(1.1) rotate(-3deg);
 }


.row.related_posts_module .column .card-image .card-image-wrapper .card-image-image{
   height: 100%;
   transition: transform 250ms linear;
   background-size: cover;
   background-position: center;
}
.row.related_posts_module .column .card-image .card-image-wrapper .card-image-image.with-fallback-image{
       background-size: 90%;
    background-repeat: no-repeat;
    background-position: center;
}
.row.related_posts_module .column .card-content{
   z-index: 1;
   position: relative;
   display: inline-flex;
   height: 100%;
   width: 100%;
   flex-direction: column;
   align-items: center;
   justify-content: flex-end;
   padding: 15px 45px;
    text-decoration: none;
}

.row.related_posts_module .column .card-content h2.card-content-title{
   font-weight: 700;
   font-size: 27px !important;
   color: white;
   /* height: 102px; */
   margin-bottom: 10px !important;
   text-align: center;
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
   text-overflow: ellipsis;
   font-family: "Inter", sans-serif !important;
}
.row.related_posts_module .column .card-content p.card-content-intro{
   color: #ffffff;
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
   text-overflow: ellipsis;
   font-size: 17px;
   text-align: center;
   font-weight: 300;
}
.row.related_posts_module .column .card-content span.card-more{
   background: #ffffff;
   min-width: 50%;
   text-align: center;
   padding: 15px 37px;
   border-radius: 30px;
   font-size: 18px;
   text-transform: uppercase;
   line-height: 1;
   color: #191d38;
   font-weight: 600;
   transition: background-color 1s ease, color 1s ease;
}
.row.related_posts_module .column .card-content:hover span.card-more{
   background: #191d38;
   color: #ffffff;
}
.slider-arrows-cps{
    display: flex;
    width: 100%;
    justify-content: center;
    /* margin-right: 15%; */
    float: right;
    gap: 30px;
}
.slider-arrows-cps .arrow-container{
   background: rgba(17, 22, 54, 0.15);
   padding: 10px;
   border-radius: 100%;
   width: 35px;
   height: 35px;
   display: flex;
   justify-content: center;
   align-items: center;
   transition: all .2s ease-in-out;
   cursor: pointer;
}
.slider-arrows-cps .arrow-container:hover{
   background: rgba(17, 22, 54, 0.25);
}
.slider-arrows-cps .arr{
   border: solid #111636;
   border-width: 0 3px 3px 0;
   display: inline-block;
   padding: 3px;
   width: 13px;
   height: 13px;
   cursor: pointer;
   transition: all .3s ease-in-out;
}
.slider-arrows-cps .arr:hover{
   width: 16px;
   height: 16px;
}
.slider-arrows-cps .arr-prev{
   transform: rotate(-45deg);
   -webkit-transform: rotate(-45deg);
}
.slider-arrows-cps .arr-next{
   transform: rotate(135deg);
   -webkit-transform: rotate(135deg);
}


@media (max-width: 1600px) {
   .row.related_posts_module .column .card-content h2.card-content-title{
      font-size: 23px !important;
   }
   .row.related_posts_module .column .card-content p.card-content-intro{
      font-size: 14px;
   }
   .row.related_posts_module .column .card-content span.card-more{
      padding: 11px 37px;
      font-size: 15px;
   }
}

@media (max-width: 1440px) {
   .row.related_posts_module .column{
      flex: 1 1 calc(33.33% - 20px);
      max-width: calc(33.33% - 20px);
   }
    .row.related_posts_module .child-pages-columns-container:not(.section-is-slider){

   width: 75%;
 }
}

@media (max-width: 1199px) {
   .row.related_posts_module .column{
      flex: 1 1 calc(50% - 20px);
      max-width: calc(50% - 20px);

   }
   .row.related_posts_module .column .card-content h2.card-content-title {
      font-size: 25px !important;
   }

}
@media (max-width: 1050px) {
   .row.related_posts_module .child-pages-columns-container:not(.section-is-slider) {
      display: grid;
      grid-template-columns: 1fr 1fr;
   }
}
@media (max-width: 767px) {
   .row.related_posts_module .child-pages-columns-container {
      margin: 0 0 0 10% !important;
      width: 90%;
  }
  .row.related_posts_module .column .card-content {
      padding: 15px;
   }
   .row.related_posts_module .column .card-content h2.card-content-title{
      font-size: 20px !important;
   }
   .row.related_posts_module .column .card-content p.card-content-intro {
      font-size: 14px;
      margin-bottom: 10px;
   }

   .slider-arrows-cps {
      display: flex;
      margin-right: unset;
      float: unset;
      margin: 0 auto;
  }

}

@media (max-width: 640px) {
    .row.related_posts_module .child-pages-columns-container:not(.section-is-slider) {
        display: grid;
        grid-template-columns: 1fr;
    }
    .row.related_posts_module .child-pages-columns-container:not(.section-is-slider) .column {

    margin-right: 0;
   }
   }
@media (max-width: 540px) {
   .row.related_posts_module .column .card-content span.card-more {
      padding: 5px 27px;
      font-size: 13px;
  }
  .row.related_posts_module .column {
      aspect-ratio: 2 / 3;
      margin-right: 12px;
      margin-bottom: 12px;
   }
   .row.related_posts_module .child-pages-columns-container.section-is-slider {
      margin: 0 !important;
      width: 130%;
      max-width: none;
      transform: translateX(10%);
  }
}

@media (max-width: 425px) {
   .row.related_posts_module .child-pages-columns-container.section-is-slider {
      margin: 0 !important;
      width: 140%;
      max-width: none;
      transform: translateX(15%);
  }
}

@media (max-width: 375px) {
   .row.related_posts_module .child-pages-columns-container.section-is-slider {
      margin: 0 !important;
      width: 150%;
      max-width: none;
      transform: translateX(10%);
  }
}

@media (max-width: 325px) {
   .row.related_posts_module .child-pages-columns-container.section-is-slider {
      margin: 0 !important;
      width: 160%;
      max-width: none;
      transform: translateX(7%);
  }
}
