.sub-banner {
  display: flex;
  flex-direction: column;
}

.sub-banner::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background:
    radial-gradient(
      75% 74% at 0% 91%,
      rgba(255, 255, 255, 0.3) 14%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(196deg, #c9fed3 30%, #eaffe5 61%, #ffffff 112%);
  opacity: 0.6;
}

.news-list {
  margin-top: 5vw;
  padding: 4vw 0;
  gap: 20px;
}

.news-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 10px 0;
}

.news-link {
  text-decoration: none;
  color: inherit;
}

.news-card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 10px;
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.news-card .news-image {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  overflow: hidden;
  border-radius: 10px;
  flex-shrink: 0;
}

.news-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card .news-content {
  flex: 1;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
}

.news-card .news-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 0.75rem;
  font-family: "Montserrat-SemiBold";
}

.news-card .news-desc {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  height: 10%;
}

.news-card .news-date {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 1rem;
}

@media screen and (max-width: 1366px) {
  .sub-banner {
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 767px) {
  .news-card {
    flex-direction: column;
  }

  .news-card .news-image {
    width: 100%;
    min-width: 100%;
    height: 120px;
  }

  .news-card .news-content {
    padding: 1.5rem;
  }

  .news-card .news-title {
    font-size: 1.125rem;
  }

  .news-card .news-desc {
    font-size: 0.9rem;
  }
}
