.related-news-block {
  background-color: #f1f1f1;
  padding: 64px 120px 80px 120px;

  .related-news__title {
    margin-bottom: 48px;
    text-align: center;
  }

  /* Slick slider additional settings */
  .slick-track {
    display: flex;
    gap: 24px;
  }

  .slick-slide {
    width: 281px;
    border-radius: 20px;
    overflow: hidden;
    background-color: white;
  }

  .related-news__slider {
    margin-bottom: 48px;
    margin-right: -120px;
  }

  .related-news__item {
    display: flex;
    flex-direction: column;
  }

  .related-news__img-container {
    width: 281px;
    height: 188px;
  }

  .related-news__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .related-news__detail {
    padding: 20px 16px 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .related-news__date {
    color: #999999;
  }

  .related-news__tag {
    display: flex;
    align-items: center;
    max-width: 236px;
    padding: 4px 8px;
    gap: 4px;
    overflow: hidden;
    color: white;
    border-radius: 6px;
  }

  .related-news__tag-name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 196px;
  }

  .related-news__tag-icon {
    width: 20px;
    height: 20px;
  }

  .related-news__action {
    justify-content: flex-end;
    gap: 12px;
  }

  .related-news__prev,
  .related-news__next {
    padding: 12px 10px;
    background-color: #000;
    display: flex;
    max-height: 50px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .related-news__btn {
    width: 30px;
    height: 30px;
  }

  .is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
  }

  .slick-slider.unslicked {
    margin: 0;
    
    .slick-track {
      justify-content: center;
      transform: none !important;
      max-width: 100%;
    }
  } 
}

/* 281 * 4 + 120 + 72*/
@media (max-width: 1315px) {
  .related-news-block {
    .related-news__action {
      display: flex;
    }
  }
}

@media (max-width: 1080px) {
  .related-news-block {
    padding: 80px 90px;

    .related-news__slider {
      margin-right: -90px;
    }
  }

}

@media (max-width: 768px) {
  .related-news-block {
    padding: 60px 30px;
    
    .related-news__slider {
      margin-right: -30px;
    }
  }

}
