/* ======================== */
/* News 列表页              */
/* ======================== */
.news-banner {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.news-banner__bg,
.news-banner__overlay {
  position: absolute;
  inset: 0;
}

.news-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(1px);
  transform: scale(1.04);
}

.news-banner__overlay {
  background:
    linear-gradient(180deg, rgba(17, 37, 71, 0.52) 0%, rgba(41, 120, 254, 0.18) 26%, rgba(41, 120, 254, 0.9) 100%),
    rgba(17, 37, 71, 0.18);
}

.news-banner__content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--header-h) + 92px) var(--container-padding) 110px;
}

.news-banner__title {
  font-size: clamp(52px, 6vw, 86px);
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.news-banner__desc {
  max-width: 860px;
  margin-top: 26px;
  font-size: 14px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.84);
  letter-spacing: 0.04em;
}

.news-tabs {
  background: var(--color-white);
  border-bottom: 1px solid rgba(17, 37, 71, 0.06);
}

.news-tabs__nav {
  display: flex;
  align-items: center;
  gap: 42px;
  min-height: 82px;
}

.news-tabs__link {
  position: relative;
  padding: 28px 0 20px;
  font-size: 14px;
  color: #7a7a7a;
  transition: color var(--transition-base);
}

.news-tabs__link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transform: translateX(-50%);
  transition: width var(--transition-base);
}

.news-tabs__link:hover,
.news-tabs__link--active {
  color: var(--color-accent);
}

.news-tabs__link:hover::after,
.news-tabs__link--active::after {
  width: 38px;
}

.news-list {
  background: #f3f5f8;
  padding: 46px 0 110px;
}

.news-featured {
  display: grid;
  grid-template-columns: 636px minmax(320px, 1fr);
  gap: 50px;
  align-items: center;
  margin-bottom: 28px;
  padding: 32px 0 34px;
}

.news-featured__media {
  display: block;
  border-radius: 0;
  overflow: hidden;
  background: #d9e4fb;
  box-shadow: 0 16px 40px rgba(17, 37, 71, 0.12);
}

.news-featured__media img {
  width: 636px;
  height: 404px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.news-featured:hover .news-featured__media img {
  transform: scale(1.03);
}

.news-featured__body {
  max-width: 620px;
}

.news-featured__title {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.28;
  font-weight: 500;
  color: #2b2b2b;
}

.news-featured__title a:hover,
.news-card__title a:hover {
  color: var(--color-accent);
}

.news-featured__desc,
.news-card__desc {
  margin-top: 18px;
  font-size: 14px;
  line-height: 2;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-featured__desc {
  -webkit-line-clamp: 3;
}

.news-featured__meta,
.news-card__meta {
  margin-top: 26px;
}

.news-featured__date,
.news-card__date {
  font-size: 14px;
  color: #8e8e8e;
  letter-spacing: 0.02em;
}

.news-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 118px;
  height: 44px;
  padding: 0 18px;
  margin-top: 20px;
  border-radius: 14px;
  background: #e5e9ef;
  color: #6b7280;
  transition:
    background var(--transition-base),
    color var(--transition-base),
    transform var(--transition-fast);
}

.news-more-btn svg {
  flex-shrink: 0;
}

.news-more-btn:hover {
  transform: translateY(-1px);
}

.news-more-btn--primary,
.news-more-btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.news-cards {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
}

.news-card {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 443px minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid rgba(17, 37, 71, 0.08);
}

.news-card__media {
  display: block;
  overflow: hidden;
  background: #eef1f5;
}

.news-card__media img {
  width: 443px;
  height: 291px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.news-card:hover .news-card__media img {
  transform: scale(1.04);
}

.news-card__title {
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
  color: #2c2f35;
}

.news-card__desc {
  -webkit-line-clamp: 2;
  max-width: 900px;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 48px;
}

.news-pagination a,
.news-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border-radius: 16px;
  font-size: 13px;
  color: #3b3b3b;
  transition:
    background var(--transition-base),
    color var(--transition-base);
}

.news-pagination a:hover {
  background: rgba(41, 120, 254, 0.1);
  color: var(--color-accent);
}

.news-pagination .active,
.news-pagination span.active {
  background: var(--color-accent);
  color: var(--color-white);
}

@media (max-width: 1024px) {
  .news-featured {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-featured__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 636 / 404;
  }

  .news-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-card__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 443 / 291;
  }
}

@media (max-width: 767px) {
  .news-banner {
    min-height: 400px;
  }

  .news-banner__content {
    padding-top: calc(var(--header-h) + 64px);
    padding-bottom: 70px;
  }

  .news-banner__desc {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.8;
  }

  .news-tabs__nav {
    gap: 28px;
    min-height: 64px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .news-tabs__nav::-webkit-scrollbar {
    display: none;
  }

  .news-list {
    padding: 28px 0 70px;
  }

  .news-featured {
    padding: 10px 0 20px;
  }

  .news-featured__title {
    font-size: 26px;
  }

  .news-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0;
  }

  .news-card__title {
    font-size: 19px;
  }

  .news-pagination {
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 32px;
  }
}
