/* Impact — executive skim + ink band. */

/* This was a <p>, so it inherited the 68ch prose measure, and `margin: auto`
   then centred that 700px block inside a 1310px section. The result started a
   third of the way across the page with nothing to its left. Now a full-width
   band with its own cells. */
.impact-skim {
  width: 100%;
  max-width: var(--maxw);
  margin-top: var(--s-6);
  margin-inline: auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: var(--hair);
  background: var(--line-quiet);
  border: var(--hair) solid var(--line-quiet);
}
.impact-skim__item {
  display: grid;
  gap: 0.35rem;
  background: var(--field);
  padding: var(--s-4);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 550;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variation-settings: "wdth" 98, "wght" 550;
}
.impact-skim__item .label { color: var(--text-faint); }
.impact-skim__item .figure { color: var(--line-hi); }


.impact-skim__qual {
  display: block;
  font-family: var(--sans);
  font-size: var(--t-small);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--text-dim);
}
