.page-news {
  --timeline-col: 180px;
  --timeline-gap: 40px;
  color: var(--c-gray);
}

.page-news .news-masthead {
  background: var(--c-primary);
  color: var(--c-white);
  padding: 32px 0 52px;
  position: relative;
  overflow: hidden;
}

.page-news .news-masthead::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  height: 340px;
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.18) 0%, transparent 62%),
    linear-gradient(45deg, transparent 70%, rgba(255, 107, 53, 0.12) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  pointer-events: none;
}

.page-news .news-masthead__grid {
  position: relative;
  display: grid;
  gap: 32px;
}

.page-news .news-masthead__text {
  max-width: 780px;
}

.page-news .news-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 18px;
}

.page-news .news-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--c-accent);
  flex: 0 0 auto;
}

.page-news .news-masthead h1 {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--c-white);
  margin: 0 0 18px;
  text-transform: uppercase;
}

.page-news .news-masthead__lead {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.page-news .news-masthead__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.page-news .news-masthead__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.page-news .news-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--c-accent);
  padding: 22px 24px;
  align-self: stretch;
}

.page-news .news-panel__label {
  display: block;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 14px;
}

.page-news .news-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .news-panel__list li + li {
  margin-top: 2px;
}

.page-news .news-panel__list a {
  display: block;
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}

.page-news .news-panel__list a:hover,
.page-news .news-panel__list a.is-active {
  color: var(--c-accent);
  padding-left: 8px;
}

.page-news .news-feature {
  background: var(--c-light);
}

.page-news .news-feature__card {
  background: var(--c-white);
  border: 1px solid rgba(11, 27, 61, 0.08);
  box-shadow: 0 18px 48px rgba(11, 27, 61, 0.08);
}

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

.page-news .news-feature__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.page-news .news-feature__stamp {
  position: absolute;
  top: 20px;
  left: 0;
  background: var(--c-accent);
  color: var(--c-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 20px 8px 16px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  text-transform: uppercase;
}

.page-news .news-feature__body {
  padding: 28px 24px 32px;
  display: grid;
  gap: 28px;
}

.page-news .news-feature__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.page-news .news-feature__date {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--c-gray);
  opacity: 0.7;
}

.page-news .news-feature__head h2 {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.2;
  color: var(--c-primary);
  margin: 0 0 14px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.page-news .news-feature__desc {
  font-size: 15px;
  line-height: 1.78;
  color: var(--c-gray);
  margin: 0;
}

.page-news .news-feature__points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

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

.page-news .news-feature__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 3px;
  background: var(--c-accent);
}

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

.page-news .news-block-head {
  margin-bottom: 36px;
}

.page-news .news-block-head .section-desc {
  max-width: 660px;
}

.page-news .news-tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid transparent;
  line-height: 1.4;
  white-space: nowrap;
}

.page-news .news-tag--orange {
  background: rgba(255, 107, 53, 0.12);
  color: var(--c-accent);
  border-color: rgba(255, 107, 53, 0.3);
}

.page-news .news-tag--cyan {
  background: rgba(14, 165, 233, 0.12);
  color: var(--c-cyan);
  border-color: rgba(14, 165, 233, 0.3);
}

.page-news .news-tag--gold {
  background: rgba(245, 158, 11, 0.12);
  color: var(--c-gold);
  border-color: rgba(245, 158, 11, 0.3);
}

.page-news .news-tag--outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.28);
}

.page-news .news-reports {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}

.page-news .news-reports .section-title,
.page-news .news-product .section-title {
  color: var(--c-white);
}

.page-news .news-reports .section-desc,
.page-news .news-product .section-desc {
  color: rgba(255, 255, 255, 0.72);
}

.page-news .news-timeline {
  margin-top: 8px;
}

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

.page-news .news-timeline__item::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 20px;
  bottom: -12px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255, 107, 53, 0.5), rgba(255, 107, 53, 0.08));
}

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

.page-news .news-timeline__item::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 18px;
  width: 10px;
  height: 10px;
  background: var(--c-accent);
  transform: rotate(45deg);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.16);
  z-index: 1;
}

.page-news .news-timeline__date {
  margin-bottom: 14px;
}

.page-news .news-timeline__day {
  display: block;
  font-family: var(--font-data);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: 0.02em;
}

.page-news .news-timeline__league {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.page-news .news-timeline__card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.page-news .news-timeline__card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 107, 53, 0.35);
}

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

.page-news .news-timeline__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.page-news .news-timeline__card:hover .news-timeline__media img {
  transform: scale(1.02);
}

.page-news .news-timeline__content {
  padding: 20px 22px 22px;
}

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

.page-news .news-timeline__head h3 {
  font-size: 20px;
  line-height: 1.35;
  color: var(--c-white);
  margin: 0;
}

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

.page-news .news-timeline__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
}

.page-news .news-timeline__score {
  font-family: var(--font-data);
  font-size: 26px;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.03em;
  line-height: 1;
}

.page-news .news-timeline__status {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 5px 10px;
  white-space: nowrap;
}

.page-news .news-timeline__more {
  margin-top: 36px;
  text-align: center;
}

.page-news .news-timeline__more .btn {
  width: 100%;
}

.page-news .news-preview {
  background: var(--c-white);
}

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

.page-news .news-preview__card {
  border: 1px solid rgba(11, 27, 61, 0.1);
  background: var(--c-white);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.page-news .news-preview__card:hover {
  box-shadow: 0 16px 40px rgba(11, 27, 61, 0.1);
  transform: translateY(-3px);
}

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

.page-news .news-preview__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-news .news-preview__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
}

.page-news .news-preview__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

.page-news .news-preview__body h3 {
  font-size: 20px;
  line-height: 1.35;
  color: var(--c-primary);
  margin: 0 0 12px;
}

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

.page-news .news-preview__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(11, 27, 61, 0.08);
  margin-top: auto;
}

.page-news .news-preview__time {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--c-gray);
}

.page-news .news-preview__chart {
  background: var(--c-primary);
  padding: 20px 20px 16px;
  color: var(--c-white);
}

.page-news .news-preview__chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.page-news .news-preview__chart-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-news .news-preview__chart-sub {
  font-family: var(--font-data);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

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

.page-news .news-preview__chart-legend {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  font-size: 12px;
}

.page-news .news-preview__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
}

.page-news .news-preview__legend-item::before {
  content: "";
  width: 18px;
  height: 3px;
  flex: 0 0 auto;
}

.page-news .news-preview__legend-item--home::before {
  background: var(--c-accent);
}

.page-news .news-preview__legend-item--away::before {
  background: var(--c-cyan);
  height: 2px;
}

.page-news .news-product {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.02) 75%, transparent 75%);
  background-size: 24px 24px;
}

.page-news .news-product__layout {
  display: grid;
  gap: 36px;
}

.page-news .news-product__visual {
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.page-news .news-product__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-news .news-product__stat {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.16), rgba(255, 107, 53, 0.04));
  border: 1px solid rgba(255, 107, 53, 0.24);
  padding: 20px 24px;
  margin-top: 16px;
}

.page-news .news-product__num {
  display: block;
  font-family: var(--font-data);
  font-size: 34px;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1.1;
}

.page-news .news-product__label {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-news .news-product__desc {
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

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

.page-news .news-product__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--c-accent);
  padding: 22px 24px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.page-news .news-product__item:hover {
  border-color: rgba(255, 107, 53, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

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

.page-news .news-product__ver {
  font-family: var(--font-data);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.page-news .news-product__item h3 {
  font-size: 18px;
  line-height: 1.35;
  color: var(--c-white);
  margin: 0 0 10px;
}

.page-news .news-product__item p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.66);
  margin: 0;
}

@media (min-width: 720px) {
  .page-news .news-masthead h1 {
    font-size: 48px;
  }

  .page-news .news-timeline__item {
    display: grid;
    grid-template-columns: var(--timeline-col) 1fr;
    gap: var(--timeline-gap);
    padding-left: 0;
  }

  .page-news .news-timeline__item::before {
    left: calc(var(--timeline-col) + var(--timeline-gap) / 2 - 1px);
    top: 22px;
    bottom: -16px;
  }

  .page-news .news-timeline__item::after {
    left: calc(var(--timeline-col) + var(--timeline-gap) / 2 - 5px);
    top: 20px;
  }

  .page-news .news-timeline__date {
    text-align: right;
    margin-bottom: 0;
    padding-top: 20px;
  }

  .page-news .news-timeline__more .btn {
    width: auto;
  }

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

@media (min-width: 900px) {
  .page-news .news-masthead {
    padding: 48px 0 64px;
  }

  .page-news .news-masthead__grid {
    grid-template-columns: 1fr 320px;
    align-items: end;
    gap: 48px;
  }

  .page-news .news-masthead h1 {
    font-size: 54px;
  }

  .page-news .news-masthead__lead {
    font-size: 16px;
    max-width: 640px;
  }

  .page-news .news-feature__body {
    grid-template-columns: 1.1fr 1fr;
    gap: 44px;
    padding: 40px 48px 44px;
  }

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

  .page-news .news-product__layout {
    grid-template-columns: 360px 1fr;
    gap: 56px;
    align-items: start;
  }

  .page-news .news-product__aside {
    position: sticky;
    top: 120px;
  }
}
