.list-news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-bottom: 85px;
}
.list-news .news-item {
  position: relative;
  padding-top: 100%;
}
.list-news .news-item > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #f0f1f3;
}
.list-news .news-item .icon-many {
  width: 28px;
  height: 28px;
  padding: 6px;
  background: #777777;
  border-radius: 50%;
  position: absolute;
  bottom: 16px;
  right: 16px;
}
.list-news .news-item .icon-many > img {
  width: 16px;
  height: 16px;
}

.news-img-slider .item {
  position: relative;
  padding-top: 100%;
}
.news-img-slider .item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #f0f1f3;
  border-radius: 8px;
}