  /* stylelint-disable order/order */
/* stylelint-enable order/order */
/*
 * 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-program-related__top {
  margin-bottom: clamp(2rem, 0.8571428571rem + 2.380952381vw, 3rem);
}
@media (min-width: 36rem) {
  .block-program-related__top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.block-program-related__top .wp-block-buttons {
  margin-top: auto;
}
@media (min-width: 36rem) {
  .block-program-related__top * {
    margin-top: auto;
    margin-bottom: auto;
  }
}
.block-program-related__post-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4.5rem;
  column-gap: clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem);
}
@media (min-width: 36rem) {
  .block-program-related__post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.block-program-related .program-card.program-card--horizontal {
  border: 0.0625rem solid #c7cad1;
}