/* 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-news-archive-hero {
  position: relative;
  z-index: 1;
  padding: clamp(6rem, -1.2857142857rem + 15.1785714286vw, 12.375rem) 0 clamp(6rem, 2.5714285714rem + 7.1428571429vw, 9rem) 0 !important;
  overflow: hidden;
}
body.page-has-alt-nav .block-news-archive-hero:first-child {
  margin-top: -4rem;
}
body.page-has-alt-nav .block-news-archive-hero:first-child::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: 0;
  width: 100%;
  height: 4rem;
  background: linear-gradient(180deg, rgba(10, 17, 81, 0.75) 0%, rgba(10, 17, 81, 0) 100%);
}
@media (max-width: 47.98rem) {
  body.page-has-alt-nav .block-news-archive-hero:first-child::after {
    z-index: 2;
  }
}
.block-news-archive-hero__content > :last-child {
  margin-bottom: 1.5rem;
}
.block-news-archive-hero__content > h1 {
  font-weight: var(--overline-font-weight);
  font-size: var(--overline-font-size);
  font-family: var(--overline-font-family);
  line-height: var(--overline-line-height);
  letter-spacing: var(--overline-letter-spacing);
  text-transform: var(--overline-text-transform);
  display: inline-block;
  padding: 0.5rem 0.75rem;
  color: #0a0028 !important;
  background-color: #4bc031;
  margin-bottom: 1.5rem;
}
.bg-navy .block-news-archive-hero__content > h1 {
  color: #bdbfd1;
}
.block-news-archive-hero__decoration {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../../images/overlay-1.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: clamp(50rem, 23.6842105263rem + 112.2807017544vw, 150rem) auto;
  opacity: 0.4;
  overflow: hidden;
  pointer-events: none;
}
@media (min-width: 48rem) {
  .block-news-archive-hero__decoration {
    height: calc(100% + clamp(5rem, -0.7142857143rem + 11.9047619048vw, 10rem));
  }
}