.page-news {
  --news-side: 180px;
  background: var(--c-light);
  overflow-x: hidden;
}

.page-news__crumb {
  padding-top: 24px;
}

.page-news__crumb .crumb {
  margin: 0;
  justify-content: flex-start;
}

.page-news__header {
  margin-top: 26px;
  padding: 36px 0 46px;
}

.page-news__header-copy .tag {
  margin-bottom: 18px;
}

.page-news__header h1 {
  margin: 0;
  max-width: 720px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--c-navy);
}

.page-news__header-note {
  margin-top: 32px;
}

.page-news__header-note .lead {
  margin: 0;
  color: var(--c-slate);
  font-size: 16px;
  line-height: 1.8;
}

.page-news__header-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
  padding: 18px 16px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(13, 59, 102, 0.06);
}

.page-news__header-stats dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--c-slate);
  text-transform: uppercase;
}

.page-news__header-stats dd {
  margin: 6px 0 0;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-coral);
}

.page-news__filters {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 60px;
  padding: 16px 18px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: 0 6px 16px rgba(13, 59, 102, 0.08);
}

.page-news__filters-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-slate);
}

.page-news__filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news__filters-list .tag {
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.page-news__filters-list .tag:hover {
  border-color: var(--c-coral);
  color: var(--c-coral);
}

.page-news__updates {
  padding: 64px 0 72px;
  background: var(--c-white);
}

.page-news__section-head {
  max-width: 760px;
}

.page-news__section-desc {
  margin: 18px 0 0;
  color: var(--c-slate);
  line-height: 1.75;
}

.page-news__route-svg {
  display: block;
  width: 100%;
  height: 64px;
  margin: 28px 0 10px;
  overflow: visible;
}

.page-news__route-path {
  fill: none;
  stroke: var(--c-line);
  stroke-width: 2;
  stroke-dasharray: 8 6;
}

.page-news__route-dot {
  fill: var(--c-coral);
}

.page-news__timeline {
  position: relative;
  margin-top: 44px;
}

.page-news__item {
  position: relative;
  padding-left: 46px;
  margin-bottom: 36px;
}

.page-news__item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 28px;
  bottom: -36px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--c-coral), var(--c-line) 70%);
}

.page-news__item:last-child::before {
  display: none;
}

.page-news__node {
  position: absolute;
  left: 2px;
  top: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-coral);
  border: 4px solid var(--c-white);
  box-shadow: 0 0 0 2px rgba(255, 107, 74, 0.28);
}

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

.page-news__item-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.page-news__round {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-coral);
}

.page-news__type {
  padding: 4px 10px;
  background: var(--c-light);
  color: var(--c-slate);
  font-size: 13px;
  border-radius: 999px;
}

.page-news__item-card {
  padding: 22px;
  background: var(--c-light);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(13, 59, 102, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-news__item-card:hover {
  border-color: var(--c-coral);
  box-shadow: 0 10px 24px rgba(13, 59, 102, 0.09);
  transform: translateY(-3px);
}

.page-news__item-card--media {
  display: grid;
  gap: 18px;
}

.page-news__item-body h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.4;
  color: var(--c-navy);
}

.page-news__item-body p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-slate);
}

.page-news__item-body a.btn {
  margin-top: 2px;
}

.page-news__item-media {
  margin: 0;
}

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

.page-news__details {
  margin-top: 4px;
  border-top: 1px dashed var(--c-line);
  padding-top: 14px;
}

.page-news__details summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--c-coral);
}

.page-news__details p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-slate);
}

.page-news__features {
  padding: 64px 0 72px;
  background: var(--c-deep);
  color: var(--c-white);
}

.page-news__features-desc {
  margin: 18px 0 0;
  line-height: 1.75;
  color: rgba(230, 240, 250, 0.75);
}

.page-news__features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.page-news__feature {
  display: flex;
  flex-direction: column;
  background: rgba(230, 240, 250, 0.05);
  border: 1px solid rgba(230, 240, 250, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.page-news__feature:hover {
  border-color: var(--c-coral);
  transform: translateY(-3px);
}

.page-news__feature-media {
  margin: 0;
}

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

.page-news__feature-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

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

.page-news__feature-tags .tag {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
}

.page-news__feature h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.35;
  color: var(--c-white);
}

.page-news__feature p {
  flex: 1;
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(230, 240, 250, 0.8);
}

.page-news__feature-link {
  margin-top: auto;
  font-weight: 600;
  color: var(--c-coral);
  text-decoration: none;
}

.page-news__feature-link:hover {
  text-decoration: underline;
}

.page-news__cta {
  padding: 56px 0 64px;
  background: var(--c-white);
  text-align: center;
}

.page-news__cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 28px;
  background: var(--c-light);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
}

.page-news__cta h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--c-navy);
}

.page-news__cta p {
  margin: 0 0 22px;
  color: var(--c-slate);
  line-height: 1.7;
}

@media (min-width: 900px) {
  .page-news__header {
    margin-top: 24px;
    padding: 56px 0 64px;
  }

  .page-news__header-note {
    margin-top: 0;
  }

  .page-news__filters {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .page-news__updates {
    padding-top: 80px;
  }

  .page-news__item {
    display: grid;
    grid-template-columns: var(--news-side) 1fr;
    column-gap: 40px;
    padding-left: 0;
  }

  .page-news__item::before {
    left: calc(var(--news-side) - 1px);
    top: 44px;
    bottom: -32px;
  }

  .page-news__node {
    left: calc(var(--news-side) - 9px);
    top: 24px;
  }

  .page-news__item-meta {
    flex-direction: column;
    align-items: flex-end;
    padding-top: 10px;
    margin-bottom: 0;
    text-align: right;
  }

  .page-news__item-date {
    justify-content: flex-end;
  }

  .page-news__item-card--media {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .page-news__features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-news__feature--wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .page-news__feature--wide .page-news__feature-media img {
    height: 100%;
    min-height: 280px;
    object-fit: cover;
  }

  .page-news__feature--wide .page-news__feature-body {
    padding: 32px;
  }

  .page-news__feature--wide h3 {
    font-size: 24px;
  }
}
