.page-news .news-hero {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: var(--color-surface);
}

.page-news .news-hero__crumbs {
  margin-bottom: var(--space-6);
}

.page-news .news-hero__grid {
  row-gap: var(--space-6);
}

.page-news .news-hero__title {
  margin: var(--space-3) 0 var(--space-4);
  font-family: var(--font-heading);
  font-size: var(--text-display);
  font-weight: var(--weight-heading);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-heading);
  color: var(--color-ink);
}

.page-news .news-hero__rhythm {
  margin: 0;
  max-width: var(--measure);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-ink-soft);
}

.page-news .news-hero__panel {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-4);
  background: var(--color-contrast-surface);
  color: var(--color-contrast-ink);
}

.page-news .news-hero__frame {
  position: absolute;
  inset: 0;
  margin: 0;
}

.page-news .news-hero__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.page-news .news-hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay-scrim);
}

.page-news .news-hero__stats {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.page-news .news-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-contrast-line);
}

.page-news .news-hero__stat .stat__value {
  font-family: var(--font-mono);
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1;
  color: var(--color-contrast-accent);
}

.page-news .news-hero__stat .stat__label {
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--color-contrast-ink);
}

.page-news .news-index__head {
  margin-bottom: var(--space-8);
}

.page-news .news-index__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

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

.page-news .news-index__link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "num name"
    ". scope"
    ". when";
  gap: 4px var(--space-3);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--color-line);
  text-decoration: none;
  color: inherit;
  transition: color var(--dur-base) var(--ease-out);
}

.page-news .news-index__num {
  grid-area: num;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  color: var(--color-primary);
  padding-top: 5px;
}

.page-news .news-index__name {
  grid-area: name;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-heading);
  line-height: 1.3;
  color: var(--color-ink);
}

.page-news .news-index__scope {
  grid-area: scope;
  margin-top: 6px;
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-ink-soft);
}

.page-news .news-index__when {
  grid-area: when;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: var(--color-ink-muted);
}

.page-news .news-index__link:hover .news-index__name,
.page-news .news-index__link:focus-visible .news-index__name {
  color: var(--color-accent);
}

.page-news .news-index__link:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 4px;
}

.page-news .news-topic {
  margin-bottom: calc(var(--section-y) * 0.82);
}

.page-news .news-topic:last-of-type {
  margin-bottom: 0;
}

.page-news .news-topic__head {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-line);
  margin-bottom: var(--space-6);
}

.page-news .news-topic__num {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  color: var(--color-primary);
}

.page-news .news-topic__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-heading);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-heading);
  color: var(--color-ink);
  scroll-margin-top: var(--space-8);
}

.page-news .news-topic__grid {
  display: grid;
  gap: var(--space-4);
}

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

.page-news .news-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-2);
}

.page-news .news-points li {
  position: relative;
  padding-left: var(--space-3);
  font-size: var(--text-sm);
  line-height: 1.8;
  color: var(--color-ink-soft);
}

.page-news .news-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 10px;
  height: 1px;
  background: var(--color-primary);
}

.page-news .news-topic__body {
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-6);
}

.page-news .news-entries {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-4);
}

.page-news .news-entry {
  display: grid;
  gap: 6px;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-line);
}

.page-news .news-entry__tag {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  color: var(--color-primary);
}

.page-news .news-entry__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.55;
  color: var(--color-ink);
}

.page-news .news-entry__desc {
  margin: 0;
  max-width: 58ch;
  font-size: var(--text-sm);
  line-height: 1.85;
  color: var(--color-ink-muted);
  transition: color var(--dur-base) var(--ease-out);
}

.page-news .news-entry:hover .news-entry__desc {
  color: var(--color-ink-soft);
}

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

.page-news .news-topic__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.page-news .news-topic__figure.frame--portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.page-news .news-topic__figure.frame--square img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.page-news .news-topic__figure--wide {
  margin-top: var(--space-6);
}

.page-news .news-topic__figure--wide img {
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.page-news .news-topic__more {
  margin: var(--space-4) 0 0;
  font-size: var(--text-sm);
  line-height: 1.7;
}

.page-news .news-topic--tight .news-topic__lede {
  max-width: var(--measure);
}

.page-news .news-entries--tight {
  margin-top: var(--space-4);
}

.page-news .news-archive__head {
  margin-bottom: var(--space-6);
}

.page-news .news-scale {
  margin: 0 0 var(--space-6);
  color: var(--color-primary);
}

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

.page-news .news-scale__labels {
  display: flex;
  justify-content: space-between;
  margin: var(--space-2) 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: var(--color-ink-muted);
}

.page-news .news-scale__note {
  margin: var(--space-2) 0 0;
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-ink-muted);
}

.page-news .news-archive__tabs {
  margin-top: var(--space-6);
}

.page-news .news-archive__tabs .tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.page-news .news-stage__note {
  margin: 0 0 var(--space-3);
  max-width: var(--measure);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--color-ink-soft);
}

.page-news .news-stage__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-2);
}

.page-news .news-stage__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: var(--space-2);
  font-size: var(--text-sm);
  line-height: 1.8;
  color: var(--color-ink);
}

.page-news .news-archive__links {
  margin: var(--space-6) 0 0;
  max-width: var(--measure);
  font-size: var(--text-sm);
  line-height: 1.9;
  color: var(--color-ink-soft);
}

.page-news .news-follow__head {
  margin-bottom: var(--space-6);
}

.page-news .news-follow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-6);
}

.page-news .news-follow__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "num title"
    ". text";
  gap: 6px var(--space-3);
  align-content: start;
}

.page-news .news-follow__num {
  grid-area: num;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  color: var(--color-primary);
  padding-top: 6px;
}

.page-news .news-follow__title {
  grid-area: title;
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-heading);
  line-height: 1.35;
  color: var(--color-ink);
}

.page-news .news-follow__text {
  grid-area: text;
  margin: 0;
  max-width: 46ch;
  font-size: var(--text-sm);
  line-height: 1.85;
  color: var(--color-ink-soft);
}

@media (max-width: 767px) {
  .page-news .news-hero,
  .page-news .news-topics,
  .page-news .news-archive,
  .page-news .news-follow {
    padding-top: calc(var(--section-y) * 0.6);
    padding-bottom: calc(var(--section-y) * 0.6);
  }

  .page-news .news-hero__main,
  .page-news .news-hero__side {
    grid-column: 1 / -1;
  }

  .page-news .news-hero__title {
    max-width: 12em;
  }

  .page-news .news-topic__title {
    font-size: var(--text-lg);
  }

  .page-news .news-follow__text {
    max-width: none;
  }
}

@media (min-width: 768px) {
  .page-news .news-index__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4) var(--space-6);
  }

  .page-news .news-follow__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-6) var(--space-8);
  }

  .page-news .news-hero__panel {
    min-height: 420px;
  }
}

@media (min-width: 900px) {
  .page-news .news-topic__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: var(--gutter);
    align-items: start;
  }

  .page-news .news-topic__lede {
    grid-column: 1 / span 8;
  }

  .page-news .news-topic__points {
    grid-column: 9 / span 4;
    margin-top: var(--space-4);
  }

  .page-news .news-topic__body--figure {
    grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .page-news .news-hero__title {
    max-width: 11em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-index__link,
  .page-news .news-entry__desc {
    transition: none;
  }
}
