.news-section .news-content {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--grid-gap-large);
}

.news-section .news-content .news-left,
.news-section .news-content .news-right {
  width: 50%;
}
.news-section .news-content .news-left {
  position: relative;
  align-self: stretch;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--card-radius);
  overflow: hidden;
}
.news-section .news-content .news-left .news-left-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0.17%, #000 99.86%);
}
.news-section .news-content .news-left .news-left-content .news-title {
  color: #fff;
}
.news-section .news-content .news-left .news-left-content .news-desc {
  margin-top: 8px;
  color: #fff;
}
.news-section .news-content .news-left .news-left-content .news-date {
  margin-top: 16px;
  color: #fff;
}
.news-section .news-content .news-right {
  display: flex;
  flex-direction: column;
  gap: var(--grid-gap-medium);
}
.news-section .news-content .item-horizontal .item-image {
  width: 33%;
}
.news-section .news-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width:1024px) {
  .news-section .news-content {
    flex-direction: column;
  }

  .news-section .news-content .news-left,
  .news-section .news-content .news-right {
    width: 100%;
  }

  .news-section .news-content .news-left {
    aspect-ratio: 3;
  }

  .news-section .news-content .item-horizontal .item-image {
    width: 25%;
  }
}

@media screen and (max-width: 767px) {
  .news-section .news-content {
    flex-direction: column;
  }

  .news-section .news-content .news-left,
  .news-section .news-content .news-right {
    width: 100%;
  }

  .news-section .news-content .news-left {
    aspect-ratio: 4 / 3;
  }

  .news-section .news-content .item-horizontal .item-image {
    width: 33%;
  }
}
