/*
Block Name: Columns
Description: An extremely flexible block allowing simple and complex layouts. This block is used for images and static text purposes.
*/


body.wp-admin section { border: 1px solid #ccc; }
body.wp-admin section .container .grid:empty:before { color: red; font-weight: 600; content: "This is an empty *block* - add content"; padding: 2rem 0; display: block;}
body.wp-admin section .container .grid .col:empty:before { color: red; font-weight: 600; content: "This is an empty *column* - add content"; padding: 2rem 0; display: block;}

.block-columns .col > *:last-child{margin-bottom:0;}

@media(max-width:768px){
    .block-columns .grid{grid-template-columns:1fr !important;}
    .block-columns.reverse-mobile .grid{display:flex;flex-direction:column-reverse;}
}