/* 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-event-cards-grid {
  padding-top: clamp(4rem, 2.8571428571rem + 2.380952381vw, 5rem);
}
.block-event-cards-grid .sidebar-disabled .eight29-posts-container {
  margin-top: 1rem;
}
.block-event-cards-grid .result-filters-section {
  margin-bottom: 4.5rem;
}
@media (min-width: 48rem) {
  .block-event-cards-grid .result-filters-section {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 48rem) {
  .block-event-cards-grid .result-filters-section .wp-block-button {
    margin: auto 0 auto 2rem;
  }
}
.block-event-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-event-cards-grid .filter-results {
    margin-bottom: 1rem;
  }
}
.block-event-cards-grid .eight29-posts {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  row-gap: 2.5rem;
  column-gap: clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem);
}
.block-event-cards-grid__month-year {
  font-weight: var(--title-2-font-weight);
  font-size: var(--title-2-font-size);
  font-family: var(--title-2-font-family);
  line-height: var(--title-2-line-height);
  --margin-top: clamp(1.5rem, 0.9285714286rem + 1.1904761905vw, 2rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: clamp(0rem, -0.5714285714rem + 1.1904761905vw, 0.5rem);
  color: #343a7a;
}
.block-event-cards-grid__month-year::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  margin-left: clamp(1.5rem, 0.6428571429rem + 1.7857142857vw, 2.25rem);
  background-color: #bdbfd1;
}