.page-news {
  --news-card-radius: 26px;
  --news-overlay-radius: 30px;
  --news-grad: linear-gradient(135deg, #1E3A8A, #3B82F6);
  --orange-deep: #E87B00;
  background: #F8FAFC;
  color: #111827;
  padding-bottom: 64px;
}

.page-news .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 20px;
  padding-top: 22px;
  font-size: 13px;
  color: #6B7280;
}

.page-news .crumb-link {
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s;
}

.page-news .crumb-link:hover {
  color: #2A6DEA;
}

.page-news .crumb-current {
  font-weight: 600;
  color: #111827;
}

.page-news .news-head {
  position: relative;
  overflow: hidden;
  margin: 0 20px;
  padding: 30px 0 8px;
}

.page-news .news-head::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 81, 224, 0.18), transparent 70%);
  pointer-events: none;
}

.page-news .news-head > * {
  position: relative;
  z-index: 1;
}

.page-news .news-kicker {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #9B51E0;
  background: rgba(155, 81, 224, 0.1);
  border-radius: 999px;
  padding: 6px 14px;
}

.page-news .news-head h1 {
  margin: 14px 0 14px;
  font-family: "Space Grotesk", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #111827;
}

.page-news .news-lede {
  margin: 0;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.7;
  color: #6B7280;
}

.page-news .head-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.page-news .head-meta li {
  font-size: 13px;
  font-weight: 600;
  color: #1E3A8A;
  background: rgba(42, 109, 234, 0.08);
  border: 1px solid rgba(42, 109, 234, 0.1);
  border-radius: 999px;
  padding: 7px 14px;
}

.page-news .featured-article {
  position: relative;
  margin: 32px 20px 0;
}

.page-news .featured-media {
  position: relative;
  border-radius: var(--news-card-radius);
  overflow: hidden;
  background: linear-gradient(135deg, #1E3A8A, #3B82F6);
  box-shadow: 0 16px 40px rgba(30, 58, 138, 0.12);
}

.page-news .featured-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .featured-overlay {
  position: relative;
  z-index: 2;
  margin-top: -56px;
  margin-left: 12px;
  margin-right: 12px;
  padding: 24px;
  border-radius: var(--news-overlay-radius);
  background: rgba(248, 250, 252, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
  backdrop-filter: blur(12px);
}

.page-news .featured-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #FF8A00;
  background: rgba(255, 138, 0, 0.12);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 10px;
}

.page-news .featured-overlay h2 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1.7rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.page-news .featured-overlay p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #6B7280;
}

.page-news .latest-zone {
  margin: 48px 20px 0;
}

.page-news .zone-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.page-news .zone-head h2 {
  margin: 0;
  font-family: "Space Grotesk", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 1.9rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.page-news .segment-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .segment-btn {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(42, 109, 234, 0.22);
  background: #FFFFFF;
  color: #1E3A8A;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-news .segment-btn:hover {
  border-color: #2A6DEA;
  color: #2A6DEA;
  transform: translateY(-2px);
}

.page-news .segment-btn[aria-selected="true"],
.page-news .segment-btn[data-active] {
  background: #2A6DEA;
  border-color: #2A6DEA;
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(42, 109, 234, 0.24);
}

.page-news .article-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-news .article-panel[hidden] {
  display: none !important;
}

.page-news .article-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.06);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s;
}

.page-news .article-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(30, 58, 138, 0.1);
  border-color: rgba(42, 109, 234, 0.18);
}

.page-news .article-thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
}

.page-news .article-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.12);
}

.page-news .article-index {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.18), rgba(155, 81, 224, 0.18));
  color: #FF8A00;
  font-family: "Space Grotesk", "Noto Sans SC", "PingFang SC", sans-serif;
  font-weight: 700;
  font-size: 13px;
}

.page-news .article-content {
  flex: 1;
  min-width: 0;
}

.page-news .article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.page-news .article-cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #2A6DEA;
  background: rgba(42, 109, 234, 0.08);
  border-radius: 999px;
  padding: 3px 10px;
}

.page-news .article-time {
  font-size: 12px;
  color: #6B7280;
}

.page-news .article-title {
  margin: 8px 0 6px;
  font-family: "Space Grotesk", "Noto Sans SC", "PingFang SC", sans-serif;
  font-size: 1.12rem;
  line-height: 1.4;
  font-weight: 700;
}

.page-news .article-title a {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s;
}

.page-news .article-title a:hover {
  color: #2A6DEA;
}

.page-news .article-excerpt {
  margin: 0;
  max-width: 620px;
  font-size: 14px;
  line-height: 1.65;
  color: #6B7280;
}

.page-news .article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.page-news .article-tag {
  font-size: 12px;
  font-weight: 600;
  color: #9B51E0;
  background: rgba(155, 81, 224, 0.08);
  border-radius: 999px;
  padding: 4px 10px;
}

.page-news .article-item--compact {
  align-items: center;
}

.page-news .series-zone {
  margin: 48px 20px 0;
}

.page-news .zone-title {
  margin: 0 0 20px;
  font-family: "Space Grotesk", "Noto Sans SC", "PingFang SC", sans-serif;
  font-size: 1.9rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.page-news .series-grid {
  display: grid;
  gap: 16px;
}

.page-news .series-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.04), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(42, 109, 234, 0.12);
  border-radius: 28px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-news .series-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 40%, rgba(255, 138, 0, 0.2), transparent 70%);
  pointer-events: none;
}

.page-news .series-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30, 58, 138, 0.1);
}

.page-news .series-index {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #2A6DEA;
}

.page-news .series-type {
  display: inline-block;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #9B51E0;
  text-transform: uppercase;
}

.page-news .series-card h3 {
  margin: 12px 0 8px;
  font-family: "Space Grotesk", "Noto Sans SC", "PingFang SC", sans-serif;
  font-size: 1.4rem;
  line-height: 1.3;
}

.page-news .series-card p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: #6B7280;
}

.page-news .series-card .btn {
  padding: 8px 16px;
  font-size: 13px;
}

.page-news .tag-zone {
  margin: 48px 20px 0;
}

.page-news .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.page-news .tag-bubble {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #1E3A8A;
  background: #FFFFFF;
  border: 1px solid rgba(42, 109, 234, 0.2);
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, background 0.25s, color 0.25s;
}

.page-news .tag-bubble:nth-child(3n) {
  color: #9B51E0;
  border-color: rgba(155, 81, 224, 0.24);
}

.page-news .tag-bubble:nth-child(4n) {
  color: #FF8A00;
  border-color: rgba(255, 138, 0, 0.24);
}

.page-news .tag-bubble:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
  background: #2A6DEA;
  border-color: #2A6DEA;
  color: #FFFFFF;
}

.page-news .subscribe-zone {
  margin: 48px 20px 0;
}

.page-news .subscribe-card {
  position: relative;
  overflow: hidden;
  padding: 32px 24px;
  border-radius: 36px;
  background: linear-gradient(135deg, #1E3A8A, #3B82F6);
  color: #FFFFFF;
  box-shadow: 0 24px 60px rgba(30, 58, 138, 0.2);
}

.page-news .subscribe-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.page-news .subscribe-card::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 18px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 138, 0, 0.5);
}

.page-news .subscribe-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.82);
}

.page-news .subscribe-card h2 {
  margin: 10px 0 10px;
  color: #FFFFFF;
  font-family: "Space Grotesk", "Noto Sans SC", "PingFang SC", sans-serif;
  font-size: 1.9rem;
  line-height: 1.2;
}

.page-news .subscribe-card p {
  margin: 0 0 22px;
  max-width: 480px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.page-news .subscribe-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .subscribe-card .btn-primary {
  background: #FF8A00;
  border-color: #FF8A00;
  color: #FFFFFF;
}

.page-news .subscribe-card .btn-primary:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
}

.page-news .subscribe-card .btn-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #FFFFFF;
}

.page-news .subscribe-card .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

@media (min-width: 700px) {
  .page-news .zone-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .page-news {
    padding-bottom: 80px;
  }

  .page-news .breadcrumb,
  .page-news .news-head,
  .page-news .featured-article,
  .page-news .latest-zone,
  .page-news .series-zone,
  .page-news .tag-zone,
  .page-news .subscribe-zone {
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-news .breadcrumb {
    padding-left: 0;
    padding-right: 0;
  }

  .page-news .news-head {
    padding-left: 0;
    padding-right: 0;
  }

  .page-news .news-header {
    padding-bottom: 10px;
  }

  .page-news .featured-article {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    align-items: stretch;
    gap: 0;
    margin-top: 40px;
  }

  .page-news .featured-media {
    border-radius: 32px;
  }

  .page-news .featured-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
  }

  .page-news .featured-overlay {
    align-self: center;
    margin: 48px 0 0 -108px;
    margin-left: -108px;
    margin-right: 0;
    padding: 38px 34px;
    border-radius: 30px;
  }

  .page-news .featured-overlay h2 {
    font-size: 2.1rem;
  }

  .page-news .latest-zone {
    margin-top: 56px;
  }

  .page-news .article-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
  }

  .page-news .article-item {
    padding: 20px;
  }

  .page-news .series-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-news .series-card {
    padding: 30px;
  }

  .page-news .tag-cloud {
    gap: 12px;
  }

  .page-news .tag-bubble {
    padding: 11px 22px;
  }

  .page-news .subscribe-zone {
    margin-top: 56px;
  }

  .page-news .subscribe-card {
    padding: 52px;
  }

  .page-news .subscribe-card p {
    font-size: 15px;
  }
}
