@charset "UTF-8";
/**
 * npm package - similar to a CSS reset/normalize
 */
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type=search i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */
:where(button, input, select, textarea) {
  background-color: transparent; /* 1 */
  border: 1px solid WindowFrame; /* 1 */
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  letter-spacing: inherit; /* 2 */
  padding: 0.25em 0.375em; /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(select) {
  appearance: none;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E") no-repeat right center/1em;
  border-radius: 0;
  padding-right: 1em;
}

/**
 * Don't show the arrow for multiple choice selects
 */
:where(select[multiple]) {
  background-image: none;
}

/**
 * Remove the border and padding in all browsers (opinionated).
 */
:where([type=color i], [type=range i]) {
  border-width: 0;
  padding: 0;
}

/**
 * Restrict sizing to the page width in all browsers (opinionated).
 */
:where(iframe, img, input, video, select, textarea) {
  height: auto;
  max-width: 100%;
}

/*! Flickity v3.0.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
  touch-action: pan-y;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}

.flickity-rtl .flickity-slider {
  left: unset;
  right: 0;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

/* ---- flickity-cell ---- */
.flickity-cell {
  position: absolute;
  left: 0;
}

.flickity-rtl .flickity-cell {
  left: unset;
  right: 0;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: hsl(0 0% 100%/75%);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dot {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  margin: 0 8px;
  background: hsl(0 0% 20%/25%);
  border-radius: 50%;
  cursor: pointer;
  appearance: none;
  border: none;
  text-indent: -9999px;
  overflow: hidden;
}

.flickity-rtl .flickity-page-dot {
  text-indent: 9999px;
}

.flickity-page-dot:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-page-dot.is-selected {
  background: hsl(0 0% 20%/100%);
}

.blog .blog-posts,
.category .blog-posts,
.author .blog-posts {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
}
.blog .blog-posts .tease-post,
.category .blog-posts .tease-post,
.author .blog-posts .tease-post {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 1rem 0;
  justify-content: center;
  align-items: center;
}
.blog .blog-posts .tease-post:last-child,
.category .blog-posts .tease-post:last-child,
.author .blog-posts .tease-post:last-child {
  margin: 1rem 0 3rem;
}
.blog .blog-posts .tease-post .tease-term,
.category .blog-posts .tease-post .tease-term,
.author .blog-posts .tease-post .tease-term {
  z-index: 2;
  position: relative;
}
.blog .blog-posts .tease-post .tease-meta,
.category .blog-posts .tease-post .tease-meta,
.author .blog-posts .tease-post .tease-meta {
  z-index: 2;
  position: relative;
}
.blog .blog-posts .tease-post .tease-image,
.category .blog-posts .tease-post .tease-image,
.author .blog-posts .tease-post .tease-image {
  flex: 1 1 300px;
  position: relative;
  overflow: hidden;
}
.blog .blog-posts .tease-post .tease-image img,
.category .blog-posts .tease-post .tease-image img,
.author .blog-posts .tease-post .tease-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 200ms ease;
  margin-bottom: 0;
}
.blog .blog-posts .tease-post .tease-image::before, .blog .blog-posts .tease-post .tease-image::after,
.category .blog-posts .tease-post .tease-image::before,
.category .blog-posts .tease-post .tease-image::after,
.author .blog-posts .tease-post .tease-image::before,
.author .blog-posts .tease-post .tease-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.blog .blog-posts .tease-post .tease-image::before,
.category .blog-posts .tease-post .tease-image::before,
.author .blog-posts .tease-post .tease-image::before {
  background-color: var(--teal);
  opacity: 0;
}
.blog .blog-posts .tease-post .tease-image::after,
.category .blog-posts .tease-post .tease-image::after,
.author .blog-posts .tease-post .tease-image::after {
  background-color: var(--teal);
  mix-blend-mode: color;
  opacity: 0;
}
.blog .blog-posts .tease-post .tease-content,
.category .blog-posts .tease-post .tease-content,
.author .blog-posts .tease-post .tease-content {
  flex: 1 1 500px;
}
.blog .blog-posts .tease-post .tease-content h2 a,
.category .blog-posts .tease-post .tease-content h2 a,
.author .blog-posts .tease-post .tease-content h2 a {
  color: var(--teal-dark);
}
.blog .blog-posts .tease-post .tease-content p,
.category .blog-posts .tease-post .tease-content p,
.author .blog-posts .tease-post .tease-content p {
  margin: 0;
  color: initial;
  font-size: initial;
  font-style: normal;
  font-weight: initial;
  line-height: initial;
  margin-bottom: 1.5rem;
}
.blog .blog-posts .tease-post:hover .tease-image img,
.category .blog-posts .tease-post:hover .tease-image img,
.author .blog-posts .tease-post:hover .tease-image img {
  transform: scale(1.05);
}
.blog .blog-posts .tease-post:hover .tease-image::before,
.category .blog-posts .tease-post:hover .tease-image::before,
.author .blog-posts .tease-post:hover .tease-image::before {
  opacity: 0.2;
}
.blog .blog-posts .tease-post:hover .tease-image::after,
.category .blog-posts .tease-post:hover .tease-image::after,
.author .blog-posts .tease-post:hover .tease-image::after {
  opacity: 1;
}

.single-post .wrapper--narrow {
  margin-top: 3rem;
  position: relative;
}
.single-post .single-sidebar {
  position: absolute;
  top: 0;
  width: 140px;
  left: calc((100% - 1226px) / 2);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.single-post .single-sidebar .single-sidebar-content {
  display: flex;
  gap: 0.25rem;
  flex-direction: column;
}
@media (max-width: 1250px) {
  .single-post .wrapper--narrow {
    margin-top: 3rem;
    position: relative;
  }
  .single-post .single-sidebar {
    position: initial;
    width: 100%;
    align-items: center;
  }
  .single-post .single-sidebar .single-sidebar-content {
    flex-direction: row-reverse;
    margin: 1rem 0;
    gap: 0 2rem;
  }
  .single-post .single-sidebar .single-sidebar-content a {
    position: relative;
  }
  .single-post .single-sidebar .single-sidebar-content a:before {
    content: "•";
    position: absolute;
    left: -1.1rem;
  }
}
.single-post .main-content-comments {
  margin: 2rem 0;
}

/**
 * WordPress-specific style overrides
 */
.alignwide {
  max-width: 1226px !important;
  width: 93%;
  margin-left: auto;
  margin-right: auto;
}

.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

.wp-block-group.has-background {
  padding: 0.5rem;
}

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

.wp-block-columns {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.wp-block-group__inner-container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.wp-block-group__inner-container .wp-block-columns {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 782px) {
  .wp-block-column:not(:first-child) {
    /**
     * Change the default column gutter size here
     * e.g. margin-left: 4em;
     */
  }
}
.wp-block-details {
  border-bottom: 1px solid #1e3a5f;
  padding: 10px 20px;
}
.wp-block-details summary {
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
  list-style: none;
}
.wp-block-details summary::-webkit-details-marker, .wp-block-details summary::marker {
  display: none;
  content: "";
}
.wp-block-details summary::after {
  content: "+";
  font-size: 25px;
  color: var(--navy);
}
.wp-block-details[open] {
  border-bottom-width: 2px;
}
.wp-block-details[open] summary::after {
  content: "−"; /* Minus sign */
}

/**
 * The foundation
 */
/**
 * For styling generic html tag elements and globally accessible things.
 */
:root {
  --primary-color: var(--teal-dark);
  --secondary-color: var(--teal);
  --black: #1c1c1c;
  --white: #ffffff;
  --gray: #f3f3f3;
  --navy: #0c1e2b;
  --navy-light: #cee5f6;
  --teal: #6fb8be;
  --teal-light: #e9fdff;
  --teal-dark: #3a7f82;
  --teal-dark-hover: #135255;
  --orange: #ffbf7a;
  --orange-light: #ffe8d0;
  --heading-font: "Archivo", sans-serif;
  --body-font: "Geist", sans-serif;
}

/**
 * For smooth scrolling anchor links
 */
html {
  scroll-behavior: smooth;
}

img {
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

/**
 * Skip to content link
 */
a.skip-link {
  background: black;
  color: #fff;
  font-weight: 700;
  left: 50%;
  padding: 4px;
  position: absolute;
  transform: translateY(-100%);
  transition: 200ms ease;
  display: block;
}
a.skip-link:focus {
  transform: translateY(0%);
}

/**
 * Selected text colors
 */
::selection {
  background: var(--primary-color);
  color: white;
  text-shadow: none;
}

/**
 * Remove outline for non-keyboard :focus
 */
*:focus {
  outline: none;
}

/* @link https://utopia.fyi/type/calculator?c=320,16,1.125,1140,16,1.25,6,0,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l */
:root {
  --step-0: clamp(1rem, 1rem + 0vw, 1rem);
  --step-1: clamp(1.13rem, 1.08rem + 0.24vw, 1.25rem);
  --step-2: clamp(1.27rem, 1.15rem + 0.58vw, 1.56rem);
  --step-3: clamp(1.42rem, 1.22rem + 1.03vw, 1.95rem);
  --step-4: clamp(1.6rem, 1.27rem + 1.64vw, 2.44rem);
  --step-5: clamp(1.8rem, 1.31rem + 2.44vw, 3.05rem);
  --step-6: clamp(2.03rem, 1.33rem + 3.49vw, 3.82rem);
}

body {
  font-size: var(--step-0);
  line-height: 1.4;
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: 300;
  color: var(--black);
}

/**
 * Default link styles
 */
a {
  color: var(--primary-color);
  text-decoration: none;
}
a:hover, a:focus {
  color: var(--primary-color);
  text-decoration: underline;
  outline: none;
}

/**
 * Heading styles
 */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--heading-font);
  margin: 0 0 1.5rem 0;
  font-weight: 100;
  font-variation-settings: unset;
}

h1,
.h1 {
  font-size: var(--step-6);
  line-height: 1;
}

h2,
.h2 {
  font-size: var(--step-5);
  line-height: 1;
}

h3,
.h3 {
  font-size: var(--step-3);
  line-height: 1.1;
}

h4,
.h4 {
  font-size: var(--step-2);
  line-height: 1.2;
}

h5,
.h5 {
  font-size: var(--step-1);
}

h6,
.h6 {
  font-size: var(--step-0);
}

hr {
  border: 0 none;
  border-bottom: 1px solid var(--teal);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 18px;
}

b,
strong {
  font-weight: 700;
}

main ul li,
main ol li {
  margin-bottom: 0.75rem;
}

.wrapper {
  max-width: 1226px;
  width: 93%;
  margin-left: auto;
  margin-right: auto;
}
.wrapper--narrow {
  max-width: 825px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

.grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/**
 * Global Components (re-usable global things)
 * block specific styles should be kept inside the relevant `/views/blocks/...` folder.
 */
blockquote {
  margin: 2rem;
  font-style: italic;
}
blockquote:before {
  content: "“";
  display: block;
  font-size: 2rem;
  height: 0;
  left: -1.5rem;
  position: relative;
  top: -0.5rem;
}

.button,
input[type=submit],
.wp-block-button .wp-block-button__link {
  display: inline-flex;
  background-color: var(--teal-dark);
  border: 1px solid transparent;
  border-radius: 2rem;
  padding: 16px 24px;
  text-decoration: none;
  color: white;
  cursor: pointer;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: 250ms ease;
  text-align: center;
  justify-content: center;
}
.button:hover, .button:focus,
input[type=submit]:hover,
input[type=submit]:focus,
.wp-block-button .wp-block-button__link:hover,
.wp-block-button .wp-block-button__link:focus {
  text-decoration: none;
  color: white;
  background-color: var(--teal-dark-hover);
  border-color: var(--teal-dark-hover);
}
.button.button--secondary,
input[type=submit].button--secondary,
.wp-block-button .wp-block-button__link.button--secondary {
  display: inline-flex;
  background-color: var(--navy-light);
  border: 1px solid transparent;
  border-radius: 2rem;
  padding: 16px 24px;
  text-decoration: none;
  color: var(--navy);
  cursor: pointer;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: 250ms ease;
  text-align: center;
  justify-content: center;
}
.button.button--secondary:hover, .button.button--secondary:focus,
input[type=submit].button--secondary:hover,
input[type=submit].button--secondary:focus,
.wp-block-button .wp-block-button__link.button--secondary:hover,
.wp-block-button .wp-block-button__link.button--secondary:focus {
  text-decoration: none;
  color: var(--navy);
  background-color: var(--white);
  border-color: var(--white);
}
.button.button--small,
input[type=submit].button--small,
.wp-block-button .wp-block-button__link.button--small {
  font-size: 14px;
  padding: 10px 16px;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  color: var(--primary-color);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-button.is-style-outline .wp-block-button__link:focus {
  background: var(--primary-color);
  color: white;
}

label {
  display: block;
}

textarea,
select,
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel] {
  font-size: inherit;
  width: 100%;
  border: 1px solid grey;
  padding: 0.375rem 0.5rem;
  border-radius: 3px;
  accent-color: var(--secondary-color);
}
textarea:focus,
select:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=tel]:focus {
  border-color: var(--secondary-color);
  outline: none;
}

select {
  background-position: calc(100% - 1rem) 50%;
}

input[type=radio],
input[type=checkbox] {
  appearance: none;
  margin: 0;
  width: 1.15em;
  height: 1.15em;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}
input[type=radio]::before,
input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  transform: scale(0);
  box-shadow: inset 1em 1em var(--secondary-color);
  transition: 120ms transform ease-in-out;
}
input[type=radio]:checked::before,
input[type=checkbox]:checked::before {
  transform: scale(1);
}
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: max(2px, 0.15em) solid currentColor;
  outline-offset: max(2px, 0.15em);
}

input[type=checkbox] {
  border-radius: 0.125rem;
}
input[type=checkbox]::before {
  border-radius: 0.1rem;
}

/**
 * Pagination
 */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 2rem;
  margin: 2rem auto !important;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.pagination .pagination-ellipsis {
  width: auto;
  height: auto;
  border: none;
  color: var(--teal-dark);
  font-size: 1.2rem;
  padding: 0 0.25rem;
}
.pagination .current {
  background-color: var(--teal-dark);
  color: white;
}
.pagination a:hover {
  background-color: var(--teal-dark);
  color: white;
}
.pagination .button--previous,
.pagination .button--next {
  border: none;
  background: transparent;
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .button--previous svg,
.pagination .button--next svg {
  width: 1rem;
  height: auto;
  fill: var(--teal-dark);
  color: var(--teal-dark);
}
.pagination .button--previous svg path,
.pagination .button--next svg path {
  fill: var(--teal-dark);
  color: var(--teal-dark);
}

/**
 * Global layout styles
 */
/**
 * For styling generic html tag elements and globally accessible things.
 */
.header {
  border-bottom: 1px solid var(--navy, #0c1e2b);
  padding: 16px 0;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: white;
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

/**
 * Desktop menu styles
 */
@media (min-width: 900px) {
  .header-nav {
    display: flex;
    align-items: center;
    position: relative;
  }
  .header-nav li {
    list-style: none;
  }
  .header-nav li:before {
    display: none;
  }
  .header-nav a:not(.button) {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    color: var(--navy);
    padding: 0.5rem;
    display: block;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    position: relative;
  }
  .header-nav a:not(.button) svg {
    display: block;
    transition: 250ms ease;
    transform: rotate(0);
  }
  .header-nav a:not(.button):hover, .header-nav a:not(.button):focus {
    text-decoration: none;
  }
  .header-nav a:not(.button):hover::after, .header-nav a:not(.button):focus::after {
    content: "";
    height: 2px;
    width: 100%;
    background: var(--teal);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .header-nav > ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 46px;
    margin: 0;
  }
  .header-nav > ul > li {
    position: relative;
  }
  .header-nav > ul > li > ul {
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    padding: 0;
    min-width: 250px;
    background: white;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  }
  .header-nav > ul > li:hover > a svg, .header-nav > ul > li:focus-within > a svg {
    transform: rotate(-180deg);
  }
  .header-nav > ul > li:hover > a svg path, .header-nav > ul > li:focus-within > a svg path {
    fill: var(--teal);
  }
  .header-nav > ul > li:hover > ul, .header-nav > ul > li:focus-within > ul {
    visibility: visible;
    opacity: 1;
  }
}
/**
 * Mobile nav trigger button
 */
.header-trigger {
  margin-bottom: 0;
  margin-left: auto;
  border: 0 none;
  appearance: none;
}
@media (min-width: 900px) {
  .header-trigger {
    display: none;
  }
}
.header-trigger-open {
  display: block;
}
.header-trigger-close {
  display: none;
}
.header-trigger.active .header-trigger-open {
  display: none;
}
.header-trigger.active .header-trigger-close {
  display: block;
}

@media (max-width: 899px) {
  .header {
    position: relative;
  }
  .header-nav {
    display: none;
  }
  .header-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 500;
    background: white;
    padding: 1rem 1.25rem 2rem;
  }
  .header-nav > ul {
    border-top: 1px solid var(--teal);
    margin: 0;
    padding-top: 1rem;
  }
  .header-nav li {
    margin-top: 1rem;
  }
  .header-nav a:not(.button) {
    font-weight: bold;
    color: var(--black);
  }
  .header-nav .menu-item-has-children > a {
    font-weight: 300;
  }
  .header-nav .menu-item-has-children > a svg {
    display: none;
  }
  .header-nav .menu-item-has-children ul {
    margin-bottom: 2rem;
  }
}
.main-content > *,
.main-content .wp-block-group__inner-container > * {
  max-width: 1226px;
  width: 93%;
  margin-left: auto;
  margin-right: auto;
}
.main-content > *.alignwide,
.main-content .wp-block-group__inner-container > *.alignwide {
  width: 100%;
}
.main-content > *.alignfull,
.main-content .wp-block-group__inner-container > *.alignfull {
  max-width: none;
  width: 100%;
}
.main-content-comments {
  clear: both;
}
.main-content-comments .comment-box {
  margin-left: 1rem;
}

.tease {
  position: relative;
}
.tease img {
  aspect-ratio: 424/240;
  width: 100%;
  object-fit: cover;
  background: var(--gray);
  margin-bottom: 1.5rem;
}
.tease-term {
  display: inline-flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--navy-light, #cee5f6);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 15px */
  text-transform: uppercase;
  color: var(--navy);
}
.tease-term:hover {
  color: var(--navy);
}
.tease h2 {
  font-family: "Geist", sans-serif;
  font-size: var(--step-2);
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  margin: 12px 0;
}
.tease h2 a {
  color: var(--black);
}
.tease h2 a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.tease p {
  margin: 0;
  color: var(--teal-dark);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.prefooter {
  background: var(--teal-light);
}
.prefooter .wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.prefooter-text {
  padding: 128px 0;
  flex: 1 1 400px;
}
@media (max-width: 767px) {
  .prefooter-text {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
}
.prefooter-image {
  flex: 1 1 400px;
  margin-top: auto;
}

.footer-top {
  background: var(--navy);
  color: white;
  padding: 128px 0;
  position: relative;
}
@media (max-width: 767px) {
  .footer-top {
    padding: 2rem 0;
  }
}
.footer-top .wrapper {
  position: relative;
  z-index: 1;
}
.footer-top img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

.footer {
  padding: 3rem 0;
}
@media (max-width: 767px) {
  .footer {
    padding: 2rem 0;
  }
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
@media (max-width: 767px) {
  .footer-main {
    flex-direction: column;
  }
}
.footer-main-logo {
  flex: 0 1 210px;
}
@media (max-width: 767px) {
  .footer-main-logo {
    flex: 0 0 auto;
    margin: auto;
  }
}
.footer-main-nav {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 767px) {
  .footer-main-nav {
    flex-direction: column;
    margin-left: 0;
  }
}
.footer-main-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 767px) {
  .footer-main-nav ul {
    flex-direction: column;
    margin-left: 0;
  }
}
.footer-main-nav li {
  break-inside: avoid;
  list-style: none;
}
.footer-main-nav a {
  font-weight: bold;
  color: var(--navy);
}
.footer-main-cta {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-main-cta {
    margin: auto;
  }
}
.footer small {
  display: block;
  text-align: center;
}

/* Main column width */
.wp-block {
  max-width: 1202px;
  width: 93%;
  margin-left: auto;
  margin-right: auto;
}
.wp-block[data-align=wide] {
  width: 100%;
}
.wp-block[data-align=full] {
  max-width: none;
  width: 100%;
}

.acf-button {
  padding: 0.5rem 0.7rem !important;
  background: unset !important;
}
