.post-preview {
  border-radius: 13px;
  border: 1px solid #FFFFFF;
  background-color: #FBFBFD;
  box-shadow: 9px 10px 25px -5px #0000000F, -3px -4px 10px -6px #00000008;
  padding: 13px;
}

.post-preview__image-link {
  overflow: hidden;
  display: block;
  font-size: 0;
  max-height: 201px;
  border-radius: 12px;
}

.post-preview__image-link img {
  object-fit: cover;
  width: 100%;
  /*height: 100%;*/
  height: 228px;
}

.post-preview__image-link img {
  display: block;
  object-fit: cover;
  transition-property: transform;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-duration: .3s;
}

.post-preview:hover .post-preview__image-link img {
  --scale: 1.1;
  transform: translate(0, 0) rotate(0) skew(0) skewY(0) scaleX(var(--scale)) scaleY(var(--scale));
}

.post-preview__title {
  overflow: hidden;
  display: -webkit-box;
  color: #333333;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 50px;
  margin-top: 20px;
}

.post-preview__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.post-preview__footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-preview__category {
  color: #575758;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: lowercase;
  background-color: #E8E8ED;
  border-radius: 24px;
  padding: 8px 10px 7px 10px;
}

.post-preview__footer-left .bullet {
  background-color: #666666;
  width: 4px;
  height: 4px;
  border-radius: 100%;
}

.post-preview__date {
  color: #666666;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.post-preview__reading-time {
  display: flex;
  align-items: center;
  color: #a1a1a2;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.post-preview__reading-time:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cg fill='%23666' clip-path='url(%23a)' opacity='.6'%3E%3Cpath d='M7.911 10.156a1.089 1.089 0 1 1 .24-2.164 1.089 1.089 0 0 1-.24 2.164Z'/%3E%3Cpath fill-rule='evenodd' d='m10.794 12.07-3.32-2.328 1.101-1.244 2.851 2.756a.516.516 0 0 1-.632.817Z' clip-rule='evenodd'/%3E%3Cpath fill-rule='evenodd' d='M6.06 1.01c0-.544.441-.984.985-.984h1.974c.544 0 .985.44.985.984v.07c0 .544-.441.984-.985.984h-.24v.803a6.542 6.542 0 1 1-1.494 0v-.803h-.24a.984.984 0 0 1-.985-.984v-.07Zm1.974 13.188a4.832 4.832 0 1 0 0-9.664 4.832 4.832 0 0 0 0 9.664Z' clip-rule='evenodd'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 .026h16v16H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.post-preview__reading-time:after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%23646465' fill-rule='evenodd' d='M12.644 4.301a1 1 0 0 1 1.413.035l6.667 7a1 1 0 0 1 0 1.38l-6.667 7a1 1 0 0 1-1.448-1.38l5.058-5.31H4a1 1 0 1 1 0-2h13.667l-5.058-5.31a1 1 0 0 1 .035-1.415Z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.related-posts__list .single_nav_posts_nums {
  display: none;
}

.related-posts__list .glide__arrows {
  gap: 16px;
}

.related-posts__list .glide__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.6px solid #d5d9d9;
  background-color: #fff;
  -webkit-tap-highlight-color: transparent;
}

.related-posts__list .glide__arrow:hover {
  background-color: #d5d9d9;
}

.related-posts__list .glide__arrow::after {
  width: 44px;
  height: 44px;
  background-color: #666666;
}

.related-posts__list .glide__arrow[disabled] {
  background-color: #dfe2e3;
  border-color: #dfe2e3;
}

.related-posts__list .glide__arrow[disabled]::after {
  background-color: #929293;
}

.related-posts__list .glide__arrow--left {

}

.related-posts__list .glide__arrow--right {
  right: 0;
}

.related-posts__title {
  color: #282828;
  font-size: 39px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.related-posts__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

@media (max-width: 597px) {
  .post-preview {
    overflow: hidden;
    max-width: 335px;
    margin: 0 auto;
    border-radius: 16px;
    border: none;
    padding: 0;
  }

  .related-posts__header {
    margin-bottom: 32px;
  }

  .related-posts__title {
    font-size: 24px;
  }

  .post-preview__image-link {
    border-radius: 0;
  }

  .post-preview__inner {
    position: relative;
    padding: 46px 24px 24px;
    margin-top: 24px;
  }

  .post-preview:hover .post-preview__image-link img {
    --scale: none;
    transform: none;
  }

  .post-preview__title {
    line-height: 24px;
    margin-top: 0;
  }

  .post-preview__category {
    position: absolute;
    inset: 0 auto auto 24px;
    font-size: 15px;
  }

  .post-preview__footer {
    margin-top: 16px;
  }

  .post-preview__footer-left .bullet {
    display: none;
  }

  .related-posts__list .glide__arrows {
    justify-content: center;
  }

  .related-posts__list .glide__arrow:hover {
    background-color: #fff;
  }
}