.page-news {
  --news-rule: rgba(143, 163, 184, .22);
  --news-rule-soft: rgba(143, 163, 184, .12);
  --news-tint: rgba(18, 58, 92, .38);
}

/* ---------- Hero ---------- */
.page-news .news-hero {
  padding-top: clamp(28px, 5vw, 56px);
}

.page-news .news-hero__frame {
  margin-top: clamp(20px, 3vw, 34px);
  border: 1px solid var(--news-rule);
  background: linear-gradient(180deg, rgba(11, 27, 51, .9), rgba(7, 16, 31, .94));
  padding: clamp(20px, 3vw, 40px);
  display: grid;
  gap: clamp(20px, 3vw, 38px);
}

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

.page-news .news-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.01em;
  font-size: clamp(30px, 6vw, 56px);
  line-height: 1.15;
  color: var(--c-paper);
  margin: 0;
  max-width: 20ch;
}

.page-news .news-hero__lead {
  color: var(--c-steel);
  max-width: 60ch;
  margin: 0;
}

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

.page-news .news-hero__figure {
  margin: 0;
}

/* ---------- Filter bar ---------- */
.page-news .news-tags {
  padding-top: clamp(20px, 3vw, 32px);
  padding-bottom: clamp(20px, 3vw, 32px);
}

.page-news .news-tags__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--news-rule);
  border-bottom: 1px solid var(--news-rule);
  padding: 12px 0;
}

.page-news .news-tags__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-steel);
  flex: 0 0 auto;
  padding-right: 12px;
  border-right: 1px solid var(--news-rule);
}

.page-news .news-tags__list {
  list-style: none;
  margin: 0;
  padding: 0 4px 6px 0;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.page-news .news-tags__item {
  display: inline-block;
  white-space: nowrap;
  scroll-snap-align: start;
  padding: 7px 14px;
  border: 1px solid var(--news-rule);
  color: var(--c-steel);
  font-size: 13px;
  letter-spacing: .04em;
  text-decoration: none;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.page-news .news-tags__item:hover,
.page-news .news-tags__item:focus-visible {
  color: var(--c-fluo);
  border-color: var(--c-fluo);
}

.page-news .news-tags__item--on {
  color: var(--c-night);
  background: var(--c-fluo);
  border-color: var(--c-fluo);
}

/* ---------- Head block ---------- */
.page-news .news-head {
  display: grid;
  gap: 12px;
  max-width: 68ch;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.page-news .news-head__note {
  color: var(--c-steel);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  padding-left: 14px;
  border-left: 2px solid var(--c-saffron);
}

/* ---------- Latest index list ---------- */
.page-news .news-index {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--news-rule);
}

.page-news .news-index__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--news-rule-soft);
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.page-news .news-index__row:hover {
  border-bottom-color: var(--c-saffron);
}

.page-news .news-index__no {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: .08em;
  color: var(--c-fluo);
}

.page-news .news-index__phase {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-steel);
  border: 1px solid var(--news-rule);
  padding: 3px 8px;
  justify-self: start;
}

.page-news .news-index__phase--regular {
  border-color: rgba(217, 242, 74, .4);
  color: var(--c-fluo);
}

.page-news .news-index__phase--cup {
  border-color: rgba(232, 106, 51, .5);
  color: var(--c-saffron);
}

.page-news .news-index__title {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.4vw, 21px);
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 6px;
}

.page-news .news-index__title a {
  color: var(--c-paper);
  text-decoration: none;
  background-image: linear-gradient(var(--c-saffron), var(--c-saffron));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size var(--dur) var(--ease), color var(--dur) var(--ease);
}

.page-news .news-index__title a:hover,
.page-news .news-index__title a:focus-visible {
  color: var(--c-fluo);
  background-size: 100% 1px;
}

.page-news .news-index__desc {
  margin: 0;
  color: var(--c-steel);
  font-size: 15px;
  line-height: 1.7;
  max-width: 64ch;
}

.page-news .news-index__ver {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--c-steel);
}

/* ---------- Phase timeline ---------- */
.page-news .news-phases__track {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.page-news .news-phases__stop {
  position: relative;
  padding: 24px 0 24px 26px;
  border-bottom: 1px solid var(--line-soft);
  border-left: 2px solid rgba(217, 242, 74, .28);
}

.page-news .news-phases__marker {
  position: absolute;
  left: -7px;
  top: 32px;
  width: 12px;
  height: 12px;
  background: var(--c-plateau);
  border: 2px solid var(--c-steel);
  border-radius: 50%;
}

.page-news .news-phases__marker--hot {
  background: var(--c-fluo);
  border-color: var(--c-fluo);
}

.page-news .news-phases__stage {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-saffron);
  margin: 0 0 8px;
}

.page-news .news-phases__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 600;
  color: var(--c-paper);
  margin: 0 0 10px;
}

.page-news .news-phases__text {
  margin: 0 0 12px;
  color: var(--c-steel);
  font-size: 15px;
  line-height: 1.75;
  max-width: 62ch;
}

.page-news .news-phases__foot {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--c-paper);
  opacity: .72;
}

/* ---------- Round archive ---------- */
.page-news .news-rounds__grid {
  align-items: start;
  gap: clamp(24px, 4vw, 48px);
}

.page-news .news-note {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--news-rule);
}

.page-news .news-note__item {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid var(--news-rule-soft);
}

.page-news .news-note__key {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--c-fluo);
}

.page-news .news-note__val {
  margin: 0;
  color: var(--c-steel);
  font-size: 15px;
  line-height: 1.72;
  max-width: 58ch;
}

.page-news .news-rounds__figure {
  margin: 0;
}

/* ---------- Officials ---------- */
.page-news .news-officials__grid {
  gap: clamp(20px, 3vw, 32px);
  margin-bottom: clamp(24px, 3vw, 36px);
}

.page-news .news-officials__col {
  padding-top: 18px;
  border-top: 2px solid var(--c-saffron);
}

.page-news .news-officials__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-steel);
  margin: 0 0 8px;
}

.page-news .news-officials__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 600;
  color: var(--c-paper);
  margin: 0 0 10px;
}

.page-news .news-officials__text {
  margin: 0 0 14px;
  color: var(--c-steel);
  font-size: 15px;
  line-height: 1.75;
}

.page-news .news-officials__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .news-officials__figure {
  margin: 0;
}

/* ---------- Coaches ---------- */
.page-news .news-coaches__grid {
  align-items: start;
  gap: clamp(24px, 4vw, 48px);
}

.page-news .news-coaches__figure {
  margin: 0;
}

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

.page-news .news-coaches__entry {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid var(--news-rule-soft);
}

.page-news .news-coaches__entry:first-child {
  border-top: 1px solid var(--news-rule);
}

.page-news .news-coaches__no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--c-saffron);
}

.page-news .news-coaches__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--c-paper);
  margin: 0;
}

.page-news .news-coaches__desc {
  margin: 0;
  color: var(--c-steel);
  font-size: 14px;
  line-height: 1.7;
  max-width: 56ch;
}

/* ---------- Editors & subscribe ---------- */
.page-news .news-editors__grid {
  display: grid;
  gap: clamp(20px, 3vw, 30px);
  margin-bottom: clamp(28px, 4vw, 44px);
}

.page-news .news-editors__pick {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  align-content: start;
}

.page-news .news-editors__pick-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 600;
  color: var(--c-paper);
  margin: 0;
  line-height: 1.4;
}

.page-news .news-editors__pick-text {
  margin: 0;
  color: var(--c-steel);
  font-size: 15px;
  line-height: 1.75;
}

.page-news .news-editors__pick .btn {
  justify-self: start;
}

.page-news .news-editors__sub {
  display: grid;
  gap: 20px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--c-saffron);
  background: linear-gradient(135deg, rgba(232, 106, 51, .12), rgba(11, 27, 51, .2));
}

.page-news .news-editors__sub-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--c-paper);
  margin: 0 0 10px;
}

.page-news .news-editors__sub-text {
  margin: 0;
  color: var(--c-steel);
  font-size: 15px;
  line-height: 1.75;
  max-width: 62ch;
}

.page-news .news-editors__sub-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.page-news .news-editors__sub-note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--c-fluo);
}

/* ---------- Responsive ---------- */
@media (min-width: 720px) {
  .page-news .news-index__row {
    grid-template-columns: 76px 112px 1fr 88px;
    align-items: baseline;
    gap: 18px;
    padding: 22px 0;
  }

  .page-news .news-index__ver {
    text-align: right;
  }

  .page-news .news-phases__track {
    grid-template-columns: repeat(2, 1fr);
    border-top: 0;
  }

  .page-news .news-phases__stop {
    border-top: 1px solid var(--line);
    padding: 26px 26px 26px 26px;
  }

  .page-news .news-phases__stop:first-child,
  .page-news .news-phases__stop:nth-child(3) {
    border-right: 1px solid var(--line-soft);
  }

  .page-news .news-phases__marker {
    left: auto;
    right: 24px;
    top: 26px;
  }

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

  .page-news .news-editors__sub {
    grid-template-columns: 1.6fr .9fr;
    align-items: center;
  }
}

@media (min-width: 960px) {
  .page-news .news-hero__frame {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
  }

  .page-news .news-rounds__grid {
    grid-template-columns: 1.25fr .75fr;
  }

  .page-news .news-coaches__grid {
    grid-template-columns: .72fr 1.28fr;
  }

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

  .page-news .news-phases__stop:nth-child(3) {
    border-right: 1px solid var(--line-soft);
  }

  .page-news .news-phases__stop:last-child {
    border-right: 0;
  }
}

@media (max-width: 480px) {
  .page-news .news-tags__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .page-news .news-tags__label {
    border-right: 0;
    padding-right: 0;
  }

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