/* Baseline layout for the custom CMS "Kolommen" block. Tenant CSS can
   override the class or the per-block css_class for project-specific rhythm. */
.wm-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 32px;
}

.wm-column {
    min-width: 0;
}
