.page-news {
  --news-cut: 12deg;
  --news-chip-bg: rgba(244, 241, 232, 0.06);
  background: var(--ink);
  color: var(--paper);
}

/* ---------- hero ---------- */

.page-news .news-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}

.page-news .news-hero__cut {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(112deg, rgba(12, 59, 46, 0) 0 46%, var(--green) 46% 100%);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  animation: news-cut-in 600ms var(--ease) both;
  pointer-events: none;
}

@keyframes news-cut-in {
  from { transform: translateX(8%); }
  to { transform: translateX(0); }
}

.page-news .news-hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(110, 122, 118, 0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(110, 122, 118, 0.1) 1px, transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
  padding: 22px 0 56px;
}

.page-news .news-hero .breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 12px;
}

.page-news .news-hero .breadcrumb__link {
  color: var(--grey);
  text-decoration: none;
}

.page-news .news-hero .breadcrumb__link:hover,
.page-news .news-hero .breadcrumb__link:focus-visible {
  color: var(--amber-light);
}

.page-news .news-hero .breadcrumb__sep {
  color: var(--rule-strong);
}

.page-news .news-hero .breadcrumb__current {
  color: var(--paper);
}

.page-news .news-hero__layout {
  align-items: start;
}

.page-news .news-hero__coord {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}

.page-news .news-hero__title {
  position: relative;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 11vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.02em;
}

.page-news .news-hero__anno {
  position: absolute;
  left: clamp(120px, 40vw, 300px);
  top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--grey);
}

.page-news .news-hero__lead {
  max-width: 46ch;
  margin: 0 0 24px;
  color: rgba(244, 241, 232, 0.78);
  line-height: 1.8;
}

.page-news .news-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.page-news .news-hero__panel {
  padding: 0;
}

.page-news .news-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  list-style: none;
  margin: 0;
  padding: 1px;
  background: rgba(110, 122, 118, 0.28);
  border: 1px solid rgba(255, 196, 107, 0.24);
}

.page-news .news-stats > .stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  background: rgba(7, 42, 32, 0.72);
}

.page-news .news-stats .stat__num {
  font-family: var(--font-mono);
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.page-news .news-stats .stat__label {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(244, 241, 232, 0.62);
}

.page-news .news-hero__note {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey);
}

/* ---------- rounds ---------- */

.page-news .news-rounds {
  position: relative;
  padding: 48px 0 0;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-deep) 100%);
  border-bottom: 4px solid var(--amber);
}

.page-news .news-rounds .section-head {
  padding-bottom: 18px;
}

.page-news .news-ruler {
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 0 34px;
  padding: 4px 0 14px;
  border-top: 1px solid rgba(244, 241, 232, 0.18);
  border-bottom: 1px solid rgba(244, 241, 232, 0.18);
  scrollbar-width: thin;
}

.page-news .news-ruler__track {
  display: flex;
  align-items: flex-end;
  list-style: none;
  margin: 0;
  padding: 0 6px;
  min-width: max-content;
}

.page-news .news-ruler__tick {
  position: relative;
  flex: 0 0 auto;
  width: 48px;
  padding-top: 44px;
  text-align: center;
}

.page-news .news-ruler__tick::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  width: 1px;
  height: 20px;
  background: rgba(244, 241, 232, 0.28);
  transform: translateX(-50%);
  transition: height 120ms var(--ease), background-color 120ms var(--ease);
}

.page-news .news-ruler__no {
  font-family: var(--font-mono);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: rgba(244, 241, 232, 0.5);
}

.page-news .news-ruler__tick.is-done::before {
  height: 26px;
  background: rgba(242, 160, 61, 0.62);
}

.page-news .news-ruler__tick.is-done .news-ruler__no {
  color: rgba(255, 196, 107, 0.82);
}

.page-news .news-ruler__tick.is-current::before {
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--amber-light);
}

.page-news .news-ruler__tick.is-current .news-ruler__no {
  color: var(--ink);
  background: var(--amber);
  padding: 3px 6px;
  font-weight: 700;
}

.page-news .news-ruler__hint {
  margin: 12px 0 0;
  padding: 0 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(244, 241, 232, 0.58);
}

.page-news .news-rounds__figure {
  margin: 0;
  border-top: 1px solid rgba(244, 241, 232, 0.2);
}

.page-news .news-rounds__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.page-news .news-rounds__figure .media-frame__cap {
  background: var(--green-deep);
  color: rgba(244, 241, 232, 0.72);
}

/* ---------- fixtures ---------- */

.page-news .news-fixtures {
  padding: 56px 0 48px;
  background: var(--ink);
}

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

.page-news .news-fixtures__row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  grid-template-areas:
    "no    pair"
    "time  block"
    "state state";
  gap: 6px 16px;
  align-items: center;
  padding: 16px 8px;
  border-bottom: 1px solid var(--rule);
  transition: background-color 160ms var(--ease);
}

.page-news .news-fixtures__row:hover {
  background: rgba(43, 210, 255, 0.05);
}

.page-news .news-fixtures__no {
  grid-area: no;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}

.page-news .news-fixtures__time {
  grid-area: time;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}

.page-news .news-fixtures__pair {
  grid-area: pair;
  font-size: 16px;
  font-weight: 600;
  color: var(--paper);
}

.page-news .news-fixtures__block {
  grid-area: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--grey);
}

.page-news .news-fixtures__state {
  grid-area: state;
  justify-self: start;
}

.page-news .news-fixtures__foot {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey);
}

/* ---------- officials ---------- */

.page-news .news-officials {
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
  background: var(--ink-2);
  border-top: 1px solid var(--rule);
}

.page-news .news-officials__wash {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(43, 210, 255, 0.14) 0%, rgba(43, 210, 255, 0) 68%);
  pointer-events: none;
}

.page-news .news-officials__layout {
  position: relative;
  align-items: start;
}

.page-news .news-officials__intro {
  max-width: 56ch;
  margin: 0 0 22px;
  line-height: 1.85;
  color: rgba(244, 241, 232, 0.78);
}

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

.page-news .news-officials__rules > li {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  grid-template-areas:
    "dot label"
    ".   desc";
  gap: 4px 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}

.page-news .news-officials__dot {
  grid-area: dot;
  align-self: start;
  margin-top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.page-news .news-officials__dot--ok { background: var(--ok); }
.page-news .news-officials__dot--wait { background: var(--amber); }

.page-news .news-officials__label {
  grid-area: label;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--paper);
}

.page-news .news-officials__desc {
  grid-area: desc;
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey);
}

.page-news .news-officials__media {
  margin-top: 26px;
}

.page-news .news-officials__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- friendly ---------- */

.page-news .news-friendly {
  padding: 56px 0;
  background: var(--paper);
  color: var(--paper-ink);
  border-top: 4px solid var(--green);
}

.page-news .news-friendly .section-head__index { color: var(--green); }
.page-news .news-friendly .section-head__title { color: var(--paper-ink); }
.page-news .news-friendly .section-head__note { color: #5C5750; }

.page-news .news-friendly__text {
  max-width: 58ch;
  margin: 0 0 26px;
  line-height: 1.85;
  color: #3A352D;
}

.page-news .news-friendly__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: rgba(26, 23, 18, 0.16);
}

.page-news .news-friendly__fact {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  background: var(--paper);
}

.page-news .news-friendly__fact dt {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--green);
}

.page-news .news-friendly__fact dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #3A352D;
}

.page-news .news-friendly__media {
  margin-bottom: 26px;
}

.page-news .news-friendly__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- collection ---------- */

.page-news .news-collection {
  padding: 56px 0 52px;
  background: var(--ink);
}

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

.page-news .news-collection__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.page-news .news-collection__filters {
  position: sticky;
  top: var(--nav-h);
  z-index: 3;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 0 0 0;
  padding: 12px 0;
  background: var(--ink);
  border-bottom: 1px solid var(--rule);
  scrollbar-width: thin;
}

.page-news .news-chip {
  flex: 0 0 auto;
  padding: 7px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(244, 241, 232, 0.72);
  background: var(--news-chip-bg);
  border: 1px solid var(--rule);
  border-radius: 0;
  cursor: pointer;
  transition: color 160ms var(--ease), background-color 160ms var(--ease), border-color 160ms var(--ease);
}

.page-news .news-chip:hover,
.page-news .news-chip:focus-visible {
  color: var(--amber-light);
  border-color: rgba(255, 196, 107, 0.6);
}

.page-news .news-chip.is-on {
  color: var(--ink);
  background: var(--amber);
  border-color: var(--amber);
}

.page-news .news-collection__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  list-style: none;
  margin: 0;
  padding: 1px;
  background: var(--rule);
}

.page-news .news-card {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 20px 18px 22px;
  background: var(--ink-2);
  border-left: 2px solid transparent;
  transition: border-color 160ms var(--ease), background-color 160ms var(--ease);
}

.page-news .news-card:hover {
  background: var(--ink-3);
  border-left-color: var(--amber);
}

.page-news .news-card__no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--volt);
  font-variant-numeric: tabular-nums;
}

.page-news .news-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--paper);
}

.page-news .news-card__pair {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--amber-light);
  font-variant-numeric: tabular-nums;
}

.page-news .news-card__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(244, 241, 232, 0.66);
}

.page-news .news-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 0;
}

.page-news .news-collection__foot {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey);
}

/* ---------- topics ---------- */

.page-news .news-topics {
  padding: 56px 0;
  background: var(--paper);
  color: var(--paper-ink);
  border-top: 4px solid var(--amber);
}

.page-news .news-topics .section-head__index { color: var(--green); }
.page-news .news-topics .section-head__title { color: var(--paper-ink); }
.page-news .news-topics .section-head__note { color: #5C5750; }

.page-news .news-topics__list {
  border-top: 1px solid rgba(26, 23, 18, 0.22);
}

.page-news .news-topic {
  border-bottom: 1px solid rgba(26, 23, 18, 0.22);
}

.page-news .news-topic__summary {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 18px 4px;
  cursor: pointer;
  list-style: none;
}

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

.page-news .news-topic__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--grey);
  transition: background-color 200ms var(--ease);
}

.page-news .news-topic[open] .news-topic__dot {
  background: var(--ok);
}

.page-news .news-topic__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--paper-ink);
}

.page-news .news-topic[open] .news-topic__name {
  color: var(--green);
}

.page-news .news-topic__when {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #6B655B;
}

.page-news .news-topic__body {
  padding: 0 4px 20px 28px;
}

.page-news .news-topic__body p {
  max-width: 60ch;
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: #3A352D;
}

/* ---------- region ---------- */

.page-news .news-region {
  padding: 56px 0 60px;
  background: var(--ink);
  border-top: 1px solid var(--rule);
}

.page-news .news-region__list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 20px;
  border-left: 1px solid var(--rule-strong);
}

.page-news .news-region__item {
  position: relative;
  padding: 0 0 26px 20px;
}

.page-news .news-region__item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 6px;
  width: 9px;
  height: 9px;
  background: var(--green-lift);
  border: 1px solid var(--amber);
}

.page-news .news-region__when {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--amber);
}

.page-news .news-region__name {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--paper);
}

.page-news .news-region__desc {
  max-width: 58ch;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(244, 241, 232, 0.66);
}

.page-news .news-region__foot {
  max-width: 66ch;
  margin: 20px 0 0;
  padding-top: 20px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--grey);
  border-top: 1px solid var(--rule);
}

.page-news .news-region__link {
  color: var(--amber-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 196, 107, 0.4);
}

.page-news .news-region__link:hover,
.page-news .news-region__link:focus-visible {
  color: var(--paper);
  border-bottom-color: var(--paper);
}

/* ---------- motion preference ---------- */

@media (prefers-reduced-motion: reduce) {
  .page-news .news-hero__cut {
    animation: none;
  }
  .page-news .news-ruler__tick::before {
    transition: none;
  }
}

/* ---------- responsive ---------- */

@media (min-width: 620px) {
  .page-news .news-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (min-width: 860px) {
  .page-news .news-hero__inner {
    padding: 26px 0 76px;
  }

  .page-news .news-fixtures__row {
    grid-template-columns: 76px 92px minmax(0, 1fr) 110px auto;
    grid-template-areas: "no time pair block state";
    gap: 16px;
    padding: 18px 10px;
  }

  .page-news .news-ruler__tick {
    width: 62px;
  }

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

  .page-news .news-officials__media {
    margin-top: 44px;
  }

  .page-news .news-friendly__media {
    margin-bottom: 0;
  }

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

  .page-news .news-card {
    grid-column: span 6;
  }

  .page-news .news-card--w3 {
    grid-column: span 3;
  }

  .page-news .news-card--w2 {
    grid-column: span 2;
  }

  .page-news .news-card--w2:nth-child(3n + 1) {
    grid-column: span 3;
  }
}

@media (min-width: 1100px) {
  .page-news .news-hero__lead {
    font-size: 16px;
  }

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

  .page-news .news-topic__name {
    font-size: 22px;
  }
}
<<<END>>>
