.page-news {
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

.page-news .news-hero {
  position: relative;
  padding: 32px 0 76px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--grad);
  opacity: 0.42;
  pointer-events: none;
}
.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 64px;
  background: var(--paper);
  clip-path: polygon(0 100%, 100% 100%, 100% 24%, 0 0);
  pointer-events: none;
}
.page-news .news-hero .container {
  position: relative;
  z-index: 1;
}
.page-news .news-hero .breadcrumbs {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.72);
}
.page-news .news-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}
.page-news .news-hero .breadcrumbs a:hover {
  color: var(--yellow);
}
.page-news .news-hero .breadcrumbs-sep {
  margin: 0 8px;
}
.page-news .news-hero-grid {
  display: grid;
  gap: 32px;
  align-items: end;
}
.page-news .news-hero-text h1 {
  margin: 10px 0 14px;
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.page-news .news-hero-desc {
  max-width: 26em;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}
.page-news .news-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}
.page-news .hero-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem;
  font-weight: 700;
}
.page-news .hero-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 92, 5, 0.3);
  animation: news-pulse 1.6s ease-in-out infinite;
}
.page-news .hero-cover {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.64);
}
.page-news .news-hero-stats {
  display: grid;
  gap: 12px;
}
.page-news .hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.page-news .hero-stat-num {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--yellow);
}
.page-news .hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
}

@keyframes news-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(242, 92, 5, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(242, 92, 5, 0.14); }
}

@media (min-width: 920px) {
  .page-news .news-hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: center;
  }
}

.page-news .news-flash {
  padding: 64px 0 56px;
}
.page-news .news-flash-head {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}
.page-news .news-flash-copy h2 {
  margin: 8px 0 0;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 900;
}
.page-news .news-flash-bg {
  width: 100%;
  max-width: 800px;
  height: auto;
  aspect-ratio: 4 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
@media (min-width: 720px) {
  .page-news .news-flash-head {
    grid-template-columns: minmax(0, 0.36fr) minmax(0, 1fr);
    align-items: center;
  }
}

.page-news .flash-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.page-news .flash-list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--grad);
  border-radius: 2px;
}
.page-news .flash-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  padding: 12px 0 12px 26px;
  position: relative;
}
.page-news .flash-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--ink);
  border: 4px solid var(--paper);
  box-sizing: border-box;
  z-index: 1;
}
.page-news .flash-item::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  z-index: 2;
}
.page-news .flash-time {
  grid-column: 1;
  grid-row: 1;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--orange);
}
.page-news .flash-text {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.page-news .flash-tag {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(242, 92, 5, 0.12);
  color: var(--orange);
  white-space: nowrap;
}

.page-news .news-main {
  padding: 24px 0 72px;
}
.page-news .news-main-grid {
  display: grid;
  gap: 44px;
  align-items: start;
}
@media (min-width: 960px) {
  .page-news .news-main-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 40px;
  }
}

.page-news .news-section-head {
  margin-bottom: 22px;
}
.page-news .news-section-head h2 {
  margin: 8px 0 6px;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.3;
}
.page-news .news-section-head p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.6;
}
.page-news .news-section-head--light h2 {
  color: var(--white);
}
.page-news .news-section-head--light p {
  color: rgba(255, 255, 255, 0.62);
}

.page-news .news-articles {
  padding: clamp(20px, 4vw, 36px);
  background: var(--white);
  border-radius: var(--radius-lg);
}
.page-news .article-list {
  display: grid;
}
.page-news .article-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(15, 26, 44, 0.08);
  transition: background var(--speed-base);
}
.page-news .article-item:last-child {
  border-bottom: 0;
}
.page-news .article-num {
  font-family: var(--font-sans);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--orange);
}
.page-news .article-content {
  min-width: 0;
}
.page-news .article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.page-news .article-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--purple);
  background: rgba(139, 47, 201, 0.12);
}
.page-news .article-time {
  font-size: 0.8125rem;
  color: var(--gray-text);
}
.page-news .article-content h3 {
  margin: 0 0 8px;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 900;
  line-height: 1.45;
}
.page-news .article-summary {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.7;
}
.page-news .article-thumb {
  display: block;
  margin-top: 14px;
  max-width: 300px;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.page-news .news-side {
  display: grid;
  gap: 32px;
  align-content: start;
}

.page-news .news-video {
  padding: clamp(20px, 4vw, 28px);
  background: var(--ink);
  border-radius: var(--radius-lg);
}
.page-news .video-list {
  display: grid;
  gap: 18px;
}
.page-news .video-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
}
.page-news .video-item--featured {
  grid-template-columns: 1fr;
  align-items: start;
}
.page-news .video-thumb {
  position: relative;
  width: 88px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}
.page-news .video-thumb--wide {
  width: 100%;
  height: auto;
  aspect-ratio: 400 / 225;
  border-radius: var(--radius-md);
}
.page-news .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news .video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 26, 44, 0.55));
}
.page-news .video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(242, 92, 5, 0.45);
  transition: transform var(--speed-base), background var(--speed-base);
}
.page-news .video-thumb:hover .video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--purple);
}
.page-news .video-play--lg {
  width: 44px;
  height: 44px;
}
.page-news .video-play--sm {
  width: 28px;
  height: 28px;
}
.page-news .video-duration {
  position: absolute;
  z-index: 3;
  right: 6px;
  bottom: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(15, 26, 44, 0.78);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
}
.page-news .video-meta h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.4;
}
.page-news .video-meta p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8125rem;
}

.page-news .news-expert {
  padding: clamp(20px, 4vw, 28px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--orange);
}
.page-news .expert-chart {
  width: 100%;
  height: auto;
  aspect-ratio: 500 / 300;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.page-news .expert-point {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(242, 92, 5, 0.08);
}
.page-news .expert-point h3 {
  margin: 0 0 6px;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 900;
}
.page-news .expert-point p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray-text);
}
.page-news .expert-record {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.page-news .expert-record p {
  margin: 8px 0 16px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray-text);
}
.page-news .btn-sm {
  padding: 8px 16px;
  font-size: 0.8125rem;
}

.page-news .news-next {
  position: relative;
  padding: 72px 0 80px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.page-news .news-next::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--grad);
  opacity: 0.28;
  pointer-events: none;
}
.page-news .news-next h2 {
  position: relative;
  margin: 10px 0 12px;
  font-family: var(--font-sans);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 900;
}
.page-news .news-next p {
  position: relative;
  margin: 0;
  max-width: 32em;
  color: rgba(255, 255, 255, 0.7);
}
.page-news .news-next-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.page-news .news-next .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.page-news .news-next .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}
