.page-news {
  --news-bg-deep: #090C14;
  --news-card-bg: rgba(20, 27, 45, 0.92);
  --news-blue-glow: rgba(0, 184, 217, 0.35);
  --news-green-glow: rgba(0, 255, 136, 0.45);
  --news-purple-glow: rgba(157, 78, 221, 0.35);
  --news-line: rgba(255, 255, 255, 0.12);
}

.page-news .breadcrumbs {
  padding-top: calc(var(--header-total) + 20px);
  padding-bottom: 10px;
}

.page-news .page-hero {
  padding-top: 4px;
  padding-bottom: 52px;
}

.page-news .news-feature {
  position: relative;
  overflow: hidden;
  background: var(--news-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.page-news .news-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-news .news-feature-body {
  position: relative;
  z-index: 1;
  margin: -56px 14px 0;
  padding: 26px 20px 28px;
  background: rgba(13, 18, 30, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.page-news .news-feature-body::before {
  content: "UPDATE / 8868";
  position: absolute;
  top: -1px;
  left: 26px;
  transform: translateY(-50%);
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-bg);
  background: linear-gradient(90deg, var(--color-blue), var(--color-green));
  border-radius: 4px;
  z-index: 2;
  white-space: nowrap;
}

.page-news .news-feature-body::after {
  content: "88";
  position: absolute;
  right: 14px;
  bottom: 4px;
  font-family: var(--font-mono);
  font-size: 84px;
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 184, 217, 0.08);
  pointer-events: none;
  z-index: 0;
}

.page-news .news-feature-body > * {
  position: relative;
  z-index: 1;
}

.page-news .news-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.page-news .news-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.page-news .news-tag--update {
  color: var(--color-bg);
  background: var(--color-blue);
}

.page-news .news-tag--notice {
  color: var(--color-bg);
  background: var(--color-green);
}

.page-news .news-tag--report {
  color: var(--color-white);
  background: var(--color-purple);
}

.page-news .news-tag--spot {
  color: var(--color-bg);
  background: var(--color-amber);
}

.page-news h1 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.01em;
  margin: 0 0 14px;
}

.page-news .news-feature-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-silver);
  margin: 0 0 18px;
  max-width: 60ch;
}

.page-news .news-feature-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}

.page-news .meta-label {
  font-size: 14px;
  color: var(--color-silver);
  font-family: var(--font-mono);
}

.page-news .section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 30px;
}

.page-news .section-title {
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}

.page-news .news-list-section {
  padding-top: 0;
}

.page-news .news-timeline {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 0;
}

.page-news .news-timeline::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--color-blue), var(--color-purple) 55%, rgba(255, 255, 255, 0.06));
}

.page-news .news-entry {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: start;
}

.page-news .news-entry-line {
  position: relative;
}

.page-news .news-entry-dot {
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow:
    0 0 0 4px rgba(0, 255, 136, 0.12),
    0 0 16px var(--news-green-glow);
}

.page-news .news-entry-card {
  padding: 20px 20px 22px;
  background: var(--news-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}

.page-news .news-entry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 184, 217, 0.45);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32), 0 0 20px rgba(0, 184, 217, 0.1);
}

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

.page-news .news-entry-time {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-silver);
}

.page-news .news-entry-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px;
  color: var(--color-white);
}

.page-news .news-entry-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-silver);
  margin: 0;
}

.page-news .news-versions-section {
  padding: 52px 0 56px;
  margin-top: 8px;
  background:
    linear-gradient(rgba(9, 12, 20, 0.94), rgba(9, 12, 20, 0.94)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 9px);
  border-top: 1px solid var(--news-line);
  border-bottom: 1px solid var(--news-line);
}

.page-news .versions-layout {
  display: grid;
  gap: 30px;
}

.page-news .versions-visual {
  clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
}

.page-news .versions-list {
  display: grid;
  gap: 14px;
}

.page-news .version-item {
  position: relative;
  padding: 20px 22px;
  background: rgba(20, 27, 45, 0.9);
  border-left: 3px solid var(--color-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: border-color var(--t-med), transform var(--t-med);
}

.page-news .version-item:hover {
  border-left-color: var(--color-green);
  transform: translateX(5px);
}

.page-news .version-item-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 10px;
}

.page-news .version-num {
  font-family: var(--font-mono);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.page-news .version-flag {
  padding: 2px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-bg);
  background: var(--color-amber);
  border-radius: 999px;
}

.page-news .version-detail {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.page-news .version-detail li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-silver);
}

.page-news .version-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--color-blue);
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 30% 100%);
}

.page-news .news-reports-section {
  padding: 56px 0 50px;
}

.page-news .reports-grid {
  display: grid;
  gap: 20px;
}

.page-news .report-card {
  position: relative;
  background: var(--news-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.page-news .report-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.38), 0 0 24px var(--news-purple-glow);
}

.page-news .report-card .media-frame {
  position: relative;
}

.page-news .report-card .media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(9, 12, 20, 0.72) 100%);
  pointer-events: none;
}

.page-news .report-index {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.16);
  transition: color var(--t-med);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.page-news .report-card:hover .report-index {
  color: var(--color-green);
}

.page-news .report-body {
  padding: 20px 22px 24px;
  position: relative;
}

.page-news .report-tags {
  margin-bottom: 10px;
}

.page-news .report-body h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 8px;
}

.page-news .report-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-silver);
  margin: 0 0 16px;
}

.page-news .news-subscribe-section {
  padding: 48px 0 72px;
}

.page-news .subscribe-panel {
  position: relative;
  display: grid;
  gap: 26px;
  padding: 32px 24px 34px;
  background:
    radial-gradient(ellipse at top right, rgba(157, 78, 221, 0.16), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(0, 184, 217, 0.14), transparent 50%),
    rgba(20, 27, 45, 0.9);
  border: 1px solid rgba(0, 184, 217, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 40px rgba(0, 184, 217, 0.08), 0 20px 40px rgba(0, 0, 0, 0.28);
}

.page-news .subscribe-panel::before {
  content: "LIVE SUBSCRIBE";
  position: absolute;
  top: -1px;
  left: 24px;
  transform: translateY(-50%);
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-bg);
  background: var(--color-green);
  border-radius: 4px;
  z-index: 2;
  white-space: nowrap;
}

.page-news .subscribe-media {
  max-width: 200px;
  justify-self: center;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(0, 184, 217, 0.5);
  box-shadow: 0 0 30px rgba(0, 184, 217, 0.22);
}

.page-news .subscribe-body {
  min-width: 0;
}

.page-news .subscribe-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 10px;
}

.page-news .subscribe-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-silver);
  margin: 0 0 20px;
  max-width: 56ch;
}

.page-news .subscribe-steps {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  counter-reset: subscribe-step;
  display: grid;
  gap: 10px;
}

.page-news .subscribe-steps li {
  counter-increment: subscribe-step;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-silver);
}

.page-news .subscribe-steps li::before {
  content: counter(subscribe-step, decimal-leading-zero);
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 800;
  color: var(--color-green);
}

.page-news .subscribe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 768px) {
  .page-news .breadcrumbs {
    padding-top: calc(var(--header-total) + 28px);
  }

  .page-news .news-feature-body {
    margin: -72px 32px 0;
    padding: 34px 36px 38px;
  }

  .page-news .news-feature-body::after {
    font-size: 108px;
  }

  .page-news h1 {
    font-size: 42px;
  }

  .page-news .news-timeline {
    gap: 22px;
  }

  .page-news .news-entry-card {
    padding: 24px 28px 26px;
  }

  .page-news .news-entry-title {
    font-size: 19px;
  }

  .page-news .versions-layout {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
    gap: 36px;
  }

  .page-news .reports-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .page-news .subscribe-panel {
    grid-template-columns: 240px 1fr;
    align-items: center;
    gap: 32px;
    padding: 40px 40px 44px;
  }

  .page-news .subscribe-media {
    max-width: 240px;
  }
}

@media (min-width: 1024px) {
  .page-news .news-feature-body {
    width: 78%;
  }
}
