/* --- Numbers bar, directly under the hero -------------------------------- */

.v8n {
  background: var(--ink, #1b1b1b);
  color: #fff;
  /* full bleed without the scrollbar counting toward 100vw */
  width: calc(100vw - (100vw - 100%));
  margin-left: calc(50% - (100vw - (100vw - 100%)) / 2);
  padding: 46px 28px;
}

.v8n-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px 18px;
}

.v8n-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

/* Hairline between cells rather than around them — a full grid of boxes would
   fight the band it sits in. */
.v8n-cell + .v8n-cell::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(255, 255, 255, .14);
}

.v8n-num {
  font-size: clamp(1.75rem, 3.1vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}

.v8n-label {
  font-size: .875rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, .62);
}

@media (max-width: 900px) {
  .v8n { padding: 36px 22px; }
  .v8n-wrap { grid-template-columns: repeat(3, 1fr); gap: 28px 16px; }
  /* The rule belongs between columns, not before every fourth cell. */
  .v8n-cell:nth-child(3n + 1)::before { display: none; }
}

@media (max-width: 520px) {
  .v8n-wrap { grid-template-columns: repeat(2, 1fr); }
  .v8n-cell:nth-child(3n + 1)::before { display: block; }
  .v8n-cell:nth-child(odd)::before { display: none; }
}

/* --- Roster wall, foot of the archive ------------------------------------ */

.v8w {
  border-top: 1px solid var(--hair, rgba(0, 0, 0, .1));
  padding: 64px 28px 84px;
}

.v8w-wrap { max-width: 1180px; margin: 0 auto; }

.v8w-head {
  margin: 0 0 30px;
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -.025em;
}

.v8w-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
  gap: 2px;
}

.v8w-grid li {
  padding: 13px 14px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink, #1b1b1b);
  background: rgba(0, 0, 0, .028);
  border-radius: 8px;
  transition: background .25s ease;
}

.v8w-grid li:hover { background: rgba(0, 0, 0, .06); }

@media (max-width: 520px) {
  .v8w { padding: 48px 22px 64px; }
  .v8w-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .v8w-grid li { font-size: .875rem; padding: 11px 12px; }
}
