.page-news {
  --news-grid-line: rgba(212, 175, 55, 0.14);
  --news-blue-soft: rgba(11, 27, 58, 0.06);
  background: linear-gradient(180deg, var(--light-gray) 0%, rgba(242, 244, 248, 0.55) 42%, var(--white) 100%);
}

.page-news .breadcrumb {
  padding-top: 16px;
  padding-bottom: 8px;
}

.page-news .news-hero {
  position: relative;
  background:
    radial-gradient(circle at 84% 18%, rgba(212, 175, 55, 0.22), transparent 200px),
    linear-gradient(118deg, rgba(11, 27, 58, 0.98) 0%, rgba(16, 34, 74, 0.96) 62%, rgba(200, 16, 46, 0.38) 132%),
    linear-gradient(var(--news-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--news-grid-line) 1px, transparent 1px);
  background-size: auto, auto, 32px 32px, 32px 32px;
  color: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 36px 0 48px;
  margin-bottom: 40px;
  overflow: hidden;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -64px;
  width: 340px;
  height: 110px;
  background: rgba(200, 16, 46, 0.42);
  transform: rotate(-8deg);
  border-radius: var(--radius-pill);
}

.page-news .news-hero-vert {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.page-news .news-hero-coord {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.page-news .page-subtitle {
  color: rgba(212, 175, 55, 0.92);
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  font-weight: 500;
}

.page-news .page-title {
  font-size: 30px;
  line-height: 1.18;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

.page-news .page-meta {
  font-family: var(--font-num);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.page-news .news-featured {
  padding: 8px 0 44px;
}

.page-news .news-featured-grid {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.page-news .news-featured-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.page-news .news-featured-card:hover,
.page-news .news-featured-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.page-news .news-featured-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  border-radius: var(--radius-lg);
}

.page-news .news-featured-link:focus-visible {
  box-shadow: var(--focus-ring);
}

.page-news .news-featured-figure {
  position: relative;
  overflow: hidden;
  background: var(--deep-blue);
}

.page-news .news-featured-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.page-news .news-featured-card:hover .news-featured-figure img {
  transform: scale(1.02);
}

.page-news .news-featured-body {
  padding: 20px;
}

.page-news .news-featured-title {
  font-size: 19px;
  line-height: 1.32;
  margin: 12px 0 8px;
  color: var(--deep-blue);
  font-weight: 900;
}

.page-news .news-featured-text {
  font-size: 14px;
  line-height: 1.72;
  color: var(--dark-gray);
  margin-bottom: 12px;
}

.page-news .news-featured-meta {
  font-family: var(--font-num);
  font-size: 12px;
  color: rgba(11, 27, 58, 0.55);
  letter-spacing: 0.04em;
}

.page-news .news-layout {
  display: grid;
  gap: 32px;
  padding-bottom: 24px;
}

.page-news .news-filter-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.page-news .filter-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid rgba(11, 27, 58, 0.16);
  color: var(--deep-blue);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.page-news .filter-link:hover,
.page-news .filter-link:focus-visible {
  background: var(--deep-blue);
  color: var(--white);
  border-color: var(--deep-blue);
  box-shadow: var(--focus-ring);
}

.page-news .news-highlight {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  transition: box-shadow var(--transition-base);
}

.page-news .news-highlight:hover {
  box-shadow: var(--shadow-md);
}

.page-news .news-highlight img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .news-highlight-body {
  padding: 20px;
}

.page-news .news-highlight-title {
  font-size: 18px;
  line-height: 1.36;
  color: var(--deep-blue);
  margin: 12px 0 8px;
  font-weight: 900;
}

.page-news .news-highlight-text {
  font-size: 14px;
  line-height: 1.72;
  color: var(--dark-gray);
  margin-bottom: 12px;
}

.page-news .news-category-block {
  margin-bottom: 30px;
  scroll-margin-top: 18px;
}

.page-news .news-category-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.page-news .news-category-index {
  font-family: var(--font-num);
  color: var(--china-red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-news .news-category-title {
  font-size: 16px;
  color: var(--deep-blue);
  margin: 0;
  font-weight: 900;
}

.page-news .news-category-count {
  margin-left: auto;
  font-family: var(--font-num);
  font-size: 12px;
  background: rgba(27, 122, 74, 0.12);
  color: var(--green);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.page-news .news-timeline {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid rgba(11, 27, 58, 0.1);
}

.page-news .news-item {
  position: relative;
  padding: 12px 0 12px 18px;
}

.page-news .news-item::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.35);
}

.page-news .news-item-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.page-news .news-item-time {
  font-family: var(--font-num);
  font-size: 12px;
  color: rgba(11, 27, 58, 0.5);
  letter-spacing: 0.04em;
}

.page-news .news-item-views {
  font-family: var(--font-num);
  font-size: 12px;
  color: rgba(11, 27, 58, 0.45);
  margin-left: auto;
}

.page-news .news-item-title {
  font-size: 15px;
  line-height: 1.45;
  color: var(--dark-gray);
  margin: 6px 0 0;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.page-news .news-item:hover .news-item-title {
  color: var(--china-red);
}

.page-news .news-sidebar {
  display: grid;
  gap: 24px;
  align-content: start;
}

.page-news .news-side-panel {
  background: var(--white);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.page-news .news-side-title {
  font-size: 15px;
  color: var(--deep-blue);
  margin: 0 0 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-news .news-hot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .hot-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  background: var(--news-blue-soft);
  color: var(--deep-blue);
  font-size: 13px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.page-news .hot-tag b {
  font-family: var(--font-num);
  font-size: 12px;
  color: var(--china-red);
  font-weight: 600;
}

.page-news .hot-tag:hover,
.page-news .hot-tag:focus-visible {
  background: var(--deep-blue);
  color: var(--white);
  border-color: var(--deep-blue);
  box-shadow: var(--focus-ring);
}

.page-news .hot-tag:hover b,
.page-news .hot-tag:focus-visible b {
  color: var(--gold);
}

.page-news .news-stats-panel {
  background:
    linear-gradient(160deg, var(--deep-blue) 0%, var(--deep-blue-2) 72%),
    linear-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
  background-size: auto, 20px 20px, 20px 20px;
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.page-news .news-stats-side-title {
  color: var(--white);
}

.page-news .news-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}

.page-news .stat-num {
  display: block;
  font-family: var(--font-num);
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-news .stat-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.76);
  letter-spacing: 0.05em;
}

.page-news .news-stats-panel .text-note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
}

.page-news .news-side-text {
  font-size: 13px;
  line-height: 1.72;
  color: var(--dark-gray);
  margin: 0 0 12px;
}

.page-news .trust-icon {
  font-size: 13px;
  line-height: 1.66;
  color: var(--green);
  background: rgba(27, 122, 74, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin: 0;
  font-weight: 500;
}

.page-news .news-extend {
  background: var(--white);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  margin: 32px 0 48px;
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
}

.page-news .news-extend-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.page-news .extend-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--light-gray);
  color: var(--deep-blue);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.page-news .extend-link:hover,
.page-news .extend-link:focus-visible {
  background: var(--deep-blue);
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--deep-blue);
  box-shadow: var(--shadow-md);
}

.page-news .extend-index {
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--china-red);
  transition: color var(--transition-fast);
}

.page-news .extend-link:hover .extend-index,
.page-news .extend-link:focus-visible .extend-index {
  color: var(--gold);
}

.page-news .extend-name {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.page-news .extend-desc {
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.78;
}

@media (min-width: 768px) {
  .page-news .page-title {
    font-size: 42px;
  }

  .page-news .news-hero {
    padding: 48px 0 56px;
  }

  .page-news .news-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-news .news-featured-card:first-child {
    grid-column: 1 / -1;
  }

  .page-news .news-featured-card:first-child .news-featured-link {
    flex-direction: row;
  }

  .page-news .news-featured-card:first-child .news-featured-figure {
    flex: 0 0 55%;
    min-height: 100%;
  }

  .page-news .news-featured-card:first-child .news-featured-figure img {
    width: 100%;
    height: 100%;
  }

  .page-news .news-featured-card:first-child .news-featured-body {
    flex: 1;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .page-news .news-highlight {
    flex-direction: row;
    align-items: stretch;
  }

  .page-news .news-highlight img {
    flex: 0 0 45%;
    width: 45%;
  }

  .page-news .news-highlight-body {
    flex: 1;
    padding: 26px;
  }

  .page-news .news-extend-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-news .news-extend {
    padding: 28px;
  }
}

@media (min-width: 1080px) {
  .page-news .news-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    align-items: start;
  }

  .page-news .news-sidebar {
    position: sticky;
    top: 92px;
  }

  .page-news .news-featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-news .news-featured-card:first-child {
    grid-column: 1 / -1;
  }

  .page-news .news-featured-title {
    font-size: 21px;
  }
  .page-news .news-highlight-body {
    padding: 30px;
  }
}
