.slider-news {
  overflow: hidden;

  .items {
    position: relative;
    margin-top: 1.25rem;
    margin-bottom: .25rem;

    &::before,
    &::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      z-index: 2;
      width: 1.25rem;
      display: block;
      pointer-events: none;
    }

    &::before {
      right: 100%;
      transform: translateX(.25rem);
      background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    }

    &::after {
      left: 100%;
      transform: translateX(-.25rem);
      background-image: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .item {
      width: 7rem;
      display: flex;
      flex-flow: column nowrap;
      justify-content: flex-start;
      align-items: flex-start;
      gap: .75rem;
      text-decoration: none;
    }

    .img {
      margin-inline: auto;
      width: 100%;
      object-fit: cover;
      aspect-ratio: 112/70;
    }

    .name {
      font-weight: 400;
      font-size: .875rem;
      line-height: 1.125rem;
      color: #27282B;
    }
  }
}
