  /* 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-blog-archive-hero {
  position: relative;
  z-index: 1;
}
@media (min-width: 48rem) {
  .block-blog-archive-hero::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    z-index: -1;
    width: 26.375rem;
    height: 100%;
    background-color: #ebd7a8;
    clip-path: polygon(0 0, 100% 0, 65% 100%, 0% 100%);
  }
  .block-blog-archive-hero::after {
    position: absolute;
    left: 20.4125rem;
    bottom: 0;
    content: "";
    z-index: 1;
    width: 0.6rem;
    height: 35%;
    max-height: 16.4375rem;
    background-color: #537a41;
    transform: skew(-11deg, 0deg);
  }
}
@media (max-width: 47.98rem) {
  .block-blog-archive-hero .post-card-featured__image-col::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    z-index: -1;
    width: 8.5rem;
    height: 60%;
    max-height: 22.6875rem;
    background-color: #ebd7a8;
    clip-path: polygon(0 0, 100% 0, 65% 100%, 0% 100%);
  }
}
@media (max-width: 47.98rem) {
  .block-blog-archive-hero .post-card-featured__image-wrapper::after {
    position: absolute;
    left: 2rem;
    bottom: 0;
    content: "";
    z-index: 1;
    width: 0.6rem;
    height: 35%;
    max-height: 23.65rem;
    background-color: #537a41;
    transform: skew(-11deg, 0deg);
  }
}
.block-blog-archive-hero__title {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(1.5rem, -0.2142857143rem + 3.5714285714vw, 3rem);
}
.block-blog-archive-hero__title h1 {
  font-weight: var(--t3-font-weight);
  font-size: var(--t3-font-size);
  font-family: var(--t3-font-family);
  line-height: var(--t3-line-height);
  --margin-top: 1em;
  margin-bottom: var(--t3-margin-bottom);
  display: inline-block;
  padding: 0.375rem 1.5625rem;
  color: #fff;
  text-transform: none;
  background-color: #0d0d0d;
  clip-path: polygon(5% 0%, 100% 0, 95% 100%, 0% 100%);
}
.block-blog-archive-hero__title h1:last-child {
  margin-bottom: 0;
}