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

.page-news .news-wrap {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 20px;
}

.page-news .news-ratio {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.page-news .news-ratio--16x9 {
  aspect-ratio: 16 / 9;
}

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

.page-news .news-ratio--4x3 {
  aspect-ratio: 4 / 3;
}

.page-news .news-ratio--8x5 {
  aspect-ratio: 8 / 5;
}

.page-news .news-ratio img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-news .news-tag {
  display: inline-block;
  width: max-content;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.page-news .news-tag--green {
  background: rgba(57, 255, 20, .14);
  color: var(--color-green);
}

.page-news .news-tag--purple {
  background: rgba(123, 75, 255, .22);
  color: #b79cff;
}

.page-news .news-tag--cyan {
  background: rgba(0, 229, 255, .14);
  color: var(--color-cyan);
}

.page-news .news-tag--orange {
  background: rgba(255, 107, 0, .16);
  color: var(--color-orange);
}

.page-news .news-version-id {
  font-family: var(--font-data);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-space);
  border: 1px solid rgba(11, 27, 61, .2);
  padding: 4px 10px;
  border-radius: 6px;
}

.page-news .news-crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(244, 247, 251, .72);
  margin-bottom: 32px;
}

.page-news .news-crumbs__link {
  color: var(--color-cyan);
  text-decoration: none;
  transition: color .2s ease;
}

.page-news .news-crumbs__link:hover {
  color: var(--color-white);
}

.page-news .news-crumbs__sep {
  opacity: .45;
}

.page-news .news-crumbs__current {
  color: rgba(244, 247, 251, .9);
}

.page-news .news-edition {
  position: relative;
  padding: 24px 0 64px;
  background:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
    var(--color-space);
  background-size: 48px 48px;
}

.page-news .news-edition::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 360px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 229, 255, .22), transparent 70%);
  pointer-events: none;
}

.page-news .news-edition::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 28px;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-cyan), transparent);
  transform: skewX(-20deg);
  box-shadow: -46px -14px 0 var(--color-cyan), -96px -30px 0 rgba(0, 229, 255, .45);
  opacity: .55;
  pointer-events: none;
}

.page-news .news-edition__top {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}

.page-news .news-edition__header {
  max-width: 780px;
  margin-bottom: 44px;
}

.page-news .news-edition__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-green);
}

.page-news .news-edition__kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--color-green);
}

.page-news .news-edition__title {
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-size: clamp(32px, 5.4vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-white);
}

.page-news .news-edition__desc {
  margin: 0;
  max-width: 660px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(244, 247, 251, .74);
}

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

.page-news .news-hero-feature {
  display: flex;
  flex-direction: column;
  background: var(--color-ice);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 0, 0, .32);
}

.page-news .news-hero-feature__media {
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}

.page-news .news-hero-feature__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.page-news .news-hero-feature__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-hero-feature__title {
  margin: 0;
  color: var(--color-space);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.18;
}

.page-news .news-hero-feature__text {
  margin: 0;
  color: #46536d;
  font-size: 15px;
  line-height: 1.75;
}

.page-news .news-hero-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 10px;
}

.page-news .news-rail {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
}

.page-news .news-rail__header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.page-news .news-rail__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-green);
  animation: pageNewsPulse 2s infinite;
}

@keyframes pageNewsPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 255, 20, .55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(57, 255, 20, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
  }
}

.page-news .news-rail__label {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-white);
}

.page-news .news-rail__clock {
  margin-left: auto;
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--color-cyan);
}

.page-news .news-rail__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .news-rail__item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .14);
}

.page-news .news-rail__item:last-child {
  border-bottom: none;
}

.page-news .news-rail__version {
  padding-top: 2px;
  font-family: var(--font-data);
  font-size: 14px;
  font-weight: 800;
  color: var(--color-green);
}

.page-news .news-rail__title {
  margin: 0;
  color: rgba(244, 247, 251, .84);
  font-size: 14px;
  line-height: 1.6;
}

.page-news .news-rail__note {
  margin: 0;
  font-size: 13px;
  color: rgba(244, 247, 251, .52);
}

.page-news .news-version {
  padding: 76px 0 84px;
  background: var(--color-ice);
}

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

.page-news .news-section-head__lead {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-news .news-section-head__eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.page-news .news-section-head__title {
  margin: 0;
  color: var(--color-space);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-news .news-section-head__desc {
  margin: 0;
  max-width: 520px;
  color: var(--color-gray);
  font-size: 15px;
  line-height: 1.7;
}

.page-news .news-section-head--on-dark .news-section-head__eyebrow {
  color: var(--color-orange);
}

.page-news .news-section-head--on-dark .news-section-head__title {
  color: var(--color-white);
}

.page-news .news-section-head--on-dark .news-section-head__desc {
  color: rgba(244, 247, 251, .68);
}

.page-news .news-version-grid {
  display: grid;
  gap: 20px;
}

.page-news .news-version-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  border-radius: 20px;
  border-left: 4px solid var(--color-cyan);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}

.page-news .news-version-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-purple));
  transform: skewX(-30deg);
  transform-origin: right bottom;
  opacity: .8;
}

.page-news .news-version-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.page-news .news-version-card--wide {
  border-left-color: var(--color-orange);
}

.page-news .news-version-card--wide::after {
  background: linear-gradient(90deg, var(--color-orange), var(--color-purple));
}

.page-news .news-version-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-news .news-version-card__code {
  font-family: var(--font-data);
  font-size: 17px;
  font-weight: 800;
  color: var(--color-space);
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(0, 229, 255, .14);
}

.page-news .news-version-card--wide .news-version-card__code {
  font-size: 22px;
  background: rgba(255, 107, 0, .16);
  color: var(--color-orange);
}

.page-news .news-version-card__time {
  font-size: 13px;
  color: var(--color-gray);
}

.page-news .news-version-card__title {
  margin: 0;
  color: var(--color-space);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.page-news .news-version-card--wide .news-version-card__title {
  font-size: 24px;
}

.page-news .news-version-card__text {
  margin: 0;
  color: #46536d;
  font-size: 15px;
  line-height: 1.7;
}

.page-news .news-version-card__foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #e6eaef;
  color: var(--color-gray);
  font-family: var(--font-data);
  font-size: 13px;
}

.page-news .news-season {
  position: relative;
  overflow: hidden;
  padding: 84px 0 96px;
  background: var(--color-space);
}

.page-news .news-season::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 72%, rgba(0, 229, 255, .16) 72.2% 78%, transparent 78.2%),
    linear-gradient(115deg, transparent 84%, rgba(255, 107, 0, .12) 84.2% 88%, transparent 88.2%);
}

.page-news .news-season::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 75, 255, .35), transparent 70%);
  pointer-events: none;
}

.page-news .news-season .news-wrap {
  position: relative;
  z-index: 1;
}

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

.page-news .news-season-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--color-line);
  background: var(--color-navy);
  transition: transform .25s ease, box-shadow .25s ease;
}

.page-news .news-season-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .32);
}

.page-news .news-season-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px;
}

.page-news .news-season-card__title {
  margin: 0;
  color: var(--color-white);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
}

.page-news .news-season-card__text {
  margin: 0;
  color: rgba(244, 247, 251, .7);
  font-size: 14px;
  line-height: 1.7;
}

.page-news .news-live {
  padding: 76px 0 84px;
  background: var(--color-ice);
}

.page-news .news-live-grid {
  display: grid;
  gap: 20px;
}

.page-news .news-live-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  border-top: 3px solid var(--color-cyan);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}

.page-news .news-live-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.page-news .news-live-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}

.page-news .news-live-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--color-red);
}

.page-news .news-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-red);
}

.page-news .news-live-card__title {
  margin: 0;
  color: var(--color-space);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.page-news .news-live-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.page-news .news-live-card__list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #e6eaef;
  font-size: 14px;
  color: var(--color-gray);
}

.page-news .news-live-card__list li strong {
  color: var(--color-text);
  font-weight: 700;
}

.page-news .news-live-card__text {
  margin: 0;
  color: #46536d;
  font-size: 14px;
  line-height: 1.7;
}

.page-news .news-guide {
  padding: 76px 0 88px;
  background: linear-gradient(180deg, var(--color-ice) 0%, #e7ebf1 100%);
}

.page-news .news-guide-panel {
  display: grid;
  overflow: hidden;
  border-radius: 28px;
  background: var(--color-space);
  box-shadow: var(--shadow-lift);
}

.page-news .news-guide-panel__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  color: var(--color-white);
}

.page-news .news-guide-panel__eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-green);
}

.page-news .news-guide-panel__title {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900;
  line-height: 1.15;
}

.page-news .news-guide-panel__desc {
  margin: 0;
  color: rgba(244, 247, 251, .68);
  font-size: 15px;
  line-height: 1.7;
}

.page-news .news-guide-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 8px 0 4px;
  padding: 0;
  list-style: none;
}

.page-news .news-guide-list__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.page-news .news-guide-list__num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 0, .34);
  background: rgba(255, 107, 0, .16);
  color: var(--color-orange);
  font-family: var(--font-data);
  font-size: 16px;
  font-weight: 800;
}

.page-news .news-guide-list__body h3 {
  margin: 0 0 6px;
  color: var(--color-white);
  font-size: 17px;
  font-weight: 800;
}

.page-news .news-guide-list__body p {
  margin: 0;
  color: rgba(244, 247, 251, .68);
  font-size: 14px;
  line-height: 1.7;
}

.page-news .news-guide-panel__action {
  align-self: flex-start;
  margin-top: 6px;
}

.page-news .news-subscribe {
  padding: 0 0 88px;
  background: var(--color-ice);
}

.page-news .news-subscribe-panel {
  position: relative;
  overflow: hidden;
  padding: 40px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--color-space) 0%, var(--color-navy) 100%);
  color: var(--color-white);
}

.page-news .news-subscribe-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, .3), transparent 70%);
}

.page-news .news-subscribe-panel > * {
  position: relative;
  z-index: 1;
}

.page-news .news-subscribe-panel__eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-cyan);
}

.page-news .news-subscribe-panel__title {
  margin: 0 0 16px;
  max-width: 720px;
  color: var(--color-white);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.15;
}

.page-news .news-subscribe-panel__text {
  margin: 0 0 28px;
  max-width: 720px;
  color: rgba(244, 247, 251, .72);
  font-size: 15px;
  line-height: 1.75;
}

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

@media (min-width: 680px) {
  .page-news .news-edition__hero {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .page-news .news-hero-feature__body {
    padding: 28px;
  }

  .page-news .news-season-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-news .news-season-card--feature {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
  }

  .page-news .news-season-card--feature .news-season-card__media {
    height: 100%;
  }

  .page-news .news-live-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-news .news-guide-panel {
    grid-template-columns: 1fr 1.1fr;
  }

  .page-news .news-guide-panel__media {
    height: 100%;
  }

  .page-news .news-subscribe-panel {
    padding: 48px 40px;
  }
}

@media (min-width: 980px) {
  .page-news .news-edition {
    padding-bottom: 72px;
  }

  .page-news .news-edition__top {
    padding-top: 28px;
  }

  .page-news .news-edition__header {
    margin-bottom: 56px;
  }

  .page-news .news-section-head--split {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
  }

  .page-news .news-section-head--split .news-section-head__desc {
    flex: 0 1 38%;
    text-align: right;
  }

  .page-news .news-version-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .page-news .news-version-card--wide {
    grid-column: 1 / -1;
  }

  .page-news .news-season {
    padding: 96px 0 108px;
  }

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

  .page-news .news-season-card__body {
    padding: 32px;
  }

  .page-news .news-live {
    padding: 88px 0 96px;
  }

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

  .page-news .news-live-card__content {
    padding: 28px;
  }

  .page-news .news-guide {
    padding: 88px 0 100px;
  }

  .page-news .news-guide-panel__content {
    padding: 40px 36px;
    gap: 18px;
  }

  .page-news .news-subscribe-panel {
    padding: 56px 48px;
  }
}
