.list-news-wrapper {
  padding: 0;
  margin-bottom: 20px;
}

.news-images {
  outline: 0 !important;
  position: relative;
  display: block;
}

.news-images::after {
  content: "";
  padding-bottom: 56.25%;
  display: block;
}

.news-images img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.news-title {
  font-size: 20px;
  outline: 0;
  line-height: 1.3;
  color: #000;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-desc {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.news-desc span {
    color: #919191;
}
.time-post {
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-category {
  display: flex;
  gap: 12px;
  margin: 12px 0;
}

.new-category-item {
  display: flex;
  padding: 6px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  background: #fff;
  color: #8cb630;
  font-size: 16px;
  font-weight: 600;
}

.news-on-home {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 30px;
  grid-gap: 24px;
}

.news-item {
  display: flex;
  border-radius: 9px;
  background: #fff;
  overflow: hidden;
}

.news-item:hover {
    box-shadow: 0 2px 3px -1px rgb(200 200 200 / 20%), 0 3px 6px 1px rgb(200 200 200 / 14%), 0 1px 7px 2px rgb(200 200 200 / 10%);
}

.news-item:first-child {
  flex-direction: column;
  grid-row-start: span 3;
}

.news-content {
  flex: 1;
  padding: 8px 12px;
  gap: 6px;
  display: flex;
  flex-direction: column;
}

.news-item:not(:first-child) .news-images {
  width: 232px;
  box-shadow: none;
}
