/* Generic Styles for the Block Editor 
DO NOT PLACE STYLES FOR SPECIFIC BLOCKS HERE
*/

/* Main column width */
.wp-block {
    max-width: 800px;
}
 
/* Width of "wide" blocks */
.wp-block[data-align="wide"] {
    max-width: 1400px;
}
 
/* Width of "full-wide" blocks */
.wp-block[data-align="full"] {
    max-width: none;
}

/* Spotlight: container uses position:absolute/height:100% which requires a
   parent with a defined height. In the editor no such parent exists, so
   override to keep it in document flow and give it a visible minimum height. */
.psrc-spotlight-container {
    position: relative !important;
    min-height: 300px;
}

/* Hide ACF Repeaters in the Settings Panel */
.acf-block-component .acf-field[data-type="repeater"] { display: none !important; }

/* Show ACF Repeaters in the Editing Modal */
.acf-block-form-modal .acf-field-repeater,
.acf-block-form-modal .acf-field[data-type="repeater"] { display: block !important; }