@charset "UTF-8";

/*Миксины*/

.news__image {
  overflow: hidden;
}

.news__image::before {
  content: "";
  display: block;
  margin-top: 65%;
}

.news__image img {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.news__image--video img {
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
}

.news__item:hover .news__image img {
  -webkit-transform: scale(110%);
      -ms-transform: scale(110%);
          transform: scale(110%);
}

.news__item:hover .news__video {
  width: 72px;
  height: 72px;
}

.news__video {
  position: absolute;
  left: 8px;
  bottom: 8px;
  width: 64px;
  height: 64px;
  z-index: 1;
  background: #fff url(../img/icons/play.svg) center center/32px no-repeat;
  border-radius: 8px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

@media (max-width: 1200px) {
  .news__item:nth-child(3) {
    display: none;
  }
}

@media (max-width: 700px) {
  .news__video {
    width: 56px;
    height: 56px;
  }
}