.news-detail-page {
  margin: 0;
  color: #334155;
  background: #f7f9fc;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

.news-list-page {
  margin: 0;
  color: #334155;
  background: #f7f9fc;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

.news-list-main {
  min-height: calc(100vh - 60px);
  padding: 72px 0 112px;
  border-top: 1px solid #e1e4e3;
  background: #f5f5f7;
}

.news-list-shell {
  width: min(1160px, calc(100% - 64px));
  margin: 0 auto;
}

.news-list-heading {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  padding: 0 0 27px;
  border-bottom: 1px solid #d2d2d7;
}

.news-list-heading::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 64px;
  height: 3px;
  background: #0057ff;
  content: "";
}

.news-list-heading h1 {
  margin: 0;
  color: #1d1d1f;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
}

.news-list-heading p {
  margin: 0;
  color: #6e6e73;
  font-size: 14px;
  line-height: 1.6;
}

.news-list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.news-list-grid .media-card {
  position: relative;
  min-height: 0;
  border: 1px solid #e1e4e3;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(29, 29, 31, 0.055);
}

.news-list-grid .media-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #0057ff;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.news-list-grid .media-card:hover {
  border-color: rgba(0, 87, 255, 0.28);
  box-shadow: 0 18px 34px rgba(29, 29, 31, 0.1);
  transform: translateY(-4px);
}

.news-list-grid .media-card:hover::after {
  transform: scaleX(1);
}

.news-list-grid .media-card-image {
  aspect-ratio: 16 / 10;
  background: #eef1f4;
}

.news-list-grid .media-card-body {
  grid-template-rows: auto auto;
  min-height: 104px;
  padding: 16px 18px;
}

.news-list-grid .media-card strong {
  color: #1d1d1f;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.48;
}

.news-list-grid .media-meta {
  color: #6e6e73;
  font-size: 12px;
  letter-spacing: 0;
}
}

.news-list-empty {
  padding: 56px 24px;
  border: 1px solid #dbe3ee;
  color: #718096;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.news-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 42px;
}

.news-pagination-link {
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid #d2d2d7;
  border-radius: 6px;
  color: #3a3a3c;
  background: #fff;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
}

.news-pagination-link:hover {
  border-color: rgba(0, 87, 255, 0.48);
  color: #0057ff;
}

.news-pagination-link.is-current {
  border-color: #0057ff;
  color: #fff;
  background: #0057ff;
}

.news-pagination-link.is-disabled {
  border-color: #e5eaf1;
  color: #a3afbf;
  background: #f8fafc;
}

.news-pagination-ellipsis {
  display: inline-flex;
  width: 22px;
  align-items: center;
  justify-content: center;
  color: #718096;
  font-size: 13px;
}

.news-detail-main {
  padding: 72px 0 104px;
  background: #f7f9fc;
}

.news-detail-shell {
  width: min(1160px, calc(100% - 64px));
  margin: 0 auto;
}

.news-source-link,
.news-back-link,
.news-home-link {
  color: #64748b;
  text-decoration: none;
  transition: color 180ms ease;
}

.news-source-link:hover,
.news-back-link:hover,
.news-home-link:hover {
  color: #155eef;
}

.news-article-hero {
  display: block;
  padding-bottom: 62px;
  border-bottom: 1px solid #dbe3ee;
}

.news-article-hero--single {
  padding-bottom: 38px;
}

.news-article-hero--single .news-article-header {
  padding-bottom: 0;
}

.news-article-header {
  max-width: 100%;
  padding: 0 0 38px;
}

.news-kicker {
  margin: 0 0 15px;
  color: #356fbd;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.news-article-header h1 {
  max-width: 100%;
  margin: 0;
  color: #17324d;
  font-size: clamp(32px, 2.7vw, 44px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.18;
  text-wrap: wrap;
}

.news-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  margin-top: 24px;
  color: #718096;
  font-size: 13px;
  line-height: 1.6;
}

.news-source-link {
  color: #2468b4;
  font-weight: 600;
}

.news-hero-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #d7e0eb;
  background: #eef3f8;
}

.news-hero-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
  filter: none;
}

.news-article-reading {
  width: min(720px, 100%);
  margin: 64px auto 0;
}

.news-lead {
  margin: 0 0 30px;
  color: #3f5063;
  font-size: 17px;
  line-height: 1.95;
}

.news-lead p {
  margin: 0 0 16px;
}

.news-highlight {
  margin: 34px 0 38px;
  padding: 20px 0 20px 22px;
  border-left: 2px solid #2f75c5;
  color: #24415d;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.75;
}

.article-body {
  color: #4b5f73;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.9;
}

.article-body h2 {
  margin: 48px 0 16px;
  padding-top: 18px;
  border-top: 1px solid #dbe3ee;
  color: #1e3a56;
  font-size: 24px;
  font-weight: 650;
  line-height: 1.42;
}

.article-body p {
  margin: 0 0 18px;
}

.article-body h3 {
  margin: 36px 0 14px;
  color: #29445f;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.5;
}

.article-body figure {
  margin: 32px 0;
}

.article-body figure img,
.article-body > img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.article-body > img {
  margin: 32px 0;
}

.article-body figcaption {
  margin-top: 10px;
  color: #718096;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.article-body blockquote {
  margin: 28px 0;
  padding: 0 0 0 20px;
  border-left: 2px solid #8cb2dc;
  color: #40566c;
}

.article-note {
  margin: 38px 0 0;
  padding-top: 20px;
  border-top: 1px solid #dbe3ee;
  color: #718096;
  font-size: 13px;
  line-height: 1.75;
}

.news-article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid #b9c9dc;
  font-size: 14px;
  font-weight: 600;
}

.news-back-link,
.news-home-link {
  color: #2468b4;
}

@media (max-width: 860px) {
  .news-list-main {
    padding: 46px 0 76px;
  }

  .news-list-shell {
    width: min(100% - 36px, 680px);
  }

  .news-list-heading {
    display: block;
    margin-bottom: 28px;
    padding-bottom: 20px;
  }

  .news-list-heading h1 {
    font-size: 30px;
  }

  .news-list-heading p {
    margin-top: 8px;
  }

  .news-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .news-list-grid .media-card-body {
    min-height: 104px;
    padding: 14px 0;
  }

  .news-detail-main {
    padding-top: 46px;
  }

  .news-detail-shell {
    width: min(100% - 36px, 680px);
  }

  .news-article-hero {
    padding-bottom: 46px;
  }

  .news-article-hero--single {
    padding-bottom: 30px;
  }

  .news-article-header {
    padding-bottom: 30px;
  }

  .news-article-header h1 {
    font-size: 29px;
    line-height: 1.3;
  }

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

  .news-article-reading {
    margin-top: 48px;
  }

  .news-lead {
    font-size: 16px;
  }

  .news-highlight {
    margin: 28px 0 32px;
    padding-left: 16px;
    font-size: 17px;
  }

  .article-body {
    font-size: 16px;
  }

  .article-body h2 {
    margin-top: 40px;
    font-size: 22px;
  }

  .news-article-nav {
    margin-top: 38px;
  }
}

@media (max-width: 560px) {
  .news-list-grid {
    grid-template-columns: 1fr;
  }
}
