/* Barebones reset-ish */
* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: #111; background: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.skip-link {
  position: absolute; left: -999px; top: 0;
  padding: .5rem 1rem; background: #111; color: #fff;
}
.skip-link:focus { left: 1rem; top: 1rem; z-index: 999; }

/* Shared card title style */
.card__title { margin: 0 0 .5rem; font-size: 1.05rem; }
