.news-slider-wrapper {
    margin-top: 60px;
    margin-left: 96px !important;
    margin-right: 96px !important;

    h2 {
        color: #000;
        font-size: 40px;
        font-weight: normal;
    }

    .over-slider {
      z-index: 2;
    }

    .slick-prev {
      left: -25px;
      z-index: 2;
    }

    .slick-prev {
      border-radius: 0;
      box-shadow: none;
      left: -100px;
      top: 0;
      margin-top: 9px;

      &::before {
        content: '' !important;
        background-image: url(../icons/slider-button-2.svg);
        display: inline-block; 
        width: 60px;
        height: 60px; 
        background-size: cover;
        background-repeat: no-repeat;
        opacity: 0.9;
      }

      &:hover {
        opacity: 0.8;
      }

      &:focus {
        opacity: 0.8;
      }
    }

    .slick-next {
      border-radius: 0;
      box-shadow: none;
      left: -100px;
      top: 0;
      margin-top: 75px;

      &::before {
        content: '' !important;
        background-image: url(../icons/slider-button-1.svg);
        display: inline-block; 
        width: 60px;
        height: 60px; 
        background-size: cover;
        background-repeat: no-repeat;
        opacity: 0.9;
      }

      &:hover {
        opacity: 0.8;
      }

      &:focus {
        opacity: 0.8;
      }
    }

    .slick-next.slick-disabled {
      &::before {
        background-image: url(../icons/slider-button-1-gray.svg);
        opacity: 1;
      }

      &:hover {
        opacity: 1;
      }

      &:focus {
        opacity: 1;
      }
    }

    .slick-disabled {
      &::before {
        background-image: url(../icons/slider-button-2-grey.svg);
        opacity: 1;
      }

      &:hover {
        opacity: 1;
      }

      &:focus {
        opacity: 1;
      }
    }

    .slick-slide {
        margin: 0 32px 0 0;
    }

    .slick-list {
        margin: 0 -32px 0 0;
    }

    .link {
        margin-bottom: 40px !important;
        
        a {
            text-decoration: none !important;
            color: #000 !important;

            &:after {
                content: "";
                display: inline-block; 
                width: 16px;
                height: 12px; 
                background-image: url(../icons/link-arrow.svg);
                background-size: cover;
                background-repeat: no-repeat;
                margin-left: 10px; 
                transition: transform 0.3s ease;
            }

            &:hover:after {
                transform: translateX(5px);
            }
        }
    }

    .item {
      overflow: hidden;
      
      &:hover {
        img {
          transform: scale(1.1);
        }
      }
      
      img {
        transition: transform 0.3s ease;
      }

      a {
        color: #000;
        text-decoration: none;
        overflow: hidden;
        transition: transform 0.3s ease;

        &:hover {
          .item-title {
            text-decoration: underline;
          }
        }
      }
    }

    .item-image {
      overflow: hidden;
    }

    .item-title {
      font-size: 32px;
      margin-top: 16px;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .item-date {
      font-size: 12px;
      margin-bottom: 16px;
    }

    .item-description {
      font-size: 16px;
      margin-bottom: 36px;
    }

    .item-link {
      height: 40px;

      a {
        text-decoration: none;
        font-size: 14px;
        color: #041F33;
        border: 1px solid #041F33;
        padding: 10px;

        &:after {
          content: "";
          display: inline-block; 
          width: 16px;
          height: 12px; 
          background-image: url(../icons/news-item-link.svg);
          background-size: cover;
          background-repeat: no-repeat;
          margin-left: 10px; 
        }

        &:hover {
          content: "";
          background-color: #041F33;
          color: #fff;
          transition: all .2s linear;
        }

        &:hover::after {
          background-image: url(../icons/news-item-link-white.svg);
          transition: all .2s linear;
        }
      }
    }
}

@media (max-width: 768px) {
  .news-slider-wrapper {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}