.page-news {
  --news-green: #B6FF2E;
  --news-blue: #00E5FF;
  --news-orange: #FF8A00;
  overflow-x: hidden;
}

.page-news .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
}
.page-news .breadcrumb a {
  color: var(--electric-blue);
  text-decoration: none;
}
.page-news .breadcrumb a:hover {
  color: var(--neon-green);
}
.page-news .crumb-sep {
  opacity: 0.5;
}

.page-news .news-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  margin-bottom: 54px;
}
.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 80%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.page-news .news-hero-copy,
.page-news .news-hero-media {
  position: relative;
  z-index: 1;
}
.page-news .news-hero-copy::before {
  content: "";
  display: block;
  width: 54px;
  height: 6px;
  background: linear-gradient(90deg, var(--neon-green), var(--electric-blue));
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
  margin-bottom: 18px;
}
.page-news .news-hero-copy .section-label {
  color: var(--neon-green);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.page-news .news-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  margin: 12px 0 16px;
  color: var(--text-pure);
  max-width: 720px;
}
.page-news .news-hero-lead {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 22px;
}
.page-news .news-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-news .news-hero-tags .tag {
  border: 1px solid var(--grid-line);
  background: var(--bg-elevated);
  color: var(--electric-blue);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
}
.page-news .news-hero-media {
  border: 1px solid var(--grid-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.5);
}
.page-news .news-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1400 / 600;
  object-fit: cover;
}
.page-news .news-scan-line {
  position: absolute;
  top: 8%;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.7), transparent);
  animation: page-news-scan 3.6s linear infinite;
  pointer-events: none;
}
.page-news .news-hero-pulse {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 180px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.35));
  pointer-events: none;
}
@keyframes page-news-scan {
  0% {
    top: 8%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    top: 92%;
    opacity: 0;
  }
}

.page-news .news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
}
.page-news .section-head {
  margin-bottom: 26px;
}
.page-news .section-head .section-label {
  color: var(--electric-blue);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.page-news .section-head h2 {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.15;
  margin: 8px 0;
  color: var(--text-pure);
}
.page-news .section-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.page-news .timeline-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-news .timeline-list::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--electric-blue), rgba(0, 229, 255, 0.08));
  opacity: 0.5;
}
.page-news .timeline-item {
  position: relative;
  padding-left: 36px;
  padding-bottom: 40px;
}
.page-news .timeline-item:last-child {
  padding-bottom: 0;
}
.page-news .timeline-node {
  position: absolute;
  left: 0;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid var(--electric-blue);
  background: var(--bg-deep);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.12);
  z-index: 2;
}
.page-news .timeline-item-latest .timeline-node {
  border-color: var(--neon-green);
  background: var(--neon-green);
  box-shadow: 0 0 16px var(--glow-success), 0 0 0 4px rgba(182, 255, 46, 0.12);
}
.page-news .timeline-card {
  background: var(--bg-panel);
  border: 1px solid var(--grid-line);
  border-radius: var(--radius-md);
  padding: 22px 20px 18px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.page-news .timeline-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 229, 255, 0.35);
}
.page-news .timeline-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.page-news .timeline-batch {
  font-family: var(--font-numeric);
  font-size: 12px;
  color: var(--electric-blue);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 999px;
  padding: 2px 10px;
}
.page-news .timeline-live {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--neon-green);
  border-radius: 999px;
  padding: 3px 10px;
  animation: page-news-blink 1.8s ease-in-out infinite;
}
@keyframes page-news-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}
.page-news .timeline-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.32;
  color: var(--text-pure);
  margin: 0 0 10px;
}
.page-news .timeline-card p {
  font-size: 14px;
  line-height: 1.72;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.page-news .timeline-media {
  margin: 0 0 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--grid-line);
}
.page-news .timeline-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 400;
  object-fit: cover;
}
.page-news .timeline-media figcaption {
  font-size: 12px;
  color: var(--text-muted);
  padding: 8px 12px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--grid-line);
}
.page-news .news-inline-link {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--neon-green);
  text-decoration: none;
  border-bottom: 1px solid rgba(182, 255, 46, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.page-news .news-inline-link:hover {
  border-bottom-color: transparent;
}

.page-news .news-side-col {
  display: grid;
  gap: 56px;
  align-content: start;
}
.page-news .report-card {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--grid-line);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.page-news .report-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 229, 255, 0.3);
}
.page-news .report-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-green), var(--electric-blue));
  z-index: 3;
}
.page-news .report-card--b::before {
  background: linear-gradient(90deg, var(--electric-blue), #7FD8FF);
}
.page-news .report-card--c::before {
  background: linear-gradient(90deg, var(--warm-orange), #FFC876);
}
.page-news .report-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--neon-green);
  z-index: 3;
}
.page-news .report-card--b::after {
  background: var(--electric-blue);
}
.page-news .report-card--c::after {
  background: var(--warm-orange);
}
.page-news .report-media {
  border-radius: 0;
  border-bottom: 1px solid var(--grid-line);
  overflow: hidden;
}
.page-news .report-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 800 / 500;
  object-fit: cover;
}
.page-news .report-body {
  padding: 18px 20px 20px;
}
.page-news .report-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.page-news .report-league {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--neon-green);
  background: rgba(182, 255, 46, 0.08);
  border: 1px solid rgba(182, 255, 46, 0.2);
  border-radius: 999px;
  padding: 2px 10px;
}
.page-news .report-round {
  font-family: var(--font-numeric);
  font-size: 12px;
  color: var(--text-muted);
}
.page-news .report-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 8px;
  color: var(--text-pure);
}
.page-news .report-body > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}
.page-news .report-details {
  margin-top: 12px;
}
.page-news .report-details summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--electric-blue);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
}
.page-news .report-details summary::-webkit-details-marker {
  display: none;
}
.page-news .report-details summary::after {
  content: "+";
  font-family: var(--font-numeric);
  font-size: 15px;
  color: var(--neon-green);
  transition: transform 0.2s ease;
}
.page-news .report-details[open] summary::after {
  content: "−";
}
.page-news .report-stat-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  border-top: 1px solid var(--grid-line);
}
.page-news .report-stat-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 9px 0 0;
  border-bottom: 1px dashed rgba(0, 229, 255, 0.12);
}
.page-news .report-stat-list li:last-child {
  border-bottom: 0;
}
.page-news .report-stat-list li span {
  color: var(--text-muted);
}
.page-news .report-stat-list li i {
  font-style: normal;
  font-family: var(--font-numeric);
  color: var(--text-pure);
}

.page-news .feature-card {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--grid-line);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.page-news .feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(0, 229, 255, 0.35);
}
.page-news .feature-media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid var(--grid-line);
}
.page-news .feature-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 600 / 400;
  object-fit: cover;
}
.page-news .feature-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-orange);
  border: 1px solid rgba(255, 138, 0, 0.4);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.page-news .feature-body h3 {
  font-family: var(--font-display);
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--text-pure);
}
.page-news .feature-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}
.page-news .feature-progress {
  height: 4px;
  background: var(--bg-elevated);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 14px;
  transition: height 0.25s ease;
}
.page-news .feature-card:hover .feature-progress {
  height: 6px;
}
.page-news .feature-progress-bar {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--neon-green), var(--electric-blue));
}
.page-news .feature-progress-text {
  display: block;
  font-family: var(--font-numeric);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

.page-news .h2h-module {
  margin-top: 62px;
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 229, 255, 0.14), transparent 42%),
    linear-gradient(135deg, var(--bg-panel), var(--bg-deep));
  border: 1px solid var(--grid-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.page-news .h2h-ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--grid-line);
  padding: 12px 0;
  background: rgba(0, 229, 255, 0.03);
}
.page-news .h2h-ticker-track {
  display: flex;
  width: max-content;
  animation: page-news-ticker 30s linear infinite;
}
.page-news .h2h-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-family: var(--font-numeric);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--electric-blue);
  white-space: nowrap;
  border-right: 1px solid rgba(0, 229, 255, 0.14);
}
.page-news .h2h-ticker-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--glow-success);
  flex: none;
}
@keyframes page-news-ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.page-news .h2h-inner {
  display: grid;
  gap: 24px;
  padding: 26px;
}
.page-news .h2h-copy .section-label {
  color: var(--neon-green);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.page-news .h2h-copy h2 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 8px 0 10px;
  color: var(--text-pure);
}
.page-news .h2h-copy p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.page-news .h2h-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.page-news .h2h-stat {
  background: rgba(10, 14, 26, 0.72);
  border: 1px solid var(--grid-line);
  border-radius: var(--radius-md);
  padding: 20px 12px 16px;
  text-align: center;
}
.page-news .h2h-num {
  display: block;
  font-family: var(--font-numeric);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--neon-green);
}
.page-news .h2h-stat:nth-child(2) .h2h-num {
  color: var(--electric-blue);
}
.page-news .h2h-stat:nth-child(3) .h2h-num {
  color: var(--warm-orange);
}
.page-news .h2h-label {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.page-news .news-contact {
  display: grid;
  gap: 22px;
  margin-top: 54px;
  padding: 34px 26px;
  border: 1px solid var(--grid-line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(115deg, rgba(182, 255, 46, 0.06), transparent 40%),
    var(--bg-panel);
}
.page-news .news-contact .section-label {
  color: var(--electric-blue);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.page-news .news-contact h2 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 8px 0 10px;
  color: var(--text-pure);
}
.page-news .news-contact-copy p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}
.page-news .news-contact-info {
  display: grid;
  gap: 4px;
}
.page-news .news-contact .contact-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 8px;
}
.page-news .news-contact .contact-value {
  font-family: var(--font-numeric);
  font-size: 15px;
  color: var(--text-pure);
}
.page-news .news-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 1080px) {
  .page-news .news-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 44px;
  }
  .page-news .news-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 60px;
  }
  .page-news .h2h-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    padding: 32px;
  }
  .page-news .news-contact {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding: 36px 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .h2h-ticker-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    gap: 6px;
  }
  .page-news .timeline-live,
  .page-news .news-scan-line {
    animation: none;
  }
}
