/*
 * Bootstrap 5 Compatibility Utilities for Bootstrap 4
 * ---------------------------------------------------
 * This file provides a small subset of Bootstrap 5 utility classes
 * (such as gap utilities) for projects still running Bootstrap 4.
 *
 * It is intended as a lightweight compatibility bridge to allow
 * gradual adoption of Bootstrap 5 conventions without modifying
 * existing Bootstrap 4 core files.
 *
 * Safe to remove once the project is fully upgraded to Bootstrap 5.
 */
 
/*
 * Gap utilities
 */

/* Both directions */
.gap-0 { gap: 0 !important; }
.gap-1 { gap: .25rem !important; }
.gap-2 { gap: .5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 3rem !important; }

/* Row gap only (vertical spacing) */
.row-gap-0 { row-gap: 0 !important; }
.row-gap-1 { row-gap: .25rem !important; }
.row-gap-2 { row-gap: .5rem !important; }
.row-gap-3 { row-gap: 1rem !important; }
.row-gap-4 { row-gap: 1.5rem !important; }
.row-gap-5 { row-gap: 3rem !important; }

/* Column gap only (horizontal spacing) */
.column-gap-0 { column-gap: 0 !important; }
.column-gap-1 { column-gap: .25rem !important; }
.column-gap-2 { column-gap: .5rem !important; }
.column-gap-3 { column-gap: 1rem !important; }
.column-gap-4 { column-gap: 1.5rem !important; }
.column-gap-5 { column-gap: 3rem !important; }