/*!
 * km-custom.css - fixes for Kevin Mayhew custom sections on Xtra 8.0.
 *
 * .page-width: the custom product-page sections (product-combo-simple,
 * product-combo-info, custom-content-columns) wrap content in
 * class="page-width", but the theme never defined that class. In 6.2 the
 * surrounding layout happened to constrain them; 8.0 renders sections
 * full-bleed, so they spanned the whole window. This restores a centred,
 * constrained content width. Tweak max-width to taste.
 */
.page-width {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--rpp, 20px);
  padding-right: var(--rpp, 20px);
  box-sizing: border-box;
}
