.page-news {
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

.page-news__hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 60px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 107, 26, 0.3), transparent 26%),
    linear-gradient(130deg, var(--deep-blue) 0%, var(--steel) 100%);
  color: var(--white);
}

.page-news__hero::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -64px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

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

.page-news__breadcrumb {
  margin-bottom: 28px;
}

.page-news__breadcrumb .breadcrumb__link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s var(--ease);
}

.page-news__breadcrumb .breadcrumb__link:hover {
  color: var(--orange);
}

.page-news__breadcrumb-current {
  color: var(--white);
  font-size: 13px;
}

.page-news__hero-kicker {
  color: var(--orange);
}

.page-news__hero-title {
  max-width: 10em;
  margin: 12px 0 18px;
}

.page-news__hero-desc {
  max-width: 34em;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
}

.page-news__hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news__hero-stat {
  min-width: 118px;
  padding: 14px 16px;
  background: rgba(18, 58, 95, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.page-news__hero-num {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  color: var(--orange);
}

.page-news__hero-label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
}

.page-news__section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(11, 29, 58, 0.14);
}

.page-news__section-head-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(43, 32, 26, 0.7);
}

.page-news__section-head--dark {
  border-color: rgba(255, 255, 255, 0.18);
}

.page-news__section-head--dark .page-news__section-head-note {
  color: rgba(255, 255, 255, 0.66);
}

.page-news__latest {
  padding: 48px 0 60px;
}

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

.page-news__filter {
  padding: 16px;
  background: var(--mist);
  border: 1px solid rgba(11, 29, 58, 0.08);
  border-radius: var(--radius);
}

.page-news__filter-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

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

.page-news__filter-tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid rgba(11, 29, 58, 0.16);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
}

.page-news__filter-tag--current {
  background: var(--crimson);
  border-color: var(--crimson);
  color: var(--white);
}

.page-news__filter-note {
  margin: 16px 0 0;
  padding: 14px 0 0;
  border-top: 1px dashed rgba(11, 29, 58, 0.28);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(43, 32, 26, 0.68);
}

.page-news__articles {
  display: flex;
  flex-direction: column;
}

.page-news__spotlight {
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.page-news__article {
  display: grid;
  gap: 10px;
  padding: 24px 16px;
  border-top: 1px dashed rgba(11, 29, 58, 0.28);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-news__article:first-of-type {
  border-top: 0;
  padding-top: 4px;
}

.page-news__article:hover {
  background: linear-gradient(90deg, rgba(255, 107, 26, 0.08), rgba(18, 58, 95, 0.04) 60%, transparent);
  border-top-color: var(--orange);
  transform: translateX(6px);
}

.page-news__article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-news__article-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(43, 32, 26, 0.6);
}

.page-news .tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
}

.page-news__article .tag {
  background: rgba(232, 80, 26, 0.1);
  border: 1px solid rgba(232, 80, 26, 0.24);
  color: var(--crimson);
}

.page-news__article-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
}

.page-news__article-excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(43, 32, 26, 0.78);
}

.page-news__article-link {
  justify-self: start;
  font-size: 14px;
  font-weight: 600;
  color: var(--crimson);
  text-underline-offset: 4px;
}

.page-news__article-link:hover {
  color: var(--orange);
}

.page-news__changelog {
  padding: 60px 0 68px;
  background: linear-gradient(135deg, var(--deep-blue), var(--steel));
  color: var(--white);
}

.page-news__changelog .section-title {
  color: var(--white);
}

.page-news__changelog-grid {
  display: grid;
  gap: 28px;
  margin-top: 32px;
}

.page-news__timeline {
  position: relative;
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
}

.page-news__timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 7px;
  width: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.page-news__timeline-item {
  position: relative;
  padding: 0 0 26px 32px;
}

.page-news__timeline-item:last-child {
  padding-bottom: 0;
}

.page-news__timeline-dot {
  position: absolute;
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  background: var(--deep-blue);
  border: 3px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.18);
}

.page-news__timeline-card {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px -12px rgba(0, 0, 0, 0.4);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.page-news__timeline-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-news__timeline-version {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.page-news__timeline-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.35;
}

.page-news__timeline-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.page-news__changelog-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-news__changelog-media .media-frame {
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.5);
}

.page-news__changelog-note {
  margin: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.page-news__changelog-link {
  color: var(--orange);
  text-underline-offset: 4px;
}

.page-news__datareports {
  padding: 60px 0 68px;
  background: var(--mist);
}

.page-news__report-grid {
  display: grid;
  gap: 22px;
  margin-top: 8px;
}

.page-news__report-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(11, 29, 58, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.page-news__report-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.page-news__report-title {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.35;
}

.page-news__report-desc {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(43, 32, 26, 0.78);
}

.page-news__report-facts {
  display: flex;
  gap: 22px;
  margin: 0 0 18px;
  padding: 16px 0;
  border-top: 1px dashed rgba(11, 29, 58, 0.18);
  border-bottom: 1px dashed rgba(11, 29, 58, 0.18);
  list-style: none;
}

.page-news__report-facts li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
  color: rgba(43, 32, 26, 0.66);
}

.page-news__report-fact-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 24px;
  color: var(--orange);
}

.page-news__report-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--crimson);
  text-underline-offset: 4px;
}

.page-news__report-link:hover {
  color: var(--orange);
}

.page-news__report-cover-frame {
  max-width: 420px;
  box-shadow: var(--shadow-sm);
}

.page-news__member {
  padding: 60px 0 76px;
}

.page-news__member-grid {
  display: grid;
  gap: 20px;
  align-items: start;
}

.page-news__member-media {
  margin: 0;
  background: var(--steel);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.page-news__member-panel {
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(11, 29, 58, 0.1);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.page-news__member-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.3;
}

.page-news__member-panel p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(43, 32, 26, 0.82);
}

.page-news__member-list {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding: 16px 0;
  border-top: 1px dashed rgba(11, 29, 58, 0.22);
  border-bottom: 1px dashed rgba(11, 29, 58, 0.22);
  list-style: none;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink);
}

.page-news__member-note {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(43, 32, 26, 0.62);
}

.page-news__member-button {
  align-self: flex-start;
}

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

.page-news__spotlight {
  aspect-ratio: 2 / 1;
}

.page-news__changelog-frame {
  aspect-ratio: 3 / 2;
}

.page-news__report-cover-frame {
  aspect-ratio: 5 / 7;
}

.page-news__member-media {
  aspect-ratio: 4 / 3;
}

@media (min-width: 760px) {
  .page-news__hero {
    padding: 64px 0 84px;
  }

  .page-news__latest {
    padding: 64px 0 76px;
  }

  .page-news__section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page-news__section-head-note {
    max-width: 460px;
    text-align: right;
  }

  .page-news__latest-layout {
    grid-template-columns: 200px minmax(0, 1fr);
    align-items: start;
  }

  .page-news__filter {
    position: sticky;
    top: 96px;
  }

  .page-news__article {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .page-news__article-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .page-news__changelog {
    padding: 72px 0 84px;
  }

  .page-news__changelog-grid {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }

  .page-news__datareports {
    padding: 72px 0 84px;
  }

  .page-news__report-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .page-news__report-cover {
    grid-column: span 2;
    max-width: 420px;
    margin-left: auto;
  }

  .page-news__member {
    padding: 72px 0 92px;
  }

  .page-news__member-grid {
    grid-template-columns: 300px minmax(0, 1fr);
  }
}

@media (min-width: 1120px) {
  .page-news__hero-title {
    font-size: clamp(48px, 6vw, 72px);
  }

  .page-news__hero-desc {
    font-size: 16px;
  }

  .page-news__report-grid {
    grid-template-columns: 1fr 1fr 300px;
  }

  .page-news__report-cover {
    grid-column: auto;
    grid-row: span 2;
    margin-left: 0;
  }

  .page-news__report-cover-frame {
    max-width: none;
  }

  .page-news__timeline-card {
    padding: 20px 22px;
  }
}
