// Grid-dedicated columns spacing

@mixin grid-spacing( $offset ) {
	margin-bottom: -$offset;

	&:empty {
		margin-bottom: 0;
	}

	> * {
		margin-bottom: $offset;
	}
}
