@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display&display=swap");
/* @link https://utopia.fyi/space/calculator?c=240,16,1.125,1280,20,1.25,5,2,&s=0.75|0.5|0.25|0.125|0.0625,1.5|2|3|4|6|8,s-l&g=s,l,xl,12 */
.nf-field-element input.nf-element:not([type=submit]),
.nf-field-element textarea.nf-element {
  width: 100%;
  max-width: unset;
  background: #eee;
  border: 1px solid #ccc;
}

.nf-element[type=submit] {
  padding: 0.5em;
  margin: 0.5em 0 1em 0;
}

.fadeup {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1.2s ease-out, transform 0.6s ease-out;
}

.fadeup.in-view {
  opacity: 1;
  transform: translateY(0);
}

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
}

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input { /* 1 */
  overflow: visible;
}

button,
select { /* 1 */
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

summary {
  display: list-item;
}

.facets {
  margin: 0 0 4em 0;
}

.facet-wrap {
  margin: 0 0 0 0;
}
.facet-wrap .facetwp-facet {
  margin-bottom: 0 !important;
}
@media (min-width: 70em) {
  .facet-wrap .facetwp-facet {
    -moz-column-count: 4 !important;
         column-count: 4 !important;
  }
}
.facet-wrap .facetwp-facet .facetwp-checkbox {
  padding-right: 1.5em;
  margin: 0;
}
.facet-wrap .facet-label {
  display: block;
  width: 100%;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0.5em 0 0 0;
}

.facetwp-counter {
  display: none;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.75;
}
.hamburger.is-active:hover {
  opacity: #999;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #999;
}

.hamburger-box {
  width: 2.75em;
  height: 2.25em;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.125em;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 2.75em;
  height: 0.25em;
  background-color: #999;
  border-radius: 0;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -1em;
}
.hamburger-inner::after {
  bottom: -1em;
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

html {
  position: relative;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  -webkit-font-smoothing: antialiased;
  font-size: 100%;
}
@media (max-width: 359px) {
  html {
    font-size: 90%;
  }
}
@media (min-width: 50em) and (min-height: 20em) {
  html {
    font-size: 100%;
  }
}
@media (min-width: 90em) and (min-height: 20em) {
  html {
    font-size: 105%;
  }
}
@media (min-width: 95em) and (min-height: 20em) {
  html {
    font-size: 110%;
  }
}
@media (min-width: 105em) and (min-height: 50em) {
  html {
    font-size: 120%;
  }
}
@media (min-width: 115em) and (min-height: 60em) {
  html {
    font-size: 125%;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 2;
  font-size: 1rem;
  tap-highlight-color: rgba(242, 72, 34, 0.75);
}
@media screen {
  body {
    background: white;
    color: black;
  }
}

::-moz-selection {
  background: rgba(242, 72, 34, 0.2);
}

::selection {
  background: rgba(242, 72, 34, 0.2);
}

a {
  color: #222;
  cursor: pointer;
  text-decoration-thickness: 0.1em;
}

a:hover, a:focus {
  color: black;
}

a img {
  border: 0;
}

a[href^=mailto], .url {
  word-break: break-word;
}

:where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) {
  line-height: 1.25;
  font-weight: 400;
  color: var(--heading-color, #222);
}
:where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) a {
  color: #222;
  border-color: #222;
}

:where(h1) {
  margin: 0 0 1.5rem;
}

:where(h2, h3, h4, h5, h6) {
  margin: 2.5rem 0 1.5rem;
}

h1 + h2,
h2 + h3,
h3 + h4,
h4 + h5,
h5 + h6,
.subheading {
  margin-top: 0;
}

:where(h1, .h1) {
  font-size: 1.8rem;
}

:where(h2, .h2) {
  font-size: 1.6rem;
}

:where(h3, .h3) {
  font-size: 1.4rem;
}

:where(h4, .h4) {
  font-size: 1.25rem;
}

:where(h5, .h5) {
  font-size: 1.125rem;
}

:where(h6, .h6) {
  font-size: 1rem;
}

@media (min-width: 70em) and (min-height: 30em) {
  :where(h1, .h1) {
    font-size: 4rem;
  }
  :where(h2, .h2) {
    font-size: 2.25rem;
  }
  :where(h3, .h3) {
    font-size: 1.8rem;
  }
  :where(h4, .h4) {
    font-size: 1.4rem;
  }
  :where(h5, .h5) {
    font-size: 1.25rem;
  }
  :where(h6, .h6) {
    font-size: 1.125rem;
  }
}
p {
  margin: 0 0 1.5em;
  max-width: 48rem;
}
p:empty {
  margin: 0;
}

:where(#main-content p) a {
  font-weight: bolder;
  color: #666;
  text-decoration-thickness: 0.05em;
  text-decoration-color: rgba(102, 102, 102, 0.75);
}
:where(#main-content p) a:hover, :where(#main-content p) a:focus {
  text-decoration-color: black;
}

acronym, abbr {
  border-bottom: 1px dotted #333;
}

strong,
.strong {
  font-weight: bolder;
}

i {
  font-style: normal;
}

em {
  font-style: italic;
}

nav {
  line-height: 1;
}
nav ul {
  list-style: none;
  padding: 0;
  max-width: none;
}
nav a {
  text-decoration: none;
}

dl {
  margin: 0 0 1.5rem;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0;
}

hr {
  clear: both;
  height: 1px;
  background: #333;
  border: 0 !important;
  margin-top: 8rem;
  margin-bottom: 8rem;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto;
}

iframe {
  max-width: 100%;
}

figure {
  position: relative;
  margin: 0 0 2rem;
}

figcaption {
  margin: 0;
  padding: 0.5rem 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: black;
  border-bottom: 1px solid #F24822;
}
figcaption p:last-child {
  margin-bottom: 0;
}

address {
  font-style: normal;
}

li {
  margin-bottom: 0.5rem;
}

ul {
  margin: 0 0 1.5rem;
  padding-inline-start: 1.5em;
  max-width: 48rem;
}
ul ul {
  margin: 0.75rem 0 1.5rem;
}

:where(ul) ::marker {
  font-size: 1.35em;
  color: var(--bullet-color, var(--text-color, #222));
}

ol {
  margin: 0 0 1.5rem;
  padding-inline-start: 2em;
  max-width: 48rem;
}
ol ol {
  margin: 0.75rem 0 1.5rem;
}

:where(ol) ::marker {
  font-weight: bolder;
  color: var(--bullet-color, var(--text-color, #222));
}

table {
  font-size: 0.85em;
  margin: 0 0 2rem;
  border-color: #ddd;
  border-spacing: 0;
  border-collapse: collapse;
  line-height: 1.5;
}
table p:last-child {
  margin-bottom: 0;
}
table .button:only-child {
  margin: 0;
}

caption {
  text-align: start;
}

thead tr {
  border-bottom: 1px solid #ddd;
}
thead td, thead th {
  background: #fff;
  border-bottom: 1px solid #ddd;
  vertical-align: bottom;
}

tfoot {
  border-top: 1px solid #ddd;
}

tr {
  background: white;
  border-bottom: 1px solid #ddd;
}
tr:nth-child(even) {
  background: white;
}

td, th {
  padding: 1em;
}

th {
  background: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  text-align: start;
}

td {
  vertical-align: middle;
}

hgroup,
.hgroup {
  margin: 0 0 2rem;
}
hgroup :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6),
.hgroup :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) {
  margin: 0 0 0.5rem;
}

input[type=text],
input[type=password],
input[type=number],
input[type=email],
input[type=tel],
input[type=search],
input[type=date],
input[type=time],
textarea,
select {
  width: 100%;
  max-width: 15em;
  font-size: 1.1em;
  padding: 0.6125em 0.75em;
  line-height: 1.5;
  border: 0;
  box-sizing: border-box;
  border-radius: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

fieldset {
  border: 0;
  padding: 0;
  margin-bottom: 2rem;
}

legend {
  line-height: 1.25;
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 1.5rem;
}

textarea {
  max-width: 30em;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("../img/icon-chevron-down-primary.svg") no-repeat right 0.75em center;
  background-size: 0.75em;
  padding-right: 3em;
}
select::-ms-expand {
  display: none;
}

legend {
  margin-bottom: 0.5rem;
}

label {
  display: block;
}

pre {
  clear: both;
  font-size: 0.9em;
  line-height: 1.5;
  margin: 1.5rem 0;
  padding: 1em;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  background: black;
  color: #fff;
  max-width: 100%;
  overflow: auto;
}
pre::-moz-selection {
  background: rgba(242, 72, 34, 0.75);
  color: white;
}
pre::selection {
  background: rgba(242, 72, 34, 0.75);
  color: white;
}

code {
  display: inline-block;
  line-height: 1.5;
  font-size: 0.8em;
  background: rgba(34, 34, 34, 0.05);
  padding: 0 0.2em;
  color: #222;
  border: 1px rgba(34, 34, 34, 0.25) solid;
  border-radius: 0.2em;
}

.intro,
.is-style-intro {
  max-width: 48rem;
}
.intro-xl,
.is-style-intro-xl {
  max-width: 48rem;
}
.caps {
  text-transform: uppercase;
}

.url {
  color: black;
}

.excerpt {
  display: block;
  font-size: clamp(1rem, 5cqi, 1.25rem);
}
.excerpt a {
  text-decoration: underline;
}
.excerpt a:hover {
  color: #333;
}

.single-team #main-content, .single-work #main-content {
  background: linear-gradient(to bottom, #222 300px, white 300px);
}
.single-team #main-content article, .single-work #main-content article {
  background: white;
}
.single-team #main-content .excerpt, .single-work #main-content .excerpt {
  margin-top: 2.5rem;
}

.read-more {
  display: none;
}

.post-type-archive-team article {
  margin-top: 2.5rem;
}

@media screen {
  html {
    background: white;
  }
}

body {
  --scrollbar: 20px; /* default if Javascript is disabled */
}

.body-wrap {
  background: white !important;
  position: relative;
  z-index: 2;
}

html,
body {
  position: static;
}

main {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}
main:after {
  content: "";
  display: table;
  clear: both;
}
main:where(:has(> .slab:last-child)), main:where(:has(> .wrap > .slab:last-child)), main:where(:has(.wrap-content-center > .slab:last-child)) {
  margin-bottom: 0;
}

section {
  margin: 0 0 4rem;
}
section.pageHeader {
  margin: 0;
}
section:first-child {
  margin-top: 0;
}

.wrap {
  margin: 0 clamp(0.75rem, 3.5vw, 4rem);
  z-index: 0;
  position: relative;
}
@media (min-width: 70rem) {
  .wrap {
    margin: 0 auto;
    padding: 0 clamp(0.75rem, 3.5vw, 4rem);
    max-width: 70vw;
  }
}

.wrap-content-center {
  margin: 0 auto;
  padding-bottom: 4em;
}
.wrap-content-center:after {
  content: "";
  display: table;
  clear: both;
}

.wrap-content-center > *:not(img):not([data-align]):not([class*=align]),
.wp-block:not(img):not([data-align]):not([class*=align]) {
  max-width: 48rem;
  margin-right: auto;
}
.wrap-content-center > *[data-align=wide], .wrap-content-center > *.align-wide, .wrap-content-center > *.alignwide,
.wp-block[data-align=wide],
.wp-block.align-wide,
.wp-block.alignwide {
  max-width: 80rem;
  margin-right: auto;
}
.wrap-content-center > *[data-align=full], .wrap-content-center > *.align-full, .wrap-content-center > *.alignfull,
.wp-block[data-align=full],
.wp-block.align-full,
.wp-block.alignfull {
  max-width: none;
  width: calc(100vw - var(--scrollbar));
  margin-left: calc(-50vw + var(--scrollbar) / 2 + 50%);
  margin-right: calc(-50vw + var(--scrollbar) / 2 + 50%);
}

.align-center,
.align-centre,
.aligncenter {
  margin-left: auto !important;
  margin-right: auto !important;
}

.align-left,
.alignleft {
  float: none;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 40rem) {
  .align-left,
  .alignleft {
    float: left;
    clear: left;
    width: calc(50% - 2.5rem);
    box-sizing: border-box;
    margin-left: 0;
    margin-top: 0.5rem;
    margin-right: 2.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 70rem) {
  .align-left,
  .alignleft {
    max-width: calc(40% - 2.5rem);
  }
}
@media (min-width: 30rem) {
  .align-left.size-xs, .align-left.size-sm, .align-left.size-small,
  .alignleft.size-xs,
  .alignleft.size-sm,
  .alignleft.size-small {
    float: none;
  }
}
@media (min-width: 30rem) and (min-width: 30rem) {
  .align-left.size-xs, .align-left.size-sm, .align-left.size-small,
  .alignleft.size-xs,
  .alignleft.size-sm,
  .alignleft.size-small {
    float: left;
    clear: left;
    box-sizing: border-box;
    margin-left: 0;
    margin-top: 0.5rem;
    margin-right: 2.5rem;
    margin-bottom: 1rem;
  }
}
.align-left [class*=align],
.alignleft [class*=align] {
  max-width: 100%;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.align-right,
.alignright {
  float: none;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 40rem) {
  .align-right,
  .alignright {
    float: right;
    clear: right;
    width: calc(50% - 2.5rem);
    box-sizing: border-box;
    margin-right: 0;
    margin-top: 0.5rem;
    margin-left: 2.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 70rem) {
  .align-right,
  .alignright {
    max-width: calc(40% - 2.5rem);
  }
}
@media (min-width: 30rem) {
  .align-right.size-xs, .align-right.size-sm, .align-right.size-small,
  .alignright.size-xs,
  .alignright.size-sm,
  .alignright.size-small {
    float: none;
  }
}
@media (min-width: 30rem) and (min-width: 30rem) {
  .align-right.size-xs, .align-right.size-sm, .align-right.size-small,
  .alignright.size-xs,
  .alignright.size-sm,
  .alignright.size-small {
    float: right;
    clear: right;
    box-sizing: border-box;
    margin-right: 0;
    margin-top: 0.5rem;
    margin-left: 2.5rem;
    margin-bottom: 1rem;
  }
}
.align-right [class*=align],
.alignright [class*=align] {
  max-width: 100%;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.articleHeader {
  font-size: 0.9rem;
}
.articleHeader__tags dt {
  font-weight: normal;
}
@media (min-width: 85rem) {
  .articleHeader__tags {
    float: left;
    width: 32rem;
    margin-inline-start: -32rem;
    padding-inline-end: 3rem;
    box-sizing: border-box;
  }
}
.articleHeader__meta {
  margin: 0 0 1.5rem;
  padding: 0.75rem 1rem;
  background: #eee;
  border-radius: 0.35rem;
}
.articleHeader__meta dl {
  margin-bottom: 0;
}
.articleHeader__meta dt {
  color: #222;
}
.articleHeader__date {
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
}
.articleHeader__date dt {
  font-weight: normal;
}
.articleHeader__date time {
  color: #666;
  font-weight: bolder;
}
.articleHeader__date p {
  margin-bottom: 0;
}
@media (min-width: 85rem) {
  .articleHeader__date {
    float: right;
    width: 32rem;
    margin-inline-end: -32rem;
    padding-inline-start: 3rem;
    box-sizing: border-box;
    margin-top: -20rem;
  }
  .articleHeader__date a {
    display: block;
  }
}
@media (min-width: 85rem) {
  .articleHeader__image {
    margin: -10rem 0 2rem 0;
  }
}
.articleHeader__notop {
  margin-top: -30rem;
}

.slab-categories {
  margin: 0;
  padding: 3em 0;
  background: #efefef;
}

.wp-block-embed.alignleft,
.wp-block-embed.alignright,
.wp-block[data-align=left] > [data-type="core/embed"],
.wp-block[data-align=right] > [data-type="core/embed"] {
  max-width: none;
}
@media (min-width: 40rem) {
  .wp-block-embed.alignleft,
  .wp-block-embed.alignright,
  .wp-block[data-align=left] > [data-type="core/embed"],
  .wp-block[data-align=right] > [data-type="core/embed"] {
    max-width: calc(50% - 2.5rem);
  }
}

.list--unstyled {
  list-style: none;
  padding-inline-start: 0;
}

.list--inline {
  list-style: none;
  padding-inline-start: 0;
}
.list--inline > li {
  display: inline-block;
}

.wp-block-image figcaption {
  margin: 0;
}

.wp-block-table thead {
  border-bottom: inherit;
}

.wp-block-table tfoot {
  border-top: inherit;
}

.wp-block-table td,
.wp-block-table th {
  border: inherit;
  padding: 1em;
}

:where(blockquote) {
  margin: 0;
}

blockquote,
.blockquote,
.wp-block-quote {
  position: relative;
  display: block;
  padding: 0 0 0 2em;
  font-size: 1rem;
  line-height: 1.5;
  container: blockquote/inline-size;
  font-style: italic;
  border-left: 0.75em solid #F24822;
}
blockquote,
.blockquote,
.wp-block-quote {
  margin-bottom: 4rem;
}
blockquote:where(:not(.alignleft, .alignright)),
.blockquote:where(:not(.alignleft, .alignright)),
.wp-block-quote:where(:not(.alignleft, .alignright)) {
  margin-top: 4rem;
}
blockquote p,
.blockquote p,
.wp-block-quote p {
  font-size: clamp(1em, 6cqi, 1.4em);
  margin: 0 0 1em;
  max-width: 48em;
}
blockquote p:last-child,
.blockquote p:last-child,
.wp-block-quote p:last-child {
  margin-bottom: 0;
}
blockquote p a:where(:not([class])),
.blockquote p a:where(:not([class])),
.wp-block-quote p a:where(:not([class])) {
  border: 0;
  text-decoration: underline;
}
blockquote.has-primary-background-color,
.blockquote.has-primary-background-color,
.wp-block-quote.has-primary-background-color {
  color: white;
}

.blockquote__footer,
blockquote footer,
blockquote > cite {
  position: relative;
  margin-top: 2rem;
  padding-top: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
}
.blockquote__footer::before,
blockquote footer::before,
blockquote > cite::before {
  content: "";
  position: absolute;
  top: 0;
  display: table;
  width: 20%;
  border-top: 1px solid #999;
}
.blockquote__footer p,
blockquote footer p,
blockquote > cite p {
  margin: 0 0 0.0625rem;
}

cite,
.cite {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  margin: 0 0 0.0625rem;
}
cite:first-line,
.cite:first-line {
  font-weight: bold;
  font-size: 1.125rem;
}
cite a,
.cite a {
  color: var(--cite-color, white);
}
cite a:hover,
.cite a:hover {
  color: var(--cite-color, white);
}

.blockquote--short {
  font-size: 1.4em;
}
@media (min-width: 70em) {
  .blockquote--short {
    font-size: 1.8em;
  }
}

.blockquote--long {
  font-size: 1.125em;
}
@media (min-width: 70em) {
  .blockquote--long {
    font-size: 1.25em;
  }
}

.wp-block-quote.has-background {
  padding: calc(0.75rem + 2%);
}
.wp-block-quote__citation {
  margin-bottom: 0;
}
.wp-block-quote.alignleft, .wp-block-quote.alignright {
  max-width: none;
}
@media (min-width: 40rem) {
  .wp-block-quote.alignleft, .wp-block-quote.alignright {
    max-width: calc(50% - 2.5rem);
  }
}

.wp-block-pullquote {
  text-align: inherit;
  font-size: inherit;
  padding: 0;
}
.wp-block-pullquote {
  margin-bottom: 2rem;
}
.wp-block-pullquote:where(:not([class*=align])) {
  margin-top: 2rem;
}
.wp-block-pullquote blockquote {
  font-size: inherit;
}
.wp-block-pullquote__citation {
  margin-bottom: 0;
}
.wp-block-pullquote.has-background {
  padding: calc(0.75rem + 2%);
}
.wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {
  max-width: none;
}
@media (min-width: 40rem) {
  .wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {
    max-width: calc(50% - 2.5rem);
  }
}

hr {
  clear: both;
  height: 1px;
  background: #333;
  border: 0 !important;
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.siteHeader {
  position: relative;
  padding: 0.3em 0 0.8em 0;
  z-index: 2;
}
.siteHeader::before {
  content: "";
  display: block;
}
.siteHeader summary::marker, .siteHeader summary::-webkit-details-marker {
  display: none;
}
.siteHeader__nav {
  display: contents;
}
.siteHeader__inner {
  padding: 1.5em 0 0.75em 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.75rem;
  position: relative;
}
@media (min-width: 60rem) {
  .siteHeader__inner {
    flex-wrap: nowrap;
  }
}
.siteHeader__branding {
  flex: 1 1 auto;
  padding: 0;
}
.siteHeader__brandingLink {
  display: block;
}
.siteHeader__brandingImg {
  max-height: 2em;
}
@media (min-width: 460px) {
  .siteHeader__brandingImg {
    max-height: 3em;
  }
}
.siteHeader__nav {
  flex: 1 1 auto;
}
@media (min-width: 60rem) {
  .siteHeader__nav {
    display: block;
    font-size: 0.9rem;
  }
}
@media (min-width: 70rem) {
  .siteHeader__nav {
    font-size: 1rem;
  }
}
.siteHeader__nav a:hover {
  color: #aaa;
}
.siteHeader__toolsList {
  margin: 0 0 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 1px;
}
.siteHeader__toolsList li {
  margin-bottom: 0;
}
.siteHeader__contact {
  font-size: 0.8rem;
  float: right;
  width: 25em;
  text-align: right;
}
.siteHeader__contact span {
  padding-left: 1em;
}
.siteHeader__toolButton {
  display: block;
  font-size: 0.9rem;
  padding: 0.5rem;
  border: 0.2rem solid transparent;
  border-top: 0;
}
.siteHeader__toolButton--search {
  background: #fff;
}
.siteHeader__toolButton--contact {
  background: #222;
  color: white;
}
.siteHeader__toolButton--contact:focus, .siteHeader__toolButton--contact:hover {
  color: white;
}
.siteHeader__toolButton--login {
  border: 0.2rem solid #F24822;
  border-top: 0;
  color: black;
}
@media (min-width: 60rem) {
  .siteHeader__mobileTools {
    display: none;
  }
}
.siteHeader__primaryNavToggle {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  border: 0;
  margin: 0 0 0 auto;
  background: none;
  font-weight: bold;
  cursor: pointer;
}
.siteHeader__primaryNavToggle .hamburger-box {
  font-size: 0.5em;
}
.siteHeader__primaryNav {
  width: 100%;
}

.primaryNav {
  margin-top: 0.75rem;
  padding: 0.75rem 0;
  border-top: 2px solid #ddd;
  width: 100%;
}
@media (min-width: 60rem) {
  .primaryNav {
    margin: 0;
    padding: 0;
    border: 0;
    width: unset;
  }
}
.primaryNav__link, .primaryNav__toggle {
  display: block;
  padding: 0.75rem 0.5rem;
}
@media (min-width: 70rem) {
  .primaryNav__link, .primaryNav__toggle {
    padding: 0.75rem;
  }
}
@media (min-width: 80rem) {
  .primaryNav__link, .primaryNav__toggle {
    padding: 0.75rem 1rem;
  }
}
.primaryNav__list {
  margin: 0 -0.5rem;
}
@media (min-width: 60rem) {
  .primaryNav__list {
    margin: 0 -0.75rem;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 60rem) {
  .primaryNav__item {
    margin: 0;
  }
}
.primaryNav__accordion[open] .primaryNav__toggle {
  background: #222;
  color: white;
}
.primaryNav__toggle {
  cursor: pointer;
}
.primaryNav__toggle::before {
  content: "";
}
.primaryNav__secondLevel {
  background: #222;
  padding: 0.75rem 2rem 0.75rem 1rem;
  min-width: 10rem;
}
@media (min-width: 60rem) {
  .primaryNav__secondLevel {
    position: absolute;
  }
}
.primaryNav__secondLevelWrap {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.primaryNav__secondLevelTitle {
  display: block;
  padding-bottom: 0.75rem;
}
.primaryNav__secondLevelList {
  flex: 99 1 auto;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(30%, 10em), 1fr));
  grid-column-gap: 1.5rem;
}
.primaryNav__secondLevelListItem {
  display: contents;
}
.primaryNav__secondLevelListItem a {
  font-size: 0.9rem;
  padding: 0.5rem 0 0.75rem 0;
  transition: border 100ms ease-in-out;
}
@media (min-width: 60rem) {
  .primaryNav__secondLevelListItem a {
    font-size: 1rem;
  }
}
.primaryNav__secondLevelListItem a:focus, .primaryNav__secondLevelListItem a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.primaryNav__secondLevel a {
  color: white;
}
.primaryNav .icon-search {
  width: 20px;
  height: 20px;
  padding: 0.7em 0 0 0;
  margin: 0 0 0 1em;
}
.primaryNav .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.primaryNav .searchForm {
  display: none;
  position: absolute;
  top: 100%;
  right: -0.9em;
  background: white;
  padding: 0.35em;
  z-index: 1000;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.primaryNav .searchForm input {
  width: 200px;
  padding: 0.3em;
  border: 1px solid #ccc;
}
.primaryNav .searchForm button {
  padding: 0.6em;
  background: #bf2401;
  border-radius: 4px;
  color: white;
  border: none;
  cursor: pointer;
}
.primaryNav #toggleSearch:checked ~ .searchForm {
  display: block;
}

.js .primaryNav,
.js .siteHeader__search {
  display: none;
}
@media (min-width: 60rem) {
  .js .primaryNav,
  .js .siteHeader__search {
    display: block !important;
  }
}

.home .slab.has-tertiary-tint-10-background-color {
  color: white;
}
.home .slab.has-tertiary-tint-10-background-color h1 {
  color: white;
}
.home .slab.has-tertiary-tint-10-background-color .wp-block-button__link {
  background: black;
  color: white;
}

.siteFooter {
  padding: 8rem 0;
  background: linear-gradient(to bottom, #f3f3f3, white);
  position: relative;
  color: white;
  line-height: 1.5;
  z-index: 0;
  text-align: right;
}
.siteFooter__logo {
  position: fixed;
  bottom: -3em;
  left: -3em;
  width: 120%;
  height: auto;
  overflow: hidden;
  z-index: -1;
}
@media (min-width: 60rem) {
  .siteFooter__logo {
    width: 66%;
  }
}
.siteFooter__inner {
  font-size: 0.9rem;
  padding: calc(2.5rem + 3vmin) 0 calc(5rem + 10vmin);
}
.siteFooter__inner * {
  color: #000;
}
.siteFooter__branding a {
  text-decoration: none;
  font-size: 2.25rem;
}
@media (min-width: 60rem) {
  .siteFooter__branding a {
    font-size: 4rem;
  }
}
.siteFooter__email {
  font-size: 1.125rem;
  margin: 2.5rem 0;
  display: block;
}
.siteFooter__email a {
  color: black;
}
.siteFooter__email a:hover {
  color: #555 !important;
}
.siteFooter .siteFooter__links {
  margin: 2.5rem 0;
}
.siteFooter .siteFooter__links li {
  display: inline;
  padding: 0 0.3em;
  color: #444;
  text-decoration: underline;
}

.pageHeader {
  position: relative;
  color: #000;
  overflow-x: hidden;
}
.home h1 {
  line-height: 1em;
  font-weight: 400;
  font-size: 3em;
}
@media (min-width: 70em) {
  .home h1 {
    font-size: 3em;
    max-width: 75%;
  }
}

.accordion {
  clear: both;
  margin-bottom: 4rem;
}

.accordion__item {
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  box-sizing: border-box;
  margin-bottom: 0.25rem;
  background: #999;
  border-radius: 0.5rem;
  padding: calc(0.75rem + 2%);
}
.accordion__item[open] > .accordion__title::after {
  transform: rotate(90deg) rotate3d(0, 1, 0, -180deg);
}

.accordion__title {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}
.accordion__title:focus {
  outline: 0.2rem solid #f24822;
  outline-offset: 0.5rem;
}
.accordion__title:focus:not(:focus-visible) {
  outline: none !important;
}
.accordion__title::after {
  content: "";
  flex: 0 0 1.2em;
  width: 1.2em;
  height: 1.2em;
  line-height: 1;
  padding: 0;
  background: center center/contain no-repeat url("../images/rarr-primary.svg");
  transition: transform 250ms ease-in-out;
  transform: rotate(90deg);
  box-sizing: border-box;
}
.accordion__title::-webkit-details-marker {
  display: none;
}

.accordion__toggle {
  flex: 1 1 auto;
  margin: 0;
}

.accordion__content {
  margin-top: 1.5rem;
  line-height: 1.5;
}
.accordion__content .acf-innerblocks-container {
  display: contents;
}
.accordion__content > *:first-child,
.accordion__content .acf-innerblocks-container > *:first-child {
  margin-top: 0;
}
.accordion__content > *:last-child,
.accordion__content .acf-innerblocks-container > *:last-child {
  margin-bottom: 0;
}

:where(.slab.has-background) .accordion__item {
  background: white;
}

.banner {
  box-sizing: border-box;
  margin-bottom: 0;
}
.banner:where(:nth-of-type(even)) {
  background: none;
}
.wp-block-acf-banner {
  margin-bottom: 0;
}
.wp-block-acf-banner:where(:nth-of-type(even)) .banner {
  background: none;
}

.banner__tag {
  font-size: 0.75em;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #ab1f00;
  font-weight: bold;
}
@media (min-width: 70em) {
  .banner__tag {
    font-size: 0.8em;
  }
}
.banner__tag .casestudy {
  color: #ab1f00;
}
.banner__title {
  margin-top: 0;
  text-wrap: pretty !important;
}
.banner__title a {
  text-decoration: none;
}
.banner__title a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: #bbb;
}
.banner__figure {
  position: relative;
  flex: 1 0 50%;
  align-self: stretch;
  margin: 0;
  min-height: 4rem;
}
@media (min-width: 85em) {
  .banner__figure {
    max-width: 50%;
  }
}
.banner__figure:has(.banner__date) {
  min-height: 15em;
}
.banner__figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.banner__date {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 1rem;
  min-width: 5em;
  background: rgba(0, 0, 0, 0.75);
  font-size: 1.25em;
  text-transform: uppercase;
  z-index: 1;
  transform: translate(-50%, -50%);
}
@media (min-width: 70em) {
  .banner__date {
    font-size: 1.6em;
  }
}
@supports ((-webkit-backdrop-filter: blur(0.25em)) or (backdrop-filter: blur(0.25em))) {
  .banner__date {
    background: rgba(0, 0, 0, 0.35);
    -webkit-backdrop-filter: blur(0.25em);
            backdrop-filter: blur(0.25em);
  }
}
.banner__date > * {
  display: block;
  text-align: center;
  line-height: 1;
}
.banner__day {
  color: #222;
  font-size: 2.25em;
  line-height: 0.85;
  margin-bottom: 0.1em;
}
.banner__meta {
  margin-bottom: 1rem;
}
.banner__content {
  position: relative;
  flex: 1 0 50%;
  padding: calc(1rem + 2.5%) calc(0.75rem + 2%);
  box-sizing: border-box;
  z-index: 1;
}
@media (min-width: 15em) {
  .banner__content {
    min-width: 75%;
  }
}
@media (min-width: 40em) {
  .banner__content {
    min-width: 24em;
  }
}
.banner__content > *:first-child {
  margin-top: 0;
}
.banner__content > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 900px) {
  .banner__content {
    padding: calc(1rem + 2.5%) 7.5%;
  }
}
.banner__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-items: flex-end;
  min-height: 45vmin;
}
@media print {
  .banner__flex {
    min-height: 10rem;
  }
}
.banner--reverse .banner__flex {
  flex-direction: row-reverse;
}
.banner--image-after .banner__flex {
  justify-content: flex-end;
  flex-direction: row-reverse;
}
.banner--image-after.banner--reverse .banner__flex {
  flex-direction: row;
}
.banner--compact .banner__flex {
  min-height: 30vmin;
}
@media print {
  .banner--compact .banner__flex {
    min-height: 10rem;
  }
}

.banner--over {
  position: relative;
}
@media (min-width: 20rem) {
  .banner--over {
    padding: 5vh calc(0.75rem + 2%);
  }
}
.banner--over .banner__flex {
  align-items: flex-end;
}
@media (min-width: 20rem) {
  .banner--over .banner__figure {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
  }
}
@media (min-width: 80rem) {
  .banner--over .banner__figure {
    max-width: none;
  }
}
.banner--over .banner__content {
  margin: 0 auto;
}
@media (min-width: 20rem) {
  .banner--over .banner__content {
    background: rgba(0, 0, 0, 0.75);
  }
}

.banner--over-left,
.banner--over-right {
  position: relative;
}
@media (min-width: 20rem) {
  .banner--over-left,
  .banner--over-right {
    padding: 5vh calc(0.75rem + 2%);
  }
}
.banner--over-left .banner__flex,
.banner--over-right .banner__flex {
  align-items: flex-end;
  max-width: 80rem;
  margin: auto;
}
@media (min-width: 20rem) {
  .banner--over-left .banner__figure,
  .banner--over-right .banner__figure {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
  }
}
@media (min-width: 80rem) {
  .banner--over-left .banner__figure,
  .banner--over-right .banner__figure {
    max-width: none;
  }
}
@media (min-width: 20rem) {
  .banner--over-left .banner__content,
  .banner--over-right .banner__content {
    background: rgba(0, 0, 0, 0.75);
  }
}
@media (min-width: 45rem) {
  .banner--over-left .banner__content,
  .banner--over-right .banner__content {
    width: 50%;
  }
}

@media (min-width: 45rem) {
  .banner--over-left .banner__content {
    margin-inline-end: 50%;
  }
}

@media (min-width: 45rem) {
  .banner--over-right .banner__content {
    margin-inline-start: 50%;
  }
}

.banner--bg-black,
.banner.is-style-black {
  background: black;
}

.banner--bg-grey-darkest,
.banner.is-style-grey-darkest {
  background: #222;
}

.banner--bg-grey-dark,
.banner.is-style-grey-dark {
  background: #222;
}

.banner--bg-secondary,
.banner.is-style-secondary {
  background: #222;
}

.banner-group {
  margin: 0 0 2.5rem;
}

.box {
  --background: #999;
  margin-bottom: 2.5rem;
  background: var(--background);
  border-radius: 0.5rem;
  box-sizing: border-box;
  line-height: 1.5;
  container: box/inline-size;
  padding: calc(0.75rem + 2%);
}
.box .acf-innerblocks-container {
  display: contents;
}
.box > *:first-child,
.box .acf-innerblocks-container > *:first-child {
  margin-top: 0;
}
.box > *:last-child,
.box .acf-innerblocks-container > *:last-child {
  margin-bottom: 0;
}
.box :where(h2, h3, h4, h5, h6) {
  font-size: clamp(1.25rem, 5cqi, 1.4rem);
}
@media (min-width: 70em) and (min-height: 30em) {
  .box :where(h2, h3, h4, h5, h6) {
    font-size: clamp(1.25rem, 5.5cqi, 1.8rem);
  }
}

.box.has-primary-background-color {
  --background: #222;
}

.box.has-primary-tint-10-background-color {
  --background: #eee;
}

.box.has-secondary-tint-10-background-color {
  --background: #eee;
}

.box.has-tertiary-tint-10-background-color {
  --background: #ddd;
}

:where(.slab.has-background) .box {
  --background: white;
}

.wp-block-button__link {
  background-color: #F24822;
  color: #ffffff;
}

.nf-form-content input[type=submit] {
  background-color: #F24822 !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  border: 2px solid #000000 !important;
}

.button {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  margin: 0 0.25rem 1rem 0;
  padding: 0.75em 1.25em;
  border: 0.2rem solid var(--border-color, var(--color));
  text-transform: uppercase;
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.15;
  text-decoration: none;
  text-align: center;
  border-radius: 0.5rem;
  transition: box-shadow 150ms ease-out;
  box-sizing: border-box;
  cursor: pointer;
  --bg: white;
  --border-color: #222;
  --text-color: black;
  background: var(--bg);
  color: black;
}
.button:hover, .button:focus {
  border-color: var(--text-color);
}
.button--outline-black {
  --border-color: black;
}
.button--outline-black-pointy {
  --border-color: black;
}
.button--outline-black-pointy::after {
  content: "";
  display: inline-block;
  vertical-align: text-top;
  width: 1em;
  height: 1.2em;
  background: center center/contain no-repeat url("../images/rarr-black.svg");
  margin-inline-start: 0.35em;
  transition: transform 250ms ease-in-out;
}
.button--outline-black-pointy:hover::after, .button--outline-black-pointy:focus::after {
  filter: grayscale(1) brightness(0);
  transform: translateX(0.2em) rotate3d(1, 0, 0, -180deg);
}
.button--outline-primary {
  --border-color: #222;
}
.button--outline-primary-pointy {
  --border-color: #222;
}
.button--outline-primary-pointy::after {
  content: "";
  display: inline-block;
  vertical-align: text-top;
  width: 1em;
  height: 1.2em;
  background: center center/contain no-repeat url("../images/rarr-primary.svg");
  margin-inline-start: 0.35em;
  transition: transform 250ms ease-in-out;
}
.button--outline-primary-pointy:hover::after, .button--outline-primary-pointy:focus::after {
  filter: grayscale(1) brightness(0);
  transform: translateX(0.2em) rotate3d(1, 0, 0, -180deg);
}
.button--outline-secondary {
  --border-color: #666;
}
.button--outline-secondary-pointy {
  --border-color: #666;
}
.button--outline-secondary-pointy::after {
  content: "";
  display: inline-block;
  vertical-align: text-top;
  width: 1em;
  height: 1.2em;
  background: center center/contain no-repeat url("../images/rarr-secondary.svg");
  margin-inline-start: 0.35em;
  transition: transform 250ms ease-in-out;
}
.button--outline-secondary-pointy:hover::after, .button--outline-secondary-pointy:focus::after {
  filter: grayscale(1) brightness(0);
  transform: translateX(0.2em) rotate3d(1, 0, 0, -180deg);
}
.button--outline-tertiary {
  --border-color: #F24822;
}
.button--outline-tertiary-pointy {
  --border-color: #F24822;
}
.button--outline-tertiary-pointy::after {
  content: "";
  display: inline-block;
  vertical-align: text-top;
  width: 1em;
  height: 1.2em;
  background: center center/contain no-repeat url("../images/rarr-tertiary.svg");
  margin-inline-start: 0.35em;
  transition: transform 250ms ease-in-out;
}
.button--outline-tertiary-pointy:hover::after, .button--outline-tertiary-pointy:focus::after {
  filter: grayscale(1) brightness(0);
  transform: translateX(0.2em) rotate3d(1, 0, 0, -180deg);
}
.button[disabled] {
  opacity: 0.75;
  border-color: #ccc;
  background: #ccc;
  background-position: 0% bottom;
  color: #aaa;
  cursor: not-allowed;
}

.wp-block-button .wp-block-button__link {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  margin: 0 0.25rem 1rem 0;
  padding: 0.75em 1.25em;
  border: 0.2rem solid var(--border-color, var(--color));
  text-transform: uppercase;
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.15;
  text-decoration: none;
  text-align: center;
  border-radius: 0.5rem;
  transition: box-shadow 150ms ease-out;
  box-sizing: border-box;
  cursor: pointer;
  --bg: white;
  --border-color: #222;
  --text-color: black;
  background: var(--bg);
  color: black;
}
.wp-block-button .wp-block-button__link:hover, .wp-block-button .wp-block-button__link:focus {
  border-color: var(--text-color);
}
.wp-block-button.is-style-outline-black .wp-block-button__link {
  --border-color: black;
}
.wp-block-button.is-style-outline-black-pointy .wp-block-button__link {
  --border-color: black;
}
.wp-block-button.is-style-outline-black-pointy .wp-block-button__link::after {
  content: "";
  display: inline-block;
  vertical-align: text-top;
  width: 1em;
  height: 1.2em;
  background: center center/contain no-repeat url("../images/rarr-black.svg");
  margin-inline-start: 0.35em;
  transition: transform 250ms ease-in-out;
}
.wp-block-button.is-style-outline-black-pointy .wp-block-button__link:hover::after, .wp-block-button.is-style-outline-black-pointy .wp-block-button__link:focus::after {
  filter: grayscale(1) brightness(0);
  transform: translateX(0.2em) rotate3d(1, 0, 0, -180deg);
}
.wp-block-button.is-style-outline-primary .wp-block-button__link {
  --border-color: #222;
}
.wp-block-button.is-style-outline-primary-pointy .wp-block-button__link {
  --border-color: #222;
}
.wp-block-button.is-style-outline-primary-pointy .wp-block-button__link::after {
  content: "";
  display: inline-block;
  vertical-align: text-top;
  width: 1em;
  height: 1.2em;
  background: center center/contain no-repeat url("../images/rarr-primary.svg");
  margin-inline-start: 0.35em;
  transition: transform 250ms ease-in-out;
}
.wp-block-button.is-style-outline-primary-pointy .wp-block-button__link:hover::after, .wp-block-button.is-style-outline-primary-pointy .wp-block-button__link:focus::after {
  filter: grayscale(1) brightness(0);
  transform: translateX(0.2em) rotate3d(1, 0, 0, -180deg);
}
.wp-block-button.is-style-outline-secondary .wp-block-button__link {
  --border-color: #666;
}
.wp-block-button.is-style-outline-secondary-pointy .wp-block-button__link {
  --border-color: #666;
}
.wp-block-button.is-style-outline-secondary-pointy .wp-block-button__link::after {
  content: "";
  display: inline-block;
  vertical-align: text-top;
  width: 1em;
  height: 1.2em;
  background: center center/contain no-repeat url("../images/rarr-secondary.svg");
  margin-inline-start: 0.35em;
  transition: transform 250ms ease-in-out;
}
.wp-block-button.is-style-outline-secondary-pointy .wp-block-button__link:hover::after, .wp-block-button.is-style-outline-secondary-pointy .wp-block-button__link:focus::after {
  filter: grayscale(1) brightness(0);
  transform: translateX(0.2em) rotate3d(1, 0, 0, -180deg);
}
.wp-block-button.is-style-outline-tertiary .wp-block-button__link {
  --border-color: #F24822;
}
.wp-block-button.is-style-outline-tertiary-pointy .wp-block-button__link {
  --border-color: #F24822;
}
.wp-block-button.is-style-outline-tertiary-pointy .wp-block-button__link::after {
  content: "";
  display: inline-block;
  vertical-align: text-top;
  width: 1em;
  height: 1.2em;
  background: center center/contain no-repeat url("../images/rarr-tertiary.svg");
  margin-inline-start: 0.35em;
  transition: transform 250ms ease-in-out;
}
.wp-block-button.is-style-outline-tertiary-pointy .wp-block-button__link:hover::after, .wp-block-button.is-style-outline-tertiary-pointy .wp-block-button__link:focus::after {
  filter: grayscale(1) brightness(0);
  transform: translateX(0.2em) rotate3d(1, 0, 0, -180deg);
}
.wp-block-button a.has-steel-background-color {
  color: white;
  border-color: rgba(170, 170, 170, 0.2666666667);
}
.wp-block-button a.has-red-background-color {
  color: black;
  background-color: #F24822;
  border-color: #000000;
}

.button-red {
  margin-top: 2em;
  color: black;
  background-color: #F24822;
  border-color: #000000;
}

.wp-block-button .wp-block-button__link.has-red-background-color {
  color: black;
}

.breadcrumbs {
  padding-top: 1.5rem;
  font-size: 0.9rem;
  text-transform: lowercase;
}
.breadcrumbs ul, .breadcrumbs li {
  list-style: none;
  padding: 0;
  margin: 0;
  color: white;
}
.breadcrumbs li {
  display: inline-block;
  margin: 0 0 0.75rem;
}
.breadcrumbs li::after {
  background-color: rgba(238, 238, 238, 0.5333333333);
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.75em;
  transform: skew(-15deg);
  margin-left: 0.5em;
  margin-right: 0.5em;
}
.breadcrumbs a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(238, 238, 238, 0.5333333333);
  color: white;
}
.breadcrumbs a:focus, .breadcrumbs a:hover {
  text-decoration-thickness: 2px;
  text-decoration-color: #F24822;
}

.card {
  --background: white;
  position: relative;
  margin: 0 0 1.5rem;
  container: card/inline-size;
  font-size: 0.9rem;
  line-height: 1.5;
}
.card__figure {
  flex: 1 10 33%;
  margin: 0;
  height: 100%;
}
.card__figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}
.card__content {
  container: card__content/inline-size;
  flex: 99 1 12.5em;
}
.card__title {
  font-size: clamp(1rem, 5cqi, 1.25rem);
  font-weight: bolder;
  line-height: 1.25;
  margin: 1rem 0 3rem 0;
}
@media (min-width: 70em) and (min-height: 30em) {
  .card__title {
    font-size: clamp(1.125rem, 5.5cqi, 1.8rem);
  }
}
.card__title a {
  display: inline-block;
  text-decoration: none;
  text-wrap: balance;
}
.card__title a::after {
  content: "";
  position: relative;
  display: inline-block;
  vertical-align: center;
  width: 1em;
  height: 0.85em;
  top: 0.05em;
  background: center center/contain no-repeat url("../images/rarr-secondary.svg");
  margin-inline-start: 0.25em;
  transition: transform 250ms ease-in-out;
}
.card__title a:hover::after, .card__title a:focus::after {
  filter: grayscale(1) brightness(0);
  transform: translateX(0.2em) rotate3d(1, 0, 0, -180deg);
}
.card__title a:hover, .card__title a:focus {
  text-decoration: underline;
}
.card__date {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: bolder;
  color: #666;
}
.card-team img {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.card-team img:hover {
  filter: none;
  -webkit-filter: none;
}

.author-card--image {
  padding-right: 2em;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  width: 140px;
}

:where(.slab:where(.has-background)) .card {
  border: 0;
}

.card-team img {
  aspect-ratio: 1/1 !important;
}

.cardGroup {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(clamp(40%, 25em, 100%), 1fr));
  margin: 0 0 2.5rem;
}
.cardGroup .card {
  margin: 0;
}
.cardGroup > .acf-innerblocks-container {
  display: contents;
}
.cardGroup--team {
  grid-template-columns: repeat(auto-fill, minmax(clamp(14%, 14em, 100%), 1fr));
}
.cardGroup blockquote {
  margin-top: 0;
}

.iconBox {
  --background: white;
  margin-bottom: 2.5rem;
  background: var(--background);
  border: 0.2rem solid var(--border-color, #fff);
  border-radius: 0.5rem;
  box-sizing: border-box;
  line-height: 1.5;
  container: box/inline-size;
  padding: calc(0.75rem + 2%);
}
.iconBox .acf-innerblocks-container {
  display: contents;
}
.iconBox__content > *:first-child,
.iconBox .acf-innerblocks-container > *:first-child {
  margin-top: 0;
}
.iconBox__content > *:last-child,
.iconBox .acf-innerblocks-container > *:last-child {
  margin-bottom: 0;
}
.iconBox__content :where(h2, h3, h4, h5, h6) {
  max-width: calc(100% - calc(5% + 2rem) - 1.5rem);
  font-size: clamp(1.125rem, 5cqi, 1.25rem);
}
@media (min-width: 70em) and (min-height: 30em) {
  .iconBox__content :where(h2, h3, h4, h5, h6) {
    font-size: clamp(1.125rem, 5.5cqi, 1.4rem);
  }
}
.iconBox__content :where(h2, h3, h4, h5, h6) a {
  display: inline-block;
  text-decoration: none;
  text-wrap: balance;
}
.iconBox__content :where(h2, h3, h4, h5, h6) a::after {
  content: "";
  position: relative;
  display: inline-block;
  vertical-align: center;
  width: 1em;
  height: 0.85em;
  top: 0.05em;
  background: center center/contain no-repeat url("../images/rarr-secondary.svg");
  margin-inline-start: 0.25em;
  transition: transform 250ms ease-in-out;
}
.iconBox__content :where(h2, h3, h4, h5, h6) a:hover::after, .iconBox__content :where(h2, h3, h4, h5, h6) a:focus::after {
  filter: grayscale(1) brightness(0);
  transform: translateX(0.2em) rotate3d(1, 0, 0, -180deg);
}
.iconBox__content :where(h2, h3, h4, h5, h6) a:hover, .iconBox__content :where(h2, h3, h4, h5, h6) a:focus {
  text-decoration: underline;
}
.iconBox__iconContainer {
  display: flex;
  float: right;
  width: calc(5% + 2rem);
  margin: 0 0 0.5rem 1.5rem;
  align-self: flex-start;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #F24822;
}
.iconBox__iconContainer img {
  margin: auto;
  width: 50%;
}

.iconBox.has-primary-tint-10-background-color {
  border: 0;
  --background: #eee;
}

:where(.slab.has-background) .iconBox {
  border: 0;
}

.iconList {
  padding: 4rem 0;
  background: #dcdcdc;
}
.iconList .acf-innerblocks-container {
  display: contents;
}
.iconList__list {
  margin: 1.5rem 0 0 0;
  padding: 0;
  list-style: none;
  max-width: none;
  display: grid;
  grid-gap: 0;
  grid-template-columns: repeat(auto-fill, minmax(clamp(25%, 10em, 100%), 1fr));
}
.iconList__item {
  container: iconList__item/inline-size;
  flex-wrap: wrap;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  margin-bottom: 2rem;
  justify-content: center;
  min-width: 0;
  background: rgba(255, 255, 255, 0.4);
  padding: 2em;
  margin-right: 1em;
  border-radius: 0.5em;
}
.iconList__icon {
  margin: 0;
  max-width: 9em;
  align-self: center;
}
@media (min-width: 60rem) {
  .iconList__icon {
    width: 100%;
  }
}
.iconList__icon img {
  margin: auto;
  width: 6em;
}
.iconList__title,
.iconList :where(h1, h2, h3, h4, h5, h6) {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(1rem, 8.5cqi, 1.4rem);
  font-weight: bolder;
  line-height: 1.25;
}
.iconList__content {
  align-self: center;
  display: block;
  text-align: center;
}
.iconList__content a {
  text-decoration: none;
}
.iconList__content a:hover {
  text-decoration: underline;
}
.iconList__content h3 {
  margin: 1em;
  font-size: 1rem;
}
.iconList__content p {
  margin-bottom: 1rem;
}
.iconList__content > *:first-child {
  margin-top: 0;
}
.iconList__content > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 60rem) {
  .iconList .wp-block-buttons {
    justify-content: center;
  }
}

dl,
.meta {
  line-height: 1.25;
}
dl dt,
.meta dt {
  margin-bottom: 0.25rem;
}
dl__item,
.meta__item {
  margin-bottom: 1rem;
}

.meta--inline-dd dd {
  display: inline;
  margin-right: 0.5rem;
}
.meta--inline-dd dd:before {
  content: "•";
  margin-right: 0.5rem;
  font-weight: bold;
  color: #666;
}
.meta--inline-dd dd:first-of-type:before {
  display: none;
}

.meta--inline .meta__item {
  margin-bottom: 0.5rem;
}
.meta--inline .meta__item:last-child {
  margin-bottom: 0;
}
.meta--inline dt {
  display: inline-block;
  margin-right: 0.5rem;
}
.meta--inline dd {
  display: inline;
  margin-right: 0.25rem;
}
.meta--inline dd:before {
  content: "•";
  margin-right: 0.5rem;
  font-weight: bold;
  color: #666;
}
.meta--inline dd:first-of-type:before {
  display: none;
}

.post-listing {
  display: flex;
  flex-wrap: wrap;
}
.post-listing img {
  padding-right: 2em;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  width: 140px;
}
.post-listing h3 {
  margin: 0;
}
.post-listing p.author {
  margin: 0.25em 0;
}
.post-listing p.excerpt {
  margin-bottom: 3em;
}

.team-listing {
  float: right;
  width: 16rem;
  margin-inline-end: -16rem;
  padding-inline-start: 3rem;
  box-sizing: border-box;
}
.team-listing .team-member {
  display: flex;
  align-items: center;
}
.team-listing img {
  width: 80px !important;
  padding: 0;
  margin: 0 1em 0.5em 0;
}
.team-listing h2 {
  margin-top: 0.2em;
}

.pagination {
  margin: 4rem 0 0 0;
  padding-bottom: 4rem;
  font-size: 1.125rem;
  text-transform: lowercase;
}
@media (min-width: 50rem) {
  .pagination {
    font-size: 1rem;
  }
}
.pagination__items,
.pagination .facetwp-pager {
  justify-content: center;
  margin: 0;
  padding: 0.25rem;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  z-index: 1;
  border-radius: 0.5rem;
}
.pagination__item {
  display: none;
}
.pagination__item:last-child {
  border: 0;
}
@media (min-width: 50rem) {
  .pagination__item {
    display: block;
  }
}
.pagination li {
  margin: 0;
}
.pagination a,
.pagination .facetwp-page,
.pagination .dots,
.pagination span, .pagination__item--ellipsis {
  display: block;
  line-height: 1.15;
  padding: 0.5rem 0.25rem;
  box-sizing: border-box;
  min-width: 2.5em;
  color: black;
  background: white;
  text-align: center;
  border: 0.2rem solid transparent;
}
.pagination a:hover, .pagination a:focus,
.pagination .facetwp-page:hover,
.pagination .facetwp-page:focus,
.pagination .dots:hover,
.pagination .dots:focus,
.pagination span:hover,
.pagination span:focus, .pagination__item--ellipsis:hover, .pagination__item--ellipsis:focus {
  text-decoration: underline;
}
.pagination__item--ellipsis {
  color: #ddd;
}
.pagination .is-active {
  display: block;
}
.pagination .is-active a, .pagination .is-active span {
  display: block;
  font-weight: bold;
  cursor: default;
  border-color: #F24822;
}
.pagination .is-active a:hover, .pagination .is-active a:focus, .pagination .is-active span:hover, .pagination .is-active span:focus {
  text-decoration: none;
}
.pagination .facetwp-page.active {
  display: block;
  min-width: 2.5em;
  font-weight: bold;
  text-align: center;
  cursor: default;
  border-color: #F24822;
}
.pagination .facetwp-page.active:hover, .pagination .facetwp-page.active:focus {
  text-decoration: none;
}
.pagination__item--first, .pagination__item--last, .pagination__item--next, .pagination__item--prev {
  display: block;
  font-weight: bold;
  background: none;
}
.pagination__item--first span[aria-hidden], .pagination__item--last span[aria-hidden], .pagination__item--next span[aria-hidden], .pagination__item--prev span[aria-hidden] {
  font-size: 2em;
  line-height: 0.5;
}
.pagination__item--first a, .pagination__item--last a, .pagination__item--next a, .pagination__item--prev a {
  display: block;
  font-weight: bold;
  border-radius: 0.25rem;
  margin: 0;
}
.pagination .is-disabled {
  display: none;
}

.facetwp-pager .next,
.facetwp-pager .prev {
  display: block;
  font-weight: bold;
  border-radius: 0.25rem;
  margin: 0;
}

:where(.slab:where(.has-base-background-color, .is-style-base)) .pagination__items,
:where(.slab:where(.has-base-background-color, .is-style-base)) .pagination .facetwp-pager {
  padding: 0;
}

.wp-block-acf-row {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  row-gap: 2rem;
  width: 100%;
}
.wp-block-acf-row .acf-innerblocks-container {
  display: contents;
}
.wp-block-acf-row .acf-innerblocks-container > *:first-child {
  margin-top: 0;
}
.wp-block-acf-row .acf-innerblocks-container > *:last-child {
  margin-bottom: 0;
}
.wp-block-acf-row .wp-block-acf-row-item {
  flex: 1 1 20em;
}

:where(.wp-block-acf-row) {
  margin-bottom: 2rem;
}

.section-nav {
  margin-bottom: 2.5rem;
}
.section-nav__inner {
  line-height: 1.5;
  background: white;
  border: 0.2rem solid #F24822;
  border-radius: 0.35rem;
}
.section-nav__list {
  position: relative;
  margin: 0;
  padding: 0.5rem 0;
  z-index: 10;
}
.section-nav__list li {
  margin: 0;
}
.section-nav__list > li {
  border-top: 1px solid #ddd;
}
.section-nav__list > li:first-child {
  border: 0;
}
.section-nav__list a {
  display: block;
  color: black;
  padding: 0.75rem;
  text-decoration: none;
}
.section-nav__list a:hover, .section-nav__list a:focus {
  text-decoration: underline;
}
.section-nav__list ul {
  margin: 0;
  padding: 0.5rem 0;
  max-width: none;
  padding-left: 1.5rem;
  background: #fff;
  font-size: 0.9rem;
}
.section-nav__list ul li {
  display: block;
  padding-left: 1em;
}
.section-nav__list ul li::before {
  display: block;
  content: "-";
  float: left;
  width: 1em;
  text-align: center;
  margin-left: -1em;
  padding: 0.4em 0;
}
.section-nav__list ul a {
  padding: 0.5em 0;
}
.section-nav .current_page_item {
  font-weight: bold;
}
.section-nav__toggle {
  cursor: pointer;
  padding: 0.75rem;
  color: #222;
  font-weight: bolder;
}
.section-nav__toggle::-webkit-details-marker, .section-nav__toggle::marker {
  content: "";
  display: none;
}
.section-nav__toggle-inner {
  position: relative;
  display: block;
  padding-right: 2.5rem;
}
.section-nav__toggle-inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1.5rem;
  background: #F24822 center center/contain no-repeat url("../img/icon-chevron-down-tertiary.svg");
  transition: all 200ms ease-in-out;
}
.section-nav [open] .section-nav__toggle {
  border-bottom: 1px solid #ddd;
}
@media (min-width: 40rem) {
  .section-nav [open] .section-nav__toggle::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 10;
  }
}
.section-nav [open] .section-nav__toggle-inner::after {
  transform: rotate(180deg);
  background: darkred;
}

@media (min-width: 40rem) {
  :where(.breadcrumbs + .section-nav) .section-nav__inner {
    float: right;
    margin-top: -3.5rem;
    width: 20rem;
  }
}
.slab {
  --slab__padding-y: 2.5rem;
  position: relative;
  padding: var(--slab__padding-y) 0;
  margin-bottom: 0;
  overflow: hidden;
}
@media (min-width: 70em) and (min-height: 30em) {
  .slab {
    --slab__padding-y: calc(8rem + 2vmin);
  }
}
.slab :where(.wrap, .acf-innerblocks-container) > :where(*:first-child) {
  margin-top: 0;
}
.slab :where(.wrap, .acf-innerblocks-container) > :where(*:last-child) {
  margin-bottom: 0;
}
.slab h1 {
  color: #fff;
  margin-bottom: 0.5em;
  font-size: 2.25rem;
}
@media (min-width: 60rem) {
  .slab h1 {
    font-size: 4rem;
    max-width: unset;
  }
}
.slab h2 {
  color: #ffffff;
}
.slab:after {
  content: "";
  display: table;
  clear: both;
}

.pageHeader .slab.has-tertiary-tint-10-background-color {
  background: linear-gradient(259deg, rgb(242, 72, 34) 0%, rgb(50, 50, 50) 60%);
}

@media screen {
  .slab.has-base-background-color {
    background-color: #fff;
  }
  .has-steel-background-color {
    color: white;
  }
  .has-steel-background-color h2, .has-steel-background-color h3, .has-steel-background-color a {
    color: white !important;
  }
  .has-steel-background-color li::marker {
    color: #33A2CB;
  }
  .slab.has-gradred-background-color {
    color: white;
    background: linear-gradient(259deg, rgb(242, 72, 34) 0%, rgb(50, 50, 50) 60%);
  }
  .slab.has-gradred-background-color a {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }
}
:where(main) > .slab:first-child:where(:not([class*=has-background])),
:where(main > .wrap) > .slab:first-child:where(:not([class*=has-background])),
:where(main .wrap-content-center) > .slab:first-child:where(:not([class*=has-background])) {
  padding-top: 0;
}
@media (min-width: 70em) and (min-height: 30em) {
  :where(main) > .slab:first-child:where(:not([class*=has-background])),
  :where(main > .wrap) > .slab:first-child:where(:not([class*=has-background])),
  :where(main .wrap-content-center) > .slab:first-child:where(:not([class*=has-background])) {
    padding: 3vmin 0 calc(2.5rem + 3vmin);
  }
}

.slab :where(.wrap > .acf-innerblocks-container) > .tickertape:first-child {
  margin-top: -2.5rem;
  margin-bottom: var(--slab__padding-y);
}
@media (min-width: 70em) and (min-height: 30em) {
  .slab :where(.wrap > .acf-innerblocks-container) > .tickertape:first-child {
    margin-top: calc(-2.5rem - 3vmin);
  }
}
.slab :where(.wrap > .acf-innerblocks-container) > .tickertape:first-child .tickertape__highlight,
.slab :where(.wrap > .acf-innerblocks-container) > .tickertape:first-child .wp-block-heading {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.slab__background {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home .slab__background {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.steppedList {
  --background: #fff;
  --item-border-color: white;
  background: var(--background);
  padding: calc(0.75rem + 2%);
  padding-left: 3.5%;
  margin-bottom: 2.5rem;
  border-radius: 0.5rem;
}
.steppedList .acf-innerblocks-container {
  display: contents;
}
.steppedList__list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: none;
  counter-reset: stepper;
}
.steppedList__list > .acf-innerblocks-container > li:last-of-type,
.steppedList__list > .acf-innerblocks-container > div:last-child > li:only-child {
  margin-bottom: 0;
}
.steppedList__list > .acf-innerblocks-container > li:last-of-type::after,
.steppedList__list > .acf-innerblocks-container > div:last-child > li:only-child::after {
  border: 0;
}
.steppedList__list > .acf-innerblocks-container > li:last-of-type .steppedList__icon::after,
.steppedList__list > .acf-innerblocks-container > div:last-child > li:only-child .steppedList__icon::after {
  display: none;
}
.steppedList__list > .acf-innerblocks-container > li:last-of-type .steppedList__itemInner,
.steppedList__list > .acf-innerblocks-container > div:last-child > li:only-child .steppedList__itemInner {
  padding-bottom: 0;
  border: 0;
}
.steppedList__item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 5%;
       column-gap: 5%;
  margin-bottom: 2rem;
}
.steppedList__item::before {
  display: block;
  position: absolute;
  counter-increment: stepper;
  content: counter(stepper);
  color: transparent;
  height: 0;
  width: 0;
}
.steppedList__item::after {
  content: "";
  border-left: 2px solid #666;
  margin-left: -1px;
  height: 100%;
  position: absolute;
  top: 3rem;
  left: 1.5rem;
}
.steppedList__icon {
  display: flex;
  margin: 0 auto 1rem;
  flex: 1 99 3rem;
  max-width: 5em;
  align-self: flex-start;
  aspect-ratio: 1/1;
  font-size: 1em;
  border-radius: 100%;
  background: #666;
}
.steppedList__icon img {
  margin: auto;
  width: 50%;
}
.steppedList__number {
  display: list-item;
  align-self: center;
  margin: auto;
  color: white;
  font-weight: bold;
  font-size: 1.5em;
  text-align: center;
}
.steppedList__number::before {
  content: counter(stepper);
}
.steppedList__itemInner {
  flex: 99 1 auto;
  max-width: calc(95% - 3rem);
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--item-border-color);
  padding-bottom: 2rem;
}
.steppedList__title {
  flex: 1 1 12rem;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(1rem, 8.5cqi, 1.4rem);
  font-weight: bolder;
  color: #222;
  line-height: 1.25;
}
.steppedList__content {
  flex: 3 1 20rem;
  line-height: 1.5;
}
.steppedList__content p {
  margin-bottom: 1rem;
}
.steppedList__content > *:first-child {
  margin-top: 0;
}
.steppedList__content > *:last-child {
  margin-bottom: 0;
}

:where(.slab.has-background) .steppedList {
  --background: white;
  --item-border-color: #fff;
}

.tag:where(:not(body)) {
  --background: #666;
  --color: white;
  position: relative;
  display: inline-block;
  margin: 0 0.0625rem 0 0;
  padding: 0.4em 0.5em;
  font-size: 0.8rem;
  line-height: 1;
  font-weight: normal;
  text-transform: lowercase;
  background: var(--background, #666);
  color: var(--color, white);
  border-radius: 0.35rem;
}

a.tag:hover, a.tag:focus {
  --background: black;
  --color: white;
  color: var(--color, white);
}

.tickertape {
  position: relative;
  margin-bottom: 1.5rem;
  margin-right: 1rem;
  text-wrap: balance;
}
.tickertape + .tickertape {
  margin-top: -1rem;
}
.tickertape__highlight,
.tickertape .wp-block-heading {
  position: relative;
  display: inline;
  left: 0.35rem;
  padding: 0.1em 0.1rem;
  line-height: 1.5;
  background: #222;
  color: white;
  box-shadow: -0.35rem 0 0 0 #222, 0.35rem 0 0 0 #222;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  border-radius: 0.35rem;
}
.tickertape__highlight a,
.tickertape .wp-block-heading a {
  color: white;
}

.shortsSlab {
  background: #f3f3f3;
  background-size: cover;
}
.shortsSlab__grid {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.shortsSlab__grid::-webkit-scrollbar {
  height: 0.75rem;
}
.shortsSlab__grid::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.5em rgba(0, 0, 0, 0.75);
  border-radius: 0.5rem;
}
.shortsSlab__grid::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  background: #666;
}
.shortsSlab__grid > * {
  flex: 1 1 auto;
  max-width: 25rem;
  min-width: min(15rem, 75vw);
  scroll-snap-align: center;
}
.shortsSlab figure:is(.is-type-video) {
  border: 0.75rem solid black;
  padding: 0;
}
.shortsSlab figure:is(.is-type-video) iframe {
  display: block;
}

.debug * {
  box-shadow: 0 0 0.5em rgba(255, 0, 0, 0.75), inset 0 0 0.5em rgba(0, 255, 0, 0.75) !important;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.bg-primary {
  background: #222 !important;
}

.bg-secondary {
  background: #666 !important;
}

.bg-tertiary {
  background: #F24822 !important;
}

.text-color-primary {
  color: #222 !important;
}

.text-color-secondary {
  color: #666 !important;
}

.text-color-tertiary {
  color: #F24822 !important;
}

.text-color-white {
  color: white !important;
}

.text-color-black {
  color: black !important;
}

.text-color-grey {
  color: #eee !important;
}

.text-color-error {
  color: #ff0000 !important;
}

.font-9xl {
  font-size: 4rem !important;
}

.font-8xl {
  font-size: 2.85rem !important;
}

.font-7xl {
  font-size: 2.5rem !important;
}

.font-6xl {
  font-size: 2.25rem !important;
}

.font-5xl {
  font-size: 2rem !important;
}

.font-4xl {
  font-size: 1.8rem !important;
}

.font-3xl {
  font-size: 1.6rem !important;
}

.font-2xl {
  font-size: 1.4rem !important;
}

.font-xl {
  font-size: 1.25rem !important;
}

.font-lg {
  font-size: 1.125rem !important;
}

.font-md {
  font-size: 1rem !important;
}

.font-sm {
  font-size: 0.9rem !important;
}

.font-xs {
  font-size: 0.8rem !important;
}

.font-2xs {
  font-size: 0.75rem !important;
}

.font-3xs {
  font-size: 0.7rem !important;
}

.font-4xs {
  font-size: 0.65rem !important;
}

.font-primary {
  font-family: "Montserrat", sans-serif;
}

.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center !important;
}

.text-left {
  margin-right: auto;
  text-align: left !important;
}

.text-right {
  margin-left: auto;
  text-align: right !important;
}

.text-columns {
  max-width: none;
  -moz-columns: 25em;
       columns: 25em;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.text-columns p, .text-columns li {
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
}

.link--stretched {
  position: static;
}
.link--stretched::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: all;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.link--stretched-before {
  position: static;
}
.link--stretched-before::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: all;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.margin-y-4xs {
  margin-top: 0.0625rem !important;
  margin-bottom: 0.0625rem !important;
}

.margin-top-4xs {
  margin-top: 0.0625rem !important;
}

.margin-bottom-4xs {
  margin-bottom: 0.0625rem !important;
}

.margin-y-3xs {
  margin-top: 0.125rem !important;
  margin-bottom: 0.125rem !important;
}

.margin-top-3xs {
  margin-top: 0.125rem !important;
}

.margin-bottom-3xs {
  margin-bottom: 0.125rem !important;
}

.margin-y-2xs {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.margin-top-2xs {
  margin-top: 0.25rem !important;
}

.margin-bottom-2xs {
  margin-bottom: 0.25rem !important;
}

.margin-y-xs {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.margin-top-xs {
  margin-top: 0.5rem !important;
}

.margin-bottom-xs {
  margin-bottom: 0.5rem !important;
}

.margin-y-sm {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.margin-top-sm {
  margin-top: 0.75rem !important;
}

.margin-bottom-sm {
  margin-bottom: 0.75rem !important;
}

.margin-y-md {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.margin-top-md {
  margin-top: 1rem !important;
}

.margin-bottom-md {
  margin-bottom: 1rem !important;
}

.margin-y-lg {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.margin-top-lg {
  margin-top: 1.5rem !important;
}

.margin-bottom-lg {
  margin-bottom: 1.5rem !important;
}

.margin-y-xl {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.margin-top-xl {
  margin-top: 2rem !important;
}

.margin-bottom-xl {
  margin-bottom: 2rem !important;
}

.margin-y-2xl {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.margin-top-2xl {
  margin-top: 2.5rem !important;
}

.margin-bottom-2xl {
  margin-bottom: 2.5rem !important;
}

.margin-y-3xl {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.margin-top-3xl {
  margin-top: 3rem !important;
}

.margin-bottom-3xl {
  margin-bottom: 3rem !important;
}

.margin-y-4xl {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.margin-top-4xl {
  margin-top: 4rem !important;
}

.margin-bottom-4xl {
  margin-bottom: 4rem !important;
}

.margin-y-5xl {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.margin-top-5xl {
  margin-top: 6rem !important;
}

.margin-bottom-5xl {
  margin-bottom: 6rem !important;
}

.margin-y-6xl {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.margin-top-6xl {
  margin-top: 8rem !important;
}

.margin-bottom-6xl {
  margin-bottom: 8rem !important;
}

.margin-y-8xl {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.margin-top-8xl {
  margin-top: 10rem !important;
}

.margin-bottom-8xl {
  margin-bottom: 10rem !important;
}

.margin-top-none,
.margin-y-none {
  margin-top: 0 !important;
}

.margin-bottom-none,
.margin-y-none {
  margin-bottom: 0 !important;
}

.visually-hidden {
  display: block;
  position: absolute !important;
  overflow: hidden;
  height: 1px;
  left: -9999em;
  clip: rect(0 0 0 0);
}

.visually-hidden.focusable:active, .visually-hidden.focusable:focus {
  position: static !important;
  clip: auto !important;
  overflow: visible !important;
  height: auto !important;
  left: auto;
}

.js .js-hidden {
  display: none;
}

.no-js .no-js-hidden {
  display: none;
}

#wpadminbar {
  background: #555;
}
/*# sourceMappingURL=main.css.map */
