/**
 * Use in order to make a set of rules only apply above
 * or below a certain breakpoint.
 * Standard usage:

 @include breakpoint(tablet){
 	// Applies to screen sizes tablet and LARGER
 }

 @include breakpoint(tablet up){
 	// Applies to screen sizes tablet and LARGER
 }

 @include breakpoint(tablet down){
 	// Applies to screen sizes tablet and SMALLER
 }
 *
 **/
/**
 * Set custom typography sizes (e.g. header)
 * @param  {int} $size        font-size
 * @param  {int} $line-height line-height
 * @param  {int} $av          AV letter-spacing from XD
 * @return {void}
 */
/**
 * Converts a pixel, percentage, rem or em value to a unitless value based on a given font size. Ideal for working out unitless line heights.
 *
 * @param {Number} $value - Value to convert to a unitless line height
 * @param {Number} $base - The font size to use to work out the line height - defaults to $rem-font-size
 *
 * @return {Number} - Unitless number
 */
/**
 * AV letter spacing measurement convertor from Adobe applications
 * https://scotch.io/tutorials/converting-photoshop-letter-spacing-to-css
 */
/*
 * https://every-layout.dev/layouts/stack/
 */
.h-stack > * {
  margin-block: 0;
}
.h-stack > * + * {
  margin-top: var(--unit);
}
.h-stack--zero > * {
  margin-block: 0;
}
.h-stack--small > * {
  margin-block: 0;
}
.h-stack--small > * + * {
  margin-top: var(--unit-small);
}
.h-stack--xsmall > * {
  margin-block: 0;
}
.h-stack--xsmall > * + * {
  margin-top: var(--unit-xsmall);
}
.h-stack--medium > * {
  margin-block: 0;
}
.h-stack--medium > * + * {
  margin-top: var(--unit-medium);
}
.h-stack--large > * {
  margin-block: 0;
}
.h-stack--large > * + * {
  margin-top: var(--unit-large);
}
.h-stack--xlarge > * {
  margin-block: 0;
}
.h-stack--xlarge > * + * {
  margin-top: var(--unit-xlarge);
}

.h-stack2 > * {
  margin-block: 0;
}
.h-stack2 > * + * {
  margin-top: var(--unit2);
}
.h-stack2--small > * {
  margin-block: 0;
}
.h-stack2--small > * + * {
  margin-top: calc(var(--unit2) / 2);
}
.h-stack2--medium > * {
  margin-block: 0;
}
.h-stack2--medium > * + * {
  margin-top: calc(var(--unit2) * 2);
}

.h-stack-row > * {
  margin-inline: 0;
}
.h-stack-row > * + * {
  margin-left: var(--unit);
}

.h-stack-row--xsmall > * {
  margin-inline: 0;
}
.h-stack-row--xsmall > * + * {
  margin-left: var(--unit-xsmall);
}

.wp-block-sht-header {
  --header--maskwidth: 175%;
  --header-overlay-opacity: 0.5;
  --header-overlay-top: auto;
  --header-rotate: 180deg;
  --header-scale: -100%;
  --header-shadow-aspect-ratio: 300/140;
  --header-contentwrap-outer-max-width: 50%;
  position: relative;
  max-width: var(--constraint-content) !important;
  background: var(--wp--preset--color--blue-15);
  margin-bottom: var(--unit-large);
}
@media screen and (min-width: 27.5em) {
  .wp-block-sht-header {
    --header--maskwidth: 165%;
  }
}
@media screen and (min-width: 36.25em) {
  .wp-block-sht-header {
    --header--maskwidth: 130%;
  }
}
@media screen and (min-width: 48em) {
  .wp-block-sht-header {
    --header-overlay-opacity: 0.35;
  }
}
@media screen and (min-width: 64em) {
  .wp-block-sht-header {
    --header--maskwidth: 110%;
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header {
    --header--maskwidth: 100%;
    --header-overlay-opacity: 1;
    --header-rotate: 0deg;
    --header-scale: 100%;
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header {
    --header--maskwidth: 93.75rem;
  }
}
@media screen and (min-width: 48em) {
  .wp-block-sht-header {
    margin-bottom: var(--unit-medium);
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header {
    margin-bottom: var(--unit-large);
  }
}
.wp-block-sht-header.with--video .wp-block-sht-header__contentwrapouter {
  text-wrap-style: pretty;
  pointer-events: none;
}
.wp-block-sht-header.with--video::before {
  display: none;
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.with--video::before {
    display: block;
  }
}
.wp-block-sht-header.without--whiteoverlay {
  --header-overlay-opacity: 0;
}
.wp-block-sht-header.without--image {
  background-color: var(--wp--preset--color--blue-5);
}
.wp-block-sht-header.with--lowershadow .wp-block-sht-header__figurewrap::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  background: linear-gradient(rgba(0, 0, 0, 0) 50%, black 100%);
  opacity: 0.65;
}
.wp-block-sht-header.is--fullwidth {
  max-width: none !important;
}
@media screen and (max-width: 79.9375em) {
  body.home .wp-block-sht-header.is--fullwidth {
    width: 100vw !important;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 48.93125em) {
  body.home .wp-block-sht-header.is--fullwidth {
    max-width: var(--constraint-wide);
  }
}
@media screen and (max-width: 79.9375em) {
  body.home[data-has-scrollbars] .wp-block-sht-header.is--fullwidth {
    width: calc(100vw - var(--scrollbar-width)) !important;
  }
}
.wp-block-sht-header.is--fullwidth.with--textalignment--top-left .wp-block-sht-header__contentwrapouter {
  max-width: var(--header-contentwrap-outer-max-width);
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth.with--textalignment--top-left .wp-block-sht-header__contentwrapouter {
    margin-top: 4vw;
    --header-contentwrap-outer-max-width: var(--constraint-wide);
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth.with--textalignment--top-left .wp-block-sht-header__inner {
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.wp-block-sht-header.is--fullwidth.with--textalignment--top-center .wp-block-sht-header__contentwrapouter {
  max-width: var(--header-contentwrap-outer-max-width);
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth.with--textalignment--top-center .wp-block-sht-header__inner {
    align-items: flex-start;
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth.with--textalignment--top-right .wp-block-sht-header__contentwrap {
    margin-left: auto;
    margin-right: 0;
  }
}
.wp-block-sht-header.is--fullwidth.with--textalignment--top-right .wp-block-sht-header__contentwrapouter {
  max-width: var(--header-contentwrap-outer-max-width);
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth.with--textalignment--top-right .wp-block-sht-header__contentwrapouter {
    margin-top: 4vw;
    --header-contentwrap-outer-max-width: var(--constraint-wide);
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth.with--textalignment--top-right .wp-block-sht-header__inner {
    justify-content: flex-end;
    align-items: flex-start;
  }
}
.wp-block-sht-header.is--fullwidth.with--textalignment--center-left .wp-block-sht-header__contentwrapouter {
  max-width: var(--header-contentwrap-outer-max-width);
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth.with--textalignment--center-left .wp-block-sht-header__contentwrapouter {
    --header-contentwrap-outer-max-width: var(--constraint-wide);
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth.with--textalignment--center-left .wp-block-sht-header__inner {
    justify-content: flex-start;
    align-items: center;
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth.with--textalignment--center-center .wp-block-sht-header__inner {
    align-items: center;
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth.with--textalignment--center-right .wp-block-sht-header__contentwrap {
    margin-left: auto;
    margin-right: 0;
  }
}
.wp-block-sht-header.is--fullwidth.with--textalignment--center-right .wp-block-sht-header__contentwrapouter {
  max-width: var(--header-contentwrap-outer-max-width);
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth.with--textalignment--center-right .wp-block-sht-header__contentwrapouter {
    --header-contentwrap-outer-max-width: var(--constraint-wide);
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth.with--textalignment--center-right .wp-block-sht-header__inner {
    justify-content: flex-end;
    align-items: center;
  }
}
.wp-block-sht-header.is--fullwidth.with--textalignment--bottom-left .wp-block-sht-header__contentwrapouter {
  max-width: var(--header-contentwrap-outer-max-width);
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth.with--textalignment--bottom-left .wp-block-sht-header__contentwrapouter {
    --header-contentwrap-outer-max-width: var(--constraint-wide);
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth.with--textalignment--bottom-left .wp-block-sht-header__inner {
    justify-content: flex-start;
    align-items: flex-end;
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth.with--textalignment--bottom-center .wp-block-sht-header__inner {
    align-items: flex-end;
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth.with--textalignment--bottom-right .wp-block-sht-header__contentwrap {
    margin-left: auto;
    margin-right: 0;
  }
}
.wp-block-sht-header.is--fullwidth.with--textalignment--bottom-right .wp-block-sht-header__contentwrapouter {
  max-width: var(--header-contentwrap-outer-max-width);
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth.with--textalignment--bottom-right .wp-block-sht-header__contentwrapouter {
    --header-contentwrap-outer-max-width: 71.25rem;
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth.with--textalignment--bottom-right .wp-block-sht-header__inner {
    justify-content: flex-end;
    align-items: flex-end;
  }
}
.wp-block-sht-header.is--fullwidth.with--mountainshadow {
  --header-rotate: 180deg;
  --header-overlay-opacity: 0.5;
  --header-scale: 100%;
  --header--bottom: 0;
  overflow: hidden;
}
@media screen and (max-width: 79.9375em) {
  .wp-block-sht-header.is--fullwidth.with--mountainshadow {
    --header-shadow-aspect-ratio: 2.3/1;
  }
}
@media screen and (min-width: 36.25em) {
  .wp-block-sht-header.is--fullwidth.with--mountainshadow {
    --header--bottom: -5%;
  }
}
@media screen and (min-width: 48em) {
  .wp-block-sht-header.is--fullwidth.with--mountainshadow {
    --header--bottom: -10%;
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth.with--mountainshadow {
    --header--bottom: 0;
    --header-shadow-aspect-ratio: 1380/283;
  }
}
.wp-block-sht-header.is--fullwidth.with--mountainshadow::before {
  background: linear-gradient(180deg, #000 0, #000 30%, transparent 110%);
  top: auto;
  bottom: var(--header--bottom);
}
@media screen and (min-width: 48em) {
  .wp-block-sht-header.is--fullwidth .wp-block-sht-header__contentwrapouter {
    max-width: 100%;
    margin-left: var(--unit-medium);
    margin-right: var(--unit-medium);
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth .wp-block-sht-header__contentwrapouter {
    max-width: var(--constraint-narrow);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--unit-mediumlarge);
  }
}
.wp-block-sht-header.is--fullwidth .wp-block-sht-header__contentwrap {
  text-shadow: 0 1px 1px var(--wp--preset--color--black);
  max-width: 38.5rem;
}
@media screen and (min-width: 90em) {
  .wp-block-sht-header.is--fullwidth .wp-block-sht-header__contentwrap {
    max-width: 41.25rem;
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header.is--fullwidth .wp-block-sht-header__inner {
    align-items: flex-end;
    max-height: calc(75 * var(--svh) - var(--c-masthead-height));
  }
  .wp-block-sht-header.is--fullwidth .wp-block-sht-header__inner .c-body--mastheadoverlap {
    max-height: calc(75 * var(--svh));
  }
}
@media screen and (min-width: 100em) {
  .wp-block-sht-header.is--fullwidth .wp-block-sht-header__inner {
    max-height: 41.25rem;
  }
}
.wp-block-sht-header.is--fullwidth .wp-block-sht-header__title, .wp-block-sht-header.is--fullwidth .wp-block-sht-header__subtitle {
  color: var(--wp--preset--color--white);
}
.wp-block-sht-header__contentwrap {
  max-width: var(--constraint-smallnarrow);
  text-shadow: 0 1px 1px var(--wp--preset--color--black);
}
.wp-block-sht-header__contentwrap > * {
  margin-block: 0;
}
.wp-block-sht-header__contentwrap > * + * {
  margin-top: 0;
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header__contentwrap {
    text-shadow: none;
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header__contentwrap > * + * {
    margin-top: var(--unit-small);
  }
}
.wp-block-sht-header__contentwrapouter {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--constraint-narrow);
  margin-left: var(--unit);
  margin-right: var(--unit);
  margin-bottom: var(--unit);
  padding-top: var(--unit2);
}
@media screen and (min-width: 48em) {
  .wp-block-sht-header__contentwrapouter {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header__contentwrapouter {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 100em) {
  .wp-block-sht-header__contentwrapouter {
    padding-top: var(--unit2-medium);
  }
}
.wp-block-sht-header__figurewrap {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  overflow: hidden;
}
.wp-block-sht-header__figure {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
}
.wp-block-sht-header__image {
  object-fit: cover;
  width: 100% !important;
  height: 100% !important;
}
.wp-block-sht-header__inner {
  position: relative;
  max-height: 15.625rem;
  height: calc(100 * var(--svh));
  max-height: calc(65 * var(--svh));
  display: flex;
  align-items: flex-end;
}
@media screen and (min-width: 64em) {
  .wp-block-sht-header__inner {
    max-height: 30vw;
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header__inner {
    align-items: flex-start;
  }
}
@media screen and (min-width: 100em) {
  .wp-block-sht-header__inner {
    max-height: 41.25rem;
  }
}
.wp-block-sht-header__subtitle, .wp-block-sht-header__title {
  color: var(--wp--preset--color--white);
}
.wp-block-sht-header__title {
  font-size: clamp(1.25rem, 0.81rem + 1.878vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header__title {
    color: var(--wp--preset--color--blue);
  }
}
.wp-block-sht-header__subtitle {
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 48em) {
  .wp-block-sht-header__subtitle {
    font-size: 1.875rem;
    line-height: 1.25;
  }
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header__subtitle {
    color: var(--wp--preset--color--blue);
    font-size: 2rem;
    line-height: 1.25;
  }
}
.wp-block-sht-header__title {
  font-weight: 700;
  text-wrap-style: balance;
}
.wp-block-sht-header__subtitle {
  font-weight: 300;
}
.wp-block-sht-header__videoplayer {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.wp-block-sht-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  top: var(--header-overlay-top);
  bottom: 0;
  aspect-ratio: var(--header-shadow-aspect-ratio);
  transform: rotate(var(--header-rotate, 0deg)) translateY(-0.5px) scaleX(var(--header-scale, 100%));
  z-index: 1;
  pointer-events: none;
  -webkit-mask-position: top center;
          mask-position: top center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask: url("../../../img/sht-header-overlay.min.svg") no-repeat;
          mask: url("../../../img/sht-header-overlay.min.svg") no-repeat;
  -webkit-mask-size: var(--header--maskwidth) auto;
          mask-size: var(--header--maskwidth) auto;
  mask-position: top center;
  background: #000;
  margin-inline: auto;
  opacity: var(--header-overlay-opacity);
}
@media screen and (min-width: 80em) {
  .wp-block-sht-header::before {
    top: 0;
    bottom: auto;
    background: linear-gradient(180deg, #fff 0, #fff 10%, transparent 110%);
  }
}
.wp-block-sht-header b,
.wp-block-sht-header strong {
  font-weight: inherit;
}

body.home .wp-block-sht-header ~ * {
  margin-top: -1rem;
}
@media screen and (min-width: 90em) {
  body.home .wp-block-sht-header ~ * {
    margin-top: -1rem;
  }
}

.c-body:not(.home) .wp-block-sht-header.is--fullwidth {
  max-width: none !important;
  width: 100vw;
  transform: translateX(-50vw);
  left: 50%;
}