.news {
  display: flex;
  flex-wrap: wrap;
}
.news-sec {
  margin-top: 50px;
}
.news-item {
  width: calc(25% - 12px);
  background: #fff;
  border-radius: 5px;
  padding: 12px;
  margin-bottom: 15px;
  margin-right: 16px;
}
.news-item:nth-child(4n) {
  margin-right: 0px;
}
.news-item__img {
  height: 180px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.news-item__title {
  margin-top: 14px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #303030;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item__description {
  font-size: 16px;
  margin-top: 8px;
  line-height: 1.2;
  color: #8a8a8a;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .news-item__img {
    height: 140px;
  }
  .news-item__title {
    font-size: 16px;
  }
  .news-item__description {
    font-size: 14px;
    font-weight: 300;
  }
}
@media (max-width: 880px) {
  .news-item {
    width: calc(33.33% - 12px);
  }
  .news-item__img {
    height: 90px;
  }
  .news-item:nth-child(4n) {
    margin-right: 16px;
  }
  .news-item:nth-child(3n) {
    margin-right: 0px;
  }
}
@media (max-width: 640px) {
  .news-item {
    width: calc(50% - 6px);
    margin-right: 12px !important;
  }
  .news-item:nth-child(2n) {
    margin-right: 0px !important;
  }
}
@media (max-width: 520px) {
  .news-item__title {
    font-size: 14px;
  }
}
@media (max-width: 420px) {
  .news-item {
    width: 100%;
    margin-right: 0px !important;
  }
  .news-item__img {
    height: 130px;
  }
}/*# sourceMappingURL=news.css.map */