/*
 * Global full-width alignment correction.
 * The page designs already provide their own responsive inner spacing; the
 * theme's additional 72px post-content padding created a white strip on the
 * left and horizontal overflow on the right.
 */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.wp-block-post-content.entry-content.alignfull.has-global-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
