/**
 * Claritee Gutenberg Block Styles
 * Block: claritee/block-0
 *
 * Add your custom CSS below.
 * This CSS will apply to both the editor and frontend.
 */

/* Remove WordPress layout constraints */
.wp-block-claritee-block-0 {
  max-width: none !important;
  width: 100% !important;
}

/* Override WordPress constrained layout */
.wp-block-claritee-block-0.is-layout-constrained > * {
  max-width: none !important;
}

/* Ensure full-width blocks work */
.wp-block-claritee-block-0.alignfull {
  max-width: none !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* Claritee wrapper should not add constraints */
.claritee-block-wrapper {
  max-width: none !important;
  width: 100% !important;
}

/* Preserve Claritee's original layout */
.claritee-block-wrapper > * {
  max-width: none !important;
}

/* === YOUR CUSTOM CSS BELOW === */

