.news-card {
  -webkit-box-shadow: 0px 7px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 7px 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  -o-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.news-card__img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  height: 190px;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .news-card__img img {
    width: 100%;
    height: 100%;
  }
}
.news-card__body {
  min-height: 235px;
  background: #fff;
  padding: 20px 25px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 576px) {
  .news-card__body {
    min-height: unset;
  }
}
.news-card a {
  color: #2e2e2e;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news-card--small p {
  font-size: 15px;
  line-height: 19px;
}
.news-card:hover {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.22);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.22);
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.news-top-item time {
  color: #8E8E8E;
}
.news-top-item__link {
  font-family: 'Roboto-Medium';
  color: #2A5CD5;
  text-decoration: underline;
}
