.news {
  margin-bottom: 37px;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 25px 35px;
  grid-template-rows: 300px 300px;
  align-items: stretch;
}

.news-card {
  border-radius: 15px;
  background: var(--blackColor);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.news-card:hover .news-card__thumb .thumb-a {
  max-width: 80px;
  transition: all 0.4s linear;
}
.news-card:hover .news-card__thumb .thumb-b {
  max-width: 174px;
  transition: all 0.4s linear;
}

.news-card__thumb {
  display: flex;
  align-items: center;
  gap: 5px;
  max-height: 120px;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}
.news-card__thumb .thumb {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: max-width;
}
.news-card__thumb .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: max-width;
}
.news-card__thumb .thumb-a {
  max-width: 174px;
  width: 100%;
  will-change: max-width;
  transition: all 0.4s linear;
}
.news-card__thumb .thumb-b {
  max-width: 80px;
  width: 100%;
  will-change: max-width;
  transition: all 0.4s linear;
}

.news-card__title {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.news-card__except {
  color: #949494;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}