.page-news {
  --page-card: rgba(26, 29, 36, .72);
  --page-radius: 18px;
  background: var(--c-bg);
  color: var(--c-white);
  overflow-x: hidden;
}

.page-news .news-hero {
  padding: 96px 0 48px;
  background:
    linear-gradient(180deg, rgba(13, 15, 20, .18), var(--c-bg) 76%),
    radial-gradient(circle at 88% 18%, rgba(0, 229, 255, .16), transparent 34%),
    repeating-linear-gradient(-45deg, transparent 0 22px, rgba(198, 255, 0, .035) 22px 23px);
}

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

.page-news .news-hero__text h1 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(34px, 8vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 8px 0 18px;
  max-width: 900px;
}

.page-news .news-hero__text .lead {
  color: var(--c-gray);
  max-width: 560px;
  margin: 0;
}

.page-news .news-hero__side {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-news .news-hero__side .notation {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(198, 255, 0, .4);
  color: var(--c-lime);
  font-size: 13px;
  letter-spacing: .12em;
  padding: 6px 10px;
  text-transform: uppercase;
}

.page-news .news-hero__side .notation::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-lime);
  box-shadow: 0 0 12px rgba(198, 255, 0, .7);
}

.page-news .breadcrumbs {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-gray);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.page-news .breadcrumbs a {
  color: var(--c-gray);
  text-decoration-color: rgba(198, 255, 0, .5);
  text-underline-offset: 4px;
}

.page-news .breadcrumbs a:hover {
  color: var(--c-lime);
}

.page-news .section-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
}

.page-news .section-head h2 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing: -0.01em;
  margin: 0;
}

.page-news .kicker {
  color: var(--c-cyan);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0;
}

.page-news .notation {
  font-family: var(--font-body);
}

.page-news .news-latest {
  padding: 56px 0 64px;
}

.page-news .news-latest__layout {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0 16px;
  align-items: start;
}

.page-news .news-timeline {
  position: relative;
  grid-column: 1;
  height: 100%;
}

.page-news .news-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: repeating-linear-gradient(to bottom, var(--c-lime) 0 6px, transparent 6px 12px);
  opacity: .55;
}

.page-news .news-timeline__label {
  display: none;
}

.page-news .news-latest__list {
  grid-column: 2;
  display: grid;
  gap: 20px;
}

.page-news .news-item {
  position: relative;
  background: var(--page-card);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--page-radius);
  padding: 20px 18px;
  transition: border-color .25s ease;
}

.page-news .news-item:hover {
  border-color: rgba(198, 255, 0, .5);
}

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

.page-news .news-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, .15);
}

.page-news .news-item__tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(198, 255, 0, .12);
  color: var(--c-lime);
}

.page-news .news-item__time {
  color: var(--c-gray);
  font-size: 12px;
}

.page-news .news-item h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 10px;
}

.page-news .news-item p {
  color: var(--c-gray);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 14px;
}

.page-news .news-item__toggle {
  font-family: var(--font-body);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(198, 255, 0, .45);
  color: var(--c-lime);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.page-news .news-item__toggle:hover {
  background: rgba(198, 255, 0, .1);
}

.page-news .news-item__extend {
  margin-top: 14px;
  border-left: 3px solid var(--c-lime);
  padding-left: 14px;
}

.page-news .news-item__extend p {
  margin: 0;
  color: var(--c-gray);
}

.page-news .news-item__more {
  display: inline-flex;
  color: var(--c-cyan);
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, .35);
  padding-bottom: 2px;
}

.page-news .news-item__more:hover {
  color: var(--c-lime);
  border-color: var(--c-lime);
}

.page-news .news-expert {
  padding: 56px 0 64px;
  background: linear-gradient(180deg, var(--c-bg), rgba(0, 75, 75, .22) 46%, var(--c-bg));
}

.page-news .news-expert__grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.page-news .news-expert__media {
  border-radius: var(--page-radius);
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, .35);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .42);
}

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

.page-news .news-expert__article {
  padding: 24px 20px;
  border-left: 4px solid var(--c-yellow);
  background: var(--page-card);
  border-radius: 0 var(--page-radius) var(--page-radius) 0;
}

.page-news .news-expert__overline {
  color: var(--c-yellow);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.page-news .news-expert__article h3 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3.6vw, 30px);
  line-height: 1.2;
  margin: 0 0 14px;
}

.page-news .news-expert__article > p {
  color: var(--c-gray);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 18px;
}

.page-news .news-expert__points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.page-news .news-expert__points li {
  position: relative;
  padding-left: 22px;
  color: var(--c-gray);
  font-size: 14px;
  line-height: 1.6;
}

.page-news .news-expert__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--c-yellow);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, .14);
}

.page-news .news-versions {
  padding: 56px 0 64px;
  background:
    linear-gradient(180deg, rgba(13, 15, 20, .4), rgba(13, 15, 20, .92)),
    repeating-linear-gradient(90deg, transparent 0 40px, rgba(0, 229, 255, .05) 40px 41px);
}

.page-news .news-versions__grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

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

.page-news .news-version {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
}

.page-news .news-version__badge {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  border-radius: 14px;
  border: 2px solid var(--c-lime);
  color: var(--c-lime);
  background: rgba(198, 255, 0, .08);
}

.page-news .news-version + .news-version {
  position: relative;
  margin-top: 24px;
}

.page-news .news-version + .news-version::before {
  content: "";
  position: absolute;
  left: 31px;
  top: -28px;
  width: 2px;
  height: 28px;
  background: repeating-linear-gradient(to bottom, var(--c-lime) 0 4px, transparent 4px 8px);
  opacity: .5;
}

.page-news .news-version__content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin: 0 0 8px;
}

.page-news .news-version__content p {
  color: var(--c-gray);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.page-news .news-versions__note {
  margin-top: 28px;
  color: var(--c-gray);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 18px;
}

.page-news .news-versions__media {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.page-news .news-versions__phone {
  width: 180px;
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  border: 2px solid rgba(0, 229, 255, .4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
}

.page-news .news-topics {
  padding: 56px 0 72px;
}

.page-news .news-topics__banner {
  border-radius: var(--page-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 28px;
}

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

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

.page-news .news-topic {
  background: var(--page-card);
  border-top: 3px solid var(--c-cyan);
  padding: 20px 18px;
  border-radius: 0 0 14px 14px;
}

.page-news .news-topic__league {
  display: inline-block;
  font-size: 12px;
  color: var(--c-cyan);
  letter-spacing: .16em;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 229, 255, .35);
  padding: 3px 8px;
  border-radius: 999px;
}

.page-news .news-topic h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 10px;
}

.page-news .news-topic p {
  color: var(--c-gray);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.page-news .news-topics__analysis {
  display: grid;
  gap: 20px;
  margin-top: 28px;
  padding: 24px 20px;
  background: linear-gradient(135deg, rgba(0, 229, 255, .1), rgba(13, 15, 20, .7));
  border-radius: var(--page-radius);
}

.page-news .news-topics__analysis-text h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.3;
  margin: 6px 0 12px;
}

.page-news .news-topics__analysis-text p {
  color: var(--c-gray);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 16px;
}

.page-news .news-topics__chart {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(198, 255, 0, .25);
}

.page-news .button {
  text-decoration: none;
}

.page-news [data-revealed="true"] {
  animation: pageNewsReveal .6s ease both;
}

@keyframes pageNewsReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .page-news .news-hero__grid {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 32px;
  }

  .page-news .news-hero__side {
    flex-direction: column;
    gap: 12px;
  }

  .page-news .news-timeline__label {
    display: block;
    color: var(--c-lime);
    font-size: 13px;
    letter-spacing: .18em;
    writing-mode: vertical-rl;
    margin: 12px 0 0 8px;
    white-space: nowrap;
  }

  .page-news .news-expert__article {
    padding: 32px 28px;
  }

  .page-news .news-versions__grid {
    grid-template-columns: 1fr 220px;
  }

  .page-news .news-topics__analysis {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 28px 24px;
  }
}

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

  .page-news .news-latest__layout {
    grid-template-columns: 140px 1fr;
    gap: 0 28px;
  }

  .page-news .news-timeline__label {
    writing-mode: horizontal-tb;
    margin: 12px 0 0 16px;
  }

  .page-news .news-expert,
  .page-news .news-versions {
    padding: 72px 0 88px;
  }

  .page-news .news-expert__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
  }

  .page-news .news-topics {
    padding: 72px 0 96px;
  }

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