.news-and-stories-block {
  padding: 120px 80px;
  background: #f1f1f1;

  .news-and-stories__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;
  }

  .news-and-stories__slider {
    margin-bottom: 48px;
    margin-right: -80px;
  }

  .news-and-stories__item {
    display: flex;
    flex-direction: column;
  }

  .news-and-stories__img-container {
    width: 281px;
    height: 188px;
  }

  .news-and-stories__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .news-and-stories__detail {
    padding: 20px 16px 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .news-and-stories__date {
    color: #999999;
  }

  .news-and-stories__tag {
    display: flex;
    align-items: center;
    max-width: 236px;
    padding: 4px 8px;
    gap: 4px;
    overflow: hidden;
    color: white;
    border-radius: 6px;
  }

  .news-and-stories__tag-name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 196px;
  }

  .news-and-stories__tag-icon {
    width: 20px;
    height: 20px;
  }

  .news-and-stories__action {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
  }

  .news-and-stories__prev,
  .news-and-stories__next {
    padding: 12px 10px;
    background-color: #000;
    display: flex;
    max-height: 50px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .news-and-stories__btn {
    width: 30px;
    height: 30px;
  }

  .is-disabled {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
  }
}

@media (max-width: 1079px) {
  .news-and-stories-block {
    padding: 80px 90px;

    .news-and-stories__slider {
      margin-right: -90px;
    }
  }
}

@media (max-width: 767px) {
  .news-and-stories-block {
    padding: 60px 30px;
    
    .news-and-stories__slider {
      margin-right: -30px;
    }
  }
}
