  /* 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;
}
*/
.post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  color: var(--blockColor, #0d0d0d);
}
.post-card:hover, .post-card:focus {
  color: var(--blockHoverColor, #0d0d0d);
}
.post-card:hover .post-card__title, .post-card:focus .post-card__title {
  text-decoration: underline;
}
.bg-light-blue .post-card {
  background-color: #fff;
}
.post-card__image-wrapper {
  margin-bottom: 1.5rem;
  padding-bottom: 55.76923%;
  border-bottom: 10px solid #166886;
}
.post-card__meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0;
}
.post-card__meta span {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
}
.post-card__taxonomy {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 0.5rem 0.75rem;
  background-color: var(--catColor);
}
.post-card__title {
  font-weight: var(--title-1-font-weight);
  font-size: var(--title-1-font-size);
  font-family: var(--title-1-font-family);
  line-height: var(--title-1-line-height);
  margin-bottom: var(--title-1-margin-bottom);
  --margin-top: 0;
  margin-bottom: 0.5rem;
}
.post-card__title:last-child {
  margin-bottom: 0;
}
.post-card__meta:not(.has-t-6-font-size):not(.has-overline-font-size):not(h6):not(.acf-block) + .post-card__title {
  margin-top: 0;
}
.post-card__author {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  margin-top: auto;
}
.post-card__author, .post-card__meta, .post-card__title {
  padding: 0rem 1.25rem;
}