.page-news {
  --news-gold-soft: rgba(255, 215, 0, 0.08);
  --news-red-soft: rgba(255, 42, 77, 0.12);
  --news-purple-deep: rgba(45, 13, 58, 0.85);
}

.page-news .news-hero {
  position: relative;
  padding: 36px 0 52px;
  overflow: hidden;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(155, 77, 255, 0.28), transparent 70%);
  pointer-events: none;
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.page-news .news-hero__glow {
  position: absolute;
  top: -40px;
  right: -60px;
  opacity: 0.6;
  pointer-events: none;
}

.page-news .news-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-gold);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-news .news-hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent-gold);
}

.page-news .news-hero__title {
  margin: 14px 0 16px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--text-white);
}

.page-news .news-hero__lead {
  max-width: 62ch;
  margin: 0 0 20px;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.75;
}

.page-news .news-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.page-news .news-hero__stat {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  background: var(--news-gold-soft);
  color: var(--text-body);
  font-size: 13px;
}

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

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

.page-news .news-hero__img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(155, 77, 255, 0.22);
}

.page-news .news-featured {
  background: linear-gradient(135deg, var(--bg-purple), var(--bg-dark) 65%);
}

.page-news .news-featured__card {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.page-news .news-featured__media {
  position: relative;
  overflow: hidden;
}

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

.page-news .news-featured__body {
  padding: 24px;
  background: linear-gradient(145deg, var(--news-purple-deep), rgba(10, 10, 15, 0.85));
}

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

.page-news .news-featured__body h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  color: var(--text-white);
}

.page-news .news-featured__body p {
  margin-bottom: 18px;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
}

.page-news .news-timeline {
  background: linear-gradient(180deg, var(--bg-dark), rgba(31, 10, 46, 0.45), var(--bg-dark));
}

.page-news .news-timeline__layout {
  display: grid;
  gap: 32px;
}

.page-news .news-timeline__side-card {
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid var(--line-divider);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--bg-purple-deep), var(--bg-dark));
}

.page-news .news-timeline__side-kicker {
  margin-bottom: 8px;
  color: var(--accent-gold);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.page-news .news-timeline__side-big {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--text-white);
}

.page-news .news-timeline__sidebar p {
  margin-bottom: 14px;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
}

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

.page-news .news-timeline__list::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-purple), var(--accent-red));
}

.page-news .news-timeline__item {
  position: relative;
  padding-bottom: 26px;
  padding-left: 28px;
}

.page-news .news-timeline__item:last-child {
  padding-bottom: 0;
}

.page-news .news-timeline__marker {
  position: absolute;
  left: 1px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.14), 0 0 12px rgba(255, 215, 0, 0.35);
}

.page-news .news-timeline__card {
  padding: 22px;
}

.page-news .news-timeline__card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.page-news .news-timeline__period {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent-purple);
}

.page-news .news-timeline__card h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.3;
  color: var(--text-white);
}

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

.page-news .news-collection__lead {
  max-width: 60ch;
  margin-bottom: 22px;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
}

.page-news .news-collection__scroller {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 22px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.page-news .news-collection__scroller::-webkit-scrollbar {
  height: 6px;
}

.page-news .news-collection__scroller::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--accent-purple);
}

.page-news .news-collection__card {
  display: flex;
  flex: 0 0 86%;
  max-width: 320px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 42, 77, 0.35);
  scroll-snap-align: start;
}

.page-news .news-collection__cover {
  overflow: hidden;
}

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

.page-news .news-collection__cover--red,
.page-news .news-collection__cover--purple,
.page-news .news-collection__cover--gold {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-white);
  background: var(--news-red-soft);
}

.page-news .news-collection__cover--purple {
  background: rgba(155, 77, 255, 0.18);
}

.page-news .news-collection__cover--gold {
  background: var(--news-gold-soft);
}

.page-news .news-collection__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.page-news .news-collection__body h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.3;
  color: var(--text-white);
}

.page-news .news-collection__body p {
  margin-bottom: 16px;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
}

.page-news .news-collection__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

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

.page-news .news-feedback__content p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
}

.page-news .news-feedback__steps {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.page-news .news-feedback__steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-divider);
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.6;
}

.page-news .news-feedback__step-num {
  display: inline-flex;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-red);
  color: var(--text-white);
  font-size: 14px;
  font-weight: 700;
}

.page-news .news-feedback__contact {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-md);
  background: var(--news-gold-soft);
}

.page-news .news-feedback__contact p {
  margin-bottom: 6px;
  color: var(--text-white);
  font-size: 14px;
  line-height: 1.6;
}

.page-news .news-feedback__note {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.7;
}

.page-news .news-feedback__img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line-divider);
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .page-news .news-hero {
    padding: 56px 0 76px;
  }

  .page-news .news-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
  }

  .page-news .news-hero__title {
    font-size: clamp(44px, 6vw, 66px);
  }

  .page-news .news-hero__lead {
    font-size: 16px;
  }

  .page-news .news-hero__visual {
    justify-self: end;
    max-width: 480px;
  }

  .page-news .news-hero__img {
    transform: rotate(1.5deg) scale(1.02);
  }

  .page-news .news-featured__card {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }

  .page-news .news-featured__body {
    padding: 36px;
  }

  .page-news .news-featured__body h3 {
    font-size: 26px;
  }

  .page-news .news-timeline__layout {
    grid-template-columns: 260px 1fr;
    gap: 48px;
  }

  .page-news .news-timeline__card {
    padding: 26px;
  }

  .page-news .news-collection__card {
    flex-basis: 300px;
  }

  .page-news .news-collection__lead {
    font-size: 15px;
  }

  .page-news .news-feedback__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 48px;
  }

  .page-news .news-feedback__content p {
    font-size: 15px;
  }

  .page-news .news-feedback__steps li {
    font-size: 15px;
  }
}
