.page-news {
  --news-row: 56px;
  display: block;
}

.page-news .news-hero {
  padding-top: clamp(20px, 3vw, 40px);
}

.page-news .crumbs {
  margin-bottom: clamp(24px, 4vw, 48px);
}

.page-news .crumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--stone);
}

.page-news .crumbs__sep {
  color: var(--line);
}

.page-news .news-hero__split {
  align-items: end;
  gap: clamp(28px, 4vw, 64px);
}

.page-news .news-hero__lead {
  padding-bottom: clamp(8px, 2vw, 24px);
}

.page-news .news-hero__title {
  margin: 14px 0 20px;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(46px, 10vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.page-news .news-hero__title .thin {
  font-weight: 200;
  color: var(--stone);
}

.page-news .news-hero__text {
  max-width: 46ch;
  margin: 0 0 24px;
  font-size: var(--fs-16);
  line-height: 1.75;
  color: var(--stone);
}

.page-news .news-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  font-size: 13px;
  color: var(--stone);
}

.page-news .news-hero__facts li {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.page-news .news-hero__facts .mono {
  font-size: 22px;
  font-weight: 700;
}

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

.page-news .news-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border-top: 1px solid var(--line-soft);
  padding-top: clamp(16px, 3vw, 32px);
}

.page-news .news-hero__svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 400px;
}

.page-news .news-sechead {
  max-width: 62ch;
  margin-bottom: clamp(24px, 4vw, 44px);
}

.page-news .news-sechead__title {
  margin: 12px 0 16px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(26px, 4.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.page-news .news-sechead__text {
  margin: 0;
  font-size: var(--fs-16);
  line-height: 1.75;
  color: var(--stone);
}

.page-news .news-feed__banner {
  margin: 0 0 clamp(28px, 4vw, 48px);
}

.page-news .news-feed__banner img,
.page-news .news-timeline__media img,
.page-news .news-awards__media img,
.page-news .news-log__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-news .news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

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

.page-news .news-feed__item {
  display: grid;
  grid-template-columns: var(--news-row) 1fr;
  gap: 0 clamp(12px, 2vw, 26px);
  padding-bottom: clamp(16px, 2.4vw, 26px);
}

.page-news .news-feed__tick {
  position: relative;
  padding-top: 6px;
  padding-right: 12px;
  border-right: 1px solid var(--line-soft);
  text-align: right;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--stone);
  transition: border-color var(--t) linear, color var(--t) linear;
}

.page-news .news-feed__tick::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-0);
  border: 1px solid var(--line);
  transition: background var(--t) linear, border-color var(--t) linear;
}

.page-news .news-feed__item:hover .news-feed__tick::after,
.page-news .news-feed__item:focus-within .news-feed__tick::after {
  background: var(--neon);
  border-color: var(--neon);
}

.page-news .news-feed__item:focus-within .news-feed__tick {
  border-color: var(--neon);
  color: var(--neon);
}

.page-news .news-feed__body {
  background: var(--bg-1);
  padding: clamp(16px, 2.4vw, 28px);
  border-radius: var(--radius) 0 var(--radius) 0;
  transition: background var(--t) linear, transform var(--t) linear;
}

.page-news .news-feed__item:hover .news-feed__body {
  background: #101C38;
  transform: translateX(2px);
}

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

.page-news .news-feed__tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--stone);
}

.page-news .news-feed__title {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.page-news .news-feed__text {
  margin: 0 0 12px;
  max-width: 58ch;
  font-size: var(--fs-16);
  line-height: 1.75;
  color: var(--stone);
}

.page-news .news-ribbon {
  background: var(--clay);
  border-top: 1px solid rgba(6, 10, 20, 0.35);
  border-bottom: 1px solid rgba(6, 10, 20, 0.35);
}

.page-news .news-ribbon__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 24px;
  padding-top: clamp(16px, 2vw, 24px);
  padding-bottom: clamp(16px, 2vw, 24px);
}

.page-news .news-ribbon__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1B1006;
}

.page-news .news-ribbon__text {
  font-size: var(--fs-14);
  line-height: 1.6;
  color: #201004;
}

.page-news .news-timeline__media {
  margin: 0 0 clamp(28px, 4vw, 48px);
}

.page-news .news-timeline__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 40px);
}

.page-news .news-timeline__coltitle {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.page-news .news-timeline__coltitle .mono {
  margin-right: 10px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--neon);
}

.page-news .news-node {
  border-bottom: 1px solid var(--line-soft);
}

.page-news .news-node__summary {
  position: relative;
  padding: 14px 32px 14px 20px;
  cursor: pointer;
  font-size: var(--fs-16);
  line-height: 1.5;
  color: var(--paper);
  list-style: none;
  transition: color var(--t) linear, background var(--t) linear;
}

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

.page-news .news-node__summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border: 1px solid var(--moss);
  border-radius: 50%;
  transition: background var(--t) linear, border-color var(--t) linear;
}

.page-news .news-node__summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--stone);
}

.page-news .news-node[open] .news-node__summary::after {
  content: "–";
  color: var(--neon);
}

.page-news .news-node[open] .news-node__summary::before {
  background: var(--neon);
  border-color: var(--neon);
}

.page-news .news-node__summary:hover,
.page-news .news-node__summary:focus-visible {
  background: rgba(30, 46, 85, 0.35);
  color: var(--neon);
}

.page-news .news-node__panel {
  padding: 0 20px 18px 20px;
}

.page-news .news-node__panel p {
  margin: 0;
  max-width: 56ch;
  font-size: var(--fs-14);
  line-height: 1.75;
  color: var(--stone);
}

.page-news .news-awards__grid {
  align-items: start;
  gap: clamp(24px, 3vw, 48px);
}

.page-news .news-awards__media {
  margin: 0;
  aspect-ratio: 3 / 2;
}

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

.page-news .news-progress {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.page-news .news-progress__item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  outline: none;
}

.page-news .news-progress__item:focus-visible {
  box-shadow: inset 3px 0 0 var(--neon);
}

.page-news .news-progress__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  font-size: var(--fs-14);
  color: var(--paper);
}

.page-news .news-progress__head .mono {
  font-size: var(--fs-14);
  color: var(--neon);
}

.page-news .news-progress__track {
  position: relative;
  height: 6px;
  background: var(--bg-1);
  border-radius: 2px;
  overflow: hidden;
}

.page-news .news-progress__fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--neon);
  border-radius: 2px;
  transition: width var(--t) linear;
}

.page-news .news-progress__fill--moss {
  background: var(--moss);
}

.page-news .news-progress__fill--w80 { width: 80%; }
.page-news .news-progress__fill--w77 { width: 77%; }
.page-news .news-progress__fill--w70 { width: 70%; }

.page-news .news-progress__hover {
  margin: 8px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--stone);
  opacity: 0.55;
  transition: opacity var(--t) linear, color var(--t) linear;
}

.page-news .news-progress__item:hover .news-progress__hover,
.page-news .news-progress__item:focus-visible .news-progress__hover {
  opacity: 1;
  color: var(--neon);
}

.page-news .news-awards__foot {
  margin: 0;
  font-size: var(--fs-14);
}

.page-news .news-log__grid {
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}

.page-news .news-log__board .board__body p {
  margin: 0 0 14px;
  max-width: 58ch;
  font-size: var(--fs-16);
  line-height: 1.75;
}

.page-news .news-log__board .board__body p:last-child {
  margin-bottom: 0;
}

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

.page-news .news-log__media {
  margin: 0;
  aspect-ratio: 2 / 1;
}

.page-news .news-return__grid {
  gap: clamp(16px, 2vw, 28px);
}

.page-news .news-return__slot {
  background: var(--bg-1);
  padding: clamp(16px, 2vw, 24px);
  border-radius: 0 var(--radius) 0 var(--radius);
  border-top: 2px solid var(--line);
  transition: border-color var(--t) linear, transform var(--t) linear;
}

.page-news .news-return__slot:hover {
  border-top-color: var(--neon);
  transform: translateY(-2px);
}

.page-news .news-return__slot--neon {
  border-top-color: var(--moss);
}

.page-news .news-return__key {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon);
}

.page-news .news-return__val {
  margin: 0;
  font-size: var(--fs-14);
  line-height: 1.7;
  color: var(--stone);
}

.page-news .news-return__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(16px, 2vw, 24px) 0;
  border-top: 1px solid var(--line-soft);
}

.page-news .news-return__cta p {
  margin: 0;
  max-width: 58ch;
  font-size: var(--fs-16);
  line-height: 1.75;
  color: var(--stone);
}

@media (min-width: 720px) {
  .page-news {
    --news-row: 76px;
  }

  .page-news .news-timeline__cols {
    grid-template-columns: 1fr 1fr;
  }

  .page-news .news-return__grid {
    row-gap: clamp(20px, 2.4vw, 32px);
  }
}

@media (min-width: 900px) {
  .page-news .news-hero__visual {
    border-top: 0;
    border-left: 1px solid var(--line-soft);
    padding-top: 0;
    padding-left: clamp(20px, 3vw, 40px);
    min-height: 340px;
  }

  .page-news .news-feed__tick {
    padding-right: 18px;
  }
}

@media (max-width: 899px) {
  .page-news .news-hero__split {
    grid-template-columns: 1fr;
  }

  .page-news .news-awards__grid > .c-5,
  .page-news .news-awards__grid > .c-7,
  .page-news .news-log__grid > .c-5,
  .page-news .news-log__grid > .c-7,
  .page-news .news-return__grid > .c-4,
  .page-news .news-return__grid > .c-8 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .page-news {
    --news-row: 44px;
  }

  .page-news .news-feed__tick {
    padding-right: 8px;
    font-size: 10px;
  }

  .page-news .news-feed__tick::after {
    width: 7px;
    height: 7px;
    right: -4px;
  }

  .page-news .news-feed__item:hover .news-feed__body {
    transform: none;
  }

  .page-news .news-hero__facts {
    gap: 6px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-feed__tick,
  .page-news .news-feed__tick::after,
  .page-news .news-feed__body,
  .page-news .news-node__summary,
  .page-news .news-node__summary::before,
  .page-news .news-progress__fill,
  .page-news .news-progress__hover,
  .page-news .news-return__slot {
    transition-duration: 0ms;
  }
}
