.page-news {
  --news-cut: 22px;
  --news-border: 1px solid var(--yx-border);
  background: var(--yx-bg);
  color: var(--yx-text);
  overflow-x: hidden;
}

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

.page-news .yx-container {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-news a {
  color: inherit;
  text-decoration: none;
}

.page-news a:focus-visible {
  outline: 2px solid var(--yx-accent);
  outline-offset: 4px;
}

.page-news .news-hero {
  position: relative;
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--yx-border);
  background:
    linear-gradient(120deg, rgba(17, 34, 64, 0.92), rgba(10, 25, 47, 0.84)),
    radial-gradient(circle at 82% 18%, rgba(0, 255, 163, 0.16), transparent 34%);
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--yx-accent) 0%, var(--yx-highlight) 55%, transparent 100%);
  opacity: 0.7;
}

.page-news .news-breadcrumb {
  margin-bottom: 40px;
}

.page-news .news-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.page-news .news-breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--yx-muted);
  font-size: 13px;
}

.page-news .news-breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--yx-border);
}

.page-news .news-breadcrumb a {
  color: var(--yx-muted);
  transition: color 0.2s;
}

.page-news .news-breadcrumb a:hover {
  color: var(--yx-accent);
}

.page-news .news-breadcrumb [aria-current="page"] {
  color: var(--yx-text);
}

.page-news .news-eyebrow {
  margin: 0 0 14px;
  font-family: var(--yx-font-data);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--yx-accent);
}

.page-news .news-hero h1 {
  margin: 0;
  font-family: var(--yx-font-head);
  font-size: clamp(2.4rem, 8vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.page-news .news-lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--yx-muted);
  font-size: 16px;
  line-height: 1.8;
}

.page-news .news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.page-news .news-filter-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--yx-border);
  border-radius: 999px;
  background: var(--yx-bg-glass);
  color: var(--yx-muted);
  font-size: 13px;
  line-height: 1.2;
  transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}

.page-news .news-filter-link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yx-highlight);
  flex: none;
}

.page-news .news-filter-link:hover,
.page-news .news-filter-link.is-active {
  border-color: rgba(0, 255, 163, 0.7);
  color: var(--yx-accent);
  background: rgba(0, 255, 163, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 255, 163, 0.08);
}

.page-news .news-section {
  padding: 68px 0;
}

.page-news .news-section-dark {
  background: var(--yx-bg-panel);
  border-block: 1px solid var(--yx-border);
}

.page-news .news-section-head {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 40px;
}

.page-news .news-section-head .yx-kicker {
  font-family: var(--yx-font-data);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yx-accent);
}

.page-news .news-section-title {
  margin: 0;
  font-family: var(--yx-font-head);
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.page-news .news-section-lead {
  margin: 0;
  color: var(--yx-muted);
  font-size: 15px;
  line-height: 1.75;
}

.page-news .news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.page-news .news-timeline {
  position: relative;
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 16px 0 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: thin;
}

.page-news .news-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--yx-accent), var(--yx-highlight));
}

.page-news .news-timeline-item {
  position: relative;
  flex: 0 0 210px;
  padding: 16px;
  border: 1px solid var(--yx-border);
  background: var(--yx-bg-glass);
}

.page-news .news-timeline-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yx-accent);
  box-shadow: 0 0 12px rgba(0, 255, 163, 0.8);
}

.page-news .news-timeline-term {
  margin: 10px 0 6px;
  font-family: var(--yx-font-data);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--yx-text);
}

.page-news .news-timeline-desc {
  margin: 0;
  color: var(--yx-muted);
  font-size: 13px;
  line-height: 1.6;
}

.page-news .news-stream {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.page-news .news-card {
  position: relative;
  border: 1px solid var(--yx-border);
  background: var(--yx-bg-panel);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-news .news-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 255, 163, 0.55);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 255, 163, 0.08);
}

.page-news .news-featured {
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
}

.page-news .news-featured-img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.page-news .news-card-body {
  padding: 22px 24px 26px;
}

.page-news .news-featured .news-card-body {
  padding: 28px 30px 32px;
}

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

.page-news .news-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 107, 53, 0.35);
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.12);
  color: var(--yx-text);
  font-size: 12px;
  line-height: 1.4;
}

.page-news .news-cat::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yx-highlight);
}

.page-news .news-time {
  font-family: var(--yx-font-data);
  font-size: 12px;
  color: var(--yx-muted);
}

.page-news .news-card-title {
  margin: 0 0 10px;
  font-family: var(--yx-font-body);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.55;
}

.page-news .news-featured .news-card-title {
  margin-bottom: 14px;
  font-family: var(--yx-font-head);
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.25;
}

.page-news .news-summary {
  margin: 0 0 14px;
  color: var(--yx-muted);
  font-size: 14px;
  line-height: 1.75;
}

.page-news .news-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yx-accent);
  font-size: 13px;
  font-weight: 700;
}

.page-news .news-more::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--yx-accent);
  transition: width 0.2s ease;
}

.page-news .news-more:hover::after {
  width: 36px;
}

.page-news .news-link {
  position: relative;
}

.page-news .news-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--yx-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.page-news .news-card:hover .news-link::after,
.page-news .news-link:hover::after,
.page-news .news-link:focus-visible::after {
  transform: scaleX(1);
}

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

.page-news .news-mini-card {
  display: grid;
  padding: 22px 24px;
  background: var(--yx-bg-glass);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.page-news .news-mini-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(var(--yx-accent), var(--yx-highlight));
}

@media (hover: hover) and (pointer: fine) {
  .page-news .news-mini-card .news-summary,
  .page-news .news-mini-card .news-more {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(4px);
    transition: max-height 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  }

  .page-news .news-mini-card:hover .news-summary,
  .page-news .news-mini-card:focus-within .news-summary,
  .page-news .news-mini-card:hover .news-more,
  .page-news .news-mini-card:focus-within .news-more {
    max-height: 180px;
    opacity: 1;
    transform: none;
  }
}

.page-news .news-update-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.page-news .news-update-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--yx-border);
}

.page-news .news-update-list {
  display: grid;
  gap: 16px;
}

.page-news .news-update-card {
  position: relative;
  padding: 22px 24px 24px;
  border: 1px solid var(--yx-border);
  border-left: 3px solid var(--yx-accent);
  background: var(--yx-bg);
}

.page-news .news-update-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 2px;
  background: var(--yx-highlight);
}

.page-news .news-version {
  display: block;
  margin-bottom: 10px;
  font-family: var(--yx-font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--yx-accent);
}

.page-news .news-update-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.5;
}

.page-news .news-update-card p {
  margin: 0 0 12px;
  color: var(--yx-muted);
  font-size: 14px;
  line-height: 1.75;
}

.page-news .news-insights-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.page-news .news-chart-card {
  position: relative;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--yx-border);
  background: var(--yx-bg-glass);
}

.page-news .news-chart-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-news .news-data-tag {
  position: absolute;
  left: 26px;
  bottom: 26px;
  padding: 6px 12px;
  border: 1px solid var(--yx-accent);
  background: rgba(10, 25, 47, 0.92);
  color: var(--yx-accent);
  font-family: var(--yx-font-data);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.page-news .news-insight-list {
  display: grid;
  gap: 0;
}

.page-news .news-insight-item {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 24px 0;
  border-top: 1px solid var(--yx-border);
}

.page-news .news-insight-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.page-news .news-insight-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.page-news .news-insight-item p {
  margin: 0;
  color: var(--yx-muted);
  font-size: 14px;
  line-height: 1.75;
}

.page-news .news-partner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.page-news .news-partner-figure {
  margin: 0;
  padding: 8px;
  border: 1px solid var(--yx-border);
  background: var(--yx-bg-glass);
}

.page-news .news-partner-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-news .news-partner-copy {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.page-news .news-partner-copy h3 {
  margin: 0;
  font-family: var(--yx-font-head);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  line-height: 1.25;
}

.page-news .news-partner-copy p {
  margin: 0;
  color: var(--yx-muted);
  font-size: 15px;
  line-height: 1.8;
}

.page-news .news-partner-copy a {
  color: var(--yx-accent);
}

@media (min-width: 720px) {
  .page-news .news-filter-link {
    padding: 11px 18px;
    font-size: 14px;
  }

  .page-news .news-section {
    padding: 84px 0;
  }

  .page-news .news-timeline-item {
    flex-basis: 230px;
  }

  .page-news .news-update-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .page-news .news-update-list {
    gap: 18px;
  }
}

@media (min-width: 960px) {
  .page-news .news-hero {
    padding: 88px 0 64px;
  }

  .page-news .news-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 52px;
    align-items: start;
  }

  .page-news .news-timeline {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
    border-left: 1px solid var(--yx-border);
  }

  .page-news .news-timeline::before {
    left: -1px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--yx-accent), var(--yx-highlight));
  }

  .page-news .news-timeline-item {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    column-gap: 16px;
    flex: none;
    padding: 0 0 36px 24px;
    border: 0;
    background: transparent;
  }

  .page-news .news-timeline-item::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--yx-accent);
    box-shadow: 0 0 0 4px rgba(0, 255, 163, 0.12);
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-top: 5px;
  }

  .page-news .news-timeline-dot {
    display: none;
  }

  .page-news .news-timeline-term {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }

  .page-news .news-timeline-desc {
    grid-column: 2;
    grid-row: 2;
    margin-top: 6px;
  }

  .page-news .news-insights-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
  }

  .page-news .news-partner-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }
}
