/* ── what you get ────────────────────────────────────────────────
   Four numbered items under hairlines, centred heading — the
   original's layout. Its 820px media query restated the desktop
   rule verbatim, so the grid never actually reflowed; these
   breakpoints are the ones it was missing.
   ─────────────────────────────────────────────────────────────── */

.wyg { text-align: center; }

.wyg-h {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 36px);
  line-height: var(--lh-tight);
  letter-spacing: -.02em;
  margin: 0 auto 30px;
}

.gets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin-inline: auto;
  text-align: left;
}

.get {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.get b {
  padding-top: 3px;
  font-family: var(--mono);
  font-size: var(--t-mono);
  font-weight: 500;
  color: var(--accent-text);
}

.get span {
  font-size: 16.5px;
  line-height: 1.45;
}

@media (max-width: 1000px) {
  .gets { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .gets { grid-template-columns: 1fr; gap: 20px; }
}
