@charset "UTF-8";
/* 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-resource-profile-hero {
  position: relative;
  z-index: 3;
  padding-bottom: clamp(4rem, 1.7142857143rem + 4.7619047619vw, 6rem);
  text-align: center;
}
.block-resource-profile-hero + .wp-block-embed {
  margin-top: 0;
  margin-bottom: clamp(4rem, 1.7142857143rem + 4.7619047619vw, 6rem);
}
.block-resource-profile-hero + .wp-block-embed .iframe-wrapper {
  margin-top: 0;
}
.block-resource-profile-hero__row {
  justify-content: center;
}
.block-resource-profile-hero__primary-term-inner {
  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-resource-profile-hero__primary-term-inner {
  color: #bdbfd1;
}
.block-resource-profile-hero__title {
  --margin-top: 0;
  margin-bottom: clamp(1.5rem, 0.6428571429rem + 1.7857142857vw, 2.25rem);
}
.block-resource-profile-hero__image-wrapper {
  margin-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-resource-profile-hero__image[src*="block-library-placeholder.png"] {
  width: 100%;
}
.block-resource-profile-hero__meta {
  margin-bottom: 0.5rem;
  font-size: 0;
  line-height: 0;
}
.block-resource-profile-hero__meta span {
  font-size: var(--subtitle-2-font-size);
  line-height: var(--subtitle-2-line-height);
}
.block-resource-profile-hero__meta span:not([class]) {
  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);
  color: #343a7a;
}
.block-resource-profile-hero__meta span:not(:last-child)::after {
  content: "•";
  display: inline-block;
  width: 0.25rem;
  margin: auto 0.5rem;
  color: transparent;
  background-color: #bdbfd1;
  clip-path: circle(0.125rem at 50% 50%);
}
.block-resource-profile-hero__decoration {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: clamp(50rem, -92.8571428571rem + 297.619047619vw, 175rem);
  overflow: hidden;
  pointer-events: none;
}
.block-resource-profile-hero__decoration::before {
  position: absolute;
  left: 50%;
  bottom: 0;
  content: "";
  width: clamp(50rem, -92.8571428571rem + 297.619047619vw, 175rem);
  height: clamp(50rem, -92.8571428571rem + 297.619047619vw, 175rem);
  background: linear-gradient(-90deg, #0587be 0%, #0737cf 50%, #0a1151 100%);
  transform: translate(-50%, 2%) rotate(33.72deg);
  clip-path: url(#crescent-mask);
}
@media (min-width: 48rem) {
  .block-resource-profile-hero__decoration::before {
    background: linear-gradient(90deg, #0587be 0%, #0737cf 50%, #0a1151 100%);
  }
}