.news-index-page {
  color: var(--paper);
  background: #080808;
}

.news-index-main {
  overflow: hidden;
  background: #080808;
}

.news-index-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(168px, 17vw, 242px) 0 clamp(88px, 10vw, 142px);
  background: #080808;
  isolation: isolate;
}

.news-index-hero-inner {
  width: min(1280px, 90vw);
  margin-inline: auto;
}

.news-index-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 82px);
  padding-bottom: 5px;
  gap: 12px;
  color: rgba(255, 255, 255, .66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s;
}

.news-index-back span { color: var(--green); font-size: 18px; }
.news-index-back:hover { color: var(--paper); }
.news-index-back:focus-visible { color: var(--paper); outline: 2px solid var(--green); outline-offset: 4px; }

.news-index-kicker {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.news-index-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(62px, 9.2vw, 132px);
  font-weight: 300;
  letter-spacing: -.066em;
  line-height: .84;
}

.news-index-hero h1 em { color: var(--green); font-style: normal; }

.news-index-summary {
  display: grid;
  grid-template-columns: minmax(0, 680px) auto;
  align-items: end;
  justify-content: space-between;
  margin-top: clamp(48px, 6vw, 78px);
  padding-top: clamp(24px, 3vw, 38px);
  border-top: 1px solid rgba(255, 255, 255, .18);
  gap: 40px;
}

.news-index-summary p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: -.015em;
  line-height: 1.48;
}

.news-index-summary > span {
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.news-index-archive {
  padding: clamp(88px, 11vw, 154px) 0 clamp(96px, 12vw, 170px);
  color: var(--ink);
  background: var(--paper-bright);
  border-radius: clamp(34px, 5vw, 72px) clamp(34px, 5vw, 72px) 0 0;
}

.news-index-archive-inner {
  width: min(1200px, calc(100% - 8vw));
  margin-inline: auto;
}

.news-index-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.news-index-heading > p {
  margin: 0 0 8px;
  color: #6c7067;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.news-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.news-index-card {
  min-height: clamp(410px, 43vw, 560px);
  color: white;
  border-radius: clamp(18px, 2.4vw, 32px);
}

.news-index-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  min-height: clamp(420px, 48vw, 620px);
}

.news-index-card img { object-position: var(--news-image-position, center); }

.news-index-card .news-card-content {
  justify-content: flex-end;
  padding: clamp(25px, 3vw, 42px);
}

.news-index-card h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(25px, 2.6vw, 38px);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: 1.08;
  text-wrap: balance;
}

.news-index-card .news-card-action { margin-top: 28px; }

.news-index-card.is-added { animation: news-card-enter .5s var(--ease) both; }

@keyframes news-card-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.news-index-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(38px, 5vw, 66px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  gap: 28px;
}

.news-index-status {
  margin: 0;
  color: #6c7067;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.news-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 54px;
  padding: 15px 24px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .25s, background .25s, transform .25s var(--ease);
}

.news-load-more:hover:not([aria-disabled="true"]),
.news-load-more:focus-visible {
  color: var(--ink);
  background: var(--green);
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-2px);
}

.news-load-more:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.news-load-more[aria-disabled="true"] { cursor: default; opacity: .58; pointer-events: none; }

.news-index-page .footer-group a[aria-current="page"] { color: var(--green); }

@media (max-width: 780px) {
  .news-index-summary { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .news-index-grid { grid-template-columns: 1fr; }
  .news-index-card,
  .news-index-card:last-child:nth-child(odd) { grid-column: 1; min-height: 0; aspect-ratio: 4 / 5; }
}

@media (max-width: 640px) {
  .news-index-hero { padding-top: 136px; }
  .news-index-hero-inner { width: calc(100% - 36px); }
  .news-index-hero h1 { font-size: clamp(58px, 18vw, 82px); }
  .news-index-summary { margin-top: 40px; }
  .news-index-archive-inner { width: calc(100% - 36px); }
  .news-index-card,
  .news-index-card:last-child:nth-child(odd) { aspect-ratio: 4 / 5; }
  .news-index-card h2 { font-size: clamp(26px, 7.8vw, 34px); }
  .news-index-controls { flex-direction: column; align-items: stretch; }
  .news-index-status { text-align: center; }
  .news-load-more { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .news-index-card.is-added { animation: none; }
}
