.page-news {
  --news-gap: 20px;
  background: var(--color-black);
  color: var(--color-white);
  overflow-x: hidden;
}

.page-news .news-hero {
  position: relative;
  padding: 28px 0 36px;
  background:
    radial-gradient(circle at 82% 8%, rgba(229, 57, 53, 0.22), transparent 40%),
    linear-gradient(158deg, var(--color-blue) 0%, var(--color-black) 68%);
  border-bottom: 3px solid var(--color-red);
  overflow: hidden;
}

.page-news .news-hero::after {
  content: '';
  position: absolute;
  right: -70px;
  top: -50px;
  width: 240px;
  height: 280px;
  background: var(--color-red);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.35;
  z-index: 0;
}

.page-news .news-hero .container {
  position: relative;
  z-index: 1;
}

.page-news .breadcrumb {
  margin-bottom: 28px;
  font-size: 13px;
}

.page-news .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition);
}

.page-news .breadcrumb a:hover {
  color: var(--color-yellow);
}

.page-news .breadcrumb__sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.35);
}

.page-news .breadcrumb__current {
  color: var(--color-yellow);
  font-weight: 600;
}

.page-news .news-hero__grid {
  display: grid;
  gap: 26px;
  align-items: end;
}

.page-news .news-hero__copy .section__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-yellow);
}

.page-news .news-hero__copy h1 {
  margin: 6px 0 12px;
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.page-news .news-hero__copy p {
  max-width: 46ch;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.76);
}

.page-news .news-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
}

.page-news .news-stat {
  margin: 0;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

.page-news .news-stat dt {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
}

.page-news .news-stat dd {
  margin: 6px 0 0;
  font-family: var(--font-data);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}

.page-news .news-filter {
  margin-top: 28px;
  padding: 18px;
  background: rgba(18, 18, 18, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

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

.page-news .news-filter__row + .news-filter__row {
  margin-top: 16px;
}

.page-news .news-filter__label {
  flex-shrink: 0;
  width: 42px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-yellow);
}

.page-news .news-filter__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .news-chip {
  padding: 7px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.page-news .news-chip:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-news .news-chip.is-active {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
}

.page-news .news-section {
  position: relative;
  padding: 52px 0;
}

.page-news .section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.page-news .section__head .section__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
}

.page-news .section__head h2 {
  margin: 4px 0 0;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.15;
}

.page-news .section__head--skew {
  position: relative;
}

.page-news .section__head--skew::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 56px;
  height: 4px;
  background: var(--color-red);
  transform: skewX(-24deg);
}

.page-news .btn--sm {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 8px;
}

.page-news .news-reports {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--color-black);
  background-size: 32px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-news .reports-scroll {
  margin: 0 calc(-1 * var(--news-gap));
  padding: 0 var(--news-gap) 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.page-news .reports-track {
  display: flex;
  gap: 16px;
  width: max-content;
  min-width: 100%;
  padding-bottom: 4px;
}

.page-news .report-card {
  scroll-snap-align: start;
  width: 272px;
  flex-shrink: 0;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.page-news .report-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: var(--color-red);
}

.page-news .report-card--green::before {
  background: var(--color-green);
}

.page-news .report-card--blue::before {
  background: var(--color-blue);
}

.page-news .report-card--yellow::before {
  background: var(--color-yellow);
}

.page-news .report-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.page-news .report-card__time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.page-news .report-card__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 12px;
}

.page-news .report-card__team {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.page-news .report-card__name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-news .report-card__score {
  font-family: var(--font-data);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-yellow);
}

.page-news .report-card__vs {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}

.page-news .report-card__brief {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.page-news .report-card__stats {
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  padding-top: 12px;
}

.page-news .report-card__stat + .report-card__stat {
  margin-top: 10px;
}

.page-news .report-card__stat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
}

.page-news .report-card__bar {
  height: 4px;
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.page-news .report-card__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--color-green);
}

.page-news .report-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 16px;
}

.page-news .report-card__tag {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
}

.page-news .reports-visual {
  max-width: 560px;
  margin: 26px auto 0;
}

.page-news .reports-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-news .reports-visual figcaption {
  margin-top: 8px;
  font-family: var(--font-data);
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.56);
  text-align: center;
}

.page-news .news-transfers {
  background: var(--color-black);
}

.page-news .news-transfers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--color-red), var(--color-green));
}

.page-news .transfers-visual {
  margin: 0 0 32px;
}

.page-news .transfers-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-news .transfers-visual figcaption {
  margin-top: 8px;
  font-family: var(--font-data);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.page-news .timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--color-red), var(--color-green));
}

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

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

.page-news .timeline__marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-yellow);
  background: var(--color-blue);
  border: 2px solid var(--color-yellow);
  border-radius: 50%;
  z-index: 1;
}

.page-news .timeline__content {
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

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

.page-news .timeline__head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.page-news .timeline__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.76);
}

.page-news .timeline__details {
  margin-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  padding-top: 12px;
}

.page-news .timeline__details summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-yellow);
}

.page-news .timeline__details summary::-webkit-details-marker {
  display: none;
}

.page-news .timeline__details ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.page-news .timeline__details li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.page-news .timeline__details li + li {
  margin-top: 8px;
}

.page-news .timeline__details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
}

.page-news .news-changelog {
  background:
    linear-gradient(180deg, var(--color-black) 0%, rgba(26, 35, 126, 0.42) 260px, var(--color-black) 720px);
}

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

.page-news .changelog-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--color-red);
  border-radius: var(--radius);
}

.page-news .changelog-item__version {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.page-news .changelog-item__version .data-text {
  font-family: var(--font-data);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-yellow);
}

.page-news .changelog-item__body h3 {
  margin: 4px 0 8px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.page-news .changelog-item__body p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.page-news .changelog-item__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .changelog-item__body li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.page-news .changelog-item__body li + li {
  margin-top: 6px;
}

.page-news .changelog-item__body li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  width: 6px;
  height: 2px;
  background: var(--color-green);
}

.page-news .changelog-visual {
  max-width: 300px;
  margin: 28px auto 0;
}

.page-news .changelog-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-news .changelog-visual figcaption {
  margin-top: 8px;
  font-family: var(--font-data);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.page-news .changelog-note {
  margin: 28px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.page-news .changelog-note a {
  color: var(--color-green);
  font-weight: 700;
  text-decoration: none;
}

.page-news .changelog-note a:hover {
  text-decoration: underline;
}

.page-news .news-features {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--color-black);
  background-size: 32px 32px;
}

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

.page-news .feature-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.page-news .feature-card__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.page-news .feature-card__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  transition: transform 300ms ease;
}

.page-news .feature-card:hover .feature-card__media img {
  transform: scale(1.02);
}

.page-news .feature-card__visual {
  aspect-ratio: 500 / 250;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.page-news .feature-card__visual--green {
  background: linear-gradient(135deg, var(--color-green), rgba(26, 35, 126, 0.85));
}

.page-news .feature-card__visual--blue {
  background: linear-gradient(135deg, var(--color-blue), rgba(18, 18, 18, 0.88));
}

.page-news .feature-card__visual-text {
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.page-news .feature-card__body {
  padding: 0;
}

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

.page-news .feature-card__length {
  font-family: var(--font-data);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.page-news .feature-card__body h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.page-news .feature-card__body > p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.page-news .feature-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  padding-top: 12px;
}

.page-news .feature-card__x {
  font-family: var(--font-data);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.page-news .feature-card__foot a {
  color: var(--color-green);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.page-news .feature-card__foot a:hover {
  text-decoration: underline;
}

.page-news .news-explore {
  padding: 56px 0;
  background: var(--color-blue);
  border-top: 4px solid var(--color-red);
}

.page-news .explore-grid {
  display: grid;
  gap: 12px;
}

.page-news .explore-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--color-white);
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.page-news .explore-card:hover {
  transform: translateX(6px);
  border-color: var(--color-yellow);
}

.page-news .explore-card--red {
  background: rgba(229, 57, 53, 0.24);
}

.page-news .explore-card--blue {
  background: rgba(26, 35, 126, 0.42);
}

.page-news .explore-card--green {
  background: rgba(67, 160, 71, 0.2);
}

.page-news .explore-card--yellow {
  background: rgba(255, 235, 59, 0.12);
}

.page-news .explore-card--dark {
  background: rgba(18, 18, 18, 0.44);
}

.page-news .explore-card__num {
  grid-row: 1 / -1;
  font-family: var(--font-data);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-yellow);
}

.page-news .explore-card__title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.page-news .explore-card__desc {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.64);
}

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

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

  .page-news .news-hero__copy h1 {
    font-size: 48px;
  }

  .page-news .news-filter {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px 28px;
    margin-top: 36px;
    padding: 16px 20px;
  }

  .page-news .news-filter__row {
    flex: 0 0 auto;
  }

  .page-news .news-filter__row + .news-filter__row {
    margin-top: 0;
  }

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

  .page-news .section__head {
    margin-bottom: 34px;
  }

  .page-news .section__head .section__label {
    font-size: 13px;
  }

  .page-news .section__head h2 {
    font-size: 34px;
  }

  .page-news .reports-scroll {
    margin: 0;
    padding: 0 4px 20px;
  }

  .page-news .report-card {
    width: 288px;
  }

  .page-news .timeline__item {
    padding-left: 76px;
  }

  .page-news .timeline__marker {
    width: 54px;
    height: 54px;
    font-size: 18px;
  }

  .page-news .timeline__content {
    padding: 24px;
  }

  .page-news .timeline__head h3 {
    font-size: 20px;
  }

  .page-news .changelog-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 36px;
    align-items: start;
  }

  .page-news .changelog-visual {
    margin-top: 0;
    max-width: none;
  }

  .page-news .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .page-news .feature-card:first-child {
    grid-column: 1 / -1;
  }

  .page-news .feature-card:first-child .feature-card__media {
    max-width: 720px;
  }

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

@media (min-width: 1024px) {
  .page-news .news-hero__copy h1 {
    font-size: 56px;
  }

  .page-news .section__head h2 {
    font-size: 36px;
  }

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

  .page-news .feature-card:first-child {
    grid-column: auto;
  }

  .page-news .explore-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .page-news .news-stat dd {
    font-size: 24px;
  }
}
