/* Keep wide article tables scrollable without moving surrounding prose. */
.prose table {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
}
.prose table th,
.prose table td {
  min-width: 9rem;
}
