/* 新闻列表页特有样式 */
.news-hero {
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.news-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
  pointer-events: none;
}
.news-hero::after {
  content: ""; position: absolute; right: -190px; top: -40px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(14,165,233,0.16), transparent 64%);
  pointer-events: none;
}
.news-hero .container { position: relative; z-index: 1; }
.news-hero h1 {
  margin: 22px 0 18px; font-size: 48px; line-height: 1.1; color: var(--ink);
}
.news-hero-lead {
  color: #3f5068; font-size: 17px; line-height: 1.8;
  max-width: 620px; margin: 0 0 28px;
}

/* section head + tabs */
.news-list-section { padding: 0 0 72px; }
.news-list-section .section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 30px; flex-wrap: wrap;
}
.news-list-section .kicker { color: var(--blue); font-weight: 800; font-size: 13px; margin-bottom: 8px; }
.news-list-section .section-head h2 { margin: 0; font-size: 30px; line-height: 1.2; }
.news-tabs-row { display: flex; gap: 8px; flex-wrap: wrap; }
.news-tab {
  padding: 8px 18px; border-radius: 999px; font-size: 14px; font-weight: 600;
  color: var(--muted); background: #fff; border: 1px solid var(--line);
  text-decoration: none; transition: all 0.2s;
}
.news-tab:hover { color: var(--blue); border-color: #bfd6ff; }
.news-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* 第一条大图特色卡 */
.news-feature-card {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; box-shadow: var(--shadow-card); text-decoration: none; color: inherit;
  margin-bottom: 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.news-feature-card:hover {
  transform: translateY(-4px); box-shadow: 0 22px 48px rgba(30,64,175,0.14);
  border-color: #9bbcff;
}
.feature-cover { height: 100%; min-height: 280px; overflow: hidden; }
.feature-cover img { width: 100%; height: 100%; object-fit: cover; }
.feature-body { padding: 32px 36px; display: flex; flex-direction: column; justify-content: center; }
.feature-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.news-pill {
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 5px;
  background: var(--soft-blue); color: var(--blue-700);
}
.news-date { font-size: 12px; color: var(--muted); }
.feature-body h3 { font-size: 22px; margin: 0 0 12px; line-height: 1.4; color: var(--ink); }
.feature-body p { font-size: 14px; color: #55677f; margin: 0 0 18px; line-height: 1.7; }
.feature-read-more {
  font-size: 14px; font-weight: 800; color: var(--blue);
  align-self: flex-start;
}

/* 其余新闻网格 */
.news-grid-page {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.news-card.linked-news {
  cursor: pointer; text-decoration: none; color: inherit; display: block;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.news-card.linked-news:hover {
  transform: translateY(-4px); box-shadow: 0 22px 48px rgba(30,64,175,0.14);
  border-color: #9bbcff;
}
.news-card.linked-news .news-body h3 {
  font-size: 16px; margin: 0 0 8px; line-height: 1.4;
}
.news-card.linked-news .news-body p {
  font-size: 13px; color: #55677f; margin: 0; line-height: 1.6;
}

@media (max-width: 900px) {
  .news-hero h1 { font-size: 36px; }
  .news-feature-card { grid-template-columns: 1fr; }
  .feature-cover { min-height: 200px; }
  .feature-body { padding: 24px; }
  .news-grid-page { grid-template-columns: 1fr 1fr; }
  .news-list-section .section-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .news-grid-page { grid-template-columns: 1fr; }
  .news-hero h1 { font-size: 30px; }
}
