/* 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;
}
*/
.block-blog-taxonomy-hero {
  --transition-duration: 500ms;
  --transition-delay: 100ms;
  padding-top: 4.125rem;
}
@media (max-width: 47.98rem) {
  .block-blog-taxonomy-hero {
    padding-top: 0;
  }
}
.block-blog-taxonomy-hero.in-viewport .block-blog-taxonomy-hero__title,
.block-blog-taxonomy-hero.in-viewport .block-blog-taxonomy-hero__description,
.block-blog-taxonomy-hero.in-viewport .block-blog-taxonomy-hero__image {
  opacity: 1;
  transform: none;
}
.block-blog-taxonomy-hero.in-viewport .block-blog-taxonomy-hero__title::after,
.block-blog-taxonomy-hero.in-viewport .block-blog-taxonomy-hero__description::after,
.block-blog-taxonomy-hero.in-viewport .block-blog-taxonomy-hero__image::after {
  transform: none;
}
.block-blog-taxonomy-hero .c-btn--back__wrapper {
  position: relative;
  top: -2.0625rem;
  left: 0;
  width: auto;
  padding: 0;
}
@media (max-width: 35.98rem) {
  .block-blog-taxonomy-hero .c-btn--back__wrapper {
    position: absolute !important;
    top: 0;
    top: 1.125rem;
    left: 1.25rem;
  }
  .block-blog-taxonomy-hero .c-btn--back__wrapper a {
    color: #fff;
  }
}
.block-blog-taxonomy-hero:not(.block-blog-taxonomy-hero--no-image) .container {
  position: relative;
}
@media (max-width: 35.98rem) {
  .block-blog-taxonomy-hero:not(.block-blog-taxonomy-hero--no-image) .container {
    padding: 0;
  }
}
.block-blog-taxonomy-hero__inner {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 64rem) {
  .block-blog-taxonomy-hero__inner {
    flex-wrap: nowrap;
  }
}
.block-blog-taxonomy-hero__image-container {
  flex: 0 0 100%;
}
@media (min-width: 64rem) {
  .block-blog-taxonomy-hero__image-container {
    flex: 0 0 40%;
  }
}
@media (max-width: 47.98rem) {
  .block-blog-taxonomy-hero .wp-block-buttons .wp-block-button {
    width: 100%;
  }
}
.block-blog-taxonomy-hero__image {
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translate3d(-3.125rem, 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: 2/1;
}
@media (min-width: 64rem) {
  .block-blog-taxonomy-hero__image {
    aspect-ratio: 1/1;
  }
}
.block-blog-taxonomy-hero__content {
  position: relative;
  width: 100%;
  margin-top: -3.9375rem;
  padding: 0 1.25rem;
}
@media (min-width: 64rem) {
  .block-blog-taxonomy-hero__content {
    left: -5rem;
    flex: 0 0 calc(60% + 5rem);
    margin-top: 3.9375rem;
  }
}
.block-blog-taxonomy-hero__content-inner {
  padding: 1.5rem;
  background: #fff;
}
@media (min-width: 36rem) {
  .block-blog-taxonomy-hero__content-inner {
    padding: 2.8125rem 4rem;
  }
}
@media (min-width: 64rem) {
  .block-blog-taxonomy-hero.is-style-no-text-box .block-blog-taxonomy-hero__content {
    left: 0;
    flex: 0 0 calc(60% + 5rem);
    margin-top: 2.25rem;
  }
}
.block-blog-taxonomy-hero.is-style-no-text-box .block-blog-taxonomy-hero__content .block-blog-taxonomy-hero__content-inner {
  padding-top: 1.5rem;
  background: #fff;
}
@media (min-width: 36rem) {
  .block-blog-taxonomy-hero.is-style-no-text-box .block-blog-taxonomy-hero__content .block-blog-taxonomy-hero__content-inner {
    padding-left: 1rem !important;
  }
}
.block-blog-taxonomy-hero.block-blog-taxonomy-hero--no-image {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
.block-blog-taxonomy-hero.block-blog-taxonomy-hero--no-image .c-btn--back__wrapper {
  position: relative !important;
  top: auto;
  left: auto;
  margin-bottom: 1.25rem;
}
.block-blog-taxonomy-hero.block-blog-taxonomy-hero--no-image .c-btn--back__wrapper a {
  color: #0066ba;
}
.block-blog-taxonomy-hero.block-blog-taxonomy-hero--no-image .c-btn--back__wrapper a:hover, .block-blog-taxonomy-hero.block-blog-taxonomy-hero--no-image .c-btn--back__wrapper a:focus {
  color: #003661;
}
.block-blog-taxonomy-hero.block-blog-taxonomy-hero--no-image .block-blog-taxonomy-hero__content {
  left: auto;
  margin-top: 0;
  padding: 0;
}
.block-blog-taxonomy-hero.block-blog-taxonomy-hero--no-image .block-blog-taxonomy-hero__content .block-blog-taxonomy-hero__content-inner {
  padding: 0 !important;
}
.block-blog-taxonomy-hero__title {
  position: relative;
  display: inline-block;
  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-blog-taxonomy-hero__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.25rem;
  max-width: 6.75rem;
  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-blog-taxonomy-hero__description {
  margin-top: 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-blog-taxonomy-hero__description:not(:last-child) {
  margin-bottom: 0;
}
.block-blog-taxonomy-hero__subscribe-links {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 1.125rem;
  margin-top: 1.125rem;
}
@media (min-width: 48rem) {
  .block-blog-taxonomy-hero__subscribe-links {
    align-items: center;
  }
}
.block-blog-taxonomy-hero .subscribe-links__platform-link {
  display: block;
  transition: opacity 0.2s linear;
  /* stylelint-disable order/order */
  /* stylelint-enable order/order */
}
.block-blog-taxonomy-hero .subscribe-links__platform-link:focus, .block-blog-taxonomy-hero .subscribe-links__platform-link:hover {
  opacity: 0.5;
}
.block-blog-taxonomy-hero .subscribe-links__platform-link::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: none no-repeat center center transparent;
}
.block-blog-taxonomy-hero .subscribe-links__platform-link--spotify::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%231ED760' fill-rule='evenodd' d='M0 12.054C0 5.637 5.376.429 12 .429s12 5.208 12 11.625-5.376 11.625-12 11.625S0 18.47 0 12.054Zm19.05-1.35c.218.121.373.182.624.182.59 0 1.123-.454 1.123-1.092 0-.558-.247-.848-.624-1.06-2.705-1.527-6.407-2.24-9.939-2.24-2.076 0-3.982.23-5.685.713-.436.121-.842.482-.842 1.12 0 .623.488 1.106 1.127 1.106.194 0 .377-.052.534-.097l.09-.025c3.987-1.078 10.147-.6 13.592 1.393Zm-1.406 3.59c.153.081.31.164.53.164a.923.923 0 0 0 .94-.914c0-.408-.156-.698-.548-.923-2.39-1.379-5.424-2.133-8.564-2.133-2.013 0-3.387.272-4.732.637-.499.136-.75.47-.75.97 0 .502.42.91.938.91.16 0 .27-.033.41-.075l.166-.047c4.011-1.054 8.521-.356 11.545 1.378l.065.034Zm-1.289 3.07c.189.108.314.17.518.17a.72.72 0 0 0 .735-.723c0-.426-.174-.59-.47-.773-3.454-2.002-7.504-2.077-11.467-1.228-.363.075-.658.304-.658.787 0 .38.295.74.765.74.11 0 .286-.045.447-.088l.128-.033c3.47-.69 6.983-.614 10.002 1.148Z' clip-rule='evenodd'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h24v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.block-blog-taxonomy-hero .subscribe-links__platform-link--google::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%230066D9' d='M1.605 9.705c-.82 0-1.485.664-1.485 1.485v1.62a1.484 1.484 0 1 0 2.97 0v-1.62c0-.82-.664-1.485-1.485-1.485Z'/%3E%3Cpath fill='%234285F4' d='M22.395 9.705c-.82 0-1.485.664-1.485 1.485v1.62a1.484 1.484 0 1 0 2.97 0v-1.62c0-.82-.664-1.485-1.485-1.485Z'/%3E%3Cpath fill='%23EA4335' d='M6.735 14.565c-.82 0-1.485.664-1.485 1.485v1.62a1.484 1.484 0 1 0 2.97 0v-1.62c0-.82-.664-1.485-1.485-1.485Zm0-9.72c-.82 0-1.485.664-1.485 1.485v5.299h.001a1.485 1.485 0 0 0 2.968 0h.001V6.33c0-.82-.664-1.485-1.485-1.485Z'/%3E%3Cpath fill='%2334A853' d='M17.265 4.845c-.82 0-1.485.664-1.485 1.485v1.62a1.484 1.484 0 1 0 2.97 0V6.33c0-.82-.664-1.485-1.485-1.485Z'/%3E%3Cpath fill='%23FAB908' d='M12 .12c-.82 0-1.485.664-1.485 1.485v1.62a1.484 1.484 0 1 0 2.97 0v-1.62C13.485.785 12.821.12 12 .12Zm0 19.17c-.82 0-1.485.664-1.485 1.485v1.62a1.484 1.484 0 1 0 2.97 0v-1.62c0-.82-.664-1.485-1.485-1.485Z'/%3E%3Cpath fill='%2334A853' d='M17.265 10.92c-.82 0-1.485.664-1.485 1.485v5.265a1.484 1.484 0 1 0 2.97 0v-5.265c0-.82-.664-1.485-1.485-1.485Z'/%3E%3Cpath fill='%23FAB908' d='M13.485 7.68a1.484 1.484 0 1 0-2.97 0v8.64a1.484 1.484 0 1 0 2.97 0V7.68Z'/%3E%3C/svg%3E");
}
.block-blog-taxonomy-hero .subscribe-links__platform-link--apple::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='url(%23a)' fill-rule='evenodd' d='M21.99 22.817c.764-.588 1.302-1.422 1.535-2.015.47-1.194.475-2.549.475-3.402V6.6c0-.852-.005-2.207-.475-3.4-.233-.593-.771-1.427-1.535-2.015A5.031 5.031 0 0 0 20.3.307C19.53.078 18.582 0 17.4 0H6.6C5.419 0 4.47.077 3.7.306a5.027 5.027 0 0 0-1.69.878C1.246 1.772.708 2.607.475 3.199.005 4.393 0 5.748 0 6.601v10.8c0 .852.005 2.207.475 3.401.233.593.771 1.427 1.535 2.015.44.339.967.663 1.69.878.77.228 1.719.305 2.9.305h10.8c1.181 0 2.13-.077 2.9-.305a5.027 5.027 0 0 0 1.69-.878Zm-9.988-9.646c.747 0 1.38.244 1.74.624.187.198.287.402.318.691.06.56.026 1.043-.04 1.815a41.775 41.775 0 0 1-.336 2.716c-.11.71-.2 1.094-.281 1.37-.133.444-.628.834-1.401.834-.774 0-1.269-.39-1.4-.835-.082-.275-.172-.658-.283-1.37a41.72 41.72 0 0 1-.336-2.715c-.066-.771-.1-1.254-.04-1.815.032-.29.132-.493.32-.691.36-.38.992-.623 1.739-.623Zm.002-.795a1.964 1.964 0 1 1 0-3.928 1.964 1.964 0 0 1 0 3.928Zm-8.44-1.382C3.623 6.4 7.387 2.674 11.98 2.66c4.665-.013 8.464 3.778 8.465 8.44 0 3.674-2.362 6.807-5.647 7.963a.113.113 0 0 1-.15-.123c.044-.289.085-.579.123-.864a.29.29 0 0 1 .17-.23 7.37 7.37 0 0 0 4.424-6.747c0-4.078-3.335-7.392-7.42-7.359-3.997.032-7.26 3.29-7.3 7.287a7.37 7.37 0 0 0 4.423 6.82.29.29 0 0 1 .171.228c.038.286.079.576.122.865a.113.113 0 0 1-.15.123c-3.316-1.167-5.691-4.35-5.645-8.07Zm13.018.109a4.579 4.579 0 0 0-4.755-4.57 4.586 4.586 0 0 0-4.392 4.447 4.562 4.562 0 0 0 1.445 3.456.35.35 0 0 1 .11.275 7.81 7.81 0 0 0 .01.964.111.111 0 0 1-.174.099 5.651 5.651 0 0 1-2.472-4.745c.039-2.993 2.439-5.46 5.43-5.575a5.66 5.66 0 0 1 5.877 5.649 5.65 5.65 0 0 1-2.471 4.67.111.111 0 0 1-.174-.098c.021-.345.028-.65.01-.964a.35.35 0 0 1 .11-.275 4.561 4.561 0 0 0 1.446-3.333Z' clip-rule='evenodd'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='12' x2='12' y1='0' y2='23.999' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F452FF'/%3E%3Cstop offset='1' stop-color='%23832BC1'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}
.block-blog-taxonomy-hero .subscribe-links__platform-link--stitcher {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3E%3Cpath fill='%233590C5' d='M.847 8.345h4.049v7.347H.846V8.345Z'/%3E%3Cpath fill='%23C53827' d='M19.94 7.941h4.05v6.769h-4.05V7.94Z'/%3E%3Cpath fill='%23EC8B24' d='M15.196 6.436h4.05v8.795h-4.05V6.436Z'/%3E%3Cpath fill='%23FBC618' d='M10.452 7.709h4.05v8.447h-4.05V7.709Z'/%3E%3Cpath fill='%23612268' d='M5.65 7.014h4.049v8.16h-4.05v-8.16Z'/%3E%3C/svg%3E");
}
.block-blog-taxonomy-hero .component-lightbox__container p {
  text-align: center;
}
.block-blog-taxonomy-hero .component-lightbox__container .container {
  position: relative;
  max-width: 58rem;
  padding: 3.75rem 2.5rem 2.5rem 2.5rem !important;
  background-color: #fff;
}
.block-blog-taxonomy-hero .component-lightbox__container .container .c-btn--close {
  top: 1.25rem;
  color: #0066ba;
  border: none;
  background-color: transparent;
}
.block-blog-taxonomy-hero .component-lightbox__container .container .c-btn--close::before {
  display: none;
}