.page-news {
  --news-rail: 264px;
  --news-color-surface: rgba(27, 59, 111, 0.55);
  --news-color-surface-deep: rgba(11, 26, 48, 0.85);
  --news-color-border: rgba(255, 255, 255, 0.09);
  --news-color-muted: rgba(234, 234, 234, 0.72);
  --news-color-orange: #FF6B35;
  --news-color-violet: #B388FF;
  --news-color-gold: #FFD700;
  background: linear-gradient(155deg, #0B1A30 0%, #200A3A 52%, #14213D 100%);
  color: #FFFFFF;
  font-family: var(--font-body, "Source Sans Pro", "Noto Sans SC", sans-serif);
  overflow-x: hidden;
}
.page-news .news-inner {
  width: 100%;
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  padding: 0 20px 80px;
}
.page-news .news-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0 12px;
  font-size: 14px;
  color: var(--news-color-muted);
  letter-spacing: 0.02em;
}
.page-news .news-breadcrumb a {
  color: var(--news-color-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-news .news-breadcrumb a:hover {
  color: var(--news-color-orange);
}
.page-news .crumb-sep {
  opacity: 0.5;
}
.page-news .news-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 28px 0 48px;
  position: relative;
}
.page-news .news-hero::before {
  content: "NEWS";
  position: absolute;
  top: 8px;
  right: -10px;
  font-family: var(--font-display, "Inter", "Noto Sans SC", sans-serif);
  font-weight: 800;
  font-size: clamp(72px, 14vw, 140px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.page-news .hero-copy,
.page-news .hero-media {
  position: relative;
  z-index: 1;
}
.page-news .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--news-color-gold);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-pill, 999px);
  padding: 8px 18px;
  margin: 0 0 18px;
}
.page-news .news-hero h1 {
  font-family: var(--font-display, "Inter", "Noto Sans SC", sans-serif);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 900;
  line-height: 0.98;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
  background: linear-gradient(115deg, #FFFFFF 30%, #A8D0E6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: skewX(-2deg);
  transform-origin: left bottom;
}
.page-news .hero-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--news-color-muted);
  max-width: 540px;
  margin: 0 0 32px;
}
.page-news .hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.page-news .stat-item {
  display: flex;
  flex-direction: column;
  background: linear-gradient(140deg, rgba(255, 107, 53, 0.12), rgba(123, 47, 190, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 14px 20px;
  min-width: 96px;
}
.page-news .stat-num {
  font-family: var(--font-display, "Inter", "Noto Sans SC", sans-serif);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(95deg, #FF6B35, #FFD700);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-news .stat-label {
  font-size: 12px;
  color: var(--news-color-muted);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.page-news .hero-media {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.page-news .hero-media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.page-news .news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.page-news .news-rail {
  min-width: 0;
}
.page-news .rail-sticky {
  position: sticky;
  top: calc(var(--header-height, 72px) + 20px);
  background: linear-gradient(160deg, rgba(27, 59, 111, 0.7), rgba(11, 26, 48, 0.9));
  border: 1px solid var(--news-color-border);
  border-radius: 24px;
  padding: 24px 22px;
  backdrop-filter: blur(8px);
}
.page-news .rail-eyebrow,
.page-news .rail-caption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--news-color-gold);
  margin-bottom: 12px;
}
.page-news .rail-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.page-news .rail-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  border-radius: var(--radius-pill, 999px);
  padding: 8px 16px;
  transition: all 0.3s ease;
}
.page-news .rail-list a:hover {
  background: rgba(255, 107, 53, 0.14);
  border-color: rgba(255, 107, 53, 0.4);
  color: var(--news-color-orange);
}
.page-news .rail-num {
  font-family: var(--font-display, "Inter", "Noto Sans SC", sans-serif);
  font-size: 12px;
  font-weight: 800;
  color: var(--news-color-orange);
}
.page-news .rail-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  margin: 18px 0;
}
.page-news .rail-caption {
  color: var(--news-color-muted);
}
.page-news .rail-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.page-news .rail-link-item {
  display: block;
  font-size: 14px;
  color: var(--news-color-muted);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--news-color-border);
  border-radius: 14px;
  padding: 10px 14px;
  transition: all 0.3s ease;
}
.page-news .rail-link-item:hover {
  color: var(--news-color-gold);
  border-color: rgba(255, 215, 0, 0.35);
  transform: translateY(-2px);
}
.page-news .rail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-news .pill-tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--news-color-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill, 999px);
  padding: 6px 14px;
  letter-spacing: 0.03em;
}
.page-news .news-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.page-news .news-section {
  scroll-margin-top: calc(var(--header-height, 72px) + 24px);
}
.page-news .section-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}
.page-news .section-index {
  font-family: var(--font-display, "Inter", "Noto Sans SC", sans-serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--news-color-orange);
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 14px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-news .section-heading h2 {
  font-family: var(--font-display, "Inter", "Noto Sans SC", sans-serif);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.page-news .section-caption {
  font-size: 14px;
  color: var(--news-color-muted);
  letter-spacing: 0.04em;
}
.page-news .news-card {
  background: linear-gradient(135deg, rgba(27, 59, 111, 0.6), rgba(11, 26, 48, 0.82));
  border: 1px solid var(--news-color-border);
  border-radius: var(--radius-lg, 24px);
  padding: 26px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.page-news .news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}
.page-news .featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  background: linear-gradient(225deg, rgba(255, 107, 53, 0.1), rgba(27, 59, 111, 0.7) 45%, rgba(11, 26, 48, 0.9));
}
.page-news .card-thumb {
  border-radius: 18px;
  overflow: hidden;
  min-width: 0;
}
.page-news .card-thumb img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.page-news .card-content {
  min-width: 0;
}
.page-news .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.page-news .tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill, 999px);
  padding: 6px 14px;
}
.page-news .tag-accent {
  color: var(--news-color-orange);
  background: rgba(255, 107, 53, 0.14);
  border: 1px solid rgba(255, 107, 53, 0.3);
}
.page-news .tag-violet {
  color: var(--news-color-violet);
  background: rgba(123, 47, 190, 0.18);
  border: 1px solid rgba(139, 80, 220, 0.4);
}
.page-news .tag-ghost {
  color: var(--news-color-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.page-news .news-card h3,
.page-news .topic-content h3 {
  font-family: var(--font-display, "Inter", "Noto Sans SC", sans-serif);
  font-size: 21px;
  font-weight: 750;
  line-height: 1.3;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.page-news .news-card p,
.page-news .topic-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--news-color-muted);
  margin: 0 0 16px;
}
.page-news .text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--news-color-gold);
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}
.page-news .text-link:hover {
  color: var(--news-color-orange);
  gap: 12px;
}
.page-news .log-media {
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 38px;
  border: 1px solid var(--news-color-border);
}
.page-news .log-media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  aspect-ratio: 10 / 3;
}
.page-news .timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.page-news .timeline-item {
  display: flex;
  gap: 20px;
}
.page-news .timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 22px;
}
.page-news .marker-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B35, #FFD700);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15), 0 0 16px rgba(255, 107, 53, 0.3);
  margin-top: 4px;
}
.page-news .timeline-item:last-child .marker-line {
  display: none;
}
.page-news .marker-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.35), rgba(123, 47, 190, 0.12));
}
.page-news .timeline-body {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--news-color-border);
  border-radius: 20px;
  padding: 22px 24px;
  margin-bottom: 22px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.page-news .timeline-body:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 215, 0, 0.22);
}
.page-news .timeline-phase {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--news-color-gold);
  margin: 0 0 8px;
}
.page-news .timeline-body h3 {
  font-family: var(--font-display, "Inter", "Noto Sans SC", sans-serif);
  font-size: 19px;
  font-weight: 750;
  margin: 0 0 10px;
}
.page-news .timeline-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-news .timeline-body li {
  position: relative;
  font-size: 14px;
  line-height: 1.65;
  color: var(--news-color-muted);
  padding-left: 18px;
  margin-bottom: 6px;
}
.page-news .timeline-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--news-color-violet);
  opacity: 0.8;
}
.page-news .topics-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-news .topic-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  background: linear-gradient(150deg, rgba(123, 47, 190, 0.14), rgba(11, 26, 48, 0.82) 48%, rgba(27, 59, 111, 0.7));
  border: 1px solid var(--news-color-border);
  border-radius: var(--radius-lg, 24px);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.page-news .topic-card:hover {
  transform: translateY(-3px);
  border-color: rgba(123, 47, 190, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}
.page-news .topic-media {
  min-width: 0;
}
.page-news .topic-media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.page-news .topic-content {
  padding: 26px 26px 30px;
  min-width: 0;
}
.page-news .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #FFFFFF;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill, 999px);
  padding: 10px 22px;
  transition: all 0.3s ease;
}
.page-news .btn-outline:hover {
  color: var(--news-color-orange);
  border-color: var(--news-color-orange);
  background: rgba(255, 107, 53, 0.08);
}
@media (min-width: 768px) {
  .page-news .news-hero {
    grid-template-columns: 1fr 0.92fr;
    align-items: center;
    gap: 48px;
  }
  .page-news .featured-card {
    grid-template-columns: 240px 1fr;
    align-items: center;
  }
  .page-news .topic-card {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: stretch;
  }
  .page-news .topic-media img {
    height: 100%;
    aspect-ratio: auto;
  }
  .page-news .topic-card:nth-of-type(2) .topic-media {
    order: 2;
  }
}
@media (min-width: 900px) {
  .page-news .news-layout {
    grid-template-columns: var(--news-rail) minmax(0, 1fr);
    gap: 56px;
  }
  .page-news .rail-list {
    flex-direction: column;
    gap: 6px;
  }
  .page-news .rail-list a {
    padding: 10px 12px;
    background: transparent;
    border: 1px solid transparent;
  }
  .page-news .rail-link-item {
    grid-template-columns: 1fr;
  }
  .page-news .news-main {
    gap: 88px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-news .news-card,
  .page-news .topic-card,
  .page-news .text-link,
  .page-news .rail-list a,
  .page-news .rail-link-item,
  .page-news .btn-outline {
    transition: none;
  }
  .page-news .news-card:hover,
  .page-news .topic-card:hover,
  .page-news .rail-link-item:hover {
    transform: none;
  }
  .page-news .text-link:hover {
    gap: 6px;
  }
}
