/**
 * Centered layout — avoids 100vw breakout shifting graphics off-center.
 */

body {
  overflow-x: clip;
}

/* WP block content: keep Luxe blocks centered in the column */
.entry-content,
.page-content,
.wp-block-post-content {
  overflow-x: clip;
}

.entry-content > .luxe-page-banner,
.entry-content > .luxe-video-hero,
.entry-content > .luxe-shop,
.page-content > .luxe-page-banner,
.page-content > .luxe-video-hero,
.page-content > .luxe-shop {
  box-sizing: border-box;
  max-width: 100%;
}

/* Shared full-width strip — centered, no horizontal drift */
.luxe-breakout {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
