  /* 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;
}
*/
@media (min-width: 48rem) {
  .post-card-featured {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.post-card-featured__image-col {
  margin-bottom: 1.5rem;
}
@media (min-width: 48rem) {
  .post-card-featured__image-col {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    margin-right: 1.5rem;
    margin-bottom: 0;
  }
}
.post-card-featured__image-wrapper {
  padding-bottom: 66.25%;
}
.post-card-featured__title {
  font-weight: var(--t2-font-weight);
  font-size: var(--t2-font-size);
  font-family: var(--t2-font-family);
  line-height: var(--t2-line-height);
  --margin-top: rem(12);
  margin-bottom: 0.5rem;
}
.post-card-featured__title a {
  text-decoration: none;
}
.post-card-featured__title a:hover {
  text-decoration: underline;
}
@media (min-width: 48rem) {
  .post-card-featured__content-col {
    max-width: 37rem;
  }
}
.post-card-featured__taxonomy {
  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-right: 0.75rem;
  padding: 0.25rem 0.75rem;
  background-color: var(--catColor);
}
.post-card-featured__taxonomy a {
  text-decoration: none;
}
.post-card-featured__taxonomy.font-white {
  color: #fff;
}
.post-card-featured__excerpt {
  font-weight: var(--body-2-font-weight);
  font-size: var(--body-2-font-size);
  font-family: var(--body-2-font-family);
  line-height: var(--body-2-line-height);
  margin-bottom: var(--body-2-margin-bottom);
}
.post-card-featured__excerpt:last-child {
  margin-bottom: 0;
}
.post-card-featured__author {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  margin-bottom: var(--subtitle-2-margin-bottom);
}
.post-card-featured__author:last-child {
  margin-bottom: 0;
}
.post-card-featured__author a {
  text-decoration: none;
}
.post-card-featured__read-time {
  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);
}