.block-news .swiper-buttons {
  top: 0;
}
.block-news .swiper-slide {
  max-width: 390px;
  display: flex;
  flex-flow: column;
  height: auto;
}
.news-item-image,
.news-item-image img {
  border-radius: 10px;
}
.news-item-date {
  background-color: #335eb8;
  font-size: 11px;
  line-height: 11px;
  border-radius: 50px;
  padding: 7px 12px;
  position: absolute;
  top: 10px;
  left: 10px;
}
.news-item-title {
  padding-top: 20px;
}
.news-item-descr {
  padding-top: 15px;
  padding-bottom: 10px;
  line-height: 20px;
  flex-grow: 1;
}
.news-item-btn .btn {
  padding: 12px 50px;
}
.block-news h2 {
  width: calc(100% - 100px);
}
/* RESPONSIVE */
@media screen and (min-width: 1300px) {

}
@media screen and (max-width: 1300px) {

}
@media screen and (max-width: 1023px) {

  .news-item-image {
    display: flex;
    flex-flow: column;
  }
  .news-item-image img {
    width: 100%;
    object-fit: cover;
    flex-grow: 1;
  }
}
@media screen and (max-width: 800px) {

  .block-news .swiper-buttons {
    top: 40px;
  }
}
@media screen and (max-width: 600px) {
  .block-news h2 {
    width: 100%;
  }
  .block-news .swiper-slide {
    max-width: calc(100vw - 30px);
  }
  .block-news .swiper-buttons {
    top: 50%;
  }
}