.news-card {
  background-color: #fff;
  border: none;
  padding: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 25px 2px rgba(106, 129, 140, 0.1);
          box-shadow: 0 2px 25px 2px rgba(106, 129, 140, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  height: 100%;
}

.news-card img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.news-card .title__card {
  margin: 20px 0 15px !important;
  font-weight: 700;
}

.news-card>p {
  margin-bottom: 44px;
}

.news-card .bottom__info__news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-top: auto;
  width: 100%;
}

.news-card .bottom__info__news .small__text {
  font-size: 16px;
  font-weight: 400;
  color: #6D6D6D;
}

@media screen and (max-width: 1024px) {
    .news-card .title__card {
        font-size: 20px;
    }
}

/* @media screen and (max-width: 992px) {
    .news-card .title__card {
        font-size: 20px;
    }
} */

@media screen and (max-width: 768px) {
    .news-card {
        padding: 20px;
    }
    .news-card img {
        height: 200px;
    }
}