/* stylelint-disable order/order */
/* stylelint-enable order/order */
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/*
This file can be used for optional additions to the Figma-generated font style mixins in the figma/_figma-font-styles.scss file.

For example, if you want to add styles to the @overline mixin, just create a mixin here called @overline-custom and that CSS will be added to the primary mixin:

@mixin overline-custom() {
	font-weight: 700;
}
*/
@media (min-width: 48rem) {
  .block-text-columns .wp-block-columns-wrapper .row {
    margin-right: clamp(-2rem, 0.1428571429rem + -2.380952381vw, -1rem);
    margin-left: clamp(-2rem, 0.1428571429rem + -2.380952381vw, -1rem);
  }
}
@media (min-width: 48rem) {
  .block-text-columns .wp-block-column {
    padding-right: clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem);
    padding-left: clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem);
  }
}