/* 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-blog-author-hero {
  position: relative;
  z-index: 1;
  padding: clamp(8rem, 3rem + 10.4166666667vw, 12.375rem) 0 clamp(4rem, 1.1428571429rem + 5.9523809524vw, 6.5rem) 0 !important;
  overflow: hidden;
}
body.page-has-alt-nav .block-blog-author-hero:first-child {
  margin-top: -4rem;
}
body.page-has-alt-nav .block-blog-author-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-blog-author-hero:first-child::after {
    z-index: 2;
  }
}
@media (min-width: 48rem) {
  .block-blog-author-hero__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 48rem) {
  .block-blog-author-hero__content {
    padding-right: clamp(2rem, -6rem + 16.6666666667vw, 9rem);
  }
}
.block-blog-author-hero__image-wrapper {
  padding-bottom: 100%;
  border-radius: 50%;
}
.block-blog-author-hero__image-col {
  max-width: 19rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 48rem) {
  .block-blog-author-hero__image-col {
    flex: 0 0 19rem;
    margin-right: 0;
  }
}
@media (max-width: 47.98rem) {
  .block-blog-author-hero__image-col {
    margin-top: 3rem;
  }
}
.block-blog-author-hero__label {
  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: 0.625rem;
}
.bg-navy .block-blog-author-hero__label {
  color: #bdbfd1;
}
.block-blog-author-hero__title {
  --margin-top: 0;
}
@media (min-width: 48rem) {
  .block-blog-author-hero__description {
    grid-column: 7/span 6;
  }
}
.block-blog-author-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-blog-author-hero__decoration {
    height: calc(100% + clamp(5rem, -0.7142857143rem + 11.9047619048vw, 10rem));
  }
}