/* === カラム間隔 (gap) === */
.wp-block-columns.has-columns-gap-20 {
    gap: 20px !important;
}
.wp-block-columns.has-columns-gap-60 {
    gap: 60px !important;
}

/* === カラム横方向配置 (space-between) === */
.wp-block-columns.is-justify-between {
    justify-content: space-between !important;
}

/* === エディタ内でも同じ見た目に === */
.editor-styles-wrapper .wp-block-columns.has-columns-gap-20 { gap: 20px !important; }
.editor-styles-wrapper .wp-block-columns.has-columns-gap-60 { gap: 60px !important; }
.editor-styles-wrapper .wp-block-columns.is-justify-between { justify-content: space-between !important; }
