@charset "UTF-8";
/* 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;
}
*/
.people-single {
  --transition-delay: 500ms;
  --transition-duration: 500ms;
}
@media (min-width: 64rem) {
  .people-single__hero {
    display: flex;
    background-color: #ddddde;
    opacity: 0;
    transform: translate3d(0, -24px, 0);
    transition: var(--transition-duration) opacity var(--transition-delay) ease-out, var(--transition-duration) transform var(--transition-delay) ease-out;
  }
}
.page-has-loaded .people-single__hero {
  opacity: 1;
  transform: none;
}
.people-single__image-wrapper {
  opacity: 0;
  transform: translate3d(0, -24px, 0);
  transition: var(--transition-duration) opacity var(--transition-delay) ease-out, var(--transition-duration) transform var(--transition-delay) ease-out;
}
@media print {
  .people-single__image-wrapper {
    float: left;
  }
}
@media (min-width: 64rem) {
  .people-single__image-wrapper {
    width: 40%;
    max-width: 30.5rem;
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 75rem) {
  .people-single__image-wrapper {
    min-height: 30.5rem;
  }
}
.people-single__image-wrapper .people-single__figure {
  width: 100%;
  height: 100%;
}
@media print {
  .people-single__image-wrapper .people-single__figure {
    max-width: 11.25rem;
  }
}
.page-has-loaded .people-single__image-wrapper {
  opacity: 1;
  transform: none;
}
.people-single__image-wrapper .people-single__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-duration) opacity var(--transition-delay) ease-out, var(--transition-duration) transform var(--transition-delay) ease-out;
}
.people-single__hero-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: clamp(1.125rem, 0.8092105263rem + 0.6578947368vw, 1.5rem) clamp(1.5rem, 1.0789473684rem + 0.8771929825vw, 2rem) clamp(2rem, 0.8421052632rem + 2.4122807018vw, 3.375rem) clamp(1.5rem, 0.8684210526rem + 1.3157894737vw, 2.25rem);
  background-color: #ddddde;
}
@media (min-width: 64rem) {
  .people-single__hero-content {
    margin-right: 2rem;
  }
}
@media only screen and (min-width: 1350px) {
  .people-single__hero-content {
    margin-right: calc(var(--vw, 1vw) * 100 / 2 - 43rem);
  }
}
@media (min-width: 105rem) {
  .people-single__hero-content {
    margin-right: calc(var(--vw, 1vw) * 100 / 2 - 40rem - 55px);
  }
}
@media print {
  .people-single__hero-content {
    float: right;
    width: 500px;
    margin-left: 0;
    padding: 0 0 0 0;
  }
}
@media (min-width: 120rem) {
  .people-single__hero-content {
    margin-right: 0;
  }
  .people-single__hero-content .people-single__actions {
    margin-right: 16rem;
  }
}
@media (max-width: 63.98rem) {
  .people-single__hero-content {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: var(--transition-duration) opacity var(--transition-delay) ease-out, var(--transition-duration) transform var(--transition-delay) ease-out;
  }
  .page-has-loaded .people-single__hero-content {
    opacity: 1;
    transform: none;
  }
}
.people-single__hero-content > .container {
  height: 100%;
}
@media (max-width: 159.98rem) {
  .people-single__hero-content > .container {
    padding: 0;
  }
}
.people-single__hero-content .c-btn--back__wrapper {
  padding-bottom: 0.78125rem;
  padding-left: 0;
}
@media (min-width: 120rem) {
  .people-single__hero-content .c-btn--back__wrapper {
    margin-left: 0;
  }
}
@media print {
  .people-single__hero-content .c-btn--back__wrapper {
    display: none;
  }
}
.people-single__hero-content .people-single__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.people-single__details--mobile {
  display: none;
}
.people-single.sticky .people-single__grid {
  position: sticky;
  top: 3.25rem;
  z-index: 3;
  background-color: #ddddde;
}
@media (min-width: 36rem) and (max-width: 74.98rem) {
  .people-single.sticky .people-single__grid {
    top: 3.25rem;
  }
}
@media (min-width: 64rem) {
  .people-single.sticky .people-single__grid {
    height: 5.5rem;
  }
}
@media (min-width: 75rem) {
  .people-single.sticky .people-single__grid {
    height: 5.5rem;
  }
}
.people-single.sticky .people-single__grid .people-single__name {
  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-bottom: 0;
}
.people-single.sticky .people-single__grid .people-single__name:first-child {
  margin-top: 0;
}
.people-single.sticky .people-single__grid .people-single__name:last-child {
  margin-bottom: 0;
}
.people-single.sticky .people-single__grid .c-btn--back__wrapper {
  display: none;
}
.people-single.sticky .people-single__grid .people-single__title {
  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-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  color: #54575a;
}
.people-single.sticky .people-single__grid .people-single__title:first-child {
  margin-top: 0;
}
.people-single.sticky .people-single__grid .people-single__title:last-child {
  margin-bottom: 0;
}
.people-single.sticky .people-single__grid .people-single__title::after {
  display: none;
}
.people-single.sticky .people-single__grid .people-single__hero {
  width: calc(var(--columnWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  display: flex;
  flex-flow: wrap;
  margin: 0 auto;
  padding: 1rem 0 2rem 0;
}
@media (min-width: 36rem) {
  .people-single.sticky .people-single__grid .people-single__hero {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  }
}
@media (min-width: 48rem) {
  .people-single.sticky .people-single__grid .people-single__hero {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  }
}
@media (min-width: 64rem) {
  .people-single.sticky .people-single__grid .people-single__hero {
    padding: 0;
  }
}
.people-single.sticky .people-single__grid .people-single__details--mobile {
  display: block;
}
@media (min-width: 64rem) {
  .people-single.sticky .people-single__grid .people-single__details--mobile {
    display: none;
  }
}
.people-single.sticky .people-single__grid .people-single__image-wrapper {
  width: 3.625rem;
  height: 3.625rem;
  min-height: 0;
  margin-right: 0.5rem;
}
@media (min-width: 64rem) {
  .people-single.sticky .people-single__grid .people-single__image-wrapper {
    width: 5.5rem;
    height: 5.5rem;
    margin-right: 0;
  }
}
.people-single.sticky .people-single__grid .people-single__hero-content {
  margin-top: 1rem;
  margin-right: 0;
  padding: 0;
  padding-right: 0 !important;
}
@media (max-width: 63.98rem) {
  .people-single.sticky .people-single__grid .people-single__hero-content {
    width: 100%;
  }
}
@media (min-width: 64rem) {
  .people-single.sticky .people-single__grid .people-single__hero-content {
    margin-top: 0;
    padding: 1rem 1.5rem;
  }
}
.people-single.sticky .people-single__grid .people-single__hero-content > .container {
  padding: 0;
}
.people-single.sticky .people-single__grid .people-single__hero-content .people-single__wrapper {
  display: flex;
  flex-flow: wrap;
  gap: 1rem;
  align-items: center;
  margin-left: 0;
}
@media (min-width: 64rem) {
  .people-single.sticky .people-single__grid .people-single__hero-content .people-single__wrapper {
    flex-flow: nowrap;
    gap: 1.6875rem;
  }
}
.people-single.sticky .people-single__grid .people-single__hero-content .people-single__emails {
  flex-grow: 1;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}
@media (min-width: 64rem) {
  .people-single.sticky .people-single__grid .people-single__hero-content .people-single__emails {
    width: auto;
    text-align: right;
  }
}
.people-single.sticky .people-single__grid .people-single__hero-content .people-single__offices {
  display: none;
}
.people-single.sticky .people-single__grid .people-single__hero-content .people-single__details {
  display: none;
}
@media (min-width: 64rem) {
  .people-single.sticky .people-single__grid .people-single__hero-content .people-single__details {
    display: block;
  }
}
.people-single.sticky .people-single__grid .people-single__hero-content .people-single__actions {
  flex-grow: unset;
  gap: 1.6875rem;
  justify-content: flex-end;
  margin-right: 0;
}
.people-single.sticky .people-single__grid .people-single__hero-content .people-single__actions-column:first-child:not(:last-child) {
  display: none;
}
.people-single.sticky .people-single__grid .people-single__hero-content .people-single__actions-column .wp-block-button__link::after,
.people-single.sticky .people-single__grid .people-single__hero-content .people-single__social-buttons .wp-block-button__link::after {
  font-size: 2rem;
}
.people-single.sticky .people-single__grid .people-single__hero-content .people-single__social-buttons .is-style-social {
  position: relative;
}
@media (min-width: 64rem) {
  .people-single.sticky .people-single__grid .people-single__hero-content .people-single__social-buttons .is-style-social:first-child::after {
    position: absolute;
    left: -0.84375rem;
    content: "";
    width: 1px;
    height: 100%;
    background-color: #bbbcbd;
  }
}
.people-single__name {
  margin-bottom: 0;
}
.people-single__title {
  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.5625rem;
  color: #54575a;
}
.people-single__title:first-child {
  margin-top: 0;
}
.people-single__title:last-child {
  margin-bottom: 0;
}
@media (max-width: 63.98rem) {
  .people-single__title {
    position: relative;
    padding-bottom: 1rem;
  }
  .people-single__title::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 3rem;
    height: 0.291875rem;
    background-color: #bbbcbd;
  }
}
.people-single__emails {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 0;
  list-style: none;
}
@media (min-width: 64rem) {
  .people-single__emails {
    margin-top: 2.46875rem;
    margin-bottom: 2.8125rem;
  }
}
@media print {
  .people-single__emails {
    margin-top: 0 !important;
  }
}
.people-single__emails a {
  font-weight: var(--lead-font-weight);
  font-size: var(--lead-font-size);
  font-family: var(--lead-font-family);
  line-height: var(--lead-line-height);
  margin-top: calc(var(--lead-margin-bottom) * 1);
  margin-bottom: var(--lead-margin-bottom);
  text-decoration: none;
}
.people-single__emails a:first-child {
  margin-top: 0;
}
.people-single__emails a:last-child {
  margin-bottom: 0;
}
.people-single__details + .people-single__offices {
  margin-top: 1rem;
}
@media (min-width: 64rem) {
  .people-single__details + .people-single__offices {
    margin-top: 2.46875rem;
  }
}
.people-single__offices {
  margin-bottom: 1rem;
}
@media (min-width: 64rem) {
  .people-single__offices {
    margin-bottom: 1.5rem;
  }
}
.people-single__offices-list {
  position: relative;
}
@media (min-width: 48rem) {
  .people-single__offices-list {
    display: flex;
    flex-flow: wrap;
  }
}
.people-single__offices-list .people-single__office {
  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);
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 48rem) {
  .people-single__offices-list .people-single__office {
    width: 33.333%;
    padding: 0rem 1rem;
  }
  .people-single__offices-list .people-single__office:not(:last-child)::after {
    position: absolute;
    top: 0.0625rem;
    right: 0;
    content: "";
    width: 1px;
    height: 100%;
    background-color: #bbbcbd;
  }
}
.people-single__offices-list .people-single__office:first-child {
  padding-left: 0;
}
.people-single__offices-list .people-single__office:not(:last-child) {
  margin-bottom: 1rem;
}
.people-single__offices-list .people-single__office a {
  display: inline-block;
  text-decoration: none;
}
.people-single__offices-list .people-single__offices-number {
  position: relative;
  width: 33.333%;
  color: #0066ba;
  text-decoration: none;
}
@media (min-width: 64rem) {
  .people-single__offices-list .people-single__offices-number:not(:last-child)::after {
    position: absolute;
    top: 0.0625rem;
    right: 0;
    content: "";
    width: 1px;
    height: 100%;
    background-color: #bbbcbd;
  }
}
.people-single__offices-list .people-single__offices-number:first-child {
  padding-left: 0;
}
.people-single__offices-list .people-single__offices-number:hover, .people-single__offices-list .people-single__offices-number:focus {
  color: #003661;
  text-decoration: underline;
}
.people-single__actions {
  display: flex;
  flex-grow: 1;
  gap: 1.6875rem;
  align-items: flex-end;
}
@media print {
  .people-single__actions {
    display: none;
  }
}
@media (max-width: 35.98rem) {
  .people-single__actions {
    display: block;
  }
}
@media (min-width: 64rem) {
  .people-single__actions {
    gap: 0;
    justify-content: flex-end;
  }
}
@media (min-width: 64rem) {
  .people-single__actions:has(.people-single__actions-column:nth-of-type(2)) {
    justify-content: space-between;
  }
}
.people-single__actions .people-download-translation {
  margin: 0;
}
@media (max-width: 35.98rem) {
  .people-single__actions-column + .people-single__actions-column {
    margin-top: 1.25rem;
  }
}
.people-single__actions-column .wp-block-buttons {
  column-gap: 1.6875rem;
}
@media (max-width: 35.98rem) {
  .people-single__actions-column .wp-block-buttons {
    justify-content: space-between;
  }
}
.people-single__actions-column .is-style-social {
  position: relative;
}
.people-single__actions-column .is-style-social:not(:last-child)::before {
  position: absolute;
  right: -0.84375rem;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #bbbcbd;
}
@media (max-width: 35.98rem) {
  .people-single__actions-column .is-style-social:not(:last-child)::before {
    right: calc((64px - 50vw) / 2);
  }
}
.people-single__actions-column .share-icons {
  margin-bottom: 0 !important;
}
.people-single__actions-column .share-icons .share-icons__link {
  border: none !important;
}
.people-single__actions-column .share-icons .share-icons__link:hover, .people-single__actions-column .share-icons .share-icons__link:focus {
  background-color: transparent !important;
}
.people-single__actions-column .wp-block-button--icon-download {
  position: relative;
}
.people-single__content {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5rem;
  overflow: hidden;
}
@media (min-width: 64rem) {
  .people-single__content {
    flex-direction: row;
    gap: 0;
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: var(--transition-duration) opacity var(--transition-delay) ease-out, var(--transition-duration) transform var(--transition-delay) ease-out;
  }
  .page-has-loaded .people-single__content {
    opacity: 1;
    transform: none;
  }
}
@media print {
  .people-single__content {
    clear: both;
  }
}
.people-single__content-sidebar {
  z-index: 2;
  padding-bottom: 2.5rem;
  padding-left: clamp(1.125rem, -7.6644736842rem + 18.3114035088vw, 11.5625rem);
  background-color: #fff;
}
@media (min-width: 64rem) {
  .people-single__content-sidebar {
    width: 40%;
    max-width: 30.5rem;
    padding-top: 3.9375rem;
    padding-right: 4.5rem;
    padding-bottom: 5.0625rem;
    padding-left: clamp(1.125rem, -2.1381578947rem + 6.798245614vw, 5rem);
    border-right: 1px solid #ddddde;
  }
}
@media print {
  .people-single__content-sidebar {
    margin-top: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
}
.people-single__content-sidebar-item {
  max-width: 19rem;
}
.people-single__content-sidebar-item ul {
  padding-left: 0;
  list-style: none !important;
}
.people-single__content-sidebar-item ul 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.28125rem;
}
.people-single__content-sidebar-item ul li:first-child {
  margin-top: 0;
}
.people-single__content-sidebar-item ul li:last-child {
  margin-bottom: 0;
}
.people-single__content-sidebar-item ul li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #0066ba;
  text-decoration: none;
}
.people-single__content-sidebar-item:not(:last-child) {
  margin-bottom: 2.25rem;
}
.people-single__content-sidebar-item.people-single__content-sidebar-item--education ul > li:not(:last-of-type), .people-single__content-sidebar-item.people-single__content-sidebar-item--admissions ul > li:not(:last-of-type) {
  margin-bottom: 1.125rem !important;
}
.people-single__content-sidebar-heading {
  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);
}
.people-single__content-sidebar-heading:first-child {
  margin-top: 0;
}
.people-single__content-sidebar-heading:last-child {
  margin-bottom: 0;
}
.people-single__content-tabs {
  flex-grow: 1;
}
@media (min-width: 64rem) {
  .people-single__content-tabs {
    width: 60%;
  }
}
@media (min-width: 64rem) {
  .people-single__content-tabs > .container {
    padding-right: clamp(0.5rem, -0.7631578947rem + 2.6315789474vw, 2rem);
    padding-left: clamp(0.5rem, -0.7631578947rem + 2.6315789474vw, 2rem);
  }
}
@media print {
  .people-single__content-tabs > .container {
    padding: 0;
  }
}
@media (min-width: 105rem) {
  .people-single__content-tabs .block-content-section {
    max-width: 77.375rem !important;
    padding-right: 12.375rem;
    padding-left: 7rem;
  }
}
@media print {
  .people-single__content-tabs .block-content-section {
    position: relative !important;
    display: inline !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
.people-single__content-tabs .block-content-section > p:not(:last-child),
.people-single__content-tabs .block-content-section > div > p:not(:last-child) {
  margin-bottom: var(--body-1-margin-bottom) !important;
}
.people-single__content-tabs .block-content-section ul li {
  position: relative;
  list-style-type: none;
}
@media print {
  .people-single__content-tabs .block-content-section ul li {
    list-style-type: square;
  }
}
.people-single__content-tabs .block-content-section ul li::before {
  position: absolute;
  top: 0.625rem;
  left: -0.95em;
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: currentcolor;
}
@media print {
  .people-single__content-tabs .block-content-section ul li::before {
    display: none;
  }
}
.people-single__content-tabs .block-content-section ul li > p {
  margin-bottom: 0 !important;
}
.people-single__content-tabs .block-content-section ul ul {
  padding-left: 1.5em;
}
.people-single__content-tabs .block-content-section ul ul li::before {
  position: absolute;
  top: 0.5625rem;
  left: -0.95em;
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border: 1px solid currentcolor;
  background-color: transparent;
}
@media print {
  .people-single__content-tabs .block-content-section ul ul li::before {
    display: none;
  }
}
.people-single__content-tabs .block-content-section ul ul li ul li::before {
  border-radius: 50%;
}
@media print {
  .people-single__content-tabs .block-content-section ul ul li ul li::before {
    display: none;
  }
}
.people-single__content-tabs .back-to-top.wp-block-button.is-style-tertiary {
  max-width: 54rem;
  margin: 0 auto 2.5rem auto;
}
@media (min-width: 105rem) {
  .people-single__content-tabs .back-to-top.wp-block-button.is-style-tertiary {
    max-width: 77.375rem !important;
    padding-right: 12.375rem;
    padding-left: 7rem;
  }
}
.people-single__content-tabs .back-to-top.wp-block-button.is-style-tertiary:not(.is-mobile) {
  display: none;
}
@media (min-width: 64rem) {
  .people-single__content-tabs .back-to-top.wp-block-button.is-style-tertiary:not(.is-mobile) {
    display: block;
  }
}
@media print and (min-width: 64rem) {
  .people-single__content-tabs .back-to-top.wp-block-button.is-style-tertiary:not(.is-mobile) {
    display: none;
  }
}
@media print {
  .people-single .back-to-top.wp-block-button.is-style-tertiary {
    display: none;
  }
}
@media (min-width: 64rem) {
  .people-single .back-to-top.wp-block-button.is-style-tertiary.is-mobile {
    display: none;
  }
}
@media (min-width: 2160px) {
  .people-single .people-single__wrapper,
.people-single .people-single__content-tabs-wrapper {
    margin-left: -4rem;
  }
}
@media (min-width: 2460px) {
  .people-single .people-single__wrapper,
.people-single .people-single__content-tabs-wrapper {
    margin-left: -15.25rem;
  }
}
.people-single .block-content-section__post-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
  column-gap: clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem);
}
@media (min-width: 36rem) {
  .people-single .block-content-section__post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.people-single .block-content-section__blog-links {
  margin-top: clamp(2rem, -0.1052631579rem + 4.3859649123vw, 4.5rem);
}
.people-single .block-content-section__blog-links .wp-block-button {
  margin: 0;
}
.people-single .block-content-section__blog-links .wp-block-button:last-child {
  margin-top: 0.75rem;
}
.people-single .block-content-section__blog-links a {
  display: block;
}
.people-single .people-single__actions-column .wp-block-button.is-style-social .wp-block-button__link,
.people-single .people-single__social-buttons .wp-block-button.is-style-social .wp-block-button__link {
  display: block;
}
.people-single .people-single__actions-column .wp-block-button.is-style-social .wp-block-button__link::after,
.people-single .people-single__social-buttons .wp-block-button.is-style-social .wp-block-button__link::after {
  font-size: 2rem;
}
@media print {
  .people-single .block-tab-standard-tab--insights {
    display: none !important;
  }
}
@media print {
  .people-single .block-tab__mobile-select {
    display: none !important;
  }
}
.people-single blockquote {
  font-weight: var(--quote-2-font-weight);
  font-size: var(--quote-2-font-size);
  font-family: var(--quote-2-font-family);
  font-style: var(--quote-2-font-style);
  line-height: var(--quote-2-line-height);
  position: relative;
  margin: clamp(2rem, 1.1578947368rem + 1.7543859649vw, 3rem) auto;
  padding-top: clamp(1rem, 0.7894736842rem + 0.4385964912vw, 1.25rem);
  padding-bottom: 0 !important;
  color: #000;
  text-align: center;
}
.people-single blockquote::before {
  content: "\ea3b";
  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: -1.25rem;
  left: 50%;
  color: var(--blockColor, #000);
  color: #000;
  font-style: normal;
  transform: translate(-50%, 0);
}
.people-single blockquote cite {
  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);
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
  font-weight: 400 !important;
  font-style: normal;
}
.people-single blockquote cite::before {
  position: relative;
  content: "—";
  display: inline-block;
  margin-right: 0.1875rem;
  color: #000;
}
.people-single blockquote__citation-divider {
  width: 1px;
  height: 1rem;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  color: transparent;
  background-color: var(--blockColor, #000);
}
.people-single blockquote p {
  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-bottom: clamp(1rem, 0.7894736842rem + 0.4385964912vw, 1.25rem);
  font-style: normal;
}

@page {
  margin: 55px;
}