/* 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-blog-cards-grid {
  padding-top: clamp(4rem, 2.8571428571rem + 2.380952381vw, 5rem);
}
.block-blog-cards-grid .sidebar-disabled .eight29-posts-container {
  margin-top: 1rem;
}
.block-blog-cards-grid .result-filters-section {
  margin-bottom: 4.5rem;
}
@media (min-width: 48rem) {
  .block-blog-cards-grid .result-filters-section {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 48rem) {
  .block-blog-cards-grid .result-filters-section .wp-block-button {
    margin: auto 0 auto 2rem;
  }
}
.block-blog-cards-grid .filter-results {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
}
@media (max-width: 47.98rem) {
  .block-blog-cards-grid .filter-results {
    margin-bottom: 1rem;
  }
}
.block-blog-cards-grid .eight29-posts {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  row-gap: 3rem;
  column-gap: clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem);
}
@media (min-width: 36rem) {
  .block-blog-cards-grid .eight29-posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 48rem) {
  .block-blog-cards-grid .eight29-posts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}