@charset "UTF-8";
/**
 * A modern CSS reset
 * https://github.com/andy-piccalilli/modern-css-reset
 * https://dev.to/hankchizljaw/a-modern-css-reset-6p3
 */
/* Box sizing rules */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;700&family=Roboto:ital,wght@0,400;0,900;1,400;1,900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Trade Gothic Next LT Pro";
  src: url("../fonts/TradeGothicNextLTPro-Bd.woff2") format("woff2"), url("../fonts/TradeGothicNextLTPro-Bd.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Trade Gothic Next LT Pro Cn";
  src: url("../fonts/TradeGothicNextLTPro-HvCn.woff2") format("woff2"), url("../fonts/TradeGothicNextLTPro-HvCn.woff2") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Trade Gothic Next LT Pro Cn";
  src: url("../fonts/TradeGothicNextLTPro-Cn.woff2") format("woff2"), url("../fonts/TradeGothicNextLTPro-Cn.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Trade Gothic Next LT Pro";
  src: url("../fonts/TradeGothicNextLTPro-Rg.woff2") format("woff2"), url("../fonts/TradeGothicNextLTPro-Rg.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --block-padding-sm: 1rem;
  --block-padding-md: 2rem;
  --block-padding-lg: 4rem;
  --block-padding-xl: 6rem;
  --gradient-opportunities: linear-gradient(270deg, #8DBF2E 0%, #00CFBE 51%, #00A189 100%);
  --gradient-research: linear-gradient(267deg, #32C5FF 0%, #B620E0 51%, #F7B500 100%);
  --gradient-events: linear-gradient(267deg, #00A189 0%, #ab1368 100%);
  --gradient-core: linear-gradient(270deg, #DC4633 0%, #F2C500 49%, #6FC7EA 100%, #00A189 100%);
  --theme-gradient: var(--gradient-core);
  --gradient-radial-events: radial-gradient(circle, #00a189 0%, #7a2375 100%);
  --gradient-radial-opportunities: radial-gradient(circle, #89bf31 0%, #02c9b7 100%);
  --gradient-radial-research: radial-gradient(circle, #35c1ff 0%, #b027e1 100%);
  --gradient-radial-sunburst: radial-gradient(circle, #dd4932 0%, #f1c501 50%, #74c7e0 100%);
}

/* ==|== non-semantic helper classes ======================================== */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}

.ir br {
  display: none;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active, .visuallyhidden.focusable.nice-select.open, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

::-moz-selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #00a189;
  color: #fff;
  text-shadow: none;
}

.has-blue-background *::selection {
  background: white;
  color: #00a189;
}

:root :where(a) {
  color: #00a189;
  text-decoration: none;
}

:root :where(h1, h2, h3, h4, h5, h6) a {
  color: inherit;
  font-family: inherit;
}

:root :where(a):hover, :root :where(a):focus {
  color: #00a189;
  text-decoration: underline;
}

:root :where(a:focus) {
  outline: thin dotted #00a189;
}

:root :where(a:hover),
:root :where(a:active, a.nice-select.open) {
  outline: 0;
}

.has-primary-background-color > a {
  color: #00D4B5;
}
.has-primary-background-color > a:hover, .has-primary-background-color > a:focus {
  color: #00D4B5;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-block-start: 3rem;
}

h1[id],
h2[id],
h3[id],
h4[id],
h5[id],
h6[id],
p[id],
section[id],
article[id],
div[id],
a[id] {
  scroll-margin-top: 4rem;
}

body {
  background-color: white;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  margin-top: 0;
}

a > img {
  display: inline-block;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}
p > img {
  display: inline-block;
}

:root :where(input) {
  transition: box-shadow 0.2s ease;
}

:root :where(input:focus) {
  outline: 0;
  box-shadow: inset 0px 0px 3px #d9d9d9;
}

#ob-debug {
  position: fixed;
  bottom: 0px;
  left: 50%;
  width: 960px;
  padding: 10px;
  margin: 0 0 0 -480px;
  background: white;
  z-index: 9999;
  border: solid 1px #efefef;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: polygon(0px 0px, 0px 0px, 0px 0px, 0px 0px);
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #00a189;
  color: #000;
  transform: translateX(-1000px);
  z-index: 9999;
}

.skip-link:focus {
  transform: translateX(0);
}

:root :where(body) {
  font-family: "Roboto", sans-serif;
}

:root :where(p, ul, ol) {
  font-family: "Roboto", sans-serif;
  font-size: clamp(1rem, 0.9393939394rem + 0.202020202vw, 1.125rem);
  line-height: 1.5;
}

input {
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #D1D1E1;
  border-collapse: collapse;
  border-radius: 9999px;
  font-size: 1rem;
  padding: 0.5rem 2rem;
}

button,
input[type=submit],
input[type=reset],
a.button {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
  cursor: pointer;
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}
button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
a.button:hover {
  color: #00a189;
}

button.download, a.download {
  background: none;
  border: 12px solid #8dbf2e;
  border-radius: 50%;
  padding: 0;
  transition: border 0.2s ease;
  margin-bottom: 40px;
  display: inline-block;
}
button.download img, a.download img {
  width: 64px;
  display: block;
}
button.download--block, a.download--block {
  margin-bottom: 0;
  align-self: flex-start;
}
button.download:hover, button.download:focus, a.download:hover, a.download:focus {
  border: 12px solid #E8F0D8;
}
@media screen and (max-width: 992px) {
  button.download, a.download {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  button.download, a.download {
    border: 9px solid #8dbf2e;
  }
  button.download img, a.download img {
    width: 40px;
  }
  button.download:hover, button.download:focus, a.download:hover, a.download:focus {
    border: 9px solid #E8F0D8;
  }
}

textarea {
  color: #000000;
  background-color: #ffffff;
  font-size: 1rem;
  border: 1px solid #D1D1E1;
  border-collapse: collapse;
}

.download-button {
  position: relative;
  display: flex;
}
.download-button h5 {
  margin-block: 0 !important;
  align-self: center;
  margin-left: 24px;
}

.soc-download-button.active + .post__download-list {
  display: block;
}

body.admin-bar .header {
  top: 32px;
}

.gform_submission_error {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
}

.gfield_description {
  font-size: 1.125rem;
}

.gform_title {
  font-size: 1.875rem;
  margin-block-end: 40px;
}

.gfield_select {
  background-color: black;
  color: white;
  border: none;
  border-radius: 100px;
}

.gfield_normal-weight {
  margin-block-start: 10px;
}
.gfield_normal-weight label {
  font-weight: normal !important;
}

body .gform_wrapper.horizontal-form_wrapper .gform_fields {
  column-gap: 1%;
}
body .gform_wrapper.horizontal-form_wrapper .gfield_required {
  display: none;
}
body .gform_wrapper.horizontal-form_wrapper .gform_footer {
  padding: 0;
}
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=password],
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=url],
body .gform_wrapper.gravity-theme input[type=date],
body .gform_wrapper.gravity-theme input[type=month],
body .gform_wrapper.gravity-theme input[type=time],
body .gform_wrapper.gravity-theme input[type=datetime],
body .gform_wrapper.gravity-theme input[type=datetime-local],
body .gform_wrapper.gravity-theme input[type=week],
body .gform_wrapper.gravity-theme input[type=number],
body .gform_wrapper.gravity-theme input[type=search],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme input[type=color],
body .gform_wrapper.gravity-theme textarea,
body .gform_wrapper.gravity-theme select {
  min-width: 200px;
  padding: 0.5rem 1.25rem;
}
@media screen and (max-width: 768px) {
  body .gform_wrapper.gravity-theme#field_submit {
    align-items: center;
    justify-content: center;
  }
  body .gform_wrapper.gravity-theme#field_submit input {
    align-self: center;
  }
}
body .gform_wrapper .gfield_validation_message,
body .gform_wrapper .validation_message {
  border: 1.5px solid #c02b0a;
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.11), 0 0 4px rgba(18, 25, 97, 0.0405344);
}

.nice-select {
  -webkit-tap-highlight-color: #ffffff;
  background-color: #000000;
  border-radius: 9999px;
  box-sizing: border-box;
  clear: both;
  color: #ffffff;
  cursor: pointer;
  display: block;
  float: left;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  grid-area: select;
  height: 100%;
  line-height: 1.5;
  min-width: 200px;
  outline: none;
  padding: 0.5rem 1.5rem 0.5rem 1rem;
  position: relative;
  user-select: none;
  width: inherit;
}
.nice-select.gfield_select.small {
  width: calc(50% - 8px);
}
.nice-select.gfield_select.medium {
  width: calc(50% - 8px);
}
.nice-select.gfield_select.large {
  width: 100%;
}
.nice-select:hover {
  border-color: #dbdbdb;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #999;
}
.nice-select:after {
  color: #ffffff;
  content: "↓";
  display: inline-block;
  pointer-events: none;
  position: absolute;
  right: 1rem;
  transition: transform 0.3s ease-in-out;
}
.nice-select.open {
  border-radius: 22px 22px 0px 0px;
}
.nice-select.open:after {
  transform: rotate(180deg);
}
.nice-select.open .nice-select-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .nice-select-dropdown {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .nice-select-dropdown {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select-dropdown {
  margin-top: 0;
  background-color: #000000;
  border-radius: 0px 0px 22px 22px;
  color: #ffffff;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: translateY(-20px);
  transition: all 0.2s ease-in-out, opacity 0.15s ease-out;
  width: 100%;
  z-index: 9;
  opacity: 0;
}
.nice-select .list {
  box-sizing: border-box;
  overflow: hidden;
  padding: 0;
  margin-block: 0 1rem;
  max-height: 210px;
  overflow-y: auto;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  border-left: 8px solid #000000;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 400;
  list-style: none;
  outline: none;
  padding-block: 0.5rem;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  border-left: 8px solid #00a189;
  color: #00a189;
}
.nice-select .option.selected {
  border-left: 8px solid #00a189;
  color: #00a189;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}
.nice-select .optgroup {
  font-weight: bold;
}

.no-csspointerevents .nice-select .nice-select-dropdown {
  display: none;
}
.no-csspointerevents .nice-select.open .nice-select-dropdown {
  display: block;
}

.nice-select .list::-webkit-scrollbar {
  width: 0;
}

.nice-select .has-multiple {
  white-space: inherit;
  height: auto;
  padding: 7px 12px;
  min-height: 36px;
  line-height: 22px;
}
.nice-select .has-multiple span.current {
  border: 1px solid #ccc;
  background: #eee;
  padding: 0 10px;
  border-radius: 3px;
  display: inline-block;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 3px;
  margin-right: 3px;
}
.nice-select .has-multiple .multiple-options {
  display: block;
  line-height: 24px;
  padding: 0;
}
.nice-select .nice-select-search-box {
  box-sizing: border-box;
  width: 100%;
  padding: 5px;
  pointer-events: none;
  border-radius: 5px 5px 0 0;
}
.nice-select .nice-select-search {
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  color: #444;
  display: inline-block;
  vertical-align: middle;
  padding: 7px 12px;
  margin: 0 10px 0 0;
  width: 100%;
  min-height: 36px;
  line-height: 22px;
  height: auto;
  outline: 0 !important;
  font-size: 14px;
}

/* common block styles */
.entry-content > * {
  margin-bottom: 28px;
}
.entry-content > *.has-background:last-child {
  margin-bottom: 0;
}

/* wp-block-paragraph styles */
p.is-style-lede {
  font-family: "Noto Serif", serif;
  font-size: clamp(1.1875rem, 1.0965909091rem + 0.303030303vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin-bottom: 1rem;
}

p.is-style-caps {
  text-transform: uppercase;
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
}

/* wp-block-image styles */
.wp-block-image.is-style-transform-up {
  transform: translate(5vw, -8rem);
  height: 0;
}
@media screen and (max-width: 768px) {
  .wp-block-image.is-style-transform-up {
    height: auto;
    max-width: 66vw;
    transform: initial;
    width: 100%;
  }
}

/* wp-block-gallery styles */
.wp-block-gallery.columns-1 .blocks-gallery-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 17px;
}
@media (min-width: 768px) {
  .wp-block-gallery.columns-1 .blocks-gallery-item {
    width: calc((100% - 17px * 0) / 1);
    margin-right: 17px;
  }
  .wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n) {
    margin-right: 0;
  }
}
.wp-block-gallery.columns-2 .blocks-gallery-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 17px;
}
@media (min-width: 768px) {
  .wp-block-gallery.columns-2 .blocks-gallery-item {
    width: calc((100% - 17px * 1) / 2);
    margin-right: 17px;
  }
  .wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n) {
    margin-right: 0;
  }
}
.wp-block-gallery.columns-3 .blocks-gallery-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 17px;
}
@media (min-width: 768px) {
  .wp-block-gallery.columns-3 .blocks-gallery-item {
    width: calc((100% - 17px * 2) / 3);
    margin-right: 17px;
  }
  .wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n) {
    margin-right: 0;
  }
}
.wp-block-gallery.columns-4 .blocks-gallery-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 17px;
}
@media (min-width: 768px) {
  .wp-block-gallery.columns-4 .blocks-gallery-item {
    width: calc((100% - 17px * 3) / 4);
    margin-right: 17px;
  }
  .wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n) {
    margin-right: 0;
  }
}
.wp-block-gallery.columns-5 .blocks-gallery-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 17px;
}
@media (min-width: 768px) {
  .wp-block-gallery.columns-5 .blocks-gallery-item {
    width: calc((100% - 17px * 4) / 5);
    margin-right: 17px;
  }
  .wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n) {
    margin-right: 0;
  }
}
.wp-block-gallery.columns-6 .blocks-gallery-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 17px;
}
@media (min-width: 768px) {
  .wp-block-gallery.columns-6 .blocks-gallery-item {
    width: calc((100% - 17px * 5) / 6);
    margin-right: 17px;
  }
  .wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n) {
    margin-right: 0;
  }
}

/* wp-block-quote styles */
.wp-block-quote p:last-of-type {
  margin-bottom: 0;
}
/* wp-block-file styles */
/* wp-block-code styles */
/* wp-block-preformatted styles */
/* wp-block-pullquote styles */
.wp-block-pullquote {
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-weight: 900;
}
.wp-block-pullquote p {
  font-size: clamp(1.25rem, 0.946969697rem + 1.0101010101vw, 1.875rem);
  line-height: 1.3;
  margin-inline: auto;
}
.wp-block-pullquote p:last-of-type {
  margin-bottom: 0;
}
.wp-block-pullquote.is-style-solid-color blockquote.has-text-color p, .wp-block-pullquote.is-style-solid-color blockquote.has-text-color cite {
  color: inherit;
}

/* wp-block-table styles */
.wp-block-table.is-style-brand-blue table {
  border: none;
}
.wp-block-table.is-style-brand-blue thead {
  background-color: #0b2f4e;
  color: #ffffff;
}
.wp-block-table.is-style-brand-blue thead th {
  text-align: left;
}
.wp-block-table.is-style-brand-blue th, .wp-block-table.is-style-brand-blue td {
  border: none;
  padding: 1rem;
}
.wp-block-table.is-style-brand-blue td {
  border: 1px solid #0b2f4e;
  font-size: 1rem;
  vertical-align: top;
}
.wp-block-table.is-style-brand-blue td:first-of-type {
  border-inline-start: none;
}
.wp-block-table.is-style-brand-blue td:last-of-type {
  border-inline-end: none;
}
.wp-block-table.is-style-brand-blue td:hover {
  background-color: #E8F0D8;
}
.wp-block-table.is-style-teal-green table {
  border: none;
}
.wp-block-table.is-style-teal-green thead {
  background-image: linear-gradient(270deg, #8DBF2E 0%, #00CFBE 51%, #00A189 100%);
  color: #ffffff;
}
.wp-block-table.is-style-teal-green thead th {
  border: 1px solid #000000;
  text-align: left;
}
.wp-block-table.is-style-teal-green thead th:first-of-type {
  border-inline-start: none;
}
.wp-block-table.is-style-teal-green thead th:last-of-type {
  border-inline-end: none;
}
.wp-block-table.is-style-teal-green th, .wp-block-table.is-style-teal-green td {
  padding: 1rem;
}
.wp-block-table.is-style-teal-green td {
  border: 1px solid #000000;
  font-size: 1rem;
  vertical-align: top;
}
.wp-block-table.is-style-teal-green td:first-of-type {
  border-inline-start: none;
}
.wp-block-table.is-style-teal-green td:last-of-type {
  border-inline-end: none;
}
.wp-block-table.is-style-teal-green td:hover {
  background-color: #E8F0D8;
}
.wp-block-table.is-style-purple-teal table {
  border: none;
}
.wp-block-table.is-style-purple-teal thead {
  background-image: linear-gradient(270deg, #00A189 0%, #00CFBE 0%, #AB1368 100%);
  color: #ffffff;
}
.wp-block-table.is-style-purple-teal thead th {
  border: 1px solid #000000;
  text-align: left;
}
.wp-block-table.is-style-purple-teal thead th:first-of-type {
  border-inline-start: none;
}
.wp-block-table.is-style-purple-teal thead th:last-of-type {
  border-inline-end: none;
}
.wp-block-table.is-style-purple-teal th, .wp-block-table.is-style-purple-teal td {
  padding: 1rem;
}
.wp-block-table.is-style-purple-teal td {
  border: 1px solid #000000;
  font-size: 1rem;
  vertical-align: top;
}
.wp-block-table.is-style-purple-teal td:first-of-type {
  border-inline-start: none;
}
.wp-block-table.is-style-purple-teal td:last-of-type {
  border-inline-end: none;
}
.wp-block-table.is-style-purple-teal td:hover {
  background-color: #E8F0D8;
}

/* wp-block-verse styles */
pre.wp-block-verse {
  white-space: pre-wrap;
}

/* wp-block-group styles */
.wp-block-group.is-style-gradient {
  padding-block: 4rem;
}
.wp-block-group.is-style-gradient::before {
  background-image: var(--theme-gradient, linear-gradient(to left, #00A189, #AB1368));
  content: "";
  grid-column: wide-width-start/span 1;
  transform: translate(0, -4rem);
  height: 10px;
  width: 253px;
}
@media screen and (max-width: 992px) {
  .wp-block-group.is-style-gradient::before {
    height: 8px;
    grid-column: full-width-start/full-width-end;
    width: 100%;
  }
}
.wp-block-group .wp-block-group__inner-container > *:last-child {
  margin-bottom: 0;
}

/* wp-block-button styles */
.wp-block-button__link {
  text-decoration: none;
}
.wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link:active, .wp-block-button__link.nice-select.open, .wp-block-button__link:visited {
  color: #ffffff;
  text-decoration: underline;
}
.wp-block-button__link img:first-child {
  margin-right: 6px;
}

/* wp-block-columns styles */
.wp-block-columns {
  width: 100%;
}
.wp-block-columns:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .wp-block-columns {
    flex-wrap: nowrap;
  }
}

.wp-block-column {
  flex-basis: 100%;
  margin-bottom: 17px;
}
@media (min-width: 768px) {
  .wp-block-column {
    flex-basis: 0;
    flex-grow: 1;
  }
}
.wp-block-column:nth-child(2n), .wp-block-column:not(:first-child) {
  margin-left: 0;
}
.wp-block-column > *:last-child {
  margin-bottom: 0;
}

/* wp-block-media-text styles */
.wp-block-media-text {
  gap: 20px;
}
.wp-block-media-text .wp-block-media-text__content {
  padding-inline: 0;
}

/* wp-block-separator styles */
.wp-block-separator {
  width: 100%;
}
.wp-block-separator.is-style-gradient {
  background-image: var(--gradient-core);
  width: 253px;
  height: 10px;
  margin-left: 0 !important;
  border: none;
}
@media screen and (max-width: 768px) {
  .wp-block-separator.is-style-gradient {
    height: 8px;
  }
}
/* wp-block-archives styles */
/* wp-block-calendar styles */
/* wp-block-categories styles */
/* wp-block-latest-comments styles */
/* wp-block-latest-posts styles */
@media (min-width: 768px) {
  .wp-block-latest-posts.columns-2 li {
    width: calc((100% / 2) - 17px);
  }
  .wp-block-latest-posts.columns-3 li {
    width: calc((100% / 3) - 17px);
  }
  .wp-block-latest-posts.columns-4 li {
    width: calc((100% / 4) - 17px);
  }
  .wp-block-latest-posts.columns-5 li {
    width: calc((100% / 5) - 17px);
  }
  .wp-block-latest-posts.columns-6 li {
    width: calc((100% / 6) - 17px);
  }
}

/* wp-block-search styles */
/* wp-block-rss styles */
.wp-block-rss.is-grid li {
  margin: 0 17px 17px 0;
}
@media (min-width: 768px) {
  .wp-block-rss.columns-2 li {
    width: calc((100% / 2) - 17px);
  }
  .wp-block-rss.columns-3 li {
    width: calc((100% / 3) - 17px);
  }
  .wp-block-rss.columns-4 li {
    width: calc((100% / 4) - 17px);
  }
  .wp-block-rss.columns-5 li {
    width: calc((100% / 5) - 17px);
  }
  .wp-block-rss.columns-6 li {
    width: calc((100% / 6) - 17px);
  }
}

/* wp-block-video styles */
/* wp-block-cover styles */
.wp-block-cover {
  margin-block: 0;
}
/* wp-block-audio styles */
/* wp-heading styles */
.is-style-heading--regular {
  font-family: "Trade Gothic Next LT Pro", sans-serif;
  font-weight: 400;
}

.wp-block-group > h1:not(.has-text-align-center), .wp-block-group > h2:not(.has-text-align-center), .wp-block-group > h3:not(.has-text-align-center), .wp-block-group > h4:not(.has-text-align-center), .wp-block-group > h5:not(.has-text-align-center), .wp-block-group > h6:not(.has-text-align-center) {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.nua-slider .wp-block-query {
  max-width: 100vw;
  overflow-x: scroll;
  overflow-y: hidden;
}
.nua-slider .wp-block-query::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
.nua-slider .wp-block-query::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.nua-slider .wp-block-query::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0);
}
.nua-slider .wp-block-query:hover::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
.nua-slider .wp-block-query:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.6);
}
.nua-slider .wp-block-query .wp-block-post-template {
  display: flex;
  flex-wrap: nowrap;
}
.nua-slider .wp-block-query .wp-block-post-template .wp-block-post {
  flex-grow: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .cta-bar {
    text-align: center;
  }
}
@media screen and (max-width: 992px) {
  .cta-bar .wp-block-buttons {
    justify-content: center;
  }
}

.soc-pullquote {
  overflow: hidden;
  position: relative;
}
.soc-pullquote .wp-block-pullquote {
  padding-block: 5em;
  position: relative;
}
.soc-pullquote .wp-block-pullquote a {
  color: inherit;
  text-decoration: underline;
}
.soc-pullquote .wp-block-pullquote a:hover, .soc-pullquote .wp-block-pullquote a:focus {
  color: #00a189;
}
.soc-pullquote .wp-block-pullquote p {
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-weight: normal;
}
.soc-pullquote .wp-block-pullquote strong {
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-weight: 900;
}
.soc-pullquote::after {
  background-color: #f1c500;
  display: block;
  clip-path: circle();
  content: " ";
  height: clamp(260px, 20vw, 400px);
  left: calc(50vw - clamp(260px, 20vw, 400px) / 2);
  position: absolute;
  top: calc(100% - clamp(30px, 3vw, 60px));
  width: clamp(260px, 20vw, 400px);
}

.wp-block-pullquote,
.wp-block-quote {
  padding-block: 5em;
  position: relative;
}
.wp-block-pullquote a,
.wp-block-quote a {
  color: inherit;
  text-decoration: underline;
}
.wp-block-pullquote a:hover, .wp-block-pullquote a:focus,
.wp-block-quote a:hover,
.wp-block-quote a:focus {
  color: #00a189;
}
.wp-block-pullquote p,
.wp-block-quote p {
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-size: clamp(1.25rem, 0.946969697rem + 1.0101010101vw, 1.875rem);
  font-weight: normal;
}
.wp-block-pullquote cite,
.wp-block-quote cite {
  font-size: clamp(1.25rem, 0.946969697rem + 1.0101010101vw, 1.875rem);
  font-style: normal;
}

.wp-block-buttons.is-style-button-bar {
  border-block: 3px solid #000000;
  gap: 0;
  margin-block-end: 0;
}
.wp-block-buttons.is-style-button-bar > .wp-block-button {
  flex-basis: 33.3333%;
}
@media screen and (max-width: 992px) {
  .wp-block-buttons.is-style-button-bar > .wp-block-button {
    border-block-end: 3px solid #000000;
    flex-basis: 100%;
  }
  .wp-block-buttons.is-style-button-bar > .wp-block-button:last-of-type {
    border-block-end: none;
  }
}
.wp-block-buttons.is-style-button-bar > .wp-block-button:nth-of-type(2n) {
  border-inline: 3px solid #000000;
}
@media screen and (max-width: 992px) {
  .wp-block-buttons.is-style-button-bar > .wp-block-button:nth-of-type(2n) {
    border-inline: none;
  }
}
.wp-block-buttons.is-style-button-bar > .wp-block-button:nth-of-type(2n) .wp-block-button__link:hover {
  background-color: #00a189;
}
.wp-block-buttons.is-style-button-bar > .wp-block-button:nth-of-type(3n) .wp-block-button__link:hover {
  background-color: #ab1368;
  color: #ffffff;
}
.wp-block-buttons.is-style-button-bar .wp-block-button__link {
  background-color: #ffffff;
  color: #000000;
  display: block;
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-size: clamp(1.25rem, 1.0984848485rem + 0.5050505051vw, 1.5625rem);
  font-weight: 900;
  line-height: 1;
  padding-block: 0.75em 0.5em 0.85em;
}
@media screen and (max-width: 992px) {
  .wp-block-buttons.is-style-button-bar .wp-block-button__link {
    text-align: right;
  }
}
.wp-block-buttons.is-style-button-bar .wp-block-button__link:hover {
  background-color: #f1c500;
}

:root .button-inline {
  background-color: #000000;
  border-radius: 9999px;
  color: #ffffff;
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.5rem 1.5rem;
  text-transform: uppercase;
}
:root .button-inline--yellow {
  padding: 1rem 2rem;
  background-color: #f1c500;
  color: #000000;
}
:root .button-inline--yellow img {
  margin-inline-start: 1rem;
}
:root .button-inline:focus, :root .button-inline:hover {
  color: #ffffff;
}

.wp-block-button__link.has-primary-background-color {
  color: #ffffff;
}
.wp-block-button__link.has-accent-1-background-color {
  color: #ffffff;
}
.wp-block-button__link.has-accent-2-background-color {
  color: #000000;
}
.wp-block-button__link.has-accent-3-background-color {
  color: #ffffff;
}
.wp-block-button__link.has-accent-4-background-color {
  color: #000000;
}
.wp-block-button__link.has-accent-5-background-color {
  color: #000000;
}
.wp-block-button__link.has-accent-6-background-color {
  color: #000000;
}
.wp-block-button__link.has-accent-7-background-color {
  color: #000000;
}
.wp-block-button__link.has-grey-1-background-color {
  color: #000000;
}
.wp-block-button__link.has-grey-2-background-color {
  color: #000000;
}
.wp-block-button__link.has-black-background-color {
  color: #ffffff;
}
.wp-block-button__link.has-white-background-color {
  color: #000000;
}
.wp-block-button__link.has-transparent-background-color {
  color: #000000;
}
.wp-block-button.is-style-arrow a {
  display: flex;
  align-items: center;
}
.wp-block-button.is-style-arrow a svg {
  margin-inline-start: 0.5rem;
  transition: all 0.2s ease;
}
.wp-block-button.is-style-arrow a:hover svg, .wp-block-button.is-style-arrow a:focus svg {
  margin-inline-start: 1rem;
  transform: translateX(4px);
}

.skyline {
  background-color: #0b2f4e;
  grid-template-rows: 300px minmax(300px, auto);
  margin-bottom: 0;
  max-width: 100vw;
  overflow: hidden;
  --skyline-background: #ffffff;
}
@media screen and (max-width: 992px) {
  .skyline {
    --skyline-background: #0b2f4e;
    display: flex;
    flex-direction: column;
  }
}
.skyline__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-column: full-width-start/span 3;
  grid-row: 1/2;
}
@media screen and (max-width: 992px) {
  .skyline__header {
    padding-block: 3rem 0;
  }
}
.skyline__header h1 {
  color: #ffffff;
  font-size: 3.75rem;
  margin-inline: auto;
  text-align: center;
  text-transform: uppercase;
  white-space: break;
}
.skyline__header h2, .skyline__header h3, .skyline__header h4, .skyline__header h5, .skyline__header h6 {
  color: #ffffff;
}
.skyline__header p {
  color: #ffffff;
}
.skyline__inner {
  grid-column: 4/9;
  grid-row: 1/3;
  grid-template-rows: 300px 300px;
  padding-top: 41px;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  .skyline__inner {
    order: 3;
    padding-top: 0;
  }
}
.skyline__cards-nav {
  display: none;
}
@media screen and (max-width: 992px) {
  .skyline__cards-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 2rem 0;
  }
}
.skyline__cards-nav button {
  background: none;
  border: none;
  border-collapse: collapse;
  color: #ffffff;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.skyline__cards-nav button:hover, .skyline__cards-nav button:focus {
  opacity: 0.55;
}
.skyline__cards-nav--next svg {
  transform: rotate(180deg);
}
.skyline__cards {
  align-items: stretch;
  display: flex;
  flex-flow: row nowrap;
  gap: 17px;
  overflow: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgb(0, 161, 137) transparent;
}
.skyline__cards::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}
.skyline__cards::-webkit-scrollbar-track {
  background: none;
}
.skyline__cards::-webkit-scrollbar-thumb {
  background-color: rgba(0, 161, 137, 0.5);
}
.skyline__cards::-webkit-scrollbar-thumb:hover {
  background-color: rgb(0, 161, 137);
}
.skyline__cards > article {
  display: inline-block;
  flex: 1 0 388px;
  scroll-snap-align: start;
  max-width: 388px;
}
.skyline__cards > article figure img {
  height: auto;
  width: 388px;
}
@media screen and (max-width: 992px) {
  .skyline__cards {
    gap: 0;
  }
  .skyline__cards > article {
    flex-basis: 100%;
    max-width: 100vw;
  }
  .skyline__cards > article figure img {
    object-fit: cover;
    height: 300px;
    width: 100%;
  }
}
.skyline-canvas {
  background-color: white;
  display: block;
  height: 300px;
  width: 100vw;
}
.skyline-canvas__wrapper {
  background-color: white;
  display: flex;
  grid-row: 2/3;
  align-items: end;
  width: 100vw;
}
.skyline > .card.type-page {
  background-color: #0b2f4e;
}

.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > .wp-block-acf-hero-skyline {
  max-width: 100% !important;
}

.card-carousel {
  width: 100%;
}
.card-carousel__cards {
  grid-row: 2/span 4;
  overflow: hidden;
  position: relative;
  z-index: 1;
  --cards-displayed: 3;
}
@media screen and (max-width: 768px) {
  .card-carousel__cards {
    --cards-displayed: 1;
  }
}
@media screen and (max-width: 992px) {
  .card-carousel__cards {
    max-width: 100vw;
    max-width: 100dvw;
    transform: translateX(-20px);
    width: calc(100% + 40px);
  }
}
.card-carousel__heading {
  align-items: center;
  display: inline-flex;
}
.card-carousel__heading > .button-inline {
  margin-block-start: 0.25rem;
  margin-inline-start: 1rem;
}
.card-carousel__inner {
  align-items: start;
  display: flex;
  gap: 17px;
  transition: 0.6s ease-in-out;
  translate: 0px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .card-carousel__inner {
    align-items: stretch;
    gap: 0;
    overflow: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }
}
.card-carousel__inner > .card {
  flex-basis: 32%;
  max-width: 384px;
  margin-block-end: 17px;
  min-width: calc(33.33% - 11.3333333333px);
}
@media screen and (max-width: 768px) {
  .card-carousel__inner > .card {
    flex-basis: 100%;
    flex-shrink: 0;
    max-width: 100%;
    scroll-snap-align: start;
    width: 100%;
  }
}
.card-carousel__nav {
  align-self: end;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 3em;
}
@media screen and (max-width: 992px) {
  .card-carousel__nav {
    align-self: center;
    order: 3;
    padding-block-end: 0;
  }
}
.card-carousel__nav button {
  background: none;
  border: none;
  border-collapse: collapse;
  color: #000000;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.card-carousel__nav button:hover {
  color: #ffffff;
}
.card-carousel__nav--next svg {
  transform: rotate(180deg);
}
.card-carousel__content p:last-child {
  margin-block-end: 3rem;
}
@media screen and (max-width: 768px) {
  .card-carousel__content {
    padding-block-end: 0;
  }
}
@media screen and (max-width: 992px) {
  .card-carousel__none-found {
    padding-inline: 20px;
  }
}
.card-carousel.gradient .card-carousel__cards::before {
  background-image: var(--theme-gradient);
  content: " ";
  display: block;
  grid-column: 1/4;
  grid-row: 1/2;
  height: 12px;
  max-width: 253px;
  width: 100%;
}

.card-carousel.large-mode .card-carousel__cards {
  --cards-displayed: 1;
}
.card-carousel.large-mode .card-carousel__inner {
  gap: 0;
}
@media screen and (max-width: 768px) {
  .card-carousel.large-mode .card-carousel__inner {
    justify-content: stretch;
  }
  .card-carousel.large-mode .card-carousel__inner > .card-lg,
  .card-carousel.large-mode .card-carousel__inner > .card-lg-event {
    flex: 1 0 100vw;
    scroll-snap-align: start;
    width: 100vw;
  }
}
.card-carousel.large-mode .card-carousel__inner .card-lg {
  flex-basis: 100%;
  flex-grow: 1;
  scroll-snap-align: start;
  max-width: 1200px;
  min-width: 100%;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .card-carousel.large-mode .card-carousel__inner .card-lg__content {
    padding-block-end: 80px;
  }
}
.card-carousel.large-mode .card-carousel__nav {
  grid-row-start: 5;
  justify-content: flex-start;
  padding-block-end: 2rem;
  z-index: 2;
}
.card-carousel.large-mode .card-carousel__nav button:hover {
  opacity: 0.55;
}
.card-carousel.large-mode .card-carousel__content {
  margin-block-end: 3rem;
}
.card-carousel.large-mode .card-carousel__content p:last-child {
  margin-block-end: 0;
}

.no-js .card-carousel__nav {
  display: none;
}
.no-js .card-carousel__inner {
  flex-wrap: wrap;
}

.featured-post.large-mode .card-carousel__cards {
  --cards-displayed: 1;
}

@media screen and (min-width: 768px) {
  .featured-post.gradient .card-carousel__cards::before {
    background-image: var(--theme-gradient);
    content: " ";
    display: block;
    grid-column: 1/4;
    grid-row: 1/2;
    height: 12px;
    max-width: 253px;
    width: 100%;
  }
  .featured-post.gradient .card-carousel__nav {
    padding-block-end: 0;
  }
  .featured-post.display-all .card-carousel__inner {
    flex-wrap: wrap;
  }
  .featured-post.display-all.large-mode .card-carousel__inner {
    row-gap: 80px;
  }
  .card-carousel.display-all.large-mode .card-carousel__inner {
    flex-direction: column;
  }
  .card-carousel.display-all .card-carousel__nav {
    display: none;
  }
  .card-carousel.display-all .card-carousel__inner {
    flex-wrap: wrap;
  }
}
.has-primary-background-color .card-carousel__heading {
  color: #00A9D9;
}
.has-primary-background-color .card-carousel__nav button {
  color: #ffffff;
}
.has-primary-background-color .card-carousel__nav button:hover {
  opacity: 0.55;
}

.has-white-background-color .card-carousel__nav button {
  color: #000000;
}
.has-white-background-color .card-carousel__nav button:hover {
  opacity: 0.55;
}

.agenda-block {
  margin-bottom: 0;
}
.agenda-block ul:not(.nua-add-to-calendar__inner) {
  padding: 0;
  margin: 0;
}
.agenda-block__title {
  transform: translateY(4px);
}
.agenda-block__item {
  list-style-type: none;
  margin-bottom: 24px;
  display: flex;
  margin-left: -180px;
}
.agenda-block__item:hover .nua-add-to-calendar, .agenda-block__item:focus .nua-add-to-calendar {
  opacity: 1;
  pointer-events: all;
}
.agenda-block__time {
  padding: 4px 12px;
  background: #f1c500;
  margin-right: 8px;
  flex-shrink: 0;
  align-self: flex-start;
}
.agenda-block .nua-add-to-calendar {
  background: white;
  opacity: 0;
  pointer-events: none;
  width: 180px;
  flex-shrink: 0;
  transform: translateY(-6px);
}
.agenda-block .nua-add-to-calendar img {
  margin-left: 6px;
}
.agenda-block .nua-add-to-calendar__inner {
  padding: 12px 12px 6px 12px;
}

.wp-block-nua-search-filter, .nua-search-filter {
  grid-column: wide-width-start/wide-width-end;
  max-width: var(--wp--style--global--wide-size) !important;
  width: 100%;
}

h1 + .wp-block-nua-search-filter, h1 + .nua-search-filter, h2 + .wp-block-nua-search-filter, h2 + .nua-search-filter, h3 + .wp-block-nua-search-filter, h3 + .nua-search-filter, h4 + .wp-block-nua-search-filter, h4 + .nua-search-filter, h5 + .wp-block-nua-search-filter, h5 + .nua-search-filter {
  margin-block-start: -2.625rem;
}
@media screen and (max-width: 768px) {
  h1 + .wp-block-nua-search-filter, h1 + .nua-search-filter, h2 + .wp-block-nua-search-filter, h2 + .nua-search-filter, h3 + .wp-block-nua-search-filter, h3 + .nua-search-filter, h4 + .wp-block-nua-search-filter, h4 + .nua-search-filter, h5 + .wp-block-nua-search-filter, h5 + .nua-search-filter {
    margin-block-start: 0;
  }
}

.archive__grid-header + .archive__grid-container > .nua-search-filter:first-child {
  margin-block-start: -7.625rem;
}
@media screen and (max-width: 768px) {
  .archive__grid-header + .archive__grid-container > .nua-search-filter:first-child {
    margin-block-start: -3.625rem;
  }
}

.archive__header + .archive__grid-container > .nua-search-filter:first-child {
  margin-block-start: -7.625rem;
}
@media screen and (max-width: 768px) {
  .archive__header + .archive__grid-container > .nua-search-filter:first-child {
    margin-block-start: -3.625rem;
  }
}

.nua-search-filter__filter-bar {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .nua-search-filter__filter-bar {
    justify-content: center;
    gap: 10px;
  }
}
.nua-search-filter__count {
  order: 2;
  flex: 0 0 100%;
}
@media screen and (max-width: 768px) {
  .nua-search-filter__count {
    order: 1;
  }
}
.nua-search-filter__keyword, .nua-search-filter__filters {
  order: 1;
}
.nua-search-filter__keyword {
  position: relative;
  margin-inline-start: 1em;
}
@media screen and (max-width: 768px) {
  .nua-search-filter__keyword {
    margin-inline-start: 0;
  }
}
.nua-search-filter__keyword:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 2px;
  width: 2.5rem;
  background: url(../images/icons/ICO-search.svg) no-repeat center center;
  opacity: 20%;
}
.nua-search-filter__keyword input {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.nua-search-filter__filters, .nua-search-filter__dropdown-title {
  height: 2.625rem;
  border: 0;
  background: transparent;
}
@media screen and (max-width: 768px) {
  .nua-search-filter__filters, .nua-search-filter__dropdown-title {
    height: auto;
  }
}
.nua-search-filter__filters {
  margin-left: -2rem;
}
@media screen and (max-width: 768px) {
  .nua-search-filter__filters {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    margin-inline-start: 0;
  }
}
.nua-search-filter__dropdown-list {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  height: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  max-height: min(400px, 90vh);
}
.nua-search-filter__dropdown-list::-webkit-scrollbar {
  width: 1px;
  opacity: 0;
  transition: opacity, 275ms ease-in-out;
}
.nua-search-filter__dropdown-list::-webkit-scrollbar-track {
  opacity: 0;
}
.nua-search-filter__dropdown-list::-webkit-scrollbar-thumb {
  background: white;
}
.nua-search-filter__dropdown-list:hover::-webkit-scrollbar {
  opacity: 1;
}
.nua-search-filter__dropdown-title, .nua-search-filter__dropdown-item {
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.875rem, 0.8143939394rem + 0.202020202vw, 1rem);
  line-height: 1.5;
  text-transform: none;
  font-weight: 200;
}
.nua-search-filter__dropdown-title {
  position: relative;
  padding-left: 2rem;
  padding-right: 4rem;
  font-weight: 400;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  line-height: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nua-search-filter__dropdown-title:after {
  content: "↓";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background: black;
  z-index: 1;
}
.nua-search-filter__dropdown-item {
  word-wrap: normal;
  padding: 0.25rem 4rem 0.25rem 1.5rem;
  border: 0;
  border-left: solid 0.5rem black;
  -webkit-font-smoothing: antialiased;
  text-align: left;
}
.nua-search-filter__dropdown-item:hover {
  border-left-color: var(--wp--preset--color--accent-1);
}
.nua-search-filter__dropdown-item--selected {
  border-left-color: var(--wp--preset--color--accent-1);
}
.nua-search-filter__dropdown-clear {
  border-radius: 1.3125rem;
  z-index: 2;
}
.nua-search-filter__dropdown-clear:before {
  top: 45%;
  line-height: 0.75em;
}
.nua-search-filter__dropdown {
  vertical-align: top;
  border-radius: 1.3125rem;
  background: black;
  color: white;
  max-width: 275px;
}
.nua-search-filter__dropdown:last-child {
  margin-right: 0;
}
.nua-search-filter__dropdown--active .nua-search-filter__dropdown-title:after {
  content: "↑";
}
.nua-search-filter__dropdown--active .nua-search-filter__dropdown-list {
  height: auto;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  overflow: auto;
}
.nua-search-filter__count {
  padding-top: 0.25rem;
  padding-bottom: 1rem;
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-size: clamp(1.25rem, 1.1287878788rem + 0.404040404vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
}
.nua-search-filter__count-label:after {
  content: " / ";
}
.nua-search-filter__count-seperator {
  display: none;
}
.nua-search-filter__count-number {
  font-weight: 400;
}
.nua-search-filter__results {
  grid-template-rows: masonry;
  grid-column: wide-width-start/wide-width-end;
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  width: 100%;
}
.nua-search-filter__results .nua-search-filter__result {
  flex-shrink: 0;
  flex-grow: 1;
  margin-block-end: 17px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .nua-search-filter__results .nua-search-filter__result {
    min-width: calc(33% - (17px * 2) / 3);
    width: calc(33% - (17px * 2) / 3);
  }
}
.nua-search-filter__result {
  grid-column: auto;
  grid-column-start: span 4;
}
.nua-search-filter__pagination {
  padding: 6rem 0 1rem;
  text-align: center;
}
.nua-search-filter__pagination__button {
  color: black;
  background: transparent;
  margin: 0 0.5rem;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.25rem;
  text-align: center;
  border: solid 1px transparent;
}
.nua-search-filter__pagination__button--active {
  border-color: black;
}
.nua-search-filter__pagination__button:hover {
  color: white;
  background-color: black;
  border-color: black;
}

.has-primary-background-color .nua-search-filter__dropdown {
  max-width: 275px;
}
.has-primary-background-color .nua-search-filter__count {
  color: #ffffff;
}
.has-primary-background-color .nua-search-filter__pagination__button {
  color: #ffffff;
}

.alert-group .has-white-color.has-text-color a {
  color: #ffffff;
  text-decoration: none;
}
.alert-group .has-white-color.has-text-color a:hover, .alert-group .has-white-color.has-text-color a:focus {
  color: #ffffff;
  text-decoration: underline;
}
.alert-group a::after {
  content: " →";
  display: inline;
}

.custom-icon {
  display: inline-block;
}
.custom-icon__outer {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0.5rem;
  justify-content: center;
  width: 40px;
}
.custom-icon__outer.circle {
  border-radius: 999px;
}
.custom-icon__outer.round-square {
  border-radius: 0.2rem;
}
.custom-icon__outer.triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  padding: 0.75rem 0.5rem 0.25rem;
  width: 2.5rem;
}
.custom-icon__outer.black {
  background-color: #000000;
}
.custom-icon__outer.navy {
  background-color: #0b2f4e;
}
.custom-icon__outer.teal {
  background-color: #00a189;
}
.custom-icon__outer.orange {
  background-color: #dc4633;
}
.custom-icon__outer.red {
  background-color: #ab1368;
}
.custom-icon__outer.blue {
  background-color: #6fc7ea;
}
.custom-icon__outer.yellow {
  background-color: #f1c500;
}
.custom-icon__outer.green {
  background-color: #8dbf2e;
}
.custom-icon__outer svg {
  color: #ffffff;
  height: 90%;
  max-width: 16px;
  width: auto;
}
.custom-icon__outer.none {
  background-color: transparent;
}

body {
  display: flex;
  flex-direction: column;
}
body.no-scroll {
  overflow: hidden;
}

.site-content {
  flex-grow: 1;
}

:where(.entry-content, .soc-grid, .wp-block-group.alignfull) {
  display: grid;
  grid-template-columns: [full-width-start] minmax(20px, 1fr) [wide-width-start] minmax(0, 203px) [default-width-start] repeat(4, minmax(50px, 173.5px)) [default-width-end] minmax(0, 203px) [wide-width-end] minmax(20px, 1fr) [full-width-end];
  gap: 0 20px;
  max-width: 100vw;
}
@media screen and (max-width: 992px) {
  :where(.entry-content, .soc-grid, .wp-block-group.alignfull) {
    grid-template-columns: [full-width-start] auto [wide-width-start] 1fr [default-width-start] 1fr [default-width-end] 1fr [wide-width-end] auto [full-width-end];
  }
}
:where(.entry-content, .soc-grid, .wp-block-group.alignfull) > * {
  grid-column: default-width-start/default-width-end;
  grid-row: auto;
}
:where(.entry-content, .soc-grid, .wp-block-group.alignfull) > *.alignwide {
  grid-column: wide-width-start/wide-width-end;
}
:where(.entry-content, .soc-grid, .wp-block-group.alignfull) > *.alignfull, :where(.entry-content, .soc-grid, .wp-block-group.alignfull) > * iframe {
  grid-column: full-width-start/full-width-end;
  max-width: 100% !important;
}
@media screen and (max-width: 992px) {
  :where(.entry-content, .soc-grid, .wp-block-group.alignfull) > * {
    grid-column: wide-width-start/wide-width-end;
  }
}
:where(.entry-content, .soc-grid, .wp-block-group.alignfull) > .has-background {
  margin-block: 0;
}

:where(.soc-sub-grid, .nua-search-filter__results) {
  align-items: start;
  display: grid;
  grid-template-columns: repeat(12, minmax(42px, 1fr));
  grid-auto-rows: min-content;
  gap: 17px;
}
:where(.soc-sub-grid, .nua-search-filter__results) > * {
  grid-column: 3/11;
}
@media screen and (max-width: 992px) {
  :where(.soc-sub-grid, .nua-search-filter__results) {
    display: flex;
    flex-direction: column;
  }
}

.soc-sub-grid__column--start-1 {
  grid-column-start: 1;
}

.soc-sub-grid__column--end-1 {
  grid-column-end: 2;
}

.soc-sub-grid__column--start-2 {
  grid-column-start: 2;
}

.soc-sub-grid__column--end-2 {
  grid-column-end: 3;
}

.soc-sub-grid__column--start-3 {
  grid-column-start: 3;
}

.soc-sub-grid__column--end-3 {
  grid-column-end: 4;
}

.soc-sub-grid__column--start-4 {
  grid-column-start: 4;
}

.soc-sub-grid__column--end-4 {
  grid-column-end: 5;
}

.soc-sub-grid__column--start-5 {
  grid-column-start: 5;
}

.soc-sub-grid__column--end-5 {
  grid-column-end: 6;
}

.soc-sub-grid__column--start-6 {
  grid-column-start: 6;
}

.soc-sub-grid__column--end-6 {
  grid-column-end: 7;
}

.soc-sub-grid__column--start-7 {
  grid-column-start: 7;
}

.soc-sub-grid__column--end-7 {
  grid-column-end: 8;
}

.soc-sub-grid__column--start-8 {
  grid-column-start: 8;
}

.soc-sub-grid__column--end-8 {
  grid-column-end: 9;
}

.soc-sub-grid__column--start-9 {
  grid-column-start: 9;
}

.soc-sub-grid__column--end-9 {
  grid-column-end: 10;
}

.soc-sub-grid__column--start-10 {
  grid-column-start: 10;
}

.soc-sub-grid__column--end-10 {
  grid-column-end: 11;
}

.soc-sub-grid__column--start-11 {
  grid-column-start: 11;
}

.soc-sub-grid__column--end-11 {
  grid-column-end: 12;
}

.soc-sub-grid__column--start-12 {
  grid-column-start: 12;
}

.soc-sub-grid__column--end-12 {
  grid-column-end: 13;
}

.header {
  align-items: stretch;
  background-color: #ffffff;
  border-bottom: 1px solid #000000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 100vw;
  padding-inline: 20px;
  position: sticky;
  top: 0;
  z-index: 10;
}
@media screen and (min-width: 992px) {
  .header {
    padding-inline: 40px;
  }
}
.header__site-logo {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  padding-block: 17px;
}
.header__site-logo img {
  height: auto;
  width: 155px;
}
.header__site-logo :where(a) {
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.header__site-logo--uoft {
  border-inline-end: 1px solid #0b2f4e;
  margin-inline-end: 1.5rem;
  padding-inline-end: 1.5rem;
}
@media screen and (max-width: 1470px) {
  .header__site-logo--uoft {
    display: none;
  }
}
.header__site-logo--soc img {
  max-height: 55px;
  min-width: 124px;
}
.header__nav {
  flex-grow: 1;
  padding-inline: 20px;
}
@media screen and (max-width: 992px) {
  .header__nav {
    padding-inline: 0;
  }
}
.header__translate {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  margin-inline-end: 0.5rem;
}
.header__translate--inner {
  position: relative;
  z-index: 1;
}
.header .translate-toggle {
  align-items: center;
  background: none;
  border: none;
  color: #0b2f4e;
  display: flex;
  padding: 0;
  position: relative;
  z-index: 2;
}
.header .translate-toggle svg {
  height: 40px;
  width: 40px;
}
.header .translate-toggle:hover, .header .translate-toggle[aria-expanded=true] {
  color: #000000;
}
.header .translate__dropdown {
  background-color: #000000;
  border-radius: 20px;
  color: #ffffff;
  min-width: 16rem;
  padding: 1rem;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: top right;
  transition: all 0.25s ease-in-out;
  z-index: 1;
}
.header .translate__dropdown--title {
  border-inline-start: 7px solid #000000;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: bold;
}
.header .translate__dropdown--visible {
  opacity: 1;
  transform: scale(1);
}
.header .translate__dropdown--hidden {
  opacity: 0;
  transform: scale(0);
  transition: all 0.15s ease-in-out;
}
.header .translate__dropdown a {
  border-inline-start: 7px solid #000000;
  color: #ffffff;
  display: block;
  font-size: 1rem;
  line-height: 2;
  margin-inline: -1rem;
  padding-inline: 1rem;
}
.header .translate__dropdown a:hover, .header .translate__dropdown a:focus {
  border-inline-start-color: #00a189;
  color: #00a189;
  text-decoration: none;
}
.header__search {
  display: grid;
  justify-content: center;
  align-content: center;
}
.header__search > .search-toggle {
  align-items: center;
  display: flex;
  background: none;
  border: none;
  border-collapse: collapse;
  color: #0b2f4e;
  cursor: pointer;
  padding: 0;
}
.header__search > .search-toggle:hover {
  color: #000000;
}
.header__search > .search-toggle svg {
  height: 40px;
  width: 40px;
}
.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-inline-start: 0.5rem;
  z-index: 10;
}
@media screen and (min-width: 992px) {
  .header__toggle {
    display: none;
  }
}
.header__toggle .nav-toggle {
  align-items: center;
  display: flex;
  background: none;
  border: none;
  border-collapse: collapse;
  color: #00a189;
  cursor: pointer;
  padding: 0;
}
.header__toggle .nav-toggle:hover {
  color: #000000;
}
.header__toggle .nav-toggle svg {
  height: 40px;
  width: 40px;
}
@media screen and (min-width: 992px) {
  .header.scrolled {
    height: 60px;
  }
  .header.scrolled .header__site-logo {
    padding-block: 10px;
  }
  .header.scrolled .header__site-logo--soc img {
    max-height: 45px;
    min-width: 124px;
  }
  .header.scrolled .header__site-logo--uoft {
    margin-inline-end: 0.5rem;
    padding-inline-end: 1rem;
  }
  .header.scrolled .header__site-logo--uoft img {
    width: 145px;
  }
}

.site-footer {
  background-color: #ffffff;
  padding-block: 80px;
  position: relative;
}
.site-footer :where(a) {
  color: #000000;
}
.site-footer .has-text-color > a {
  color: inherit;
}
.site-footer::after {
  background-image: var(--theme-gradient, linear-gradient(270deg, #8DBF2E 0%, #00CFBE 51%, #00A189 100%));
  bottom: 0;
  content: " ";
  display: block;
  height: 10px;
  left: 0;
  position: absolute;
  width: 100%;
}
.site-footer .menu {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.site-footer .menu li {
  display: inline-block;
}
.site-footer .menu li::after {
  content: "  \\ ";
  padding-inline-end: 0.25rem;
}
.site-footer .menu li:last-of-type::after {
  content: "";
}
@media screen and (max-width: 782px) {
  .site-footer .wp-block-spacer {
    display: none;
  }
}
.site-footer__logo-columns .wp-block-column:first-of-type {
  border-inline-end: 1px solid #0b2f4e;
  padding-inline-end: 1.5rem;
}
@media screen and (max-width: 992px) {
  .site-footer .soc-sub-grid {
    align-items: center;
  }
  .site-footer .soc-sub-grid > * {
    text-align: center;
  }
}

.nav-close {
  background: none;
  border: none;
  display: block;
  position: relative;
  height: 25px;
  width: 25px;
}
@media screen and (min-width: 992px) {
  .nav-close {
    display: none;
  }
}
.nav-close::after {
  border-bottom: 1px solid #ffffff;
  content: "";
  display: inline-block;
  left: 0;
  position: absolute;
  top: calc(50% - 1px);
  transform: rotate(45deg);
  height: 0px;
  width: 100%;
}
.nav-close::before {
  border-bottom: 1px solid #ffffff;
  content: "";
  display: inline-block;
  left: 0;
  position: absolute;
  top: calc(50% - 1px);
  transition: transform 0.2s ease;
  transform: rotate(-45deg);
  height: 0px;
  width: 100%;
}
.nav__social {
  display: flex;
  height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  width: 0;
}
@media screen and (max-width: 992px) {
  .nav__social {
    align-self: end;
    height: auto;
    opacity: 1;
    padding-block-end: 2rem;
    visibility: visible;
    width: auto;
  }
}
.nav__container > * {
  grid-column: 1/3;
}
.nav__container .nav__logo {
  grid-column: 1/2;
  justify-self: start;
  padding: 0.75rem;
}
@media screen and (min-width: 992px) {
  .nav__container .nav__logo {
    display: none;
  }
}
.nav__container .nav__logo img {
  height: auto;
  width: 155px;
}
.nav__container .nav-close {
  justify-self: end;
  grid-column: 2/3;
}
@media screen and (max-width: 992px) {
  .nav__container {
    display: grid;
    flex-grow: 1;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 55px auto auto;
    height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 20px;
    transform: translateY(3rem);
    transition: opacity 0.2s ease-in-out, transform 0.1s ease-in-out;
    visibility: hidden;
  }
  .nav__container--visible {
    background-color: #0b2f4e;
    color: #ffffff;
    height: 100vh;
    height: 100dvh;
    left: 0;
    opacity: 1;
    position: absolute;
    top: 0;
    transform: translateY(0);
    visibility: visible;
    width: 100vw;
    z-index: 15;
  }
}
.nav__container .featured__wrapper {
  margin-block-end: 1rem;
}
.nav__container .featured__heading {
  font-size: clamp(1rem, 0.8787878788rem + 0.404040404vw, 1.25rem);
  font-weight: 400;
  line-height: 2rem;
  margin-block-start: 0.5rem;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .nav__container .featured__heading {
    border-block-end: 1px solid #979797;
  }
}
.nav__container .featured__meta {
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}
.nav__container .featured__meta .meta__type {
  font-weight: 900;
}
.nav__container .featured__meta .meta__type::after {
  content: "\\";
  padding-inline: 0.5rem;
}
.nav__container .featured__link {
  align-content: start;
  align-items: start;
  color: #ffffff;
  display: flex;
  font-size: 0.9375rem;
  gap: 17px;
  max-width: 420px;
  padding: 0;
  text-transform: none;
}
.nav__container .featured__link:hover, .nav__container .featured__link:focus {
  color: #00a189;
}
.nav__container .featured__title {
  flex-grow: 1;
}
.nav__container .featured__image {
  flex-basis: 25%;
  flex-shrink: 1;
  max-inline-size: 85px;
}

.header__nav {
  height: 100%;
}
@media screen and (max-width: 992px) {
  .header__nav {
    overflow-y: scroll;
  }
}
.header__nav > ul {
  align-items: stretch;
  display: flex;
  height: 100%;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 992px) {
  .header__nav > ul {
    flex-direction: column;
    height: auto;
  }
}
.header__nav :where(li > a) {
  align-items: center;
  border-block-end: 7px solid transparent;
  color: #0b2f4e;
  display: flex;
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  height: 100%;
  padding: 0.75rem;
  transition: all 0.25s ease-in-out;
}
@media screen and (max-width: 992px) {
  .header__nav :where(li > a) {
    border-block-end: none;
    color: #ffffff;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav :where(li > a) {
    line-height: 1.1;
    padding: 0.75rem 0.25rem;
  }
}
@media screen and (max-width: 992px) {
  .header__nav .menu > .menu-item-has-children > a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.header__nav .menu > .menu-item-has-children > a svg {
  margin-inline-start: 0.25rem;
}
.header__nav .menu > .menu-item-has-children:hover > a {
  border-block-end: 7px solid #0b2f4e;
}
@media screen and (max-width: 992px) {
  .header__nav .menu > .menu-item-has-children:hover > a {
    border-block-end: none;
  }
}
@media screen and (min-width: 992px) {
  .header__nav .menu > .menu-item-has-children:hover .sub-menu__wrapper[data-nav-depth="0"] {
    height: auto;
    opacity: 1;
    padding-block: 40px 20px;
    visibility: visible;
  }
}
@media screen and (min-width: 992px) and (min-width: 992px) {
  .header__nav .menu > .menu-item-has-children:hover .sub-menu__wrapper[data-nav-depth="0"] {
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .header__nav .menu > .menu-item-has-children:hover .nav__social {
    display: none;
  }
}
@media screen and (min-width: 992px) and (min-width: 992px) {
  .header__nav .menu > .menu-item-has-children:hover .nav__social {
    display: flex;
    opacity: 1;
    padding-block-end: 2rem;
    height: auto;
    justify-self: end;
    visibility: visible;
    width: auto;
  }
}
.header__nav .menu > .menu-item-has-children.sub-menu--visible > a {
  border-block-end: 7px solid #0b2f4e;
}
@media screen and (max-width: 992px) {
  .header__nav .menu > .menu-item-has-children.sub-menu--visible > a {
    border-block-end: none;
  }
}
.header__nav .menu > .menu-item-has-children.sub-menu--visible .nav__social {
  display: none;
}
@media screen and (min-width: 992px) {
  .header__nav .menu > .menu-item-has-children.sub-menu--visible .nav__social {
    display: flex;
  }
}
.header__nav .menu > .menu-item-has-children.sub-menu--visible .sub-menu__header {
  display: none;
}
.header__nav .menu > .menu-item-has-children.sub-menu--visible .sub-menu__wrapper[data-nav-depth="0"] {
  height: auto;
  opacity: 1;
  visibility: visible;
  width: auto;
}
@media screen and (max-width: 992px) {
  .header__nav .menu > .menu-item-has-children.sub-menu--visible .sub-menu__wrapper[data-nav-depth="0"] {
    display: flex;
    flex-direction: column;
    padding-block: 20px;
    padding-inline: 0.25rem;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .header__nav .menu > .menu-item-has-children.sub-menu--visible .sub-menu__wrapper[data-nav-depth="0"] > .sub-menu {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 480px) {
  .header__nav .menu > .menu-item-has-children.sub-menu--visible .sub-menu__wrapper[data-nav-depth="0"] > .sub-menu {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 992px) {
  .header__nav .menu > .menu-item-has-children.sub-menu--visible .featured__wrapper {
    order: 3;
  }
}
.header__nav .sub-menu {
  height: auto;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav .sub-menu > li {
  margin-block-end: 0.5rem;
}
.header__nav .sub-menu__wrapper[data-nav-depth="0"] {
  background-color: #0b2f4e;
  color: #ffffff;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.3s ease-in-out, height 0.2s ease-in-out;
  transform-origin: top;
  visibility: hidden;
  width: 0;
}
.header__nav .sub-menu__wrapper[data-nav-depth="0"] > .sub-menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-block-end: 2rem;
}
.header__nav .sub-menu__wrapper[data-nav-depth="0"] > .sub-menu > li > a {
  display: block;
  font-weight: bold;
  height: auto;
  margin-block-end: 0.5rem;
}
.header__nav .sub-menu__wrapper[data-nav-depth="0"] a:not(.social__links--link) {
  border-bottom: none;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 0;
  text-transform: none;
}
.header__nav .sub-menu__wrapper[data-nav-depth="0"] a:not(.social__links--link):hover:not([href="#"]), .header__nav .sub-menu__wrapper[data-nav-depth="0"] a:not(.social__links--link):focus:not([href="#"]) {
  color: #00a189;
}
.header__nav .sub-menu__wrapper[data-nav-depth="0"] a:not(.social__links--link):hover:where([href="#"]), .header__nav .sub-menu__wrapper[data-nav-depth="0"] a:not(.social__links--link):focus:where([href="#"]) {
  cursor: initial;
  text-decoration: none;
  outline: none;
}
@media screen and (min-width: 992px) {
  .header__nav .sub-menu__wrapper[data-nav-depth="0"] {
    border-block-end: 2px solid #000000;
    display: grid;
    grid-template-columns: auto repeat(3, minmax(220px, 388px)) auto;
    column-gap: 17px;
  }
  .header__nav .sub-menu__wrapper[data-nav-depth="0"] > .sub-menu__header {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .header__nav .sub-menu__wrapper[data-nav-depth="0"] > .sub-menu {
    grid-column: 2/5;
    grid-row: 2/3;
  }
  .header__nav .sub-menu__wrapper[data-nav-depth="0"] > .featured__wrapper {
    grid-column: 4/5;
    grid-row: 1/3;
  }
  .header__nav .sub-menu__wrapper[data-nav-depth="0"] > .nav__social {
    grid-column: 3/5;
    grid-row: 3/4;
  }
}
.header__nav .sub-menu a {
  color: #ffffff;
}

.social__headline {
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 40px;
  margin-block: 0;
}
.social__links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin-block: 0;
  padding-inline-start: 1rem;
}
.social__links a {
  align-items: center;
  border: 1px solid #ffffff;
  border-radius: 9999px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  height: 40px;
  width: 40px;
}
.social__links a:hover, .social__links a:focus {
  opacity: 0.55;
}

.search-form {
  flex-grow: 1;
  padding-block: 40px;
}
@media screen and (max-width: 992px) {
  .search-form {
    padding-block: 20px;
  }
}
.search-form__wrapper {
  background-color: #0b2f4e;
  border-block-end: 1px solid #000000;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding-inline: 0 40px;
  position: absolute;
  top: 100%;
  transform-origin: top;
  transition: opacity 0.2s, transform 0.3s;
  width: 100vw;
}
.search-form__wrapper button {
  background: none;
  border: none;
  border-collapse: collapse;
  color: #ffffff;
}
.search-form__wrapper button svg {
  height: 48px;
  width: 48px;
}
@media screen and (max-width: 992px) {
  .search-form__wrapper button svg {
    height: 40px;
    width: 40px;
  }
}
.search-form__field {
  background: none;
  border: none;
  border-radius: 0;
  color: #ffffff;
  font-family: "Trade Gothic Next LT Pro", sans-serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1;
  padding-inline: 0;
}
.search-form__field:focus {
  box-shadow: none;
}
.search-form__field::placeholder {
  color: #ffffff;
  opacity: 1; /* Firefox */
}
.search-form__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.search-form--visible {
  opacity: 1;
  transform: scaleY(1);
  visibility: visible;
  width: 100vw;
}
.search-form--hidden {
  opacity: 0;
  transform: scaleY(0);
  visibility: hidden;
  width: 0;
}

.social-bar__wrapper {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 17px;
  padding-block: 28px;
}
@media screen and (max-width: 480px) {
  .social-bar__wrapper {
    flex-direction: column;
    justify-content: center;
  }
}
.social-bar__headline {
  color: #ffffff;
  font-weight: bold;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .social-bar__headline {
    margin-bottom: 0.75rem;
  }
}
.social-bar__links {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}
.social-bar__links a {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 9999px;
  display: inline-flex;
  flex-direction: column;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}
.social-bar__links a:hover, .social-bar__links a:focus {
  border-color: #ffffff;
}

.card {
  background-color: #ffffff;
  padding: var(--block-padding-sm);
  position: relative;
  transition: transform 0.25s ease-in-out;
}
.card :where(a) {
  position: relative;
  z-index: 2;
}
.card h3.card__title {
  font-family: "Noto Serif", serif !important;
  font-size: clamp(0.9375rem, 0.7253787879rem + 0.7070707071vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin-block-end: 0.25rem;
}
.card h3.card__title a {
  position: static;
  z-index: 1;
}
.card h3.card__title a::after {
  content: " ";
  display: block;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.card__image-wrapper {
  position: relative;
}
.card__image-wrapper img {
  aspect-ratio: 3/2;
  height: auto;
  object-fit: cover;
  width: 100%;
}
.card__gradient {
  aspect-ratio: 3/2;
  height: auto;
  width: 100%;
  background-image: url("../images/IMG-Placeholder_orange.jpg");
  background-size: cover;
}
.card.type-event .card__gradient {
  background-image: url("../images/IMG-Placeholder_purple.jpg");
}
.card.type-research .card__gradient {
  background-image: url("../images/IMG-Placeholder_pink.jpg");
}
.card.type-opportunity .card__gradient {
  background-image: url("../images/IMG-Placeholder_green.jpg");
}
.card__featured-term {
  background-color: #000000;
  border-radius: 9999px;
  color: #ffffff;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  left: var(--block-padding-sm);
  line-height: 1.2;
  padding: 0.5rem 1.25rem 0.5rem;
  position: absolute;
  text-transform: uppercase;
  top: calc(100% - 1.25rem);
}
@media screen and (max-width: 1200px) {
  .card__featured-term {
    font-size: 0.875rem;
    padding: 0.25rem 1rem;
    top: calc(100% - 0.875rem);
  }
}
.card__meta {
  margin-block: 2rem 0.5rem;
}
.card__meta--post-type {
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}
.card__meta--date {
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
}
.card__author {
  font-size: 1rem;
  font-style: italic;
  text-decoration: underline;
}

.skyline__cards > .card,
.card.type-page {
  background-color: #0b2f4e;
  padding: 0;
}
.skyline__cards > .card .card__header,
.card.type-page .card__header {
  color: #ffffff;
  padding: var(--block-padding-sm);
  padding-block-end: 0;
}
.skyline__cards > .card .card__content,
.card.type-page .card__content {
  color: #ffffff;
  padding: var(--block-padding-sm);
  padding-block-start: 0;
}
.skyline__cards > .card .card__content :last-child,
.card.type-page .card__content :last-child {
  margin-bottom: 0.5rem;
}
.skyline__cards > .card .read-more,
.card.type-page .read-more {
  color: #ffffff;
  text-decoration: underline;
}
.skyline__cards > .card .read-more:hover, .skyline__cards > .card .read-more:focus,
.card.type-page .read-more:hover,
.card.type-page .read-more:focus {
  color: #00D4B5;
}
.skyline__cards > .card .card__image-wrapper,
.card.type-page .card__image-wrapper {
  margin-block-end: var(--block-padding-sm);
}

.featured-post .card.type-page,
.card-carousel .card.type-page {
  background-color: #000000;
}

.card-event__meta {
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  margin-block: 2rem 0.5rem;
}
.card-event__meta--date {
  text-transform: uppercase;
}
.card-event__meta--post-type {
  font-weight: 900;
  text-transform: uppercase;
}
.card-event__meta--time {
  font-weight: 900;
  white-space: nowrap;
}

.card-lg {
  max-width: 1200px;
}
.card-lg__image-wrapper {
  grid-row: 1/span 2;
}
.card-lg__image-wrapper img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .card-lg__image-wrapper img {
    width: 100vw;
  }
}
.card-lg__header {
  align-self: end;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 992px) {
  .card-lg__header {
    align-self: start;
    padding-inline: 20px;
  }
}
.card-lg__title {
  font-family: "Noto Serif", serif;
  font-size: clamp(1.375rem, 1.1325757576rem + 0.8080808081vw, 1.875rem);
}
@media screen and (max-width: 992px) {
  .card-lg__content {
    padding-block-end: 0;
    padding-inline: 20px;
  }
}
.card-lg__meta {
  color: #000000;
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-size: clamp(1rem, 0.8787878788rem + 0.404040404vw, 1.25rem);
  font-weight: 900;
  text-transform: uppercase;
}
.card-lg__meta--date {
  font-weight: normal;
}
.card-lg__author {
  margin-bottom: 0;
}

.has-background .card-lg__meta {
  color: #00a189;
}
.has-background .card-lg__title a {
  color: #ffffff;
}

.card-lg-event {
  display: grid;
  grid-template-columns: minmax(240px, 3fr) 5fr;
  gap: 17px;
  max-width: 794px;
  margin-inline: auto;
  padding-block: 40px;
  padding-inline: var(--block-padding-sm);
}
.card-lg-event:not(:first-of-type) {
  border-top: 1px solid #979797;
}
.card-lg-event .card__gradient {
  background-image: url("../images/IMG-Placeholder_purple.jpg");
  background-size: cover;
}
.card-lg-event .term-list {
  margin-block-end: 0;
}
@media screen and (max-width: 768px) {
  .card-lg-event {
    display: block;
    padding-block: 0;
    padding-inline: 0;
  }
  .card-lg-event:not(:first-of-type) {
    border-top: none;
  }
}
.card-lg-event__image-wrapper {
  grid-column: 1/4;
  grid-row: 1/span 3;
  position: relative;
}
.card-lg-event__image-wrapper img {
  height: auto;
  width: 100vw;
}
.card-lg-event .card__featured-term {
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 6px;
  color: #000000;
  font-size: 0.875rem;
  left: -22px;
  line-height: 0.9;
  padding-inline: 0.5rem;
  top: 12px;
}
@media screen and (max-width: 768px) {
  .card-lg-event .card__featured-term {
    left: 1rem;
    top: calc(100% - 0.7rem);
  }
}
.card-lg-event__header {
  grid-column: 4/span 5;
  grid-row: 2;
}
@media screen and (max-width: 768px) {
  .card-lg-event__header {
    padding-block-start: 20px;
    padding-inline: 20px;
  }
}
.card-lg-event__title {
  margin-bottom: 0;
}
.card-lg-event__title a {
  color: #000000;
}
.card-lg-event__meta {
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-size: clamp(1rem, 0.8787878788rem + 0.404040404vw, 1.25rem);
  grid-column: 4/span 5;
  grid-row: 1;
  margin-block-end: 0;
}
.card-lg-event__meta--date {
  text-transform: uppercase;
}
.card-lg-event__meta--post-type {
  font-weight: 900;
  text-transform: uppercase;
}
.card-lg-event__meta--time {
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .card-lg-event__meta {
    padding-inline: 20px;
  }
}
.card-lg-event__content {
  grid-column: 4/span 5;
  grid-row: 3;
}
@media screen and (max-width: 768px) {
  .card-lg-event__content {
    padding-inline: 20px;
  }
}

.card-person {
  padding: var(--block-padding-md) var(--block-padding-sm);
  text-align: center;
}
.card-person > * {
  margin-block-end: 0.25rem;
}
.card-person__image {
  grid-column: 1/1;
  grid-row: 1/3;
  width: 100%;
}
.card-person__image-wrapper {
  display: grid;
  grid-template-rows: auto 1.25rem 1.25rem;
  margin-block-end: var(--block-padding-md);
}
.card-person__image img {
  aspect-ratio: 1/1;
  border: 1px solid #000000;
  border-radius: 9999px;
  margin-inline: auto;
  height: auto;
  width: 75%;
}
.card-person__image img[src$="IMG-person-no-pic.png"] {
  border: none;
}
.card-person .card__featured-term {
  grid-column: 1/1;
  grid-row: 2/4;
  justify-self: center;
  position: static;
}
.card-person__name {
  color: #000000;
  font-size: clamp(1rem, 0.7575757576rem + 0.8080808081vw, 1.5rem);
}
.card-person__name > a {
  color: #000000;
  position: static;
  z-index: 1;
}
.card-person__name > a::after {
  content: " ";
  display: block;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.card-person__title {
  font-style: italic;
  font-weight: bold;
}

.term-list {
  list-style: none;
  margin-inline: 0;
  padding-inline: 0;
}
.term-list__term {
  display: inline-block;
  margin-inline-start: 3px;
  margin-block-end: 3px;
}
.term-list__link {
  background-color: #000000;
  border: 1px solid #000000;
  border-radius: 6px;
  color: #ffffff;
  display: inline-block;
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 1.1;
  padding: 0.3em 0.5em;
  text-transform: uppercase;
  white-space: nowrap;
}

.entry-content.people .post__sidebar-container .term-list__term {
  display: block;
}

.term-list__term--category .term-list__link {
  background-color: #000000;
  color: #ffffff;
}
.term-list__term--campus .term-list__link {
  background-color: #00a189;
  border-color: #00a189;
  color: #000000;
}

.related-posts {
  background-color: #000000;
  padding-block: 4rem;
  position: relative;
}
.related-posts .card-carousel {
  position: relative;
}
.related-posts .card-carousel:after {
  content: "";
  background-image: var(--theme-gradient, linear-gradient(to left, #00A189, #AB1368));
  width: 253px;
  height: 10px;
  left: 0;
  top: -4rem;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .related-posts .card-carousel:after {
    height: 8px;
  }
}
.related-posts .card-carousel__heading {
  color: #ffffff;
}
.related-posts .card-carousel__inner {
  align-items: flex-start;
}
.related-posts .card-carousel__nav button {
  color: #ffffff;
}
.related-posts--index {
  background-color: #d9d9d9;
}
.related-posts--index .card-carousel__heading, .related-posts--index .card-carousel__nav button {
  color: #000000;
}
.related-posts--index .card-carousel__nav {
  align-self: start;
}
@media screen and (max-width: 768px) {
  .related-posts {
    padding-block: 2rem;
  }
  .related-posts .card-carousel:after {
    top: -2rem;
  }
}

.social-share-bar {
  padding: 0;
  margin: 0;
  display: flex;
}
.social-share-bar li {
  list-style-type: none;
}
.social-share-bar a, .social-share-bar button, .social-share-bar span {
  background-color: #000000;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 5px;
  cursor: pointer;
}
.social-share-bar a:hover img, .social-share-bar a:focus img, .social-share-bar button:hover img, .social-share-bar button:focus img, .social-share-bar span:hover img, .social-share-bar span:focus img {
  filter: invert(50%) sepia(29%) saturate(1071%) hue-rotate(119deg) brightness(96%) contrast(89%);
}
.social-share-bar img {
  max-width: 20px;
  max-height: 20px;
  transition: all 0.2s ease;
}
@media screen and (max-width: 768px) {
  .social-share-bar a {
    width: 40px;
    height: 40px;
  }
}

.social-share-block p {
  font-size: 16px;
}

.newsletter > h5 {
  margin-block-end: 0.25rem;
}
.newsletter .gform_body {
  margin-inline: auto;
  max-width: 730px;
}
.newsletter .gform_confirmation_wrapper .gform_confirmation_message {
  text-align: center;
}

.to-top {
  display: flex;
  justify-content: center;
  padding-block: var(--block-padding-lg);
  transition: opacity 0.2s ease-in-out;
}
.to-top__button {
  color: #000000;
}
.to-top--hidden {
  height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  width: 0;
}
@media screen and (max-width: 768px) {
  .to-top {
    padding-block: 2rem;
  }
}
.to-top--sticky {
  bottom: 2rem;
  display: block;
  opacity: 1;
  position: fixed;
  padding-block: 0;
  right: 2rem;
}
.to-top--sticky.hidden {
  opacity: 0;
  pointer-events: none;
}

.bio__pronouns {
  font-weight: 400;
  font-style: normal;
}

.bio__job-title-specific {
  font-weight: 500;
}

.bio__tags, .bio__tags-commah {
  color: #979797;
}

.bio__tags {
  text-decoration: underline;
}

.bio__social {
  margin-top: 25px;
  align-items: center;
  justify-content: center;
}

.bio__social a a {
  width: 35px;
  height: 35px;
}

.wp-block-nua-accordion-row.is-open {
  position: relative;
}

.wp-block-nua-accordion-row::before {
  background-image: var(--theme-gradient, linear-gradient(to left, #00A189, #AB1368));
  content: "";
  height: 12px;
  left: 0;
  position: absolute;
  top: 0;
  width: 20%;
  opacity: 0;
  transition: 0.3s all ease;
}

.wp-block-nua-accordion-row.is-open::before {
  opacity: 1;
}

.wp-block-nua-accordion-row__label, .wp-block-nua-accordion-row__icon {
  color: #000 !important;
}

.wp-block-nua-accordion-row__button {
  padding: 5px 0;
  margin-bottom: 0;
}

.card-lg-people-p {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .card-lg-people-p {
    margin-top: 16px;
  }
}

.card-grid .card {
  grid-column: span 4;
}
.card-grid .card-lg {
  grid-column: 1/13;
}
.card-grid__scroller {
  display: none;
}
.card-grid__scroller svg {
  transform: rotate(180deg);
  margin-left: 12px;
}
@media screen and (max-width: 992px) {
  .card-grid__inner {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .card-grid .card {
    width: calc(33.333% - 12px);
  }
  .card-grid .card-lg {
    max-width: 100%;
  }
  .card-grid .card-lg__image-wrapper {
    max-width: 100%;
  }
  .card-grid .card-lg.people {
    flex-direction: row;
  }
  .card-grid .card-lg.people .card {
    width: 100%;
  }
  .card-grid .card-lg.people .card-lg-people-card {
    width: 33.333%;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 768px) {
  .card-grid .card {
    width: calc(50% - 9px);
  }
}
@media screen and (max-width: 480px) {
  .card-grid__inner {
    flex-wrap: nowrap;
    overflow: scroll;
  }
  .card-grid .card {
    width: 100%;
    min-width: 100%;
  }
  .card-grid .card-lg.people {
    flex-direction: column;
  }
  .card-grid .card-lg.people .card-lg-people-card {
    width: 100%;
  }
  .card-grid.display-all .card-grid__scroller {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.nua-add-to-calendar, .post__person-share {
  position: relative;
}
.nua-add-to-calendar__inner, .nua-add-to-calendar .social-share-bar, .post__person-share__inner, .post__person-share .social-share-bar {
  list-style-type: none;
  padding: 12px;
  margin: 0;
  background-color: #000000;
  border-radius: 20px;
  position: absolute;
  top: 46px;
  left: 0;
  display: none;
}
.nua-add-to-calendar__inner img, .nua-add-to-calendar .social-share-bar img, .post__person-share__inner img, .post__person-share .social-share-bar img {
  max-width: 24px;
  max-height: 24px;
}
.nua-add-to-calendar__inner a, .nua-add-to-calendar .social-share-bar a, .post__person-share__inner a, .post__person-share .social-share-bar a {
  margin-right: 0;
  width: 30px;
  height: auto;
}
.nua-add-to-calendar__inner span, .nua-add-to-calendar__inner button, .nua-add-to-calendar .social-share-bar span, .nua-add-to-calendar .social-share-bar button, .post__person-share__inner span, .post__person-share__inner button, .post__person-share .social-share-bar span, .post__person-share .social-share-bar button {
  width: 20px;
  height: 20px;
}
.nua-add-to-calendar__inner.active, .nua-add-to-calendar .social-share-bar.active, .post__person-share__inner.active, .post__person-share .social-share-bar.active {
  display: flex;
}
.nua-add-to-calendar__button, .post__person-share__button {
  background: none;
  color: black;
  border: none;
  text-transform: none;
  font-weight: normal;
  display: flex;
  align-items: center;
}
.nua-add-to-calendar__button img, .post__person-share__button img {
  margin-left: 12px;
}
.nua-add-to-calendar .social-share-bar, .post__person-share .social-share-bar {
  top: 8px;
  align-items: center;
}

.nua-add-to-calendar__button img {
  margin-left: 0;
}

.post__person-share .social-share-bar img {
  max-width: 20px;
  max-height: 20px;
}

.external-icon {
  display: inline-block;
  padding-inline-start: 0.25em;
}
.external-icon svg {
  width: 1em;
  height: 1em;
}

.nua-cta-button {
  bottom: 2.375rem;
  display: block;
  position: fixed;
  right: 6rem;
  z-index: 20;
}
.nua-cta-button.hidden {
  height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  width: 0;
}

.page-header {
  padding-block: var(--block-padding-lg) 0;
  position: relative;
}
.page-header--mint {
  background-color: #E8F0D8;
}
.page-header--grey {
  background-color: #e2e2e7;
}
.page-header--navy {
  background-color: #0b2f4e;
}
.page-header--navy .page-header__title {
  color: #00A9D9;
}
.page-header--navy .page-header__text {
  grid-column: 1/span 9;
}
@media screen and (max-width: 768px) {
  .page-header {
    padding-block-start: var(--block-padding-sm);
  }
}
@media screen and (max-width: 992px) {
  .page-header__content {
    grid-row: 2;
  }
}
.page-header__text {
  grid-column: 1/span 8;
  grid-row: 1/span 1;
}
@media screen and (max-width: 768px) {
  .page-header__text {
    order: 2;
  }
}
.page-header__description {
  font-size: clamp(1.25rem, 0.946969697rem + 1.0101010101vw, 1.875rem);
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  letter-spacing: -0.01em;
  transform: translateY(-2rem);
}
.page-header__description .desc__type {
  font-weight: 900;
  text-transform: uppercase;
}
.page-header__description .desc__term {
  padding-inline-start: 1rem;
}
.page-header__title {
  margin-block-end: 3rem;
}
@media screen and (max-width: 768px) {
  .page-header__title {
    margin-block-end: 1rem;
  }
}

.page__graphic {
  height: 470px;
  position: absolute;
  right: 0;
  overflow: hidden;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .page__graphic {
    height: auto;
    max-width: 240px;
    position: static;
  }
}
.page__graphic--wrapper {
  grid-column: 7/span 2;
}
@media screen and (max-width: 992px) {
  .page__graphic--wrapper {
    grid-column: wide-width-start/wide-width-end;
    grid-row: 1;
  }
}
.page__graphic img {
  max-width: 470px;
  min-width: 240px;
}
@media screen and (min-width: 992px) {
  .page__graphic img {
    height: auto;
    position: absolute;
    right: -40px;
    top: -30px;
    width: 25vw;
  }
}
@media screen and (min-width: 1470px) {
  .page__graphic img {
    right: 3vw;
    top: -50px;
  }
}
@media screen and (max-width: 992px) {
  .page__graphic img {
    position: static;
    max-width: 240px;
  }
}
@media screen and (max-width: 768px) {
  .page__graphic img {
    position: static;
    width: 45vw;
  }
}
@media screen and (max-width: 768px) {
  .page__graphic {
    grid-column: wide-width-start/wide-width-end;
  }
}
.page.area-of-focus {
  position: relative;
}
.page.area-of-focus::before {
  background-image: var(--gradient-core);
  content: "";
  height: 12px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page.area-of-focus::before {
    height: 8px;
  }
}
@media screen and (max-width: 768px) {
  .page .wp-block-spacer {
    display: none;
  }
}

.site-main .entry-header {
  margin-inline: auto;
  max-width: 754px;
}

.post__header {
  position: relative;
  padding-block-start: 40px;
  margin-block-end: 40px;
}
@media screen and (max-width: 992px) {
  .post__header {
    padding-block-start: 20px;
  }
}
@media screen and (max-width: 768px) {
  .post__header {
    padding-block-start: 0;
  }
}
.post__header:after {
  content: "";
  background-image: var(--gradient-core);
  width: 100%;
  height: 10px;
  left: 0;
  top: 0;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .post__header:after {
    height: 8px;
  }
}
.post__header h1 {
  font-family: "Noto Serif", serif;
  font-size: clamp(1.375rem, 0.5871212121rem + 2.6262626263vw, 3rem);
  line-height: 1.2;
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .post__header h1 {
    margin-bottom: 20px;
  }
}
.post__header--research .post__header-content {
  grid-column: 4/wide-width-end;
}
@media screen and (max-width: 992px) {
  .post__header--research .post__header-content {
    grid-column: 3/wide-width-end;
  }
}
@media screen and (max-width: 768px) {
  .post__header--research .post__header-content {
    grid-column: wide-width-start/wide-width-end;
  }
}
@media screen and (max-width: 768px) {
  .post__header--research .post__breadcrumb {
    order: 1;
  }
}
.post__header--research.post__header--no-image .post__header-content {
  grid-column: wide-width-start/wide-width-end;
}
.post__header--downloads .post__header-content {
  grid-column: 4/wide-width-end;
}
@media screen and (max-width: 992px) {
  .post__header--downloads .post__header-content {
    grid-column: 3/wide-width-end;
  }
}
@media screen and (max-width: 768px) {
  .post__header--downloads .post__header-content {
    grid-column: wide-width-start/wide-width-end;
  }
}
.post__header--downloads .post__image--small {
  display: none;
}
.post__header--fullimage {
  padding-block-start: 0;
}
.post__header--fullimage .post__header-content {
  grid-column: wide-width-start/wide-width-end;
}
.post__header--fullimage .post__breadcrumb {
  margin-block-start: 40px;
}
@media screen and (max-width: 992px) {
  .post__header--fullimage .post__breadcrumb {
    margin-block-start: 20px;
  }
}
.post__header--post {
  background-color: #E8F0D8;
  border-bottom: 1px solid #000000;
  padding-block-start: 0;
}
.post__header--post .post__breadcrumb {
  margin-block-start: 40px;
}
.post__header--post h1 {
  font-size: clamp(1.375rem, 0.5871212121rem + 2.6262626263vw, 3rem);
}
.post__header--post .post__header-content {
  grid-column: wide-width-start/span 3;
  margin-block-end: 40px;
}
@media screen and (max-width: 992px) {
  .post__header--post .post__header-content {
    grid-column: wide-width-start/span 2;
  }
}
.post__header--post .post__image {
  grid-column: 5/full-width-end;
}
@media screen and (max-width: 992px) {
  .post__header--post .post__image {
    grid-column: 4/span 2;
  }
}
.post__header--post .post__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  clip-path: ellipse(99% 109% at right 50%);
}
.post__header--post .post__image--gradient {
  clip-path: ellipse(99% 90% at right 50%);
  background-image: url("../images/IMG-Placeholder_orange.jpg");
}
.post__header--post .post__authors {
  margin-block-end: 0;
}
@media screen and (max-width: 768px) {
  .post__header--post {
    background-color: transparent;
    border-bottom: none;
  }
  .post__header--post .post__image, .post__header--post .post__header-content {
    grid-column: wide-width-start/wide-width-end;
  }
  .post__header--post .post__image img {
    clip-path: none;
  }
  .post__header--post .post__header-content {
    margin-block-end: 0;
  }
  .post__header--post .post__breadcrumb {
    margin-block-start: 20px;
  }
}
.post__header--event {
  padding-block-start: 40px;
}
.post__header--event .post__header-content {
  grid-column: wide-width-start/span 3;
}
@media screen and (max-width: 992px) {
  .post__header--event .post__header-content {
    grid-column: wide-width-start/span 2;
  }
}
@media screen and (max-width: 768px) {
  .post__header--event .post__header-content {
    grid-column: wide-width-start/wide-width-end;
    margin-block-end: 0;
  }
  .post__header--event .post__header-content h1 {
    margin-right: 0;
  }
}
.post__header--event h1 {
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-size: clamp(2.0625rem, -0.5738636364rem + 8.7878787879vw, 7.5rem);
  margin-right: -100px;
  position: relative;
  line-height: 1;
  z-index: 1;
}
.post__header--event h1 span.outer-shadow {
  box-shadow: 14px 0 0 0px white;
  background: white;
  -webkit-box-decoration-break: clone;
  -ms-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
}
.post__header--event h1 span.inner-shadow {
  position: relative;
  z-index: 9;
}
.post__header--event .post__breadcrumb {
  margin-block-start: 0;
}
@media screen and (max-width: 768px) {
  .post__header--event .post__breadcrumb {
    margin-block-start: 20px;
  }
}
.post__header--event .post__image, .post__header--event .post__gradient {
  margin-right: -60px;
  margin-left: -60px;
  grid-column: 5/wide-width-end;
}
@media screen and (max-width: 992px) {
  .post__header--event .post__image, .post__header--event .post__gradient {
    grid-column: 4/wide-width-end;
    margin-right: -20px;
  }
}
@media screen and (max-width: 768px) {
  .post__header--event .post__image, .post__header--event .post__gradient {
    grid-column: wide-width-start/wide-width-end;
    margin-inline: -20px;
  }
}
.post__header--event .post__gradient {
  background-image: url("../images/IMG-Placeholder_purple.jpg");
  min-height: 360px;
}
@media screen and (max-width: 768px) {
  .post__header--event {
    padding-block-start: 0;
  }
}
.post__header--opportunity .term-list {
  margin-block-end: 0;
}
.post__header--opportunity .post__header-content {
  grid-column: 4/wide-width-end;
}
@media screen and (max-width: 992px) {
  .post__header--opportunity .post__header-content {
    grid-column: 3/wide-width-end;
  }
}
@media screen and (max-width: 768px) {
  .post__header--opportunity .post__header-content {
    grid-column: wide-width-start/wide-width-end;
  }
}
@media screen and (max-width: 768px) {
  .post__header--opportunity .post__breadcrumb {
    order: 1;
  }
}
.post__header--people h1 {
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-size: clamp(2.0625rem, 0.6382575758rem + 4.7474747475vw, 5rem);
  margin-block-end: 20px;
}
.post__header--people .post__header-content {
  grid-column: 4/span 4;
}
@media screen and (max-width: 992px) {
  .post__header--people .post__header-content {
    grid-column: 3/wide-width-end;
  }
}
@media screen and (max-width: 768px) {
  .post__header--people .post__header-content {
    grid-column: wide-width-start/wide-width-end;
    text-align: center;
  }
  .post__header--people .post__header-content p {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .post__header--people {
    margin-block-end: 10px;
  }
}
.post__header--news.post__header--no-image .post__image {
  display: none;
}
.post__header--news.post__header--no-image .post__header-content {
  grid-column: wide-width-start/span 6;
}
.post__header figcaption {
  text-align: right;
  color: #515151;
  font-size: 14px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  margin-left: 60px;
  padding: 6px 8px;
  border-radius: 8px;
  background: white;
  color: black;
}
.post__header figcaption:empty {
  display: none;
}
@media screen and (max-width: 992px) {
  .post__header figcaption {
    margin-inline-end: 20px;
    margin-inline-start: -50vw;
  }
}
@media screen and (max-width: 992px) {
  .post__header figcaption {
    margin-inline-end: 20px;
    margin-inline-start: 20px;
    font-size: 12px;
    margin-block-start: 8px;
  }
}
.post__gradient {
  background-image: url("../images/IMG-Placeholder_pink.jpg");
  background-size: cover;
}
.post__header-content {
  grid-column: wide-width-start/span 3;
}
.post__header-content--small h1 {
  font-size: clamp(2.0625rem, 0.6382575758rem + 4.7474747475vw, 5rem);
}
@media screen and (max-width: 992px) {
  .post__header-content {
    grid-column: wide-width-start/span 2;
  }
}
@media screen and (max-width: 768px) {
  .post__header-content {
    grid-column: wide-width-start/wide-width-end;
    order: 1;
  }
}
.post__contributors {
  background-color: #d9d9d9;
  padding-block: 4rem;
}
.post__contributors .card-carousel {
  position: relative;
}
.post__contributors .card-carousel:after {
  content: "";
  background-image: var(--gradient-core);
  width: 253px;
  height: 10px;
  left: 0;
  top: -4rem;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .post__contributors .card-carousel:after {
    height: 8px;
  }
}
.post__authors {
  padding: 0;
  list-style-type: none;
}
.post__authors a {
  color: #000000;
  font-weight: bold;
  text-decoration: underline;
}
.post__authors p {
  margin-bottom: 0;
}
.post__image {
  grid-column: 5/span 4;
  max-width: 900px;
  position: relative;
}
.post__image > img {
  height: auto;
  width: 100%;
}
.post__image--small {
  grid-column: wide-width-start/span 2;
}
@media screen and (max-width: 992px) {
  .post__image--small {
    grid-column: wide-width-start/span 1 !important;
  }
}
@media screen and (max-width: 768px) {
  .post__image--small {
    grid-column: wide-width-start/wide-width-end !important;
  }
}
.post__image--gradient {
  background-image: url("../images/IMG-Placeholder_pink.jpg");
  background-size: cover;
}
.post__image--full {
  grid-column: 1/span 8;
  max-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: none;
}
.post__image--full img {
  width: 100%;
  pointer-events: none;
}
@media screen and (max-width: 992px) {
  .post__image--full {
    grid-column: full-width-start/full-width-end !important;
  }
}
.post__image--headshot {
  grid-column: wide-width-start/span 2;
  margin: 0 auto;
}
.post__image--headshot img {
  width: 244px;
  height: 244px;
  border-radius: 50%;
  border: 1px solid #000000;
}
@media screen and (max-width: 992px) {
  .post__image {
    grid-column: 4/span 2;
  }
  .post__image--headshot {
    grid-column: wide-width-start/span 1;
  }
}
@media screen and (max-width: 768px) {
  .post__image {
    grid-column: wide-width-start/wide-width-end;
    margin-inline-start: -20px;
    margin-inline-end: -20px;
    order: 0;
  }
  .post__image--headshot img {
    margin-block-end: 20px;
    margin-inline-start: auto;
    margin-inline-end: auto;
  }
}
.post__breadcrumb {
  grid-column: 2/wide-width-end;
  font-size: 14px;
  margin-block-end: 30px;
}
.post__breadcrumb a {
  color: #979797;
}
@media screen and (max-width: 992px) {
  .post__breadcrumb {
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
.post__download-bar {
  grid-column: wide-width-start/span 2;
  position: relative;
}
@media screen and (max-width: 992px) {
  .post__download-bar {
    grid-column: wide-width-start/span 1;
  }
}
@media screen and (max-width: 768px) {
  .post__download-bar {
    grid-column: wide-width-start/wide-width-end;
    order: 3;
  }
}
.post__download-list {
  list-style-type: none;
  padding: 12px;
  margin: 0;
  background-color: #000000;
  border-radius: 20px;
  position: absolute;
  top: 40px;
  left: 100px;
  display: none;
}
.post__download-list li {
  display: flex;
  align-items: flex-start;
  padding: 6px 0;
}
.post__download-list img {
  width: 17px;
  margin-right: 12px;
}
.post__download-list a {
  color: white;
  font-size: 14px;
}
.post__download-list a:hover {
  color: #6fc7ea;
  text-decoration: underline;
}
@media screen and (max-width: 992px) {
  .post__download-list {
    top: 0;
    left: 127px;
  }
}
@media screen and (max-width: 768px) {
  .post__download-list {
    left: 64px;
  }
}
.post__person-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
}
.post__person-meta {
  font-size: 16px;
  margin-block-end: 0;
}
.post__sidebar-container {
  grid-column: 2/span 2;
  height: 0;
}
@media screen and (max-width: 992px) {
  .post__sidebar-container {
    grid-column: wide-width-start/span 2;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .post__sidebar-container {
    grid-column: wide-width-start/wide-width-end;
  }
}
.post__event-meta {
  display: grid;
  gap: 0 20px;
  grid-template-columns: 1fr 3fr;
  margin-block-end: 40px;
}
.post__event-meta .meta {
  grid-column: 1/span 1;
}
.post__event-meta .meta span {
  background: #f1c500;
  font-weight: bold;
  font-size: 24px;
  font-style: italic;
  padding: 6px 12px;
}
@media screen and (max-width: 768px) {
  .post__event-meta .meta span {
    font-size: 18px;
  }
}
.post__event-meta p {
  font-size: 18px;
  grid-column: 2/span 1;
  margin-block-end: 0;
}
.post__event-meta p.date {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .post__event-meta p.date {
    font-size: 18px;
  }
}
.post__event-meta p + p {
  margin-block-end: 1rem;
}
@media screen and (max-width: 768px) {
  .post__event-meta {
    margin-block-end: 20px;
  }
}
.post__event-bar {
  align-items: center;
  background-color: #ffffff;
  color: #000000;
  display: flex;
  margin-block: 0 40px;
  width: 100%;
}
.post__event-bar .button-inline {
  margin-right: 12px;
  display: inline-block;
  flex-shrink: 0;
}
.post__event-bar span {
  display: inline-block;
}
@media screen and (max-width: 992px) {
  .post__event-bar {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }
  .post__event-bar .button-inline {
    flex-grow: 1;
    flex-shrink: 1;
    margin-bottom: 1rem;
  }
}

.single .entry-content {
  padding-bottom: 80px;
}
.single .entry-content h2, .single .entry-content h3, .single .entry-content h4, .single .entry-content h5, .single .entry-content h6 {
  margin-block-start: 40px;
  margin-block-end: 20px;
}
.single .research :where(.entry-content) > *:not(.alignfull, .alignwide, .post__sidebar-container), .single .people :where(.entry-content) > *:not(.alignfull, .alignwide, .post__sidebar-container), .single .opportunity :where(.entry-content) > *:not(.alignfull, .alignwide, .post__sidebar-container) {
  grid-column: 4/wide-width-end;
}
@media screen and (max-width: 992px) {
  .single .research :where(.entry-content) > *:not(.alignfull, .alignwide, .post__sidebar-container), .single .people :where(.entry-content) > *:not(.alignfull, .alignwide, .post__sidebar-container), .single .opportunity :where(.entry-content) > *:not(.alignfull, .alignwide, .post__sidebar-container) {
    grid-column: wide-width-start/wide-width-end;
  }
}
.single .event :where(.entry-content) > *:not(.alignfull, .alignwide, .post__sidebar-container) {
  grid-column: 5/wide-width-end;
}
@media screen and (max-width: 992px) {
  .single .event :where(.entry-content) > *:not(.alignfull, .alignwide, .post__sidebar-container) {
    grid-column: wide-width-start/wide-width-end;
  }
}
.single.single-post .post__header:after, .single.single-post .site-footer:after, .single.single-post .related-posts .card-carousel:after, .single.single-post .post__contributors .card-carousel:after, .single.single-news .post__header:after, .single.single-news .site-footer:after, .single.single-news .related-posts .card-carousel:after, .single.single-news .post__contributors .card-carousel:after {
  background: var(--gradient-core);
}
.single.single-event .post__header:after, .single.single-event .site-footer:after, .single.single-event .related-posts .card-carousel:after, .single.single-event .post__contributors .card-carousel:after {
  background: var(--gradient-events);
}
.single.single-event .entry-content {
  min-height: 500px;
  grid-auto-rows: max-content;
}
.single.single-research .post__header:after, .single.single-research .site-footer:after, .single.single-research .related-posts .card-carousel:after, .single.single-research .post__contributors .card-carousel:after {
  background: var(--gradient-research);
}
.single.single-research .entry-content > *:first-child {
  margin-block-start: 0;
}
.single.single-opportunity .post__header:after, .single.single-opportunity .site-footer:after, .single.single-opportunity .related-posts .card-carousel:after, .single.single-opportunity .post__contributors .card-carousel:after {
  background: var(--gradient-opportunities);
}
.single.single-opportunity .post__image--gradient {
  background-image: url(../images/IMG-Placeholder_green.jpg);
}
@media screen and (max-width: 992px) {
  .single.single-event .post__sidebar-container + * {
    margin-block-start: 0;
  }
}
.single.single-people .post__header::after, .single.single-people .site-footer::after, .single.single-people .related-posts .card-carousel::after {
  --theme-gradient: var(--gradient-core);
}
.single.single-people .post__sidebar-container {
  margin-inline-start: auto;
  margin-inline-end: auto;
}
.single.single-people .post__sidebar-container .term-list {
  text-align: center;
}
.single.single-people .social-share-bar {
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .single.single-people .post__sidebar-container {
    height: auto;
  }
}

.popup-cta {
  background-image: linear-gradient(270deg, #8DBF2E 0%, #00CFBE 51%, #00A189 100%);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  transform: translateY(100%);
  transition: transform 0.2s ease-in;
  visibility: hidden;
  width: 100vw;
  z-index: 10;
}
.popup-cta--open {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.2s ease-in;
  visibility: visible;
}
.popup-cta h4 {
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-size: clamp(1.25rem, 0.946969697rem + 1.0101010101vw, 1.875rem);
  font-weight: 900;
}
.popup-cta p {
  color: #000000;
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-size: clamp(1rem, 0.7575757576rem + 0.8080808081vw, 1.5rem);
}
.popup-cta p a {
  color: #000000;
  text-decoration: underline;
}
.popup-cta p a:hover, .popup-cta p a:focus {
  text-decoration: none;
}
.popup-cta__content {
  margin-inline: auto;
  padding-block: 3rem;
  max-width: 1200px;
}
@media screen and (max-width: 1470px) {
  .popup-cta__content {
    padding-inline: 3rem;
  }
}
@media screen and (max-width: 992px) {
  .popup-cta__content {
    display: flex;
    flex-direction: column;
    padding-inline: 20px;
    text-align: center;
  }
}
.popup-cta__content > * {
  margin-block-end: 1rem;
}
.popup-cta__content .gform_wrapper {
  margin-inline: auto;
  max-width: 600px;
}
.popup-cta__close {
  background: none;
  border: none;
  border-collapse: collapse;
  cursor: pointer;
  display: block;
  height: 50px;
  position: absolute;
  right: 80px;
  top: calc(50% - 17px);
  width: 50px;
}
@media screen and (max-width: 992px) {
  .popup-cta__close {
    margin: 2rem auto 0;
    order: 5;
    position: relative;
    right: auto;
    top: auto;
  }
}
.popup-cta__close::after {
  border-bottom: 1px solid #000000;
  content: "";
  display: inline-block;
  left: 0;
  position: absolute;
  top: calc(50% - 1px);
  transform: rotate(45deg);
  height: 0px;
  width: 100%;
}
.popup-cta__close::before {
  border-bottom: 1px solid #000000;
  content: "";
  display: inline-block;
  left: 0;
  position: absolute;
  top: calc(50% - 1px);
  transition: transform 0.2s ease;
  transform: rotate(-45deg);
  height: 0px;
  width: 100%;
}
.popup-cta .wp-block-button__link {
  background-color: #ffffff;
  color: #000000;
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}
.popup-cta .wp-block-button__link:hover, .popup-cta .wp-block-button__link:focus {
  background-color: #000000;
  color: #ffffff;
}

body.blog {
  background-color: #e2e2e7;
}

body.archive,
body.search,
body.blog {
  background-color: #e2e2e7;
  --theme-gradient: var(--gradient-research);
}

.archive__wrapper,
.event__wrapper {
  background-color: #e2e2e7;
}
.archive__pagination, .archive__container,
.event__pagination,
.event__container {
  margin-inline: auto;
  max-width: 1200px;
  grid-column: wide-width-start/wide-width-end;
}
.archive__header, .archive__grid-header,
.event__header,
.event__grid-header {
  padding-block: var(--block-padding-lg);
}
.archive__header .archive__subhead,
.archive__header h2, .archive__grid-header .archive__subhead,
.archive__grid-header h2,
.event__header .archive__subhead,
.event__header h2,
.event__grid-header .archive__subhead,
.event__grid-header h2 {
  display: inline-block;
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  font-weight: 400;
  font-size: 1.875rem;
}
.archive__header .archive__subhead, .archive__grid-header .archive__subhead,
.event__header .archive__subhead,
.event__grid-header .archive__subhead {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.1px;
  padding-right: 0.375rem;
}
.archive__header--enhanced, .archive__grid-header--enhanced,
.event__header--enhanced,
.event__grid-header--enhanced {
  max-width: none;
  background-color: #ffffff;
}
.archive__header--enhanced .card-lg, .archive__grid-header--enhanced .card-lg,
.event__header--enhanced .card-lg,
.event__grid-header--enhanced .card-lg {
  margin-top: 80px;
  margin-inline: auto;
}
.archive__header--enhanced .card-lg__title a, .archive__header--enhanced .card-lg__meta, .archive__grid-header--enhanced .card-lg__title a, .archive__grid-header--enhanced .card-lg__meta,
.event__header--enhanced .card-lg__title a,
.event__header--enhanced .card-lg__meta,
.event__grid-header--enhanced .card-lg__title a,
.event__grid-header--enhanced .card-lg__meta {
  color: #000000;
}
.archive__header--enhanced > .card-lg, .archive__grid-header--enhanced > .card-lg,
.event__header--enhanced > .card-lg,
.event__grid-header--enhanced > .card-lg {
  grid-column: wide-width-start/wide-width-end;
}
@media screen and (max-width: 992px) {
  .archive__header--enhanced > .card-lg, .archive__grid-header--enhanced > .card-lg,
  .event__header--enhanced > .card-lg,
  .event__grid-header--enhanced > .card-lg {
    grid-column: full-width-start/full-width-end;
  }
}
.archive__header--enhanced h1, .archive__grid-header--enhanced h1,
.event__header--enhanced h1,
.event__grid-header--enhanced h1 {
  margin-block-end: 40px;
}
.archive__header > *,
.event__header > * {
  grid-column: wide-width-start/wide-width-end;
}
.archive__grid-header h1,
.event__grid-header h1 {
  display: none;
}
.archive__grid-header > *,
.event__grid-header > * {
  grid-column: wide-width-start/wide-width-end;
}
.archive__container h1,
.event__container h1 {
  grid-column: 1/9;
}
.archive__description,
.event__description {
  grid-column: 1/9;
}
.archive__description p,
.event__description p {
  font-size: 20px;
}
.archive__graphic,
.event__graphic {
  grid-column: 9/13;
}
.archive__graphic img,
.event__graphic img {
  margin-inline-start: auto;
  margin-inline-end: auto;
}
.archive__grid,
.event__grid {
  grid-column: wide-width-start/wide-width-end;
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  width: 100%;
}
.archive__grid .card,
.event__grid .card {
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .archive__grid .card,
  .event__grid .card {
    min-width: calc(33% - (17px * 2) / 3);
    width: calc(33% - (17px * 2) / 3);
  }
}
.archive__pagination,
.event__pagination {
  padding-bottom: 5rem;
  font-family: "Trade Gothic Next LT Pro", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
.archive__pagination span,
.archive__pagination a,
.event__pagination span,
.event__pagination a {
  border: 1px solid transparent;
  border-radius: 9999px;
  color: black;
  display: inline-block;
  height: 2.5rem;
  line-height: 2.5rem;
  margin: 0 0.25rem;
  text-align: center;
  width: 2.5rem;
}
.archive__pagination a:hover,
.event__pagination a:hover {
  border: 1px solid #00a189;
  color: #00a189;
  text-decoration: none;
}
.archive__pagination .current,
.event__pagination .current {
  border: 1px solid #000000;
  cursor: not-allowed;
}

.page-template-page-events main {
  position: relative;
}
.page-template-page-events .page-header__text {
  grid-column: 1/span 6;
}
.page-template-page-events .page-header__title {
  margin-block-end: 0;
}
.page-template-page-events .page-header .filter-events {
  display: flex;
  justify-content: end;
  padding-block-start: 2rem;
}
.page-template-page-events .nua-search-filter__results {
  display: block;
}
.page-template-page-events .nua-search-filter__result {
  width: auto;
}

.soc-datepicker {
  align-items: center;
  border-top: 12px solid #e2e2e7;
  display: flex;
  flex-direction: row;
  grid-column: wide-width-start/all;
  overflow: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: #dc4633 transparent;
}
.soc-datepicker::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}
.soc-datepicker::-webkit-scrollbar-thumb {
  background: #dc4633;
}
.soc-datepicker::-webkit-scrollbar-track {
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .soc-datepicker {
    border-top-width: 8px;
    grid-column: full-width-start/all;
  }
}
.soc-datepicker__wrapper {
  background-color: #ffffff;
}
.soc-datepicker__meta {
  color: #dc4633;
  font-size: clamp(1.25rem, 0.946969697rem + 1.0101010101vw, 1.875rem);
  font-family: "Trade Gothic Next LT Pro Cn", sans-serif;
  line-height: 1;
  margin-block: 3rem;
  margin-inline: 2rem;
  max-width: 100px;
  text-transform: uppercase;
}
@media screen and (max-min: 992px) {
  .soc-datepicker__meta:first-of-type {
    margin-inline-start: 0;
  }
}
.soc-datepicker__month {
  font-weight: 900;
  letter-spacing: -0.02em;
}
.soc-datepicker__day {
  align-items: center;
  color: #575757;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 3rem 1.5rem;
}
.soc-datepicker__letter {
  font-size: 0.9375rem;
}
.soc-datepicker__date {
  font-size: 0.9375rem;
  font-variant-numeric: tabular-nums;
  height: 2.25rem;
  line-height: 2.25rem;
  position: relative;
}
.soc-datepicker__dropdown {
  background-color: #ffffff;
  border-radius: 22px;
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.3);
  height: 0;
  overflow: hidden;
  opacity: 0;
  padding-block: 0.5rem;
  position: absolute;
  transition: opacity 0.2s ease-in-out;
  visibility: hidden;
  width: 0;
  z-index: 10;
}
.soc-datepicker__dropdown a {
  color: #000000;
  display: block;
  margin-block-end: 0.25rem;
  position: relative;
  padding: 0.25rem 1rem;
}
.soc-datepicker__dropdown a:hover, .soc-datepicker__dropdown a:focus {
  color: #dc4633;
  text-decoration: underline;
}
.soc-datepicker__dropdown a:hover::before, .soc-datepicker__dropdown a:focus::before {
  background-color: #dc4633;
  content: "";
  display: block;
  height: 1.25rem;
  left: 0;
  position: absolute;
  top: 0.5rem;
  width: 7px;
}
.soc-datepicker__dropdown.visible {
  height: auto;
  opacity: 1;
  visibility: visible;
  width: 250px;
}
.soc-datepicker__link {
  background-color: #dc4633;
  border-radius: 9999px;
  outline: 7px solid transparent;
  color: #ffffff;
  display: block;
  font-size: 0.9375rem;
  height: 2.25rem;
  line-height: 2.25rem;
  text-align: center;
  transition: outline 0.2s ease-in-out;
  width: 2.25rem;
}
.soc-datepicker__link:hover, .soc-datepicker__link:focus {
  color: #ffffff;
  outline: 7px solid rgba(220, 70, 51, 0.3);
  text-decoration: none;
}
.soc-datepicker__load-older, .soc-datepicker__load-future {
  flex-basis: 200px;
  flex-grow: 1;
  flex-shrink: 0;
}
.soc-datepicker__load-older > span, .soc-datepicker__load-future > span {
  display: none;
}

.error404 .site-content {
  text-align: center;
}
.error404 h1 {
  font-size: clamp(6.25rem, -2.8409090909rem + 30.303030303vw, 25rem);
  color: #0b2f4e;
}
.error404 .skyline {
  grid-template-rows: 0;
}

/*# sourceMappingURL=style.css.map */
