/* 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.
*/
/*
* Used to add the decorative line on the right or left side of a text element.
*/
/*
* Used to truncate text.
*/
/****************
 * 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;
}
*/
.block-blog-cards-grid {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
  padding-bottom: clamp(6rem, 2.5714285714rem + 7.1428571429vw, 9rem);
}
.block-blog-cards-grid .no-results .c-btn-secondary {
  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);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 2rem;
  text-align: center;
  text-transform: capitalize;
  border: none;
  border-radius: 5rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  padding: 0.625rem 1.875rem;
  color: #380031;
  border: 2px solid #fd9226;
  background-color: transparent;
}
@media (max-width: 35.98rem) {
  .block-blog-cards-grid .no-results .c-btn-secondary {
    width: 100%;
  }
}
.bg-dark .block-blog-cards-grid .no-results .c-btn-secondary {
  color: #ece3db;
  border-color: #ece3db;
}
.bg-dark .block-blog-cards-grid .no-results .c-btn-secondary.hover, a:hover .bg-dark .block-blog-cards-grid .no-results .c-btn-secondary, a:focus .bg-dark .block-blog-cards-grid .no-results .c-btn-secondary, .bg-dark .block-blog-cards-grid .no-results .c-btn-secondary:hover, .bg-dark .block-blog-cards-grid .no-results .c-btn-secondary:focus {
  color: #bf4600;
  border-color: #fff;
  background-color: #fff;
}
.block-blog-cards-grid .no-results .c-btn-secondary.hover, a:hover .block-blog-cards-grid .no-results .c-btn-secondary, a:focus .block-blog-cards-grid .no-results .c-btn-secondary, .block-blog-cards-grid .no-results .c-btn-secondary:hover, .block-blog-cards-grid .no-results .c-btn-secondary:focus {
  color: #ece3db;
  border-color: #380031;
  background-color: #380031;
}
.bg-white .block-blog-cards-grid .no-results .c-btn-secondary, .bg-transparent .block-blog-cards-grid .no-results .c-btn-secondary {
  color: #380031;
  border: 2px solid #fd9226;
  background-color: transparent;
}
.bg-white .block-blog-cards-grid .no-results .c-btn-secondary.hover, a:hover .bg-white .block-blog-cards-grid .no-results .c-btn-secondary, a:focus .bg-white .block-blog-cards-grid .no-results .c-btn-secondary, .bg-white .block-blog-cards-grid .no-results .c-btn-secondary:hover, .bg-white .block-blog-cards-grid .no-results .c-btn-secondary:focus, .bg-transparent .block-blog-cards-grid .no-results .c-btn-secondary.hover, a:hover .bg-transparent .block-blog-cards-grid .no-results .c-btn-secondary, a:focus .bg-transparent .block-blog-cards-grid .no-results .c-btn-secondary, .bg-transparent .block-blog-cards-grid .no-results .c-btn-secondary:hover, .bg-transparent .block-blog-cards-grid .no-results .c-btn-secondary:focus {
  color: #ece3db;
  border-color: #380031;
  background-color: #380031;
}
.bg-button-default .block-blog-cards-grid .no-results .c-btn-secondary {
  color: #380031;
  border: 2px solid #380031;
  background-color: transparent;
}
.bg-button-default .block-blog-cards-grid .no-results .c-btn-secondary.hover, a:hover .bg-button-default .block-blog-cards-grid .no-results .c-btn-secondary, a:focus .bg-button-default .block-blog-cards-grid .no-results .c-btn-secondary, .bg-button-default .block-blog-cards-grid .no-results .c-btn-secondary:hover, .bg-button-default .block-blog-cards-grid .no-results .c-btn-secondary:focus {
  color: #bf4600;
  border-color: #f6f0eb;
  background-color: #f6f0eb;
}
.bg-periwinkle .block-blog-cards-grid .no-results .c-btn-secondary {
  color: #380031;
  border: 2px solid #380031;
  background-color: transparent;
}
.bg-periwinkle .block-blog-cards-grid .no-results .c-btn-secondary.hover, a:hover .bg-periwinkle .block-blog-cards-grid .no-results .c-btn-secondary, a:focus .bg-periwinkle .block-blog-cards-grid .no-results .c-btn-secondary, .bg-periwinkle .block-blog-cards-grid .no-results .c-btn-secondary:hover, .bg-periwinkle .block-blog-cards-grid .no-results .c-btn-secondary:focus {
  color: #ece3db;
  border-color: #380031;
  background-color: #380031;
}
.block-blog-cards-grid .eight29-filters .blog-a.sidebar-top {
  margin-bottom: 0;
}
.block-blog-cards-grid .eight29-filters .blog-a.sidebar-top .eight29-sidebar {
  margin-bottom: 3rem;
}
@media (min-width: 62rem) {
  .block-blog-cards-grid .eight29-filters .blog-a.sidebar-top .eight29-sidebar {
    margin-bottom: 4.5rem;
  }
}
.block-blog-cards-grid .eight29-filters .blog-a.sidebar-top .eight29-sidebar .eight29-filter-list {
  margin-bottom: 0;
}
.block-blog-cards-grid .eight29-filters .blog-a.sidebar-top .eight29-sidebar .eight29-filter-list.left-content {
  display: none;
}
@media (min-width: 75rem) {
  .block-blog-cards-grid .eight29-filters .blog-a.sidebar-top .eight29-sidebar .eight29-filter-list.left-content {
    display: block;
  }
}
.block-blog-cards-grid .eight29-filters .blog-a.sidebar-top .eight29-sidebar .eight29-filter-list.right-content {
  width: 100%;
}
@media (min-width: 75rem) {
  .block-blog-cards-grid .eight29-filters .blog-a.sidebar-top .eight29-sidebar .eight29-filter-list.right-content {
    display: none;
  }
}
.block-blog-cards-grid .eight29-filters .blog-a.sidebar-top .eight29-sidebar .eight29-filter-list.right-content .eight29-filter-label {
  display: none;
}
.block-blog-cards-grid .eight29-filters .blog-a.sidebar-top .eight29-sidebar .eight29-filter-list.right-content .filter-checkbox {
  max-width: inherit;
  margin: 0;
}
.block-blog-cards-grid .eight29-filters .blog-a.sidebar-top .eight29-sidebar .eight29-filter-list.right-content .filter-checkbox .accordion-select > div {
  margin: 0;
}
.block-blog-cards-grid .eight29-filters .blog-a.sidebar-top .eight29-sidebar .eight29-filter-list.right-content .dropdown-container {
  position: relative;
  border: none;
  background: transparent;
}
.block-blog-cards-grid .eight29-filters .blog-a.sidebar-top .eight29-sidebar .eight29-filter-list.right-content .dropdown-container .dropdown-current {
  padding: 0.75rem 1.25rem 0.75rem 0;
  border-bottom: 0.125rem solid #fd9226;
}
.block-blog-cards-grid .eight29-filters .blog-a.sidebar-top .eight29-sidebar .eight29-filter-list.right-content .dropdown-container .dropdown-current::after {
  content: "\ea16";
  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;
  right: 0;
  width: auto;
  height: auto;
  color: #380031;
  font-size: 1.25rem;
  background: none;
}
.block-blog-cards-grid .eight29-filters .blog-a.sidebar-top .eight29-sidebar .eight29-filter-list.right-content .dropdown-container .dropdown-current span {
  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);
  color: #380031;
}
.block-blog-cards-grid .eight29-filters .blog-a.sidebar-top .eight29-sidebar .eight29-filter-list.right-content .dropdown-container .dropdown-list {
  padding: 0.25rem 0 0;
}
.block-blog-cards-grid .eight29-filters .blog-a.sidebar-top .eight29-sidebar .eight29-filter-list.right-content .dropdown-container .dropdown-list li {
  padding: 0.75rem 0;
  border: none;
}
.block-blog-cards-grid .eight29-filters .blog-a.sidebar-top .eight29-sidebar .eight29-filter-list.right-content .dropdown-container .dropdown-list li div input {
  display: none;
}
.block-blog-cards-grid .eight29-filters .blog-a.sidebar-top .eight29-sidebar .eight29-filter-list.right-content .dropdown-container .dropdown-list li div label {
  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);
  color: #70526c;
  cursor: pointer;
}
.block-blog-cards-grid .eight29-filters .blog-a.sidebar-top .eight29-sidebar .eight29-filter-list.right-content .dropdown-container .dropdown-list li.selected div label {
  color: #380031;
}
.block-blog-cards-grid .eight29-filters .blog-a .eight29-filter .simplebar-wrapper {
  max-height: inherit;
}
.block-blog-cards-grid .eight29-filters .blog-a .eight29-filter .accordion-select .eight29-filter-label {
  padding: 0.75rem 0;
  border-bottom: 0.125rem solid #fd9226;
}
.block-blog-cards-grid .eight29-filters .blog-a .eight29-filter .accordion-select .eight29-filter-label::after {
  content: "\ea16";
  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;
  width: auto;
  height: auto;
  margin: 0;
  color: #380031;
  font-size: 1.25rem;
  background: none;
}
.block-blog-cards-grid .eight29-filters .blog-a .eight29-filter .desktop-filters {
  margin: 0;
}
.block-blog-cards-grid .eight29-filters .blog-a .eight29-filter .desktop-filters .button-wrap {
  flex-direction: column;
  align-items: flex-start;
  border: none;
}
@media (min-width: 62rem) {
  .block-blog-cards-grid .eight29-filters .blog-a .eight29-filter .desktop-filters .button-wrap {
    flex-direction: row;
    border-bottom: 0.0625rem solid #ece3db;
  }
}
.block-blog-cards-grid .eight29-filters .blog-a .eight29-filter .desktop-filters .button-wrap 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-right: 0;
  margin-bottom: 0;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #70526c;
  border: none;
}
@media (min-width: 62rem) {
  .block-blog-cards-grid .eight29-filters .blog-a .eight29-filter .desktop-filters .button-wrap button {
    margin-right: 2rem;
    margin-bottom: -0.0625rem;
    color: #52314d;
    border-bottom: 2px solid transparent;
  }
  .block-blog-cards-grid .eight29-filters .blog-a .eight29-filter .desktop-filters .button-wrap button:first-child {
    padding-top: 0.75rem !important;
  }
  .block-blog-cards-grid .eight29-filters .blog-a .eight29-filter .desktop-filters .button-wrap button:hover, .block-blog-cards-grid .eight29-filters .blog-a .eight29-filter .desktop-filters .button-wrap button:focus {
    color: #380031;
  }
}
.block-blog-cards-grid .eight29-filters .blog-a .eight29-filter .desktop-filters .button-wrap button:first-child {
  padding-top: 1rem;
}
.block-blog-cards-grid .eight29-filters .blog-a .eight29-filter .desktop-filters .button-wrap button.active {
  color: #380031;
  border: none;
}
@media (min-width: 62rem) {
  .block-blog-cards-grid .eight29-filters .blog-a .eight29-filter .desktop-filters .button-wrap button.active {
    color: #380031;
    border-bottom: 0.125rem solid #fd9226;
  }
}
.block-blog-cards-grid .eight29-posts {
  grid-row-gap: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
  margin-bottom: 0;
}
@media (min-width: 48rem) {
  .block-blog-cards-grid .eight29-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 75rem) {
  .block-blog-cards-grid .eight29-posts {
    grid-template-columns: repeat(3, 1fr);
  }
}
.block-blog-cards-grid .eight29-posts .eight29-post-card.eight29-post .eight29-featured-image {
  margin-bottom: 1.5rem;
}
.block-blog-cards-grid .eight29-posts .eight29-post-card.eight29-post .eight29-featured-image figure {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 66.35%;
  border-radius: 1.25rem;
  overflow: hidden;
}
.block-blog-cards-grid .eight29-posts .eight29-post-card.eight29-post .eight29-featured-image figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-blog-cards-grid .eight29-posts .eight29-post-card.eight29-post .eight29-post-body .eight29-post-categories {
  margin-bottom: 0.5rem;
}
.block-blog-cards-grid .eight29-posts .eight29-post-card.eight29-post .eight29-post-body .eight29-post-categories span a {
  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;
  margin-right: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: #380031;
  text-decoration: none;
  border: 0.0625rem solid #5567f2;
  border-radius: 6.25rem;
}
.block-blog-cards-grid .eight29-posts .eight29-post-card.eight29-post .eight29-post-body .eight29-post-categories span a:hover, .block-blog-cards-grid .eight29-posts .eight29-post-card.eight29-post .eight29-post-body .eight29-post-categories span a:focus {
  color: #380031;
  text-decoration: none;
  border-color: #fff;
  background-color: #fff;
}
.block-blog-cards-grid .eight29-posts .eight29-post-card.eight29-post .eight29-post-body .eight29-post-categories span span {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  color: #70526c;
}
.block-blog-cards-grid .eight29-posts .eight29-post-card.eight29-post .eight29-post-body .eight29-post-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 4;
  margin-bottom: 0;
}
.block-blog-cards-grid .eight29-posts .eight29-post-card.eight29-post .eight29-post-body .eight29-post-title a {
  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);
  display: block;
  color: #380031;
}
.block-blog-cards-grid .eight29-posts .eight29-post-card.eight29-post .eight29-post-body .eight29-post-title a:hover, .block-blog-cards-grid .eight29-posts .eight29-post-card.eight29-post .eight29-post-body .eight29-post-title a:focus {
  color: #380031;
}
.block-blog-cards-grid .c-btn-wrapper {
  margin-top: 3rem;
  padding: 0 !important;
}
@media (min-width: 62rem) {
  .block-blog-cards-grid .c-btn-wrapper {
    margin-top: 4.5rem;
  }
}
.block-blog-cards-grid .c-btn-wrapper .c-btn--secondary {
  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);
  color: #380031;
  border: 0.125rem solid #fd9226;
  border-radius: 5rem;
}
.block-blog-cards-grid .c-btn-wrapper .c-btn--secondary:first-child {
  margin-top: 0;
}
.block-blog-cards-grid .c-btn-wrapper .c-btn--secondary:last-child {
  margin-bottom: 0;
}
@media (max-width: 61.98rem) {
  .block-blog-cards-grid .c-btn-wrapper .c-btn--secondary {
    width: 100%;
  }
}
.block-blog-cards-grid .c-btn-wrapper .c-btn--secondary:hover, .block-blog-cards-grid .c-btn-wrapper .c-btn--secondary:focus {
  color: #ece3db;
  border-color: #380031;
  background-color: #380031;
}
.block-blog-cards-grid.archive {
  padding-top: clamp(3rem, -0.4285714286rem + 7.1428571429vw, 6rem);
}
.block-blog-cards-grid.archive .eight29-sidebar {
  display: none;
}

.block-blog-taxonomy-hero {
  padding-top: 1.5rem;
  padding-bottom: clamp(4rem, 1.7142857143rem + 4.7619047619vw, 6rem);
  border-radius: 0 0 3rem 3rem;
}
.author .block-blog-taxonomy-hero {
  padding-bottom: clamp(0.5rem, -5.7857142857rem + 13.0952380952vw, 6rem);
}
.block-blog-taxonomy-hero__wrap .container .c-btn--back__wrapper {
  margin-top: 0;
  margin-bottom: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
  margin-left: 0;
}
.block-blog-taxonomy-hero__wrap .container .c-btn--back__wrapper .c-btn--back {
  position: relative;
  color: #380031;
}
.block-blog-taxonomy-hero__wrap .container .c-btn--back__wrapper .c-btn--back::after {
  position: absolute;
  left: 0;
  bottom: -0.0625rem;
  content: "";
  width: 100%;
  height: 0.125rem;
  background-color: #fd9226;
}
.block-blog-taxonomy-hero__wrap .container .c-btn--back__wrapper .c-btn--back::before {
  content: "\ea08";
  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;
  margin-left: -0.1875rem;
  padding-right: 0.25rem;
  font-size: 1rem;
}
.block-blog-taxonomy-hero__wrap .container .c-btn--back__wrapper .c-btn--back:hover {
  color: #380031;
}
.block-blog-taxonomy-hero__wrap .container .c-btn--back__wrapper .c-btn--back:hover::after {
  background-color: #380031;
}
.block-blog-taxonomy-hero .author-menu__info .author-menu__dropdown {
  display: none;
}
.block-blog-taxonomy-hero .author-menu__info .author-menu__dropdown.active {
  display: block;
}

.block-blog-profile-hero {
  position: relative;
  z-index: 2;
  padding-top: clamp(1rem, 0.4285714286rem + 1.1904761905vw, 1.5rem);
  padding-bottom: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
  background: transparent;
}
.block-blog-profile-hero--no-image.bg-transparent + .acf-block:not(.bg-transparent) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-transparent + *:not(.acf-block) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-white + .acf-block:not(.bg-white) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-white + *:not(.acf-block) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-green + .acf-block:not(.bg-green) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-green + *:not(.acf-block) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-periwinkle + .acf-block:not(.bg-periwinkle) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-periwinkle + *:not(.acf-block) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-button-default + .acf-block:not(.bg-button-default) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-button-default + *:not(.acf-block) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-dark + .acf-block:not(.bg-dark) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-dark + *:not(.acf-block) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-8 + .acf-block:not(.bg-neutral-8) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-8 + *:not(.acf-block) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-16 + .acf-block:not(.bg-neutral-16) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-16 + *:not(.acf-block) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-24 + .acf-block:not(.bg-neutral-24) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-24 + *:not(.acf-block) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-32 + .acf-block:not(.bg-neutral-32) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-32 + *:not(.acf-block) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-44 + .acf-block:not(.bg-neutral-44) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-44 + *:not(.acf-block) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-72 + .acf-block:not(.bg-neutral-72) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-72 + *:not(.acf-block) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-80 + .acf-block:not(.bg-neutral-80) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-80 + *:not(.acf-block) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-88 + .acf-block:not(.bg-neutral-88) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-88 + *:not(.acf-block) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-92 + .acf-block:not(.bg-neutral-92) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-92 + *:not(.acf-block) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-94 + .acf-block:not(.bg-neutral-94) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-94 + *:not(.acf-block) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-96 + .acf-block:not(.bg-neutral-96) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-96 + *:not(.acf-block) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-98 + .acf-block:not(.bg-neutral-98) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image.bg-neutral-98 + *:not(.acf-block) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image:not(:empty)::after {
  height: 100%;
}
.block-blog-profile-hero--no-image + .acf-block:not([class*=bg-]) {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.block-blog-profile-hero--no-image .block-blog-profile-hero__row .block-blog-profile-hero__meta:last-child {
  margin-bottom: clamp(1rem, 0.4285714286rem + 1.1904761905vw, 1.5rem);
}
.block-blog-profile-hero::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: clamp(34.375rem, 11.1607142857rem + 48.3630952381vw, 54.6875rem);
  border-radius: 0 0 3rem 3rem;
  background-color: #ece3db;
}
.block-blog-profile-hero:not([class*="--no-image"]).bg-transparent + .acf-block:not(.bg-transparent) {
  padding-top: 0;
}
.block-blog-profile-hero:not([class*="--no-image"]).bg-white + .acf-block:not(.bg-white) {
  padding-top: 0;
}
.block-blog-profile-hero:not([class*="--no-image"]).bg-green + .acf-block:not(.bg-green) {
  padding-top: 0;
}
.block-blog-profile-hero:not([class*="--no-image"]).bg-periwinkle + .acf-block:not(.bg-periwinkle) {
  padding-top: 0;
}
.block-blog-profile-hero:not([class*="--no-image"]).bg-button-default + .acf-block:not(.bg-button-default) {
  padding-top: 0;
}
.block-blog-profile-hero:not([class*="--no-image"]).bg-dark + .acf-block:not(.bg-dark) {
  padding-top: 0;
}
.block-blog-profile-hero:not([class*="--no-image"]).bg-neutral-8 + .acf-block:not(.bg-neutral-8) {
  padding-top: 0;
}
.block-blog-profile-hero:not([class*="--no-image"]).bg-neutral-16 + .acf-block:not(.bg-neutral-16) {
  padding-top: 0;
}
.block-blog-profile-hero:not([class*="--no-image"]).bg-neutral-24 + .acf-block:not(.bg-neutral-24) {
  padding-top: 0;
}
.block-blog-profile-hero:not([class*="--no-image"]).bg-neutral-32 + .acf-block:not(.bg-neutral-32) {
  padding-top: 0;
}
.block-blog-profile-hero:not([class*="--no-image"]).bg-neutral-44 + .acf-block:not(.bg-neutral-44) {
  padding-top: 0;
}
.block-blog-profile-hero:not([class*="--no-image"]).bg-neutral-72 + .acf-block:not(.bg-neutral-72) {
  padding-top: 0;
}
.block-blog-profile-hero:not([class*="--no-image"]).bg-neutral-80 + .acf-block:not(.bg-neutral-80) {
  padding-top: 0;
}
.block-blog-profile-hero:not([class*="--no-image"]).bg-neutral-88 + .acf-block:not(.bg-neutral-88) {
  padding-top: 0;
}
.block-blog-profile-hero:not([class*="--no-image"]).bg-neutral-92 + .acf-block:not(.bg-neutral-92) {
  padding-top: 0;
}
.block-blog-profile-hero:not([class*="--no-image"]).bg-neutral-94 + .acf-block:not(.bg-neutral-94) {
  padding-top: 0;
}
.block-blog-profile-hero:not([class*="--no-image"]).bg-neutral-96 + .acf-block:not(.bg-neutral-96) {
  padding-top: 0;
}
.block-blog-profile-hero:not([class*="--no-image"]).bg-neutral-98 + .acf-block:not(.bg-neutral-98) {
  padding-top: 0;
}
.block-blog-profile-hero .c-btn--back__wrapper {
  margin: 0 0 3rem;
}
@media (min-width: 48rem) {
  .block-blog-profile-hero .c-btn--back__wrapper {
    margin: 0 0 5rem;
  }
}
.block-blog-profile-hero .c-btn--back__wrapper .c-btn--back {
  position: relative;
  color: #380031;
}
.block-blog-profile-hero .c-btn--back__wrapper .c-btn--back::after {
  position: absolute;
  left: 0;
  bottom: -0.0625rem;
  content: "";
  width: 100%;
  height: 0.125rem;
  background-color: #fd9226;
}
.block-blog-profile-hero .c-btn--back__wrapper .c-btn--back::before {
  content: "\ea08";
  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;
  margin-left: -0.1875rem;
  padding-right: 0.25rem;
  font-size: 1rem;
}
.block-blog-profile-hero .c-btn--back__wrapper .c-btn--back:hover {
  color: #380031;
}
.block-blog-profile-hero .c-btn--back__wrapper .c-btn--back:hover::after {
  background-color: #380031;
}
.block-blog-profile-hero .block-blog-profile-hero__row {
  justify-content: center;
}
.block-blog-profile-hero .block-blog-profile-hero__row .block-blog-profile-hero__primary-term {
  display: flex;
  margin-bottom: 0.5rem;
}
@media (min-width: 48rem) {
  .block-blog-profile-hero .block-blog-profile-hero__row .block-blog-profile-hero__primary-term {
    margin-bottom: 1rem;
  }
}
.block-blog-profile-hero .block-blog-profile-hero__row .block-blog-profile-hero__primary-term a {
  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);
  margin-bottom: var(--overline-margin-bottom);
  margin: 0 0.9375rem 0 0;
  padding: 0.5rem 0.75rem;
  color: #380031;
  text-decoration: none;
  border: 0.0625rem solid #5567f2;
  border-radius: 6.25rem;
}
.block-blog-profile-hero .block-blog-profile-hero__row .block-blog-profile-hero__primary-term a:first-child {
  margin-top: 0;
}
.block-blog-profile-hero .block-blog-profile-hero__row .block-blog-profile-hero__primary-term a:last-child {
  margin-bottom: 0;
}
.block-blog-profile-hero .block-blog-profile-hero__row .block-blog-profile-hero__primary-term a:hover {
  border-color: #fff;
  background-color: #fff;
}
.block-blog-profile-hero .block-blog-profile-hero__row .block-blog-profile-hero__title {
  margin-top: 0;
  margin-bottom: clamp(1.5rem, 0.9285714286rem + 1.1904761905vw, 2rem);
  text-align: left;
}
.block-blog-profile-hero .block-blog-profile-hero__row .block-blog-profile-hero__meta {
  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);
  margin-bottom: 3rem;
  color: #70526c;
}
@media (min-width: 48rem) {
  .block-blog-profile-hero .block-blog-profile-hero__row .block-blog-profile-hero__meta {
    margin-bottom: 4.5rem;
  }
}
.block-blog-profile-hero .block-blog-profile-hero__row .block-blog-profile-hero__meta span {
  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: #70526c;
}
.block-blog-profile-hero .block-blog-profile-hero__row .block-blog-profile-hero__meta span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0.0625rem;
  height: 1.25rem;
  margin: auto 1rem;
  vertical-align: middle;
  background-color: #b8a2b5;
}
.block-blog-profile-hero .block-blog-profile-hero__row .block-blog-profile-hero__image-wrapper {
  text-align: center;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media (min-width: 62rem) {
  .block-blog-profile-hero .block-blog-profile-hero__row .block-blog-profile-hero__image-wrapper img {
    width: auto;
    min-height: 55rem;
    object-fit: cover;
  }
}

.single-post .content-wrapper {
  background: #f9f4f1;
}
.single-post .content-wrapper .acf-block + h1 {
  margin-top: 0 !important;
}
.single-post .content-wrapper .acf-block + h2 {
  margin-top: 0 !important;
}
.single-post .content-wrapper .acf-block + h3 {
  margin-top: 0 !important;
}
.single-post .content-wrapper .acf-block + h4 {
  margin-top: 0 !important;
}
.single-post .content-wrapper .acf-block + p {
  margin-top: 0 !important;
}
.single-post .content-wrapper > p + .acf-block.bg-transparent {
  margin-top: -1.5rem;
}
.single-post .content-wrapper .block-slider-gallery .gallery-slider__caption {
  display: none;
}

.blog-author-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 48rem) {
  .blog-author-meta {
    flex-direction: row;
    align-items: center;
  }
}
.blog-author-meta h1 {
  margin-bottom: 2rem;
}
@media (min-width: 48rem) {
  .blog-author-meta h1 {
    margin-bottom: 0;
  }
}
.blog-author-meta .author-menu__info {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-author-meta .author-menu__info li {
  font-size: 0;
  line-height: 0;
}
@media (min-width: 48rem) {
  .blog-author-meta .author-menu__info li {
    margin-left: 1rem;
  }
}
.blog-author-meta .author-menu__info li a {
  font-weight: var(--title-2-font-weight);
  font-size: var(--title-2-font-size);
  font-family: var(--title-2-font-family);
  line-height: var(--title-2-line-height);
  display: inline-flex;
  align-items: center;
  color: #380031;
  text-decoration: none;
}
@media (min-width: 75rem) {
  .blog-author-meta .author-menu__info li a {
    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);
  }
}
.blog-author-meta .author-menu__info li a:hover, .blog-author-meta .author-menu__info li a:focus {
  color: #bf4600;
}
.blog-author-meta .author-menu__info li a i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}
.blog-author-meta .author-menu__info li button {
  font-weight: var(--title-2-font-weight);
  font-size: var(--title-2-font-size);
  font-family: var(--title-2-font-family);
  line-height: var(--title-2-line-height);
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: #380031;
  border: none;
  background: none;
}
@media (min-width: 75rem) {
  .blog-author-meta .author-menu__info li button {
    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);
  }
}
.blog-author-meta .author-menu__info li button:hover, .blog-author-meta .author-menu__info li button:focus {
  color: #bf4600;
}
.blog-author-meta .author-menu__info li button i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}
.blog-author-meta .author-menu__info li.author-menu__has-dropdown {
  position: relative;
}
.blog-author-meta .author-menu__info li.author-menu__has-dropdown .author-menu__dropdown {
  position: absolute;
  top: 36px;
  right: 0;
  z-index: 9;
  width: 12.125rem;
  padding: 0;
  border-radius: 0.625rem;
  background-color: #f6f0eb;
}
@media (min-width: 90rem) {
  .blog-author-meta .author-menu__info li.author-menu__has-dropdown .author-menu__dropdown {
    left: 0;
    right: auto;
  }
}
.blog-author-meta .author-menu__info li.author-menu__has-dropdown .author-menu__dropdown li {
  display: flex;
  margin: 0;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
}
.blog-author-meta .author-menu__info li.author-menu__has-dropdown .author-menu__dropdown li a {
  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);
}
.blog-author-meta p {
  display: none;
}