/* 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;
}
*/
.block-content-item {
  margin-bottom: clamp(1.5rem, 0.9285714286rem + 1.1904761905vw, 2rem);
  padding-left: 0.75rem;
  border-left: 1px solid #bdbfd1;
}
.block-content-item:not(:first-child) {
  margin-top: clamp(1.5rem, 0.9285714286rem + 1.1904761905vw, 2rem);
}
.block-content-item .has-overline-font-size {
  color: var(--blockColor, #343a7a);
}