.news {
  height: 160px;
  display: flex;
  border: 1px solid #dadada;
  border-radius: 24px;
  transition: transform 0.5s;
  cursor: pointer;
  overflow: hidden;
}

.news:hover {
  transform: scale(1.04) !important;
}

.news__img {
  width: 200px;
  min-width: 200px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.news__img_first {
  /*background-image: url("../../../images/about3_img.jpg");*/
}

.news__content {
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.news__title {
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.6em;
}

.news__date {
  font-size: 12px;
  margin-bottom: auto;
}

.news__text {
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.6em;
}

.news__link {
  color: #da291c;
  display: none;
}

@media screen and (width >= 1080px) {
.news {
width: 580px;
}
}

@media screen and (width <= 980px) {
  .news:hover {
    transform: scale(1) !important;
  }
  
  .news {
    flex-direction: column;
    height: auto;
  }

  .news__img {
    height: 140px;
    width: 280px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .news__content {
    flex-direction: column-reverse;
    height: 140px;
  }

  .news__title {
    font-size: 14px;
    -webkit-line-clamp: 3;
    margin-bottom: auto;
  }

  .news__date {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .news__text {
    display: none;
  }

  .news__link {
    color: #da291c;
    font-size: 14px;
    display: block;
  }
}
