.related-post-section {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  overflow: hidden;
}

.related-post-section .wrap .columns .column.related-post-section {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  background: #F2F2F2;
}

.related-post-section .wrap {
  width: 100%;
  max-width: 1440px;
  padding: 80px 120px;
}

.related-post-section .wrap .columns {
  display: flex;
  flex-flow: column nowrap;
  gap: 60px;
}

.related-post-section .wrap .columns .column {}

.related-post-section .wrap .columns .column-header {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  gap: 20px;
  justify-content: space-between;
}

.related-post-section .wrap .columns .column-header a.view-more-button {
  display: flex;
  gap: 8px;
  border: solid 1px #000;
  border-radius: 200px;
  padding: 18px 24px;
  font-family: Funnel Sans;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
}

.related-post-section .wrap .columns .column-header h2 {
  margin: 0;
  color: #000;
  font-size: var(--desktop-h2-size);
  line-height: var(--desktop-h2-line-height);
}

.related-post-section .wrap .columns .column-header .slick-arrow-buttons {
  position: relative;
  margin-left: auto;
  display: flex;
  flex-flow: row nowrap;
  gap: 12px;
  align-items: center;
}

.related-post-section .wrap .columns .column-header .slick-arrow-buttons .g-slick-arrow-button {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  transform: unset;
  width: 48px;
  height: 48px;
}

.related-post-section .wrap .columns .column-header .slick-arrow-buttons .g-slick-arrow-button:before {
  display: none;
}

.related-post-section .wrap .columns .column-body {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 24px;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}

.related-post-section .wrap .columns .column-body.slick-initialized {
  display: block;
  padding-bottom: 20px;
  margin-left: -12px;
  margin-right: -12px;
}

.related-post-section .wrap .columns .column-body.slick-initialized .slick-list {
  padding-bottom: 25px !important;
}

.related-post-section .wrap .columns .column-body .column-post {
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
}

.related-post-section .wrap .columns .column-body.slick-initialized .column-post {
  margin-left: 12px;
  margin-right: 12px;
  opacity: .5;
}

.related-post-section .wrap .columns .column-body.slick-initialized .column-post.slick-active {
  opacity: 1;
}

.related-post-section .wrap .columns .column-body .column-post .post-image-wrap {
  width: 100%;
  height: 240px;
  display: flex;
  flex-flow: column nowrap;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
}

.related-post-section .wrap .columns .column-body .column-post .post-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 0;
}

.related-post-section .wrap .columns .column-body .column-post .post-image-wrap a {
  width: 100%;
  height: 100%;
  padding: 0 !important;
}

.related-post-section .wrap .columns .column-body .column-post .post-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 0;
}

.related-post-section .wrap .columns .column-body .column-post .post-details {
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
  justify-content: space-between;
}

.related-post-section .wrap .columns .column-body .column-post .post-details .post-date {
  display: flex;
  flex-flow: row nowrap;
  gap: 8px;
  align-items: center;
  font-family: Funnel Sans;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #D0576E;
}

.related-post-section .wrap .columns .column-body .column-post .post-details .post-date .icon {
  width: 100%;
  max-width: 20px;
  height: 20px;
}

.related-post-section .wrap .columns .column-body .column-post .post-details .post-date .icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.related-post-section .wrap .columns .column-body .column-post .post-details h4 {
  margin: 0;
  font-family: var(--default-font-family);
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0%;
  text-transform: capitalize;
  margin-bottom: 12px;
}
.related-post-section .wrap .columns .column-body .column-post .post-details p {
  font-family: Funnel Sans;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0;
  color: #404040;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.related-post-section .wrap .columns .column-body .column-post a.read-more {
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  color: #1B2540;
  align-items: center;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0.72px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: underline;
  -webkit-text-decoration-style: solid;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.related-post-section .wrap .columns .column-body .column-post .post-details h4 a {
  padding: 0;
  color: #000000;
  letter-spacing: 0;
  text-decoration: none;
  font-family: 'Funnel Sans';
  font-size: 22px;
  line-height: 30px;
  text-transform: capitalize;
}

.related-post-section .wrap .columns .column-body .column-post .post-details h4 a:hover {
  text-decoration: underline;
}


@media only screen and (max-width: 1279px) {
  .related-post-section .wrap {
      padding: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .related-post-section .wrap {
      padding: 40px 0px;
  }

  .related-post-section .wrap .columns {
      gap: 24px;
  }

  .related-post-section .wrap .columns .column-header {
      padding-left: 20px;
      padding-right: 20px;
  }

  .related-post-section .wrap .columns .column-body .column-post .post-details {
      gap: 16px;
  }

  .related-post-section .wrap .columns .column-header h2 {
      font-size: var(--mobile-h2-size);
      line-height: var(--mobile-h2-line-height);
  }

  .related-post-section .wrap .columns .column-body {
      grid-template-columns: repeat(1, minmax(320px, 1fr));

  }

  .related-post-section .wrap .columns .column-body .column-post {
      gap: 12px
  }

  .related-post-section .wrap .columns .column-body:not(.slick-initialized) {
      padding-left: 20px;
      padding-right: 20px;
  }

  .related-post-section .wrap .columns .column-body .column-post .post-details h4 {
      font-size: 20px;
      line-height: 32px;
  }

  .related-post-section .wrap .columns .column-body .column-post .post-image-wrap {
      order: unset;
  }
}

.related-post-section .wrap .columns .column-body.slick-initialized .slick-dots {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 8px;
}

.related-post-section .wrap .columns .column-body.slick-initialized .slick-dots li {
  margin: 0;
  width: 16px;
  height: 16px;
}

.related-post-section .wrap .columns .column-body.slick-initialized .slick-dots li button {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #CECECE;
  opacity: .5;
}

.related-post-section .wrap .columns .column-body.slick-initialized .slick-dots li button:before {
  display: none;
}

.related-post-section .wrap .columns .column-body.slick-initialized .slick-dots li button:hover,
.related-post-section .wrap .columns .column-body.slick-initialized .slick-dots li.slick-active button {
  background: #D0576E;
  opacity: 1;
}

@media (max-width: 767px) {
  .related-post-section .wrap .columns .column-header {
      flex-flow: column nowrap;
      align-items: center;
      gap: 20px;
  }

  .related-post-section .wrap .columns .column-header .slick-arrow-buttons {
      display: none;
  }

  .related-post-section .wrap .columns .column-body.slick-initialized {
      margin-left: -7px;
      margin-right: -7px;
  }

  .related-post-section .wrap .columns .column-body.slick-initialized .column-post {
      margin-left: 7px;
      margin-right: 7px;
  }
}

@media (max-width: 767px) {
  .related-post-section .wrap .columns {
      gap: 40px;
  }

  .related-post-section .wrap .columns .column-body.slick-initialized .column-post.slick-current {
      opacity: 1;
  }
}