/* stylelint-disable */
:root {
  --vf-color--green: #18974c;
  --vf-color--green--darkest: #0a5032;
  --vf-color--green--dark: #007b53;
  --vf-color--green--light: #6cc24a;
  --vf-color--green--lightest: #d0debb;
  --vf-color--grey: #707372;
  --vf-color--grey--darkest: #373a36;
  --vf-color--grey--dark: #54585a;
  --vf-color--grey--light: #a8a99e;
  --vf-color--grey--lightest: #d0d0ce;
  --vf-color--red: #d41645;
  --vf-color--red--dark: #a6093d;
  --vf-color--red--light: #e58f9e;
  --vf-color--blue: #3b6fb6;
  --vf-color--blue--dark: #193f90;
  --vf-color--blue--light: #8bb8e8;
  --vf-color--purple: #734595;
  --vf-color--purple--dark: #563d82;
  --vf-color--purple--light: #cba3d8;
  --vf-color--orange: #f49e17;
  --vf-color--orange--dark: #b65417;
  --vf-color--orange--light: #efc06e;
  --vf-color--yellow: #f4c61f;
  --vf-color--yellow--dark: #ffb81c;
  --vf-color--yellow--light: #fdd757;
  --vf-color--bright-green: #a1be1f;
  --vf-color--bright-green--dark: #7fb428;
  --vf-color--bright-green--light: #e2e868;
}

:root {
  --vf-color__text--primary: #1a1c1a;
  --vf-color__text--secondary: #373a36;
  --vf-color__link: #3b6fb6;
  --vf-color__link--hover: #193f90;
  --vf-color__link--focus: #193f90;
  --vf-color__link--visited: #563d82;
}

:root {
  --vf-color__button__text--primary: #ffffff;
  --vf-color__button__border--primary: #3b6fb6;
  --vf-color__button__background--primary: #3b6fb6;
  --vf-color__button__shadow--primary: #193f90;
  --vf-color__button__text--secondary: #3b6fb6;
  --vf-color__button__border--secondary: #3b6fb6;
  --vf-color__button__background--secondary: #ffffff;
  --vf-color__button__shadow--secondary: #193f90;
  --vf-color__button__text--tertiary: #ffffff;
  --vf-color__button__border--tertiary: #373a36;
  --vf-color__button__background--tertiary: #373a36;
  --vf-color__button__shadow--tertiary: #000000;
}

:root {
  --vf-color__brand: #18974c;
  --vf-color__brand--dark: #0a5032;
}

:root {
  --vf-ui-color--black: #000000;
  --vf-ui-color--grey: #d8d8d8;
  --vf-ui-color--grey--light: #f3f3f3;
  --vf-ui-color--yellow: #fffadc;
  --vf-ui-color--red: #d32f2f;
  --vf-ui-color--white: #ffffff;
  --vf-ui-color--off-white: #fafafa;
}

:root {
  --vf-color--neutral--0: #ffffff;
  --vf-color--neutral--100: #f3f3f3;
  --vf-color--neutral--200: #e4e4e4;
  --vf-color--neutral--300: #d0d0ce;
  --vf-color--neutral--400: #a9abaa;
  --vf-color--neutral--500: #8d8f8e;
  --vf-color--neutral--600: #707372;
  --vf-color--neutral--700: #54585a;
  --vf-color--neutral--800: #373a36;
  --vf-color--neutral--900: #000000;
}

:root {
  --vf-theme--primary: #3b6fb6;
  --vf-theme--primary--dark: #193f90;
  --vf-theme--secondary: #18974c;
  --vf-theme--secondary--dark: #007b53;
  --vf-theme--tertiary: #54585a;
  --vf-theme--quaternary: #f4c61f;
  --vf-theme--quinary: #d0d0ce;
}

/* stylelint-enable */
/*!
* Component: @visual-framework/embl-grid
* Version: 2.2.0
* Location: components/undefined
*/
.embl-grid > :first-child {
  grid-column: 1/-1;
}
@media (min-width: 846px) {
  .embl-grid > :first-child {
    grid-column: span 1;
  }
}
@media (max-width: 845px) {
  .embl-grid > *:not(:first-child) {
    grid-column: 1/-1;
  }
}
@media (min-width: 600px) {
  .embl-grid {
    /* stylelint-disable declaration-colon-space-after */
    --embl-grid:
      var(--embl-grid-module--prime)
      [main-start]
      repeat(auto-fit, minmax(200px, 1fr))
      [main-end];
    display: grid;
    gap: var(--page-grid-gap);
    grid-template-columns: var(--vf-custom-grid-layout, var(--embl-grid));
  }
}

.embl-grid--has-centered-content > *:last-child {
  grid-column-start: 2;
}
@media (min-width: 1024px) {
  .embl-grid--has-centered-content {
    --embl-grid:
      var(--embl-grid-module--prime)
      auto
      var(--embl-grid-module--prime);
  }
  .embl-grid--has-centered-content > *:last-child {
    grid-column-start: unset;
  }
}

.embl-grid--has-sidebar {
  --embl-grid:
    var(--embl-grid-module--prime)
    [main-start]
    1fr
    [main-end]
    21em;
  /* stylelint-enable */
}
@media (min-width: 846px) and (max-width: 1023px) {
  .embl-grid--has-sidebar > *:first-child {
    grid-column: 1/2;
  }
  .embl-grid--has-sidebar > * {
    grid-column: 2/-1;
  }
}
@media (min-width: 1024px) and (max-width: 1299px) {
  .embl-grid--has-sidebar {
    --embl-grid:
      var(--embl-grid-module--prime)
      [main-start]
      1fr
      [main-end]
      18em;
  }
}

@media (min-width: 1024px) {
  .embl-grid-has-sidebar--hairline > *:last-child {
    position: relative;
  }
  .embl-grid-has-sidebar--hairline > *:last-child::before {
    background-color: #d8d8d8;
    content: "";
    height: 100%;
    left: calc(var(--page-grid-gap) / -2);
    position: absolute;
    width: 1px;
  }
}

/*!
 * Component: @visual-framework/vf-grid
 * Version: 1.4.1
 * Location: components/undefined
 */
/* stylelint-disable order/order */
.vf-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.vf-grid > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 0 1rem 1.2292328%;
}

.vf-grid > *:first-child {
  margin-left: 0;
}

[class*=vf-grid__] {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.vf-grid__col-2 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49.3853836%;
          flex: 0 0 49.3853836%;
  max-width: 49.3853836%;
}
.vf-grid__col-2 > *:nth-of-type(3n) {
  margin-left: 0;
}

.vf-grid__col-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32.513844467%;
          flex: 0 0 32.513844467%;
  max-width: 32.513844467%;
}
.vf-grid__col-3 > *:nth-of-type(4n) {
  margin-left: 0;
}

.vf-grid__col-4 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24.0780754%;
          flex: 0 0 24.0780754%;
  max-width: 24.0780754%;
}
.vf-grid__col-4 > *:nth-of-type(5n) {
  margin-left: 0;
}

.vf-grid__col-5 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 19.01661376%;
          flex: 0 0 19.01661376%;
  max-width: 19.01661376%;
}
.vf-grid__col-5 > *:nth-of-type(6n) {
  margin-left: 0;
}

.vf-grid__col-6 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15.642306333%;
          flex: 0 0 15.642306333%;
  max-width: 15.642306333%;
}
.vf-grid__col-6 > *:nth-of-type(7n) {
  margin-left: 0;
}

@media (max-width: 1023px) {
  .vf-grid {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .vf-grid > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49.18305%;
            flex: 0 0 49.18305%;
  }
}
@supports (display: grid) {
  .vf-grid {
    display: grid;
    grid-column: main;
    grid-column-gap: var(--page-grid-gap);
    grid-row-gap: var(--page-row-gap, var(--page-grid-gap));
  }
  @media (min-width: 840px) {
    .vf-grid {
      grid-auto-flow: column;
    }
  }
  @media (max-width: 1299px) {
    .embl-grid .vf-grid {
      grid-column: 1/-1;
    }
  }
  .vf-grid > * {
    margin: 0;
    max-width: unset;
  }
  [class*=grid__] {
    grid-auto-flow: unset;
  }
  .vf-grid__col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  @media (min-width: 768px) {
    .vf-grid__col-2 {
      grid-template-columns: repeat(2, 1fr);
    }
    .vf-grid__col-3 {
      grid-template-columns: repeat(3, 1fr);
    }
    .vf-grid__col-4 {
      grid-template-columns: repeat(2, 1fr);
    }
    .vf-grid__col-5 {
      grid-template-columns: repeat(3, 1fr);
    }
    .vf-grid__col-6 {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (min-width: 1024px) {
    .vf-grid__col-4 {
      grid-template-columns: repeat(4, 1fr);
    }
    .vf-grid__col-5 {
      grid-template-columns: repeat(5, 1fr);
    }
    .vf-grid__col-6 {
      grid-template-columns: repeat(6, 1fr);
    }
  }
  .vf-grid__col--span-2 {
    grid-column-end: span 2;
  }
  .vf-grid__col--span-3 {
    grid-column-end: span 3;
  }
  .vf-grid__col--span-4 {
    grid-column-end: span 4;
  }
  .vf-grid__col--span-5 {
    grid-column-end: span 5;
  }
  .vf-grid__col--span-6 {
    grid-column-end: span 6;
  }
  .vf-grid__col--span-all {
    grid-column: 1/-1;
  }
  .vf-grid__row--span-2 {
    grid-row-end: span 2;
  }
  .vf-grid__row--span-3 {
    grid-row-end: span 3;
  }
  .vf-grid__row--span-4 {
    grid-row-end: span 4;
  }
  .vf-grid__row--span-5 {
    grid-row-end: span 5;
  }
  .vf-grid__row--span-6 {
    grid-row-end: span 6;
  }
  .vf-grid__row--span-all {
    grid-row: 1/-1;
  }
}
/* stylelint-enable order/order */
/*!
 * Component: @visual-framework/vf-section-header
 * Version: 1.5.5
 * Location: components/undefined
 */
.vf-section-header__heading {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-size: 24px;
  color: #1a1c1a;
  font-weight: 500;
  line-height: 1.333;
  margin: var(--vf-stack-margin, 0) 0 0 0;
}
.vf-section-header__heading + .vf-section-header__subheading, .vf-section-header__heading + .vf-section-header__content {
  margin-top: 1.25rem;
}

.vf-section-header__heading--is-link,
.vf-section-header__heading--is-link a {
  border-bottom: none;
  text-decoration: none;
  color: #3b6fb6;
  cursor: pointer;
  display: grid;
  grid-column-gap: 0.25rem;
  grid-template-columns: auto 1fr;
}
.vf-section-header__heading--is-link:visited,
.vf-section-header__heading--is-link a:visited {
  color: color-interactive();
  border-bottom: none;
}
.vf-section-header__heading--is-link:visited:hover,
.vf-section-header__heading--is-link a:visited:hover {
  color: color-interactive();
  text-decoration: underline;
}
.vf-section-header__heading--is-link:hover,
.vf-section-header__heading--is-link a:hover {
  color: #193f90;
  border-bottom: none;
  text-decoration: underline;
}
.vf-section-header__heading--is-link .vf-section-header__icon,
.vf-section-header__heading--is-link a .vf-section-header__icon {
  fill: currentColor;
  padding-top: 0.1em;
  -webkit-transform: translateX(0.25rem);
          transform: translateX(0.25rem);
  -webkit-transition-duration: 125ms;
          transition-duration: 125ms;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95);
          transition-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
.vf-section-header__heading--is-link:hover .vf-section-header__icon, .vf-section-header__heading--is-link:focus .vf-section-header__icon,
.vf-section-header__heading--is-link a:hover .vf-section-header__icon,
.vf-section-header__heading--is-link a:focus .vf-section-header__icon {
  -webkit-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
}
.vf-section-header__heading--is-link:hover:visited, .vf-section-header__heading--is-link:focus:visited,
.vf-section-header__heading--is-link a:hover:visited,
.vf-section-header__heading--is-link a:focus:visited {
  color: #193f90;
}

.vf-section-header__subheading {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-size: 21px;
  color: #1a1c1a;
  font-weight: 500;
  line-height: 1.29;
  margin: var(--vf-stack-margin, 0) 0 0 0;
}

.vf-section-header__text {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-size: 19px;
  color: #1a1c1a;
  font-weight: 400;
  line-height: 1.421;
  margin: var(--vf-stack-margin, 0) 0 8px 0;
}
.vf-section-header__text a,
.vf-section-header__text .vf-link {
  border-bottom: none;
  text-decoration: none;
  color: #3b6fb6;
}
.vf-section-header__text a:visited,
.vf-section-header__text .vf-link:visited {
  color: #563d82;
  border-bottom: none;
}
.vf-section-header__text a:visited:hover,
.vf-section-header__text .vf-link:visited:hover {
  color: #563d82;
  text-decoration: underline;
}
.vf-section-header__text a:hover,
.vf-section-header__text .vf-link:hover {
  color: #193f90;
  border-bottom: none;
  text-decoration: underline;
}
.vf-section-header__text:last-of-type {
  margin: 0 0 0 0;
}
.vf-section-header__heading + .vf-section-header__text {
  margin-top: 24px;
}
.vf-section-header__subheading + .vf-section-header__text {
  margin-top: 16px;
}
.vf-section-header__heading + .vf-section-header__text {
  margin-top: 1.25rem;
}
.vf-section-header__subheading + .vf-section-header__text {
  margin-top: 1rem;
}

/*!
 * Component: @visual-framework/vf-summary
 * Version: 1.6.1
 * Location: components/undefined
 */
.vf-summary {
  --vf-text-margin--bottom: 16px;
}

.vf-summary--profile {
  --vf-icon--avatar-width: 160px;
}

.vf-summary {
  align-self: start;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  display: grid;
  margin-bottom: 2rem;
  position: relative;
}
.vf-summary > *:last-child {
  margin-bottom: 0;
}

.vf-summary__category {
  --vf-text-margin--bottom: 0;
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #1a1c1a;
  font-weight: 400;
  line-height: 1.57;
  margin: 0 0 16px 0;
  margin: var(--vf-stack-margin, 0) 0 var(--vf-text-margin--bottom, 16px) 0;
  color: #707372;
  margin-bottom: 0;
}

.vf-summary__date {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #1a1c1a;
  font-weight: 400;
  line-height: 1.57;
  margin: 0 0 16px 0;
  margin: var(--vf-stack-margin, 0) 0 var(--vf-text-margin--bottom, 16px) 0;
  color: #707372;
}

.vf-summary__source {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #1a1c1a;
  font-weight: 400;
  line-height: 1.57;
  margin: 0 0 16px 0;
  margin: var(--vf-stack-margin, 0) 0 var(--vf-text-margin--bottom, 16px) 0;
  color: #707372;
  font-style: italic;
}

.vf-summary__link {
  border-bottom: none;
  text-decoration: none;
  color: #3b6fb6;
}
.vf-summary__link:visited {
  color: #563d82;
  border-bottom: none;
}
.vf-summary__link:visited:hover {
  color: #563d82;
  text-decoration: underline;
}
.vf-summary__link:hover {
  color: #193f90;
  border-bottom: none;
  text-decoration: underline;
}

.vf-summary__link--overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.vf-summary__meta {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #1a1c1a;
  font-weight: 400;
  line-height: 1.57;
  margin: 0 0 16px 0;
  margin: var(--vf-stack-margin, 0) 0 var(--vf-text-margin--bottom, 16px) 0;
}

.vf-summary__text {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-size: 19px;
  color: #1a1c1a;
  font-weight: 400;
  line-height: 1.421;
  margin: 0 0 16px 0;
  margin: var(--vf-stack-margin, 0) 0 var(--vf-text-margin--bottom, 16px) 0;
}

.vf-summary__title {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-size: 21px;
  color: #1a1c1a;
  font-weight: 500;
  line-height: 1.29;
  margin: 0 0 16px 0;
  margin: var(--vf-stack-margin, 0) 0 var(--vf-text-margin--bottom, 16px) 0;
  font-weight: 400;
}

.vf-summary__author {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #1a1c1a;
  font-weight: 400;
  line-height: 1.57;
  margin: 0 0 16px 0;
  margin: var(--vf-stack-margin, 0) 0 var(--vf-text-margin--bottom, 16px) 0;
  color: #707372;
  font-style: italic;
}

/*!
 * Component: @visual-framework/vf-summary-container
 * Version: 1.0.0
 * Location: components/undefined
 */