.site-news .news_wr {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.site-news .news_wr .top {
  gap: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.site-news .news_wr .top .top__title {
  justify-content: center;
  text-align: center;
  margin: 0;
}
.site-news .news_wr .top .all {
  text-decoration: none;
}
.site-news .news_wr .items {
  gap: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.site-news .news_wr .items .item {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.site-news .news_wr .items .item .left_part .image a {
  height: 340px;
  display: block;
  overflow: hidden;
  border: 24px solid #fff;
}
.site-news .news_wr .items .item .left_part .image a img, .site-news .news_wr .items .item .left_part .image a svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
@media (max-width: 1440px) {
  .site-news .news_wr .items .item .left_part .image a {
    height: 280px;
  }
}
@media (max-width: 639px) {
  .site-news .news_wr .items .item .left_part .image a {
    height: 250px;
  }
}
.site-news .news_wr .items .item .left_part .image:hover a img {
  transform: scale(1.2);
}
.site-news .news_wr .items .item .left_part .tpl-date {
  font-size: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  font-family: Exo2, sans-serif;
  font-weight: 700;
  z-index: 1;
  margin-top: 30px;
  line-height: 25px;
  color: rgba(var(--color-ixy04fobg), 1);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.site-news .news_wr .items .item:first-child .image a {
  transform: rotateX(0deg) rotateY(0deg) rotateZ(4deg);
}
.site-news .news_wr .items .item:last-child .image a {
  transform: rotateX(0deg) rotateY(0deg) rotateZ(-4deg);
}
.site-news .news_wr .items .item .right_part .title a {
  color: rgba(var(--color-i5zzavpfj), 1);
  font-family: Exo2, sans-serif;
  font-weight: 600;
  font-size: 21px;
}
.site-news .news_wr .items .item .right_part .body {
  margin-top: 10px;
}
@media (max-width: 960px) {
  .site-news .news_wr .items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 639px) {
  .site-news .news_wr .items {
    grid-template-columns: 1fr;
  }
}
