/* stylelint-disable order/order */
/*
* Converts an pixel value into a rem value.
*
* @param string  $values    the pixel value(s) as a number. Can convert multiple values if values separated by a space.
* @param integer $base      the base pixel value.
*
* @return string   a space-separated string of rem values.
*/
/*
* This is an abbreviated wrapper for the responsive-values function.
*/
/*
* Creates a CSS clamp value that sizes between breakpoints.
*
* @param integer $min                    the minimum pixel value.
* @param integer $max                    the maximum pixel value.
* @param string  $smallest-breakpoint    the name of the smallest breakpoint from the $grid-breakpoints variable.
* @param string  $largest-breakpoint     the name of the largest breakpoint from the $grid-breakpoints variable.
* @param string  $screen                 whether to use a horizontal (width) breakpoint or a vertical (height) breakpoint.
*
* @return string   a CSS clamp property value.
*/
/*
* Outputs a font family value from the $fonts variable.
*
* @param string  $key   the font key.
*
* @return string   a font family value.
*/
/*
* Outputs a color value from the $paints or $additional-paints variables.
*
* @param string   $key   the color name.
*
* @return string   a color value.
*/
/*
* Outputs an effect value from the $effects variable.
*
* @param string  $key   the effect name.
*
* @return string   an effect value.
*/
/* stylelint-enable order/order */
/*
* Used to target heading selectors.
*
* @param integer  $start               the first heading element to target. 1 through 6.
* @param integer  $end                 the last heading element to target. 1 through 6.
* @param string   $beforeCombinator    the CSS combinator to include before the heading classes.
* @param string   $afterCombinator     the CSS combinator to include after the heading classes.
* @param boolean  $includeFontClasses  whether or not to include the .has-t-1... classes or just output the standard heading elements.
*
* @return string  The included CSS wrapped with selectors for the specified headings.
*/
/*
* Used to add properties to a for a pseudo element to make an icon based on the iconfont set.
*
* @param string   $content     the content for the icon. Usually uses one of the iconfont variables.
* @param string   $font-size   the font size with unit.
*
* @return string  The CSS properties for the icon.
*/
/*
* Generates CSS to fit an element into the 12-column grid. Only works when used on an element where the parent element is the width of the entire page.
*
* @return string  CSS properties to set the width of the element to the specified column sizes.
*/
/*
* Used to target elements with a background color that has a text color different from the standard color.
*
* @param string   $additionalSelectors     additional comma-separated selectors to add.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to target button elements with a background color set to use the alt button colors.
*
* @param string   $additionalSelectors     additional comma-separated selectors to add.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/*
* Used to visually hide an element but still allow screen readers to access the element and its contents for accessibility.
*
* @return string  The styles needed to visually hide an element.
*/
.fade-up {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: 300ms opacity 300ms ease-out, 300ms transform 300ms ease-out;
}
.fade-up.in-viewport {
  opacity: 1 !important;
  transform: none !important;
}

/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma which task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/*
* This array is used to specify the fonts used on the project with the following parameters:
	base - the name for use in the font() mixin.
		css - the output CSS value.
		figma-name: - the 'font-family' name ued in the _figma-font-variable.scss file.
	)
*/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task which creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/* If additional colors need to be added to the _figma-color-variables.scss, they can be added to this variable: */
/* This variable controls the background colors generated in the ACF background_color field and the background color classes - bg-white, bg-neutral-10, etc: */
/* This variable controls the default text color on a light background. Used with paint(text) to generate a CSS variable that changes to use background font colors. */
/* If a background color uses a different font color than the default color, use these variables to specify the alternate colors */
/* Backgrounds specified in this variable will use the alternative text colors: */
/* Backgrounds specified in this variable will use the alternative button colors: */
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/****************
 * Block Spacing
 *
 * These variables are based on the "Spacing" rules found in the "Foundations" section in Figma. These control the default spacing between blocks of different colors.
 ****************/
/*
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;
}
*/
/* stylelint-disable order/order */
/*
* Converts an pixel value into a rem value.
*
* @param string  $values    the pixel value(s) as a number. Can convert multiple values if values separated by a space.
* @param integer $base      the base pixel value.
*
* @return string   a space-separated string of rem values.
*/
/*
* This is an abbreviated wrapper for the responsive-values function.
*/
/*
* Creates a CSS clamp value that sizes between breakpoints.
*
* @param integer $min                    the minimum pixel value.
* @param integer $max                    the maximum pixel value.
* @param string  $smallest-breakpoint    the name of the smallest breakpoint from the $grid-breakpoints variable.
* @param string  $largest-breakpoint     the name of the largest breakpoint from the $grid-breakpoints variable.
* @param string  $screen                 whether to use a horizontal (width) breakpoint or a vertical (height) breakpoint.
*
* @return string   a CSS clamp property value.
*/
/*
* Outputs a font family value from the $fonts variable.
*
* @param string  $key   the font key.
*
* @return string   a font family value.
*/
/*
* Outputs a color value from the $paints or $additional-paints variables.
*
* @param string   $key   the color name.
*
* @return string   a color value.
*/
/*
* Outputs an effect value from the $effects variable.
*
* @param string  $key   the effect name.
*
* @return string   an effect value.
*/
/* stylelint-enable order/order */
/*
* Used to target heading selectors.
*
* @param integer  $start               the first heading element to target. 1 through 6.
* @param integer  $end                 the last heading element to target. 1 through 6.
* @param string   $beforeCombinator    the CSS combinator to include before the heading classes.
* @param string   $afterCombinator     the CSS combinator to include after the heading classes.
* @param boolean  $includeFontClasses  whether or not to include the .has-t-1... classes or just output the standard heading elements.
*
* @return string  The included CSS wrapped with selectors for the specified headings.
*/
/*
* Used to add properties to a for a pseudo element to make an icon based on the iconfont set.
*
* @param string   $content     the content for the icon. Usually uses one of the iconfont variables.
* @param string   $font-size   the font size with unit.
*
* @return string  The CSS properties for the icon.
*/
/*
* Generates CSS to fit an element into the 12-column grid. Only works when used on an element where the parent element is the width of the entire page.
*
* @return string  CSS properties to set the width of the element to the specified column sizes.
*/
/*
* Used to target elements with a background color that has a text color different from the standard color.
*
* @param string   $additionalSelectors     additional comma-separated selectors to add.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to target button elements with a background color set to use the alt button colors.
*
* @param string   $additionalSelectors     additional comma-separated selectors to add.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/*
* Used to visually hide an element but still allow screen readers to access the element and its contents for accessibility.
*
* @return string  The styles needed to visually hide an element.
*/
.fade-up {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: 300ms opacity 300ms ease-out, 300ms transform 300ms ease-out;
}
.fade-up.in-viewport {
  opacity: 1 !important;
  transform: none !important;
}

/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma which task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/*
* This array is used to specify the fonts used on the project with the following parameters:
	base - the name for use in the font() mixin.
		css - the output CSS value.
		figma-name: - the 'font-family' name ued in the _figma-font-variable.scss file.
	)
*/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task which creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/* If additional colors need to be added to the _figma-color-variables.scss, they can be added to this variable: */
/* This variable controls the background colors generated in the ACF background_color field and the background color classes - bg-white, bg-neutral-10, etc: */
/* This variable controls the default text color on a light background. Used with paint(text) to generate a CSS variable that changes to use background font colors. */
/* If a background color uses a different font color than the default color, use these variables to specify the alternate colors */
/* Backgrounds specified in this variable will use the alternative text colors: */
/* Backgrounds specified in this variable will use the alternative button colors: */
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/****************
 * Block Spacing
 *
 * These variables are based on the "Spacing" rules found in the "Foundations" section in Figma. These control the default spacing between blocks of different colors.
 ****************/
/*
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;
}
*/
.eight29-search-header {
  font-weight: var(--t4-font-weight);
  font-size: var(--t4-font-size);
  font-family: var(--t4-font-family);
  line-height: var(--t4-line-height);
  margin-top: calc(var(--t4-margin-bottom) * 2);
  margin-bottom: var(--t4-margin-bottom);
  margin-bottom: 1.125rem;
}
.eight29-search-header:first-child {
  margin-top: 0;
}
.eight29-search-header:last-child {
  margin-bottom: 0;
}

.eight29-topic-search-header {
  margin-bottom: clamp(1.5rem, 0.2368421053rem + 2.6315789474vw, 3rem);
}

.eight29-filters .eight29-app .sidebar-top .eight29-search-header {
  font-weight: var(--t4-font-weight);
  font-size: var(--t4-font-size);
  font-family: var(--t4-font-family);
  line-height: var(--t4-line-height);
  margin-top: calc(var(--t4-margin-bottom) * 2);
  margin-bottom: var(--t4-margin-bottom);
  margin-bottom: 1.125rem;
}
.eight29-filters .eight29-app .sidebar-top .eight29-search-header:first-child {
  margin-top: 0;
}
.eight29-filters .eight29-app .sidebar-top .eight29-search-header:last-child {
  margin-bottom: 0;
}
.eight29-filters .eight29-app .sidebar-top .eight29-sidebar {
  max-width: 100%;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group {
  display: block;
}
@media (min-width: 64rem) {
  .eight29-filters .eight29-app .sidebar-top .eight29-filter-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-filter-group-inner {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 48rem) {
  .eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-filter-group-inner {
    flex: 0 0 64.9%;
  }
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-filter-group-inner[data-filters-toggled=false] {
  display: none;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .filters-toggle {
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  margin-bottom: var(--link-2-margin-bottom);
  align-self: flex-start;
  margin: 1rem 0 0 0;
  padding: 0;
  color: #0066ba;
  border: none;
  cursor: pointer;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .filters-toggle:first-child {
  margin-top: 0;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .filters-toggle:last-child {
  margin-bottom: 0;
}
@media (min-width: 48rem) {
  .eight29-filters .eight29-app .sidebar-top .eight29-filter-group .filters-toggle {
    display: none;
  }
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .filters-toggle::after {
  vertical-align: middle;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .filters-toggle.closed::after {
  content: "\ea15";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .filters-toggle.opened::after {
  content: "\ea14";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .filter-search.eight29-filter {
  order: 0;
  flex: 0 0 100%;
  max-width: none;
  margin-bottom: 1px;
}
@media (min-width: 48rem) {
  .eight29-filters .eight29-app .sidebar-top .eight29-filter-group .filter-search.eight29-filter {
    flex: 0 0 35%;
  }
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .filter-search.eight29-filter .accordion-select {
  margin-right: 1px;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .filter-search.eight29-filter input[type=search] {
  background-position: right 1.25rem center;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .filter-search.eight29-filter input[type=search]::-webkit-search-cancel-button {
  display: none;
  appearance: none;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .filter-search.eight29-filter .clear-search {
  right: 2.8125rem;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .filter-search + .eight29-filter-list {
  margin-right: 0;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-filter-list {
  flex-wrap: wrap;
  margin: 0;
}
@media (min-width: 48rem) {
  .eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-filter-list {
    display: flex;
  }
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-filter-list .eight29-filter {
  flex: 0 0 calc(33.33% - 1px);
  max-width: none;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-filter-list .eight29-filter.filter-select {
  margin-right: 1px;
  margin-bottom: 1px;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-filter-list .eight29-filter.filter-select .accordion-select {
  position: relative;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-filter-list .eight29-filter.filter-select .accordion-select::before {
  content: "\ea15";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 1.125rem;
  z-index: 1;
  color: #fff;
  transform: translateY(-50%);
  pointer-events: none;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-filter-list .eight29-filter.filter-select .accordion-select::after {
  position: absolute;
  top: 0;
  right: 2.625rem;
  content: "";
  width: 0.625rem;
  height: 100%;
  background: #000;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, black 100%);
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-filter-list .eight29-filter.filter-select .accordion-select .eight29-filter-label {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 1px;
  white-space: nowrap;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  pointer-events: none;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-filter-list .eight29-filter.filter-select .accordion-select .eight29-filter-label + div {
  margin-top: 0;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-filter-list .eight29-filter.filter-select.has-selected .accordion-select::after {
  background: #0066ba;
  background: linear-gradient(90deg, rgba(0, 102, 186, 0) 0%, #0066ba 100%);
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-filter-list .eight29-filter.filter-select select {
  font-weight: var(--title-1-font-weight);
  font-size: var(--title-1-font-size);
  font-family: var(--title-1-font-family);
  line-height: var(--title-1-line-height);
  margin-bottom: var(--title-1-margin-bottom);
  color: #fff;
  line-height: 1.5;
  border: none;
  background-color: #000;
  background-image: none;
  cursor: pointer;
  transition: none;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-filter-list .eight29-filter.filter-select select:first-child {
  margin-top: 0;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-filter-list .eight29-filter.filter-select select:last-child {
  margin-bottom: 0;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-filter-list .eight29-filter.filter-select select.is-selected {
  background-color: #0066ba;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-filter-list .eight29-filter.filter-select select option,
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-filter-list .eight29-filter.filter-select select optgroup {
  color: #000;
  background-color: #eeeeef;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-alphabet-filter {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 1.125rem;
  padding: 0 1.25rem 0 0;
}
@media (min-width: 64rem) {
  .eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-alphabet-filter {
    padding: 0;
  }
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-alphabet-filter::before {
  position: absolute;
  top: 0;
  right: 1.25rem;
  content: "";
  z-index: 1;
  width: 1.875rem;
  height: 100%;
  background: #fff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 100%);
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-alphabet-filter::after {
  content: "\ea14";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 0;
  color: #0066ba;
  transform: translateY(-50%) rotate(90deg);
}
@media (min-width: 64rem) {
  .eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-alphabet-filter::after {
    display: none;
  }
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-alphabet-filter .filter-letters {
  max-width: none;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-alphabet-filter .filter-letters .accordion-select div {
  padding-right: 2.1875rem;
  white-space: nowrap;
  overflow-x: auto;
}
@media (min-width: 64rem) {
  .eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-alphabet-filter .filter-letters .accordion-select div {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-right: 0;
    white-space: auto;
  }
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-alphabet-filter .filter-letters button {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  margin-bottom: var(--link-1-margin-bottom);
  margin: 0 1.875rem 0 0;
  padding: 0;
  color: #0066ba;
  border: none;
  background: none;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-alphabet-filter .filter-letters button:first-child {
  margin-top: 0;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-alphabet-filter .filter-letters button:last-child {
  margin-bottom: 0;
}
@media (min-width: 64rem) {
  .eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-alphabet-filter .filter-letters button {
    margin: 0;
  }
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-alphabet-filter .filter-letters button:last-child {
  margin-right: 0;
}
.eight29-filters .eight29-app .sidebar-top .eight29-filter-group .eight29-alphabet-filter .filter-letters button.active {
  color: #000;
  font-weight: 700;
}
.eight29-filters .eight29-app .eight29-selected-box {
  margin: 0 0 2.25rem 0;
  padding: 1.125rem;
  background-color: #eeeeef;
}
@media (min-width: 36rem) {
  .eight29-filters .eight29-app .eight29-selected-box.large {
    padding: 2.25rem 2.25rem 1.75rem 2.25rem;
  }
}
.eight29-filters .eight29-app .eight29-selected-box.large .wp-block-buttons {
  margin-top: 1.6875rem;
}
.eight29-filters .eight29-app .eight29-selected-box__top {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.125rem;
}
.eight29-filters .eight29-app .eight29-selected-box__count {
  margin: 0;
}
.eight29-filters .eight29-app .eight29-selected-box__clear {
  font-weight: var(--body-1-font-weight);
  font-size: var(--body-1-font-size);
  font-family: var(--body-1-font-family);
  line-height: var(--body-1-line-height);
  margin-bottom: var(--body-1-margin-bottom);
  color: #0066ba;
  border: none;
}
.eight29-filters .eight29-app .eight29-selected-box__clear:first-child {
  margin-top: 0;
}
.eight29-filters .eight29-app .eight29-selected-box__clear:last-child {
  margin-bottom: 0;
}
.eight29-filters .eight29-app .eight29-selected-box .eight29-selected-single-filter {
  font-weight: var(--t2-font-weight);
  font-size: var(--t2-font-size);
  font-family: var(--t2-font-family);
  line-height: var(--t2-line-height);
  margin-top: calc(var(--t2-margin-bottom) * 2);
  margin-bottom: var(--t2-margin-bottom);
  margin-top: 0;
}
.eight29-filters .eight29-app .eight29-selected-box .eight29-selected-single-filter:first-child {
  margin-top: 0;
}
.eight29-filters .eight29-app .eight29-selected-box .eight29-selected-single-filter:last-child {
  margin-bottom: 0;
}
.eight29-filters .eight29-app .eight29-selected-box .eight29-current-selected {
  margin: 0;
}
.eight29-filters .eight29-app .eight29-selected-box .eight29-current-selected li {
  margin-right: 1.125rem;
}
.eight29-filters .eight29-app .eight29-selected-box .eight29-current-selected li::before {
  display: none !important;
}
.eight29-filters .eight29-app .eight29-selected-box .eight29-current-selected li button {
  font-weight: var(--body-1-font-weight);
  font-size: var(--body-1-font-size);
  font-family: var(--body-1-font-family);
  line-height: var(--body-1-line-height);
  margin-bottom: var(--body-1-margin-bottom);
  position: relative;
  padding: 0 0 0 1.125rem;
  color: #000;
  text-align: left;
  border: none;
  background: none;
}
.eight29-filters .eight29-app .eight29-selected-box .eight29-current-selected li button:first-child {
  margin-top: 0;
}
.eight29-filters .eight29-app .eight29-selected-box .eight29-current-selected li button:last-child {
  margin-bottom: 0;
}
.eight29-filters .eight29-app .eight29-selected-box .eight29-current-selected li button::after {
  position: absolute;
  top: 50%;
  left: 0;
  margin: 0;
  transform: translateY(-50%);
}
.eight29-filters .eight29-app .no-results {
  margin-bottom: 3.125rem;
  padding: 1.5rem;
  background-color: #eeeeef;
}
@media (min-width: 64rem) {
  .eight29-filters .eight29-app .no-results {
    padding: 2.25rem;
  }
}
.eight29-filters .eight29-app .no-results__header {
  font-weight: var(--t2-font-weight);
  font-size: var(--t2-font-size);
  font-family: var(--t2-font-family);
  line-height: var(--t2-line-height);
  margin-top: calc(var(--t2-margin-bottom) * 2);
  margin-bottom: var(--t2-margin-bottom);
}
.eight29-filters .eight29-app .no-results__header:first-child {
  margin-top: 0;
}
.eight29-filters .eight29-app .no-results__header:last-child {
  margin-bottom: 0;
}
.eight29-filters .eight29-app .no-results__tips {
  margin: 0;
  padding: 0 0 0 1em;
  list-style: square;
}
.eight29-filters .eight29-app .no-results__tips li {
  font-weight: var(--body-1-font-weight);
  font-size: var(--body-1-font-size);
  font-family: var(--body-1-font-family);
  line-height: var(--body-1-line-height);
  margin-bottom: var(--body-1-margin-bottom);
  margin-bottom: 0.5625rem;
}
.eight29-filters .eight29-app .no-results__tips li:first-child {
  margin-top: 0;
}
.eight29-filters .eight29-app .no-results__tips li:last-child {
  margin-bottom: 0;
}

/* stylelint-disable order/order */
/*
* Converts an pixel value into a rem value.
*
* @param string  $values    the pixel value(s) as a number. Can convert multiple values if values separated by a space.
* @param integer $base      the base pixel value.
*
* @return string   a space-separated string of rem values.
*/
/*
* This is an abbreviated wrapper for the responsive-values function.
*/
/*
* Creates a CSS clamp value that sizes between breakpoints.
*
* @param integer $min                    the minimum pixel value.
* @param integer $max                    the maximum pixel value.
* @param string  $smallest-breakpoint    the name of the smallest breakpoint from the $grid-breakpoints variable.
* @param string  $largest-breakpoint     the name of the largest breakpoint from the $grid-breakpoints variable.
* @param string  $screen                 whether to use a horizontal (width) breakpoint or a vertical (height) breakpoint.
*
* @return string   a CSS clamp property value.
*/
/*
* Outputs a font family value from the $fonts variable.
*
* @param string  $key   the font key.
*
* @return string   a font family value.
*/
/*
* Outputs a color value from the $paints or $additional-paints variables.
*
* @param string   $key   the color name.
*
* @return string   a color value.
*/
/*
* Outputs an effect value from the $effects variable.
*
* @param string  $key   the effect name.
*
* @return string   an effect value.
*/
/* stylelint-enable order/order */
/*
* Used to target heading selectors.
*
* @param integer  $start               the first heading element to target. 1 through 6.
* @param integer  $end                 the last heading element to target. 1 through 6.
* @param string   $beforeCombinator    the CSS combinator to include before the heading classes.
* @param string   $afterCombinator     the CSS combinator to include after the heading classes.
* @param boolean  $includeFontClasses  whether or not to include the .has-t-1... classes or just output the standard heading elements.
*
* @return string  The included CSS wrapped with selectors for the specified headings.
*/
/*
* Used to add properties to a for a pseudo element to make an icon based on the iconfont set.
*
* @param string   $content     the content for the icon. Usually uses one of the iconfont variables.
* @param string   $font-size   the font size with unit.
*
* @return string  The CSS properties for the icon.
*/
/*
* Generates CSS to fit an element into the 12-column grid. Only works when used on an element where the parent element is the width of the entire page.
*
* @return string  CSS properties to set the width of the element to the specified column sizes.
*/
/*
* Used to target elements with a background color that has a text color different from the standard color.
*
* @param string   $additionalSelectors     additional comma-separated selectors to add.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to target button elements with a background color set to use the alt button colors.
*
* @param string   $additionalSelectors     additional comma-separated selectors to add.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/*
* Used to visually hide an element but still allow screen readers to access the element and its contents for accessibility.
*
* @return string  The styles needed to visually hide an element.
*/
.fade-up {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: 300ms opacity 300ms ease-out, 300ms transform 300ms ease-out;
}
.fade-up.in-viewport {
  opacity: 1 !important;
  transform: none !important;
}

/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma which task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/*
* This array is used to specify the fonts used on the project with the following parameters:
	base - the name for use in the font() mixin.
		css - the output CSS value.
		figma-name: - the 'font-family' name ued in the _figma-font-variable.scss file.
	)
*/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task which creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/* If additional colors need to be added to the _figma-color-variables.scss, they can be added to this variable: */
/* This variable controls the background colors generated in the ACF background_color field and the background color classes - bg-white, bg-neutral-10, etc: */
/* This variable controls the default text color on a light background. Used with paint(text) to generate a CSS variable that changes to use background font colors. */
/* If a background color uses a different font color than the default color, use these variables to specify the alternate colors */
/* Backgrounds specified in this variable will use the alternative text colors: */
/* Backgrounds specified in this variable will use the alternative button colors: */
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/****************
 * Block Spacing
 *
 * These variables are based on the "Spacing" rules found in the "Foundations" section in Figma. These control the default spacing between blocks of different colors.
 ****************/
/*
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;
}
*/
.post-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #0066ba;
  border: 1px solid #bbbcbd;
  background: #fff;
}
.post-card:hover, .post-card:focus {
  color: var(--blockHoverColor, #003661);
}
.post-card__image-wrapper {
  width: calc(100% + 2px);
  margin: -1px -1px 0;
  padding-bottom: 55.76923%;
}
.post-card__publish-date {
  font-weight: var(--body-2-font-weight);
  font-size: var(--body-2-font-size);
  font-family: var(--body-2-font-family);
  line-height: var(--body-2-line-height);
  color: #000;
}
.post-card__taxonomy {
  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: block;
  color: #000;
}
.post-card__publish-date + .post-card__taxonomy {
  margin-top: clamp(2rem, 1.7894736842rem + 0.4385964912vw, 2.25rem);
}
.post-card__content {
  display: block;
  padding: 1.125rem;
}
.post-card__title {
  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: calc(var(--t3-margin-bottom) * 2);
  margin-bottom: var(--t3-margin-bottom);
  margin-top: 1.125rem;
  color: inherit;
}
.post-card__title:first-child {
  margin-top: 0;
}
.post-card__title:last-child {
  margin-bottom: 0;
}
.post-card__excerpt {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  text-decoration: var(--subtitle-1-text-decoration);
  margin-top: 1.125rem;
  color: #000;
  text-decoration: none;
}

.news-insights-header {
  --transition-duration: 500ms;
  --transition-delay: 100ms;
}
.news-insights-header.in-viewport h1 {
  opacity: 1;
  transform: none;
}
.news-insights-header h1 {
  margin: 0;
  opacity: 0;
  transform: translate3d(0, -16px, 0);
  transition: var(--transition-duration) opacity var(--transition-delay) ease-out, var(--transition-duration) transform var(--transition-delay) ease-out;
}

.block-hero-content {
  --transition-duration: 500ms;
  --transition-delay: 100ms;
  margin: 1.125rem 0 0 0 !important;
  padding: 0;
}
.in-viewport .block-hero-content h2,
.in-viewport .block-hero-content p,
.in-viewport .block-hero-content .wp-block-button.is-style-tertiary,
.in-viewport .block-hero-content .wp-block-buttons,
.in-viewport .block-hero-content .block-hero-content__image {
  opacity: 1;
  transform: none;
}
.in-viewport .block-hero-content h2::after {
  transform: none;
}
.block-hero-content .row {
  align-items: flex-start;
}
@media (min-width: 48rem) {
  .block-hero-content .row {
    align-items: center;
  }
}
.block-hero-content__image-container {
  margin-bottom: 1.5rem;
}
@media (min-width: 36rem) {
  .block-hero-content__image-container {
    margin-bottom: 0;
  }
}
.block-hero-content__image {
  width: 100%;
  opacity: 0;
  transform: translate3d(-20px, 0, 0);
  object-fit: cover;
  transition: var(--transition-duration) opacity var(--transition-delay) ease-out, var(--transition-duration) transform var(--transition-delay) ease-out;
  aspect-ratio: 1/1;
}
.block-hero-content h2 {
  position: relative;
  opacity: 0;
  transform: translate3d(0, -16px, 0);
  transition: var(--transition-duration) opacity var(--transition-delay) ease-out, var(--transition-duration) transform var(--transition-delay) ease-out;
}
.block-hero-content h2::after {
  content: "";
  display: block;
  width: clamp(3rem, -0.1578947368rem + 6.5789473684vw, 6.75rem);
  height: 0.25rem;
  margin: clamp(2rem, 1.7894736842rem + 0.4385964912vw, 2.25rem) 0 clamp(2rem, 1.7894736842rem + 0.4385964912vw, 2.25rem) 0;
  background-color: #78acdd;
  transform: scale(0);
  transform-origin: bottom left;
  transform-style: preserve-3d;
  transition: 500ms transform 100ms linear;
}
.block-hero-content p {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: var(--transition-duration) opacity var(--transition-delay) ease-out, var(--transition-duration) transform var(--transition-delay) ease-out;
}
.block-hero-content .wp-block-button.is-style-tertiary {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: var(--transition-duration) opacity var(--transition-delay) ease-out, var(--transition-duration) transform var(--transition-delay) ease-out;
}
.block-hero-content .wp-block-button.is-style-tertiary .wp-block-button__link {
  font-weight: 400;
}
.block-hero-content .wp-block-buttons {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: var(--transition-duration) opacity var(--transition-delay) ease-out, var(--transition-duration) transform var(--transition-delay) ease-out;
}