.page-news {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(0, 229, 255, 0.08), transparent 60%),
    radial-gradient(900px 500px at 0% 30%, rgba(198, 255, 0, 0.05), transparent 55%),
    var(--site-bg);
  overflow-x: hidden;
}

.page-news *,
.page-news *::before,
.page-news *::after {
  box-sizing: border-box;
}

.page-news .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px clamp(16px, 4vw, 64px) 0;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--site-muted);
}

.page-news .breadcrumb a {
  color: var(--electric-blue);
  text-decoration: none;
  transition: color var(--transition-speed) var(--ease-out);
}

.page-news .breadcrumb a:hover {
  color: var(--acid-green);
}

.page-news .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.25);
}

.page-news .section-index {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--electric-blue);
}

.page-news .news-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(500px, 72vh, 680px);
  margin: 18px clamp(16px, 4vw, 64px) 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--site-line);
  background: var(--site-bg-alt);
}

.page-news .news-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-news .news-hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-news .news-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 15, 20, 0.15) 0%, rgba(10, 15, 20, 0.55) 45%, rgba(10, 15, 20, 0.94) 100%),
    linear-gradient(75deg, rgba(10, 15, 20, 0.85) 0%, rgba(10, 15, 20, 0.4) 55%, rgba(10, 15, 20, 0.1) 100%);
}

.page-news .news-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(28px, 5vw, 72px);
}

.page-news .news-hero-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.page-news .news-hero-kicker .issue-tag {
  margin: 0;
}

.page-news .news-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border: 1px solid rgba(198, 255, 0, 0.5);
  color: var(--acid-green);
  background: rgba(198, 255, 0, 0.08);
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.06em;
  border-radius: 2px;
}

.page-news .news-badge-new::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid-green);
  box-shadow: 0 0 8px rgba(198, 255, 0, 0.8);
}

.page-news .news-hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(26px, 5vw, 52px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--site-text);
  max-width: 760px;
  transform: skewX(-1deg);
  text-shadow: 0 2px 24px rgba(10, 15, 20, 0.45);
}

.page-news .news-hero-desc {
  margin: 0 0 22px;
  max-width: 640px;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.7;
  color: rgba(242, 246, 250, 0.85);
}

.page-news .news-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.page-news .news-hero-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 22px;
  height: 46px;
  background: var(--acid-green);
  color: #0a0f14;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  box-shadow: 0 0 0 1px var(--acid-green), 0 4px 20px rgba(198, 255, 0, 0.2);
  transition: box-shadow var(--transition-speed) var(--ease-out), transform var(--transition-speed) var(--ease-out);
}

.page-news .news-hero-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--acid-green), 0 8px 32px rgba(198, 255, 0, 0.32);
}

.page-news .news-hero-link {
  display: inline-flex;
  align-items: center;
  color: var(--electric-blue);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, 0.4);
  padding-bottom: 2px;
  transition: color var(--transition-speed) var(--ease-out), border-color var(--transition-speed) var(--ease-out);
}

.page-news .news-hero-link:hover {
  color: var(--acid-green);
  border-color: rgba(198, 255, 0, 0.5);
}

.page-news .news-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: var(--max-width);
  margin: 22px auto 0;
  padding: 0 clamp(16px, 4vw, 64px);
}

.page-news .news-filter-tab {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid var(--site-line);
  border-radius: 999px;
  background: var(--site-bg-alt);
  color: var(--site-muted);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all var(--transition-speed) var(--ease-out);
}

.page-news .news-filter-tab:hover {
  color: var(--electric-blue);
  border-color: rgba(0, 229, 255, 0.5);
}

.page-news .news-filter-tab.is-active {
  color: #0a0f14;
  background: var(--acid-green);
  border-color: var(--acid-green);
  font-weight: 600;
}

.page-news .news-log-section,
.page-news .news-injury-section,
.page-news .news-data-section,
.page-news .news-related {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px clamp(16px, 4vw, 64px) 0;
}

.page-news .news-section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.page-news .news-section-head .section-index {
  font-size: 13px;
}

.page-news .news-section-head-text h2 {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(24px, 3.6vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--site-text);
  transform: skewX(-1deg);
}

.page-news .news-section-head-text p {
  margin: 0;
  max-width: 720px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--site-muted);
}

.page-news .news-log-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-news .news-log-aside {
  position: relative;
  padding: 20px;
  border: 1px solid var(--site-line);
  background: linear-gradient(135deg, var(--site-bg-alt) 0%, var(--site-card) 100%);
  border-radius: 16px;
}

.page-news .news-aside-label {
  display: block;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--electric-blue);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-news .news-log-aside p {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--site-muted);
}

.page-news .news-version-icon {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--site-line);
  object-fit: cover;
}

.page-news .news-log-timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.page-news .news-log-timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.5), rgba(122, 92, 255, 0.3), rgba(255, 255, 255, 0.06));
}

.page-news .news-log-entry {
  position: relative;
  padding-left: 72px;
  padding-bottom: 28px;
}

.page-news .news-log-entry:last-child {
  padding-bottom: 0;
}

.page-news .news-log-marker {
  position: absolute;
  left: 4px;
  top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 42px;
}

.page-news .news-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--electric-blue);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.15), 0 0 18px rgba(0, 229, 255, 0.5);
}

.page-news .news-log-entry--current .news-dot {
  background: var(--acid-green);
  box-shadow: 0 0 0 4px rgba(198, 255, 0, 0.18), 0 0 20px rgba(198, 255, 0, 0.5);
}

.page-news .news-log-entry:not(.news-log-entry--current) .news-dot {
  background: var(--site-muted);
  box-shadow: 0 0 0 3px rgba(138, 148, 160, 0.12);
}

.page-news .news-log-entry:not(.news-log-entry--current) .news-log-card {
  opacity: 0.88;
}

.page-news .news-version {
  margin-top: 6px;
  font-family: var(--font-num);
  font-size: 11px;
  color: var(--site-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.page-news .news-log-card {
  background: linear-gradient(145deg, rgba(22, 33, 43, 0.95), rgba(16, 24, 32, 0.8));
  border: 1px solid var(--site-line);
  border-radius: 16px;
  padding: 20px;
  transition: border-color var(--transition-speed) var(--ease-out), box-shadow var(--transition-speed) var(--ease-out);
}

.page-news .news-log-card:hover {
  border-color: rgba(0, 229, 255, 0.35);
}

.page-news .news-log-entry--current .news-log-card {
  border-color: rgba(198, 255, 0, 0.2);
  box-shadow: 0 0 0 1px rgba(198, 255, 0, 0.06), 0 8px 32px rgba(10, 15, 20, 0.5);
}

.page-news .news-log-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.page-news .news-cat-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border: 1px solid var(--site-line);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--site-muted);
  letter-spacing: 0.06em;
}

.page-news .news-cat-tag--lime {
  border-color: rgba(198, 255, 0, 0.35);
  color: var(--acid-green);
  background: rgba(198, 255, 0, 0.05);
}

.page-news .news-cat-tag--cyan {
  border-color: rgba(0, 229, 255, 0.35);
  color: var(--electric-blue);
  background: rgba(0, 229, 255, 0.05);
}

.page-news .news-cat-tag--violet {
  border-color: rgba(122, 92, 255, 0.35);
  color: var(--violet);
  background: rgba(122, 92, 255, 0.05);
}

.page-news .news-log-date {
  font-family: var(--font-num);
  font-size: 12px;
  color: var(--site-muted);
  letter-spacing: 0.04em;
}

.page-news .news-log-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.3;
  color: var(--site-text);
}

.page-news .news-log-card p {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 246, 250, 0.75);
}

.page-news .expandable-panel {
  margin-top: 12px;
  padding: 14px;
  border-left: 2px solid rgba(0, 229, 255, 0.4);
  background: rgba(10, 15, 20, 0.5);
  border-radius: 0 10px 10px 0;
}

.page-news .expandable-panel[data-open] {
  display: block;
}

.page-news .expandable-panel:not([data-open]) {
  display: none;
}

.page-news .expandable-panel p {
  margin: 0;
  font-size: 13px;
}

.page-news .news-log-expand-group {
  margin-top: 12px;
}

.page-news .expandable-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 4px 0;
  border: none;
  background: transparent;
  color: var(--electric-blue);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: color var(--transition-speed) var(--ease-out);
}

.page-news .expandable-toggle:hover {
  color: var(--acid-green);
}

.page-news .expandable-toggle-icon {
  font-family: var(--font-num);
  font-size: 15px;
  line-height: 1;
}

.page-news .news-log-meta {
  display: flex;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--site-line);
}

.page-news .news-log-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--electric-blue);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-speed) var(--ease-out);
}

.page-news .news-log-link:hover {
  color: var(--acid-green);
}

.page-news .news-meta-note {
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--site-muted);
  text-transform: uppercase;
}

.page-news .news-injury-section {
  padding-top: 72px;
}

.page-news .news-injury-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.page-news .news-injury-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--site-line);
  background: var(--site-card);
}

.page-news .news-injury-visual img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-speed) var(--ease-out), filter var(--transition-speed) var(--ease-out);
}

.page-news .news-injury-visual:hover img {
  transform: scale(1.02);
  filter: saturate(1.06);
}

.page-news .news-injury-stamp {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 14px;
  background: var(--violet);
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.06em;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(122, 92, 255, 0.4);
  transform: skewX(-6deg);
}

.page-news .news-injury-content {
  display: grid;
  gap: 18px;
}

.page-news .news-injury-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--site-line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(22, 33, 43, 0.8), rgba(16, 24, 32, 0.6));
}

.page-news .news-feature-num {
  flex: 0 0 auto;
  width: 52px;
  font-family: var(--font-num);
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  color: var(--violet);
  text-shadow: 0 0 18px rgba(122, 92, 255, 0.4);
}

.page-news .news-injury-feature h3 {
  margin: 0 0 4px;
  font-family: var(--font-head);
  font-size: 17px;
  line-height: 1.4;
  color: var(--site-text);
}

.page-news .news-injury-feature p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--site-muted);
}

.page-news .news-injury-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  margin-top: 2px;
  padding: 8px 16px;
  border: 1px solid rgba(122, 92, 255, 0.4);
  border-radius: 2px;
  color: var(--violet);
  font-family: var(--font-body);
  font-size: 14px;
  text-decoration: none;
  transition: all var(--transition-speed) var(--ease-out);
}

.page-news .news-injury-link:hover {
  background: rgba(122, 92, 255, 0.12);
  border-color: var(--violet);
  color: var(--acid-green);
}

.page-news .news-data-section {
  padding-top: 72px;
}

.page-news .news-data-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.page-news .news-data-visual {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--site-line);
  background: var(--site-card);
}

.page-news .news-data-visual img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-speed) var(--ease-out), filter var(--transition-speed) var(--ease-out);
}

.page-news .news-data-visual:hover img {
  transform: scale(1.02);
  filter: saturate(1.06);
}

.page-news .news-data-content {
  padding: 20px;
  border: 1px solid var(--site-line);
  border-radius: 18px;
  background: linear-gradient(150deg, var(--site-card), var(--site-bg-alt));
}

.page-news .news-data-content h3 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1.3;
  color: var(--site-text);
}

.page-news .news-data-content > p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--site-muted);
}

.page-news .news-data-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.page-news .news-data-metric {
  padding: 12px 8px;
  text-align: center;
  border: 1px solid var(--site-line);
  border-radius: 10px;
  background: rgba(10, 15, 20, 0.4);
}

.page-news .metric-number {
  display: block;
  font-family: var(--font-num);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--acid-green);
  text-shadow: 0 0 20px rgba(198, 255, 0, 0.25);
}

.page-news .metric-label {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--site-muted);
}

.page-news .news-data-note {
  font-size: 13px;
}

.page-news .news-related {
  padding-top: 72px;
  padding-bottom: 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-news .news-related-card {
  position: relative;
  display: block;
  padding: 22px 20px;
  border: 1px solid var(--site-line);
  border-radius: 16px;
  background: var(--site-bg-alt);
  text-decoration: none;
  transition: border-color var(--transition-speed) var(--ease-out), background var(--transition-speed) var(--ease-out), transform var(--transition-speed) var(--ease-out);
}

.page-news .news-related-card:hover {
  border-color: rgba(0, 229, 255, 0.4);
  background: var(--site-card);
  transform: translateY(-2px);
}

.page-news .news-related-index {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-num);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--electric-blue);
  text-transform: uppercase;
}

.page-news .news-related-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--site-muted);
}

.page-news [data-reveal] {
  will-change: opacity, transform;
}

@media (min-width: 980px) {
  .page-news .news-hero {
    min-height: 640px;
  }

  .page-news .news-hero-inner {
    padding: 64px 72px;
  }

  .page-news .news-log-layout {
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
  }

  .page-news .news-log-aside {
    position: sticky;
    top: 24px;
  }

  .page-news .news-section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
  }

  .page-news .news-section-head-text {
    flex: 0 0 68%;
  }

  .page-news .news-section-head .section-index {
    flex: 0 0 auto;
  }

  .page-news .news-injury-grid {
    grid-template-columns: 58% 42%;
    gap: 32px;
  }

  .page-news .news-data-layout {
    grid-template-columns: 46% 54%;
    gap: 32px;
  }

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