/**
 * @file
 * Visual styles for nodes.
 */

.node--unpublished {
  background-color: #fff4f4;
}

/* create grid blocks in a node (page) */

/* put this also in css/theme/cke5.css so it gets picked up by the editor */
.ms-cards__wrapper { 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: var(--spc); 
}