/* ── Gutenberg editor canvas width ── */
.wp-block[data-type="swiftframe/grid"],
.wp-block-swiftframe-grid {
    max-width: 95% !important;
    width: 95% !important;
    box-sizing: border-box;
}

/* ── Make the editor inner blocks layout respect the grid ── */
.wp-block-swiftframe-grid .sfg-editor-grid > .block-editor-inner-blocks > .block-editor-block-list__layout {
    display: grid !important;
    grid-template-columns: var(--sfg-columns) !important;
    gap: var(--sfg-gap) !important;
}

/* Ensure inner block wrappers don't break the grid */
.wp-block-swiftframe-grid .sfg-editor-grid > .block-editor-inner-blocks > .block-editor-block-list__layout > * {
    max-width: 100% !important;
    min-width: 0 !important;
}
