/* News center · editorial list inspired by the referenced Wantai information hierarchy. */
.news-page .news-list {
  background: #fff !important;
}

.news-page .news-list > .w {
  width: min(1520px, calc(100% - 112px));
  max-width: none;
}

.news-page .ncat-h {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 112px 0 34px;
  padding: 0;
  border: 0;
}

.news-page .ncat-h:first-of-type {
  margin-top: 0;
}

.news-page .ncat-h h3 {
  color: #141c17;
  font-size: clamp(32px, 2.4vw, 42px);
  font-weight: 620;
  line-height: 1.2;
  letter-spacing: -.035em;
}

.news-page .ncat-h span {
  padding-top: 8px;
  color: #8b918d;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .08em;
}

.news-page .news-g {
  display: block;
}

.news-page .news {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 30%) minmax(0, 1fr);
  gap: clamp(44px, 5vw, 84px);
  min-height: 330px;
  padding: 52px 0 64px;
  overflow: visible;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #e6e9e7 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: none !important;
}

.news-page .news:hover,
.news-page .news:focus-visible {
  transform: none !important;
  box-shadow: none !important;
}

.news-page .news-img {
  position: static;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: visible;
  background: #e9efec;
  border-radius: 0 !important;
}

.news-page .news-img::after {
  display: none !important;
}

.news-page .news-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.news-page .news:hover .news-img img,
.news-page .news:focus-visible .news-img img {
  transform: none;
}

.news-page .news-date {
  display: block !important;
  position: absolute;
  top: auto;
  right: auto;
  bottom: 62px;
  left: calc(30% + clamp(44px, 5vw, 84px));
  padding: 0;
  color: #777f7a;
  background: transparent !important;
  text-shadow: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .07em;
}

.news-page .news-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: 0 8% 56px 0;
}

.news-page .news-tag {
  display: none;
}

/* 保留列表式排版，同时让每条新闻的详情入口保持可见。 */
.news-page .news-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 26px;
  color: #16845d;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
}

.news-page .news-body h4 {
  margin: -2px 0 18px;
  color: #151d18;
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -.02em;
  transition: color .25s ease;
}

.news-page .news:hover .news-body h4,
.news-page .news:focus-visible .news-body h4 {
  color: #16845d;
}

.news-page .news-body p {
  max-width: 62em;
  margin: 0;
  color: #777f7a;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: .01em;
}

@media (max-width: 900px) {
  .news-page .news-list > .w {
    width: min(100% - 44px, 760px);
  }

  .news-page .ncat-h {
    margin: 82px 0 24px;
  }

  .news-page .ncat-h h3 {
    font-size: 32px;
  }

  .news-page .ncat-h span {
    display: none;
  }

  .news-page .news {
    display: block;
    min-height: 0;
    padding: 30px 0 74px;
  }

  .news-page .news-img {
    aspect-ratio: 16 / 9;
  }

  .news-page .news-body {
    min-height: 0;
    padding: 26px 0 0;
  }

  .news-page .news-body h4 {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.5;
  }

  .news-page .news-body p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.85;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .news-page .news-date {
    bottom: 35px;
    left: 0;
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .news-page .news-list > .w {
    width: calc(100% - 36px);
  }

  .news-page .news-list {
    padding-top: 74px !important;
  }

  .news-page .ncat-h {
    margin-top: 70px;
  }

  .news-page .ncat-h h3 {
    font-size: 29px;
  }

  .news-page .news {
    padding-top: 26px;
  }

  .news-page .news-body h4 {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-page .news-img img,
  .news-page .news-body h4 {
    transition: none;
  }
}
