/**
 * CM Tiles Block - Centralized Styles
 * 
 * This file serves as a reference point for the block.
 * Actual styling is handled by the cm-tiles plugin CSS files which have been
 * updated with the three-selector pattern to support FSE.
 * 
 * The plugin's CSS files (layout_common.css, layout_1.css, layout_2.css, layout_3.css)
 * contain all the necessary styling with the proper selectors:
 * - .editor-styles-wrapper .wp-block-w4ya-cm-tiles .{class}
 * - .wp-block-w4ya-cm-tiles .{class}
 * - .{class}
 */

/* Block wrapper styles - SSOT Two-Selector Pattern */
.editor-styles-wrapper .wp-block-w4ya-cm-tiles,
.wp-block-w4ya-cm-tiles {
    display: block;
    width: 100%;
    position: relative;
    clear: both;
}

/* FSE Editor-specific positioning - now both blocks use ServerSideRender consistently */
.block-editor-block-list__layout .wp-block-w4ya-cm-tiles {
    position: relative;
}

