.news-item-page{

  .news-item-section{
    border: 0;
    @include media-breakpoint-down(md) {
      margin-top: $sizeLarge;
    }
  }

  section{
    margin-top: $sizeLarge*3;
    @include media-breakpoint-down(md) {
      margin-top: $sizeLarge*3;
    }
  }

  article{
    >div{
      padding: $sizeLarge $sizeMedium;
      width: 75%;
      margin: auto;
      @include media-breakpoint-down(md) {
        width: auto;
        padding: $sizeMedium $sizeSmall;
      }
    }
  }

  .news-items-wrapper{
    padding: $sizeLarge*2 0;
    @include media-breakpoint-down(md) {
      padding: $sizeLarge 0;
    }
  }

  .news-image-wrapper{
    @include media-breakpoint-down(md) {
      margin-top: $sizeMedium;
      width: 100%;
    }
    width: 90%;
    margin-top: -$sizeLarge;
    overflow: hidden;
    img{
      max-width: 100%;
      opacity: .9;
      transition: transform .3s;
    }
    &:hover{
      cursor: pointer;
      img{
        opacity: 1;
        transform: scale(1.1);
        transition: transform .3s;
      }
    }
  }

}