/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable font-family-no-missing-generic-family-keyword */
/* stylelint-disable scss/operator-no-unspaced */
/* 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.
*/
/****************
 * 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;
}
*/
body:not(.wp-admin) .block-slider-gallery-tracked .container.static-gallery .gallery-slider__image-container {
  min-width: 0;
  padding-top: 133%;
}
body:not(.wp-admin) .lightbox-gallery__thumbnails-wrapper {
  margin-bottom: -2rem;
}
@media (max-width: 35.98rem) {
  body:not(.wp-admin) .lightbox-gallery__thumbnails-wrapper {
    margin-bottom: -0.9375rem;
  }
}
body:not(.wp-admin) .lightbox-gallery__gallery-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
  padding-top: 5rem;
  background-color: var(--blockColor, #0e0c06);
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s linear;
}
body:not(.wp-admin) .lightbox-gallery__gallery-wrapper:not(.active) {
  visibility: hidden;
  opacity: 0;
}
body:not(.wp-admin) .lightbox-gallery__close {
  position: absolute;
  top: 1.875rem;
  right: 1.875rem;
  z-index: 999;
}
body:not(.wp-admin) .lightbox-gallery__single-col {
  margin-bottom: 2rem;
}
@media (max-width: 61.98rem) {
  body:not(.wp-admin) .lightbox-gallery__single-col {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 35.98rem) {
  body:not(.wp-admin) .lightbox-gallery__single-col {
    margin-bottom: 0.9375rem;
  }
}
body:not(.wp-admin) .lightbox-gallery__single-image-wrapper {
  display: block;
  overflow: hidden;
}
body:not(.wp-admin) .lightbox-gallery__single-image-wrapper:hover img, body:not(.wp-admin) .lightbox-gallery__single-image-wrapper:focus img {
  transform: scale(1.03);
}
body:not(.wp-admin) .lightbox-gallery .gallery-slider {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translate(0, -50%);
}
body:not(.wp-admin) .lightbox-gallery .gallery-slider__caption {
  color: #fff;
}
.galleryTrackedOpen body:not(.wp-admin) .gallery-slider .slick-list {
  overflow: visible;
}
body:not(.wp-admin) .gallery-slider__slider {
  padding: 0;
}
body:not(.wp-admin) .gallery-slider__caption {
  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);
  text-decoration: var(--subtitle-3-text-decoration);
  margin-top: 1rem;
  margin-bottom: 0;
  text-align: center;
}
body:not(.wp-admin) .gallery-slider .slick-arrow {
  outline: none;
}
body:not(.wp-admin) .gallery-slider--fluid .gallery-slider__single-slide {
  padding: 0 0.5rem;
}
body:not(.wp-admin) .gallery-slider--fluid .slick-arrow.slick-next {
  right: 1.25rem;
}
body:not(.wp-admin) .gallery-slider--fluid .slick-arrow.slick-prev {
  left: 1.25rem;
}
body:not(.wp-admin) .gallery-slider--has-captions .slick-arrow {
  margin-top: -1rem;
}
@media (min-width: 75rem) {
  body:not(.wp-admin) .block-slider-gallery--flexible .gallery-slider--fluid .slick-arrow.slick-next {
    right: 1.875rem;
  }
  body:not(.wp-admin) .block-slider-gallery--flexible .gallery-slider--fluid .slick-arrow.slick-prev {
    left: 1.875rem;
  }
}
body:not(.wp-admin) .block-simple-card-slider-vertical__progress-bar {
  position: relative;
  flex: 1 1 52.857%;
  height: 0.25rem;
  max-width: 52.857%;
  margin: auto;
  border-radius: 0.5rem;
  background: var(--neutral-neutral-9, #e6e3db);
}
@media (min-width: 48rem) {
  body:not(.wp-admin) .block-simple-card-slider-vertical__progress-bar {
    flex-basis: 100%;
    max-width: none;
  }
}
body:not(.wp-admin) .block-simple-card-slider-vertical__progress-bar-slider {
  position: absolute;
  top: 50%;
  left: 0;
  width: 20%;
  height: 0.375rem;
  border-radius: 0.5rem;
  background-color: var(--primary-blue-1, #003da7);
  transform: translateY(-50%);
  transition: left 300ms ease;
}
body:not(.wp-admin) .block-slider-gallery .is-style-preheading {
  margin-bottom: 0.5rem;
}
body:not(.wp-admin) .block-slider-gallery .is-style-preheading + h1,
body:not(.wp-admin) .block-slider-gallery .is-style-preheading + h2,
body:not(.wp-admin) .block-slider-gallery .is-style-preheading + h3,
body:not(.wp-admin) .block-slider-gallery .is-style-preheading + h4,
body:not(.wp-admin) .block-slider-gallery .is-style-preheading + h5,
body:not(.wp-admin) .block-slider-gallery .is-style-preheading + h6 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
body:not(.wp-admin) .block-slider-gallery .block-buttons {
  margin-top: 1rem;
}
body:not(.wp-admin) .block-slider-gallery.is-child-block {
  margin-top: 0;
  padding-top: 0;
}
body:not(.wp-admin) .block-slider-gallery.is-child-block .block-featured-adventures__slides {
  margin-top: 0;
  padding-top: 0;
}
body:not(.wp-admin) .block-slider-gallery__slides {
  flex: 0 0 calc(100% + 10px);
  max-width: calc(100% + 10px);
  margin-top: 3rem;
  margin-right: -0.3125rem;
  margin-left: -0.3125rem;
  overflow: visible;
}
@media (min-width: 48rem) {
  body:not(.wp-admin) .block-slider-gallery__slides {
    flex: 0 0 calc(100% + 30px);
    max-width: calc(100% + 30px);
    margin-top: 3.75rem;
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
body:not(.wp-admin) .block-slider-gallery__slides .slick-list {
  overflow: visible;
}
body:not(.wp-admin) .block-slider-gallery__slides .slick-track {
  display: flex;
}
body:not(.wp-admin) .block-slider-gallery__slides .slick-track .slick-slide {
  display: flex;
  height: auto;
}
body:not(.wp-admin) .block-slider-gallery__slide {
  height: 100%;
}
body:not(.wp-admin) .block-slider-gallery__controls {
  display: flex;
  margin-top: 3.125rem;
}
body:not(.wp-admin) .block-slider-gallery__arrows {
  display: none;
}
@media (min-width: 48rem) {
  body:not(.wp-admin) .block-slider-gallery__arrows {
    position: relative;
    display: block;
    flex: 0 1 10.25rem;
  }
}
body:not(.wp-admin) .block-slider-gallery .slick-arrow {
  width: 3rem;
  height: 3rem;
  border: 2px solid #fff;
  background: none;
}
body:not(.wp-admin) .block-slider-gallery .slick-prev {
  left: 0;
}
body:not(.wp-admin) .block-slider-gallery .slick-next {
  left: 1.625rem;
  right: auto;
  transform: translate(100%, -50%);
}
body:not(.wp-admin) .block-slider-gallery__progress-bar {
  position: relative;
  flex: 1 1 52.857%;
  height: 0.0625rem;
  max-width: 52.857%;
  margin: auto;
  background-color: #fff;
}
@media (min-width: 48rem) {
  body:not(.wp-admin) .block-slider-gallery__progress-bar {
    flex-basis: 100%;
    max-width: none;
  }
}
body:not(.wp-admin) .block-slider-gallery__progress-bar-slider {
  position: absolute;
  top: 50%;
  left: 0;
  width: 20%;
  height: 0.375rem;
  background-color: #fff;
  transform: translateY(-50%);
  transition: left 300ms ease;
}
body:not(.wp-admin) .block-slider-gallery.is-style-light .slick-arrow {
  border: 2px solid #00205c;
}
body:not(.wp-admin) .block-slider-gallery.is-style-light .slick-arrow::after {
  color: #00205c;
}
body:not(.wp-admin) .block-slider-gallery-tracked .gallery-slider__image-container {
  position: relative;
  height: 0;
  min-width: 24.0625rem;
  min-width: 528px;
  max-width: 100%;
  padding-top: 56.43411%;
  padding-top: 78.894737%;
  overflow: hidden;
  /* height: 408px; */
}
body:not(.wp-admin) .block-slider-gallery-tracked .gallery-slider__image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body:not(.wp-admin) .block-slider-gallery-tracked .block-simple-card-slider-vertical__arrows.component-slider__arrows {
  top: 3px !important;
}
body:not(.wp-admin) .block-slider-gallery-tracked .slick-arrow.slick-next {
  transform: translate(131%, -50%);
}
body:not(.wp-admin) .block-slider-gallery-tracked .block-blog-related__top {
  margin-bottom: clamp(2rem, 0.8571428571rem + 2.380952381vw, 3rem);
}
@media (min-width: 36rem) {
  body:not(.wp-admin) .block-slider-gallery-tracked .block-blog-related__top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
body:not(.wp-admin) .block-slider-gallery-tracked .block-blog-related__top .wp-block-buttons {
  margin-top: auto;
}
@media (min-width: 36rem) {
  body:not(.wp-admin) .block-slider-gallery-tracked .block-blog-related__top * {
    margin-top: auto;
    margin-bottom: auto;
  }
}
body:not(.wp-admin) .block-slider-gallery-tracked .wp-block-button--icon-right .wp-block-button__link::after {
  padding: 0.125rem;
  color: #fff;
  font-size: 0.875rem !important;
  border-radius: 50%;
  background: var(--primary-blue-1, #003da7) !important;
}
body:not(.wp-admin) .block-slider-gallery-tracked.block-slider-gallery--hard .gallery-slider__image-container {
  position: relative;
  height: 0;
  min-width: 24.0625rem;
  min-width: 304px;
  max-width: 100%;
  padding-top: 56.43411%;
  padding-top: 132.8947368421%;
  overflow: hidden;
}
@media (max-width: 61.98rem) {
  body:not(.wp-admin) .block-slider-gallery-tracked.block-slider-gallery--hard .gallery-slider__image-container {
    min-width: 304px !important;
    max-width: 304px !important;
  }
}
body:not(.wp-admin) .block-slider-gallery-tracked.block-slider-gallery--hard .gallery-slider__image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body:not(.wp-admin) .block-slider-gallery-tracked button.slick-arrow:hover {
  background: var(--Primary-Blue-1, #003da7) !important;
}
body:not(.wp-admin) .block-slider-gallery-tracked button.slick-next.slick-arrow {
  color: #fff;
  border: none;
  border-radius: 2rem;
  background: var(--secondary-light-blue, #005cfa);
}
body:not(.wp-admin) .block-slider-gallery-tracked button.slick-prev.slick-arrow {
  color: #fff;
  border: none;
  border-radius: 2rem;
  background: var(--secondary-light-blue, #005cfa);
}
body:not(.wp-admin) .block-slider-gallery-tracked .gallery-slider__single-slide {
  position: relative;
  overflow: hidden;
}
@media (max-width: 61.98rem) {
  body:not(.wp-admin) .block-slider-gallery-tracked .gallery-slider__single-slide.col-3 {
    flex: 0 0 50%;
    flex: 0 0 100%;
    max-width: 50%;
    max-width: 100%;
    margin-bottom: 22px;
  }
}
body:not(.wp-admin) .block-slider-gallery-tracked .test-container {
  /* max-width: 1200px; */
  /* justify-content: revert; */
  /* max-width: 1200px; */
  /* justify-content: revert; */
  /* right: 0; */
  /* justify-content: end; */
  /* align-items: revert-layer; */
  /* margin: 0; */
}
@media (min-width: 75rem) {
  body:not(.wp-admin) .block-slider-gallery-tracked .test-container {
    margin-left: calc((100% - clamp(81.25rem, 78.3928571429rem + 5.9523809524vw, 83.75rem)) / 2 + 5px) !important;
  }
}
@media (max-width: 89.98rem) {
  body:not(.wp-admin) .block-slider-gallery-tracked .test-container {
    margin-left: clamp(1.25rem, 0.5357142857rem + 1.4880952381vw, 1.875rem) !important;
  }
}
body:not(.wp-admin) .block-slider-gallery-tracked .test-container .gallery-slider {
  position: relative;
}
body:not(.wp-admin) .block-slider-gallery-tracked .gallery-slider__image-container {
  border-radius: 1rem;
}
body:not(.wp-admin) .block-slider-gallery-tracked .block-simple-card-slider-vertical__controls {
  margin-top: 3.5rem;
}
@media (min-width: 48rem) {
  body:not(.wp-admin) .block-slider-gallery-tracked .block-simple-card-slider-vertical__controls {
    padding-left: 0;
  }
}
body:not(.wp-admin) .block-slider-gallery-tracked .block-simple-card-slider-vertical__arrows.component-slider__arrows {
  position: relative;
  top: 0.9375rem;
  margin-left: -1.125rem;
}
body:not(.wp-admin) .block-slider-gallery-tracked .block-simple-card-slider-vertical__progress-bar.component-slider__progress-bar {
  margin-left: 9rem;
}
@media (max-width: 61.98rem) {
  body:not(.wp-admin) .block-slider-gallery-tracked .block-simple-card-slider-vertical__progress-bar.component-slider__progress-bar {
    max-width: 61.857%;
    margin-left: 7.25rem;
  }
}
@media (max-width: 61.98rem) {
  body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image .gallery-slider__image-container::after {
    content: none !important;
  }
  body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image .gallery-slider__image-container::before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    z-index: 99;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8) 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.95) 100%);
    opacity: 1;
    opacity: 0.9;
  }
}
body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image:hover * {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image:hover .gallery-slider__image-container::after {
  content: none;
}
body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image:hover .gallery-slider__image-container::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: 99;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.8) 100%;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.95) 100%);
  opacity: 1;
  opacity: 0.9;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image:hover .gallery-slider__content {
  position: absolute;
  left: 0;
  left: 36px;
  bottom: 12%;
  right: 0;
  right: 36px;
  z-index: 999999;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image:hover .gallery-slider__content figcaption.gallery-slider__caption {
  position: relative;
  left: auto;
  bottom: auto;
  right: auto;
  text-align: left;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image:hover .gallery-slider__content p.gallery-slider__description {
  position: relative;
  left: 0;
  bottom: auto;
  right: 0;
  z-index: 9999999;
  display: block;
  margin: 10px auto 0;
  color: #fff;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image:hover .gallery-slider__content .wp-block-button.is-style-tertiary.wp-block-button--icon-right {
  position: relative;
  /* position: absolute; */
  bottom: auto;
  z-index: 9999999;
  display: block;
  margin: 22px 0 0;
  color: #fff;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image:hover .gallery-slider__content .wp-block-button.is-style-tertiary.wp-block-button--icon-right a {
  opacity: 1;
}
body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image * {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image .wp-block-button--icon-right .wp-block-button__link::after {
  background: none !important;
}
body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image .gallery-slider__image-container::after {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: 99999;
  display: block;
  width: 100%;
  height: 99%;
  background: var(--gradient-dark-scrim, linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.8) 100%));
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image .gallery-slider__content {
  position: absolute;
  bottom: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 61.98rem) {
  body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image .gallery-slider__content {
    position: absolute;
    left: 44px;
    bottom: 46px;
    right: 33px;
    z-index: 99999;
  }
}
body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image .gallery-slider__content * {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image .gallery-slider__content figcaption.gallery-slider__caption {
  position: absolute;
  left: 0;
  left: 32px;
  bottom: 2.1875rem;
  right: 0;
  z-index: 999999;
  margin: 0 auto;
  color: var(--primary-white, #fff);
  font-weight: 600;
  font-size: 1.125rem;
  /* Universal/Title-1 */
  font-family: Figtree;
  font-style: normal;
  line-height: 1.5rem;
  /* 133.333% */
  white-space: nowrap;
  text-align: left;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-feature-settings: "clig" off, "liga" off;
}
@media (max-width: 47.98rem) {
  body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image .gallery-slider__content figcaption.gallery-slider__caption {
    position: relative;
    left: auto;
    bottom: auto;
    right: auto;
  }
}
body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image .gallery-slider__content p.gallery-slider__description {
  position: absolute;
  margin: 10px auto 0;
  color: var(--neutral-neutral-9, #e6e3db);
  font-weight: 400;
  font-size: 14px;
  /* Universal/Subtitle-2 */
  font-family: Figtree;
  font-style: normal;
  line-height: 20px;
  /* 142.857% */
  opacity: 0.2;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 47.98rem) {
  body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image .gallery-slider__content p.gallery-slider__description {
    position: relative;
    opacity: 1;
  }
}
body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image .gallery-slider__content .wp-block-button.is-style-tertiary.wp-block-button--icon-right {
  position: absolute;
  margin: 22px 0 0;
  color: var(--primary-white, #fff);
  font-weight: 600;
  font-size: 14px;
  /* Universal/Link-2 */
  font-family: Figtree;
  font-style: normal;
  line-height: 20px;
  /* 142.857% */
  text-transform: capitalize;
  opacity: 0.5;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 47.98rem) {
  body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image .gallery-slider__content .wp-block-button.is-style-tertiary.wp-block-button--icon-right {
    position: relative;
    opacity: 1 !important;
  }
  body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image .gallery-slider__content .wp-block-button.is-style-tertiary.wp-block-button--icon-right a {
    opacity: 1 !important;
  }
}
body:not(.wp-admin) .block-slider-gallery-tracked figure.gallery-slider__image .gallery-slider__content .wp-block-button.is-style-tertiary.wp-block-button--icon-right a {
  color: var(--primary-white, #fff);
  text-align: left;
  opacity: 0;
}