.page-news {
  --news-copper-deep: #7A4E11;
  --news-line: rgba(8, 21, 26, .12);
  --news-line-light: rgba(233, 239, 241, .18);
}

/* ---------- Hero ---------- */
.page-news .news-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 44px;
  color: var(--mist-100);
  background:
    radial-gradient(circle at 84% 8%, rgba(47, 182, 196, .30), transparent 48%),
    radial-gradient(circle at 8% 96%, rgba(201, 138, 52, .22), transparent 52%),
    linear-gradient(158deg, var(--ink-900) 0%, var(--ink-700) 62%, var(--teal-600) 100%);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(233, 239, 241, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 239, 241, .06) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan-400) 0%, var(--copper-500) 58%, transparent 100%);
}

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

.page-news .news-hero .breadcrumb__link,
.page-news .news-hero .breadcrumb__item {
  color: rgba(233, 239, 241, .62);
}

.page-news .news-hero .breadcrumb__link:hover {
  color: var(--cyan-400);
}

.page-news .news-hero__label {
  margin: 22px 0 0;
  color: var(--gold-200);
  background: rgba(240, 217, 174, .12);
}

.page-news .news-hero__title {
  margin: 18px 0 16px;
  max-width: 22ch;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.9rem, 6.6vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -.012em;
  color: #fff;
}

.page-news .news-hero__lead {
  max-width: 46ch;
  margin: 0;
  color: rgba(233, 239, 241, .82);
  font-size: 1rem;
}

.page-news .news-hero__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.page-news .news-cat {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border: 2px solid var(--news-line-light);
  background: rgba(233, 239, 241, .05);
  color: var(--mist-100);
  font-size: 14px;
  text-decoration: none;
  transition: border-color .2s linear, background-color .2s linear, transform .2s linear;
}

.page-news .news-cat:hover {
  border-color: var(--copper-500);
  background: rgba(201, 138, 52, .16);
  transform: translateY(-2px);
}

.page-news .news-cat__num {
  font-size: 12px;
  color: var(--copper-500);
}

.page-news .news-band {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--news-line-light);
}

.page-news .news-band__hint {
  margin: 0;
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(233, 239, 241, .5);
}

.page-news .news-band__list {
  display: flex;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.page-news .news-band__item {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  padding-top: 12px;
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(233, 239, 241, .46);
}

.page-news .news-band__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 74%;
  height: 2px;
  background: rgba(233, 239, 241, .22);
}

.page-news .news-band__item.is-current {
  color: var(--gold-200);
}

.page-news .news-band__item.is-current::before {
  background: var(--copper-500);
}

.page-news .news-band__item.is-current::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--copper-500);
  box-shadow: var(--hard-sm);
}

/* ---------- Recent list ---------- */
.page-news .news-recent {
  padding: 48px 0 56px;
  background: var(--mist-100);
}

.page-news .news-recent__head {
  max-width: 60ch;
  margin-bottom: 26px;
}

.page-news .news-recent__title {
  margin: 12px 0 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 4.4vw, 2.25rem);
  line-height: 1.16;
  letter-spacing: -.01em;
  color: var(--ink-text);
}

.page-news .news-recent__note {
  margin: 0;
  color: var(--slate-500);
  font-size: .95rem;
  line-height: 1.7;
}

.page-news .news-tabs__list {
  display: flex;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0 0 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.page-news .news-tabs__list::-webkit-scrollbar {
  display: none;
}

.page-news .news-tabs__tab {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid var(--news-line);
  background: transparent;
  color: var(--ink-text);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: border-color .2s linear, background-color .2s linear, color .2s linear;
}

.page-news .news-tabs__tab:hover {
  border-color: var(--copper-500);
}

.page-news .news-tabs__tab[aria-selected="true"] {
  border-color: var(--teal-600);
  background: var(--teal-600);
  color: #fff;
}

.page-news .news-tabs__tab:focus-visible {
  outline: 2px solid var(--cyan-400);
  outline-offset: 2px;
}

.page-news .news-tabs__panel {
  outline: none;
}

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

.page-news .news-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 14px;
  padding: 22px 0 22px 12px;
  border-top: 1px solid var(--news-line);
  transition: background-color .22s linear, padding-left .22s linear;
}

.page-news .news-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: transparent;
  transition: background-color .22s linear;
}

.page-news .news-item:hover {
  background: rgba(47, 182, 196, .07);
  padding-left: 18px;
}

.page-news .news-item:hover::before {
  background: var(--cyan-400);
}

.page-news .news-item--notice {
  border-left: 4px solid var(--copper-500);
}

.page-news .news-item--notice:hover::before {
  background: var(--copper-500);
}

.page-news .news-item__num {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-500);
  line-height: 1.6;
  padding-top: 2px;
}

.page-news .news-item__body {
  min-width: 0;
}

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

.page-news .news-item__tag {
  display: inline-block;
  padding: 2px 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  line-height: 1.6;
  border: 1px solid currentColor;
}

.page-news .news-item__tag--dynamic {
  color: var(--teal-600);
  background: rgba(47, 182, 196, .16);
}

.page-news .news-item__tag--route {
  color: var(--news-copper-deep);
  background: rgba(201, 138, 52, .18);
}

.page-news .news-item__tag--version {
  color: var(--camellia-600);
  background: rgba(194, 69, 63, .12);
}

.page-news .news-item__tag--notice {
  color: var(--ink-700);
  background: rgba(20, 86, 107, .12);
}

.page-news .news-item__time {
  font-size: 12px;
  color: var(--slate-500);
}

.page-news .news-item__title {
  margin: 0 0 6px;
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 700;
}

.page-news .news-item__trigger {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink-text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.page-news .news-item__trigger::after {
  content: "→";
  flex: 0 0 auto;
  color: var(--copper-500);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s linear, transform .2s linear;
}

.page-news .news-item__trigger:hover::after,
.page-news .news-item__trigger[aria-expanded="true"]::after {
  opacity: 1;
  transform: translateX(0);
}

.page-news .news-item__trigger:focus-visible {
  outline: 2px solid var(--cyan-400);
  outline-offset: 3px;
}

.page-news .news-item__trigger[aria-expanded="true"] {
  color: var(--teal-600);
}

.page-news .news-item__summary {
  margin: 0;
  max-width: 62ch;
  color: var(--slate-500);
  font-size: .93rem;
  line-height: 1.75;
}

.page-news .news-item__panel {
  margin-top: 12px;
  padding: 14px 16px;
  max-width: 62ch;
  background: rgba(10, 31, 43, .06);
  border-left: 3px solid var(--cyan-400);
  color: var(--ink-text);
  font-size: .93rem;
  line-height: 1.8;
}

.page-news .news-item__panel p {
  margin: 0;
}

/* ---------- Feature blocks ---------- */
.page-news .news-feature__inner {
  display: grid;
  gap: 30px;
}

.page-news .news-feature__title {
  margin: 12px 0 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.42rem, 4.6vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: -.01em;
  color: var(--ink-text);
}

.page-news .news-feature--dark .news-feature__title {
  color: #fff;
}

.page-news .news-feature__copy {
  margin: 0 0 18px;
  max-width: 40ch;
  color: var(--slate-500);
  font-size: .96rem;
  line-height: 1.85;
}

.page-news .news-feature--dark .news-feature__copy {
  color: rgba(233, 239, 241, .8);
}

.page-news .news-points {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.page-news .news-points li {
  position: relative;
  padding: 9px 0 9px 20px;
  border-top: 1px solid var(--news-line);
  color: var(--ink-text);
  font-size: .93rem;
  line-height: 1.7;
}

.page-news .news-points li:last-child {
  border-bottom: 1px solid var(--news-line);
}

.page-news .news-points li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 2px;
  width: 7px;
  height: 7px;
  background: var(--copper-500);
}

.page-news .news-feature--dark .news-points li {
  border-color: var(--news-line-light);
  color: var(--mist-100);
}

.page-news .news-points--bar li::before {
  top: 10px;
  left: 0;
  width: 3px;
  height: 22px;
  background: var(--camellia-600);
}

.page-news .news-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border: 2px solid var(--copper-500);
  color: var(--news-copper-deep);
  font-size: 14px;
  text-decoration: none;
  transition: background-color .2s linear, color .2s linear, transform .2s linear;
}

.page-news .news-feature__link:hover {
  background: var(--copper-500);
  color: #fff;
  transform: translateY(-2px);
}

.page-news .news-feature__link--light {
  border-color: var(--gold-200);
  color: var(--gold-200);
}

.page-news .news-feature__link--light:hover {
  background: var(--gold-200);
  color: var(--ink-900);
}

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

.page-news .news-feature__media .media {
  box-shadow: var(--hard);
}

/* ---------- Replay ---------- */
.page-news .news-replay {
  position: relative;
  padding: 52px 0 58px;
  background:
    radial-gradient(circle at 92% 18%, rgba(201, 138, 52, .22), transparent 46%),
    linear-gradient(170deg, var(--ink-900) 0%, var(--teal-600) 100%);
  color: var(--mist-100);
}

.page-news .news-replay__inner {
  display: grid;
  gap: 34px;
}

.page-news .news-replay .label {
  color: var(--gold-200);
  background: rgba(240, 217, 174, .12);
}

.page-news .news-replay__title {
  margin: 12px 0 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 5vw, 2.3rem);
  line-height: 1.16;
  letter-spacing: -.01em;
  color: #fff;
}

.page-news .news-replay__copy {
  margin: 0 0 24px;
  max-width: 52ch;
  color: rgba(233, 239, 241, .82);
  font-size: .96rem;
  line-height: 1.85;
}

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

.page-news .news-replay__stats {
  display: grid;
  gap: 16px;
  margin: 0;
}

.page-news .news-stat {
  padding: 16px 18px;
  border: 2px solid var(--news-line-light);
  background: rgba(233, 239, 241, .05);
  box-shadow: var(--hard-sm);
}

.page-news .news-stat__key {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--cyan-400);
}

.page-news .news-stat__val {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
}

.page-news .news-stat__val .num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-200);
}

.page-news .news-stat__val .unit {
  font-size: 13px;
  color: rgba(233, 239, 241, .7);
}

.page-news .news-stat__note {
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(233, 239, 241, .68);
}

/* ---------- Responsive ---------- */
@media (min-width: 720px) {
  .page-news .news-hero {
    padding: 56px 0 56px;
  }

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

  .page-news .news-item {
    grid-template-columns: 62px minmax(0, 1fr);
    column-gap: 22px;
    padding: 26px 8px 26px 16px;
  }

  .page-news .news-item__num {
    font-size: 17px;
  }

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

@media (min-width: 980px) {
  .page-news .news-hero {
    padding: 72px 0 64px;
  }

  .page-news .news-hero__inner {
    max-width: 980px;
  }

  .page-news .news-feature__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
    gap: 56px;
    align-items: center;
  }

  .page-news .news-feature--reverse .news-feature__text {
    order: 2;
  }

  .page-news .news-feature--reverse .news-feature__media {
    order: 1;
  }

  .page-news .news-replay__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
  }

  .page-news .news-replay__stats {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .page-news .news-stat {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 18px;
    align-items: baseline;
  }

  .page-news .news-stat__key {
    grid-row: 1 / 3;
    margin: 0;
    align-self: center;
  }

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

  .page-news .news-stat__note {
    margin: 4px 0 0;
  }
}
</final>
