/* Comparison-table scroll restore — 2026-08-13.
   The editions-* redesign dropped the .cmp-wrap rules that live in the older
   styles-*.css family, so on narrow screens the table rows overflowed their
   wrapper while body.ed-member clipped with overflow-x:hidden. Net effect: the
   right-hand columns of every comparison table were unreachable on a phone.
   Additive fix in its own dated file — /assets/* is immutable once deployed. */
.cmp-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 22px 0;
}
.cmp-wrap table {
  min-width: 640px;   /* force the wrapper to scroll instead of the rows spilling */
}
