.page-news {
  --p-ok: var(--accent-green);
  --p-blue: var(--accent-blue);
  --p-orange: var(--signal-orange);
  --p-card: var(--bg-secondary);
  --p-ink: var(--text-primary);
  --p-mut: var(--text-secondary);
  --p-line: var(--border-color);
  --p-deep: var(--bg-tertiary);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  position: relative;
  padding-bottom: 64px;
  overflow-x: hidden;
}

.page-news::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 34%;
  height: 500px;
  background: linear-gradient(132deg, transparent 42%, rgba(0,255,135,0.08) 42%, rgba(0,255,135,0.08) 62%, transparent 62%);
  pointer-events: none;
}

.page-news__breadcrumb {
  margin-top: 24px;
}

.page-news__masthead {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 56px;
  padding-top: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--p-line);
}

.page-news__issue {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p-ok);
}

.page-news__masthead h1 {
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(46px, 11vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.page-news__subtitle {
  margin: 0;
  max-width: 40em;
  font-size: 15px;
  line-height: 1.7;
  color: var(--p-mut);
}

.page-news__status {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--p-line);
  border-radius: 999px;
  background: var(--p-card);
  font-size: 13px;
  line-height: 1.5;
  color: var(--p-mut);
}

.page-news__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--p-ok);
  box-shadow: 0 0 10px rgba(0,255,135,0.65);
  animation: page-news-pulse 2.2s ease-in-out infinite;
}

@keyframes page-news-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0,255,135,0.45);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 7px rgba(0,255,135,0);
    opacity: 0.75;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news__status-dot {
    animation: none;
  }
}

.page-news__featured {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}

.page-news__featured-inner {
  display: grid;
  gap: 20px;
}

.page-news__featured-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--p-line);
  background: var(--p-card);
}

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

.page-news__featured-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 20px;
  border: 1px solid var(--p-line);
  border-left: 4px solid var(--p-ok);
  background: var(--p-card);
}

.page-news__featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news__featured-card h2 {
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.1;
}

.page-news__featured-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--p-mut);
}

.page-news__path-compare {
  width: 100%;
  display: grid;
  gap: 10px;
}

.page-news__path-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--p-line);
  background: var(--p-deep);
  font-size: 13px;
  line-height: 1.5;
}

.page-news__path-item::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--p-mut);
}

.page-news__path-item--new {
  border-color: var(--p-ok);
}

.page-news__path-item--new::before {
  background: var(--p-ok);
  box-shadow: 0 0 0 4px rgba(0,255,135,0.12);
}

.page-news__path-label {
  flex: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--p-mut);
  text-transform: uppercase;
}

.page-news__path-value {
  color: var(--p-ink);
}

.page-news__featured-actions {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.page-news__textlink {
  font-size: 14px;
  font-weight: 600;
  color: var(--p-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.page-news__textlink:hover {
  color: var(--p-ok);
}

.page-news__refresh {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
  padding: 40px 0;
  border-top: 1px solid var(--p-line);
  border-bottom: 1px solid var(--p-line);
  background: linear-gradient(100deg, var(--bg-secondary) 0%, var(--bg-primary) 88%);
}

.page-news__refresh-grid {
  display: grid;
  gap: 24px;
}

.page-news__refresh-copy h2,
.page-news__timeline-header h2,
.page-news__evolution-body h2,
.page-news__categories-copy h2 {
  margin: 10px 0 12px;
  font-family: var(--font-headline);
  font-size: clamp(24px, 3.6vw, 34px);
  line-height: 1.1;
}

.page-news__refresh-lead,
.page-news__timeline-intro,
.page-news__evolution-lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--p-mut);
}

.page-news__refresh-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.page-news__refresh-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--p-line);
  background: var(--p-card);
  font-size: 14px;
  line-height: 1.65;
}

.page-news__refresh-list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  background: var(--p-blue);
  transform: rotate(45deg);
}

.page-news__refresh-figure,
.page-news__categories-fig {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--p-line);
  background: var(--p-card);
}

.page-news__refresh-figure img,
.page-news__categories-fig img {
  display: block;
  width: 100%;
  height: auto;
}

.page-news__refresh-figure figcaption {
  padding: 10px 2px 2px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--p-mut);
}

.page-news__refresh-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--p-ok);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.page-news__refresh-more:hover {
  color: var(--p-blue);
}

.page-news__timeline-section {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}

.page-news__timeline-header,
.page-news__filters {
  max-width: 900px;
}

.page-news__timeline-intro {
  max-width: 46em;
}

.page-news__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 18px 0 28px;
}

.page-news__filters-label {
  margin-right: 2px;
  font-size: 13px;
  color: var(--p-mut);
}

.page-news__filter-link {
  padding: 6px 14px;
  border: 1px solid rgba(0,229,255,0.5);
  border-radius: 999px;
  background: rgba(0,229,255,0.06);
  color: var(--p-blue);
  font-size: 13px;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.page-news__filter-link:hover {
  background: var(--accent-blue);
  color: var(--bg-primary);
}

.page-news__timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: grid;
  gap: 20px;
  max-width: 900px;
}

.page-news__timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--p-line) 0, var(--p-line) 6px, transparent 6px, transparent 12px);
}

.page-news__timeline-item {
  position: relative;
  padding-left: 52px;
}

.page-news__timeline-node {
  position: absolute;
  left: 6px;
  top: 26px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
  background: var(--p-ok);
  box-shadow: 0 0 0 3px rgba(0,255,135,0.25);
}

.page-news__timeline-node--hot {
  background: var(--p-orange);
  box-shadow: 0 0 0 3px rgba(255,94,0,0.22);
}

.page-news__timeline-node--blue {
  background: var(--p-blue);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.22);
}

.page-news__timeline-card {
  border: 1px solid var(--p-line);
  background: var(--p-card);
  transition: border-color var(--transition-fast);
}

.page-news__timeline-card:hover {
  border-color: rgba(0,255,135,0.6);
}

.page-news__timeline-card details {
  position: relative;
}

.page-news__timeline-card summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 16px 44px 16px 16px;
  outline: none;
}

.page-news__timeline-card summary::-webkit-details-marker {
  display: none;
}

.page-news__timeline-card summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 700;
  color: var(--p-ok);
}

.page-news__timeline-card details[open] summary::after {
  content: "−";
}

.page-news__timeline-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.page-news__timeline-cat {
  padding: 2px 8px;
  border-radius: 2px;
  background: rgba(0,229,255,0.14);
  color: var(--p-blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-news__timeline-ver {
  font-size: 12px;
  color: var(--p-mut);
}

.page-news__timeline-title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--p-ink);
}

.page-news__timeline-desc {
  margin: 0;
  padding: 14px 16px 18px;
  border-top: 1px solid var(--p-line);
  font-size: 14px;
  line-height: 1.75;
  color: var(--p-mut);
}

.page-news__evolution {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
  padding: 40px 0;
  border-top: 1px solid var(--p-line);
  border-bottom: 1px solid var(--p-line);
  background: var(--bg-secondary);
}

.page-news__evolution-grid {
  display: grid;
  gap: 28px;
}

.page-news__evolution-figure {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--p-line);
  background: var(--bg-primary);
}

.page-news__evolution-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.page-news__evolution-figure figcaption {
  padding: 10px 2px 2px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--p-mut);
}

.page-news__evolution-lead {
  max-width: 46em;
}

.page-news__evolution-steps {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: evo-step;
}

.page-news__evolution-step {
  position: relative;
  padding: 16px 0 16px 44px;
  border-bottom: 1px solid var(--p-line);
  counter-increment: evo-step;
}

.page-news__evolution-step:last-child {
  border-bottom: 0;
}

.page-news__evolution-step::before {
  content: "0" counter(evo-step);
  position: absolute;
  left: 0;
  top: 18px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--p-ok);
  color: var(--p-ok);
  font-family: var(--font-headline);
  font-size: 11px;
}

.page-news__evolution-step h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.page-news__evolution-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--p-mut);
}

.page-news__categories {
  position: relative;
  z-index: 1;
}

.page-news__categories-head {
  display: grid;
  gap: 20px;
  margin-bottom: 28px;
}

.page-news__categories-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--p-mut);
}

.page-news__categories-fig {
  max-width: 420px;
}

.page-news__categories-grid {
  display: grid;
  gap: 16px;
}

.page-news__category-card {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 22px 20px 20px;
  border: 1px solid var(--p-line);
  background: var(--p-card);
  color: var(--p-ink);
  text-decoration: none;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.page-news__category-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, transparent 50%, rgba(0,229,255,0.25) 50%);
}

.page-news__category-card:hover {
  border-color: var(--p-ok);
}

.page-news__category-label {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
  background: var(--p-blue);
  color: var(--bg-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-news__category-card h3 {
  margin: 14px 0 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.page-news__category-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--p-mut);
}

.page-news__category-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--p-ok);
}

@media (min-width: 720px) {
  .page-news__featured-card {
    padding: 28px 24px;
  }

  .page-news__categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-news__categories-head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (min-width: 960px) {
  .page-news__masthead {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .page-news__status {
    flex: none;
  }

  .page-news__featured-inner {
    grid-template-columns: 7fr 5fr;
    align-items: stretch;
  }

  .page-news__refresh-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
  }

  .page-news__evolution-grid {
    grid-template-columns: 5fr 7fr;
    align-items: center;
    gap: 48px;
  }
}
