/* ==========================================
   ATOMS CUSTOM BLOCKS - FULL WIDTH SUPPORT
   ========================================== */

/* Remove padding from containers when they have full-width blocks */
.section-container:has(.alignfull) {
  padding: 0;
}

.entry-content:has(.alignfull) {
  padding: 0;
}

/* Remove WordPress default block margins */
.entry-content > .alignfull,
.is-layout-flow > .alignfull,
.is-layout-constrained > .alignfull {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Ensure full-width blocks stretch edge to edge */
.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* Prevent horizontal scroll from full-width blocks */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
}
