@charset "UTF-8";
/** Colors */
/** Box Model  */
:root {
  --brand-primary: #00f;
  --brand-secondary: #c8c8c8;
  --brand-supporting: #ff0;
  --text: #000;
  --background: #fff;
  --context: #f5f0eb;
  --spacer: 1.25rem;
  --breakpoint: 50rem;
  --breakpoint-size: 30rem;
  --max-width: 90rem;
  --col-size-6: calc((var(--max-width) - 5 * var(--spacer)) / 6);
}

/** Import everything from autoload */
/**
 * Import npm dependencies
 *
 * Prefix your imports with `~` to grab from node_modules/
 * @see https://github.com/webpack-contrib/sass-loader#imports
 */
/** Import theme styles */
:root {
  --spacer: 0.625rem;
}
@media (min-width: 30rem) {
  :root {
    --spacer: 1.25rem;
  }
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  line-height: 1.25;
  scroll-padding-top: 36px;
}
@media (min-width: 30rem) {
  html {
    scroll-padding-top: 45px;
  }
}

body {
  margin: 0;
  background-color: #fff;
  color: #000;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 500;
  letter-spacing: 0.026em;
  min-height: 99vh;
}
@media (min-width: 30rem) {
  body {
    letter-spacing: 0.03em;
  }
}

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

.lightbox .slider__text, .wp-block-embed figcaption, .hero__text, .research__media figcaption {
  font-size: 0.5625rem;
  line-height: 0.75rem;
}
@media (min-width: 30rem) {
  .lightbox .slider__text, .wp-block-embed figcaption, .hero__text, .research__media figcaption {
    font-size: 0.8125rem;
    line-height: 1rem;
  }
}

input[type=text],
input[type=password],
input[type=email],
input[type=search], .menu__toggle, input[type=submit], h1,
h2,
h3,
h4,
h5,
h6, body {
  font-size: 0.8125rem;
  line-height: 1rem;
}
@media (min-width: 30rem) {
  input[type=text],
  input[type=password],
  input[type=email],
  input[type=search], .menu__toggle, input[type=submit], h1,
  h2,
  h3,
  h4,
  h5,
  h6, body {
    font-size: 1rem;
    line-height: 1.25;
  }
}

aside.slider .slide figcaption, .research__title {
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.banner .menu-item, .filter {
  font-size: 1.625rem;
  line-height: 1.875rem;
}

.single-work article.work h2 {
  font-size: 1.25rem;
  line-height: 1.5rem;
}
@media (min-width: 30rem) {
  .single-work article.work h2 {
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
}

.search-results .alert,
.search-no-results .alert, .search-results article .entry-title,
.search-no-results article .entry-title, .text-item__full-title, .text-item__info {
  font-size: 1.25rem;
  line-height: 1.375rem;
}
@media (min-width: 30rem) {
  .search-results .alert,
  .search-no-results .alert, .search-results article .entry-title,
  .search-no-results article .entry-title, .text-item__full-title, .text-item__info {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.single-work .title-container .entry-title {
  font-size: 1.625rem;
  line-height: 1.875rem;
}
@media (min-width: 30rem) {
  .single-work .title-container .entry-title {
    font-size: 3.75rem;
    line-height: 1;
  }
}

.agenda-item__tags, .nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0;
}

b,
h4,
strong {
  font-weight: 700;
}

span {
  text-underline-offset: 5px;
}

.menu__toggle, input[type=submit] {
  font-family: inherit;
  letter-spacing: inherit;
  font-weight: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}

.attachments__list {
  padding: 0;
  list-style: none;
}

.attachment__list-item {
  position: relative;
  padding-left: 1.5rem;
}
.attachment__list-item::before {
  position: absolute;
  left: 0;
  content: ">";
}
.attachment__list-item sup {
  vertical-align: baseline;
  position: relative;
  font-size: 0.6em;
  top: -0.45em;
}

.responsive-embed {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  height: auto;
}
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

input[type=text],
input[type=password],
input[type=email],
input[type=search] {
  border: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  border-bottom: 1px solid #000;
  -webkit-appearance: textfield;
  outline: none;
  background-color: transparent;
}
input[type=text]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder {
  color: #000;
  text-transform: lowercase;
}
input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=search]::-moz-placeholder {
  color: #000;
  text-transform: lowercase;
}
input[type=text]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder {
  color: #000;
  text-transform: lowercase;
}
input[type=text]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=search]::-ms-input-placeholder {
  color: #000;
  text-transform: lowercase;
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder,
input[type=search]::placeholder {
  color: #000;
  text-transform: lowercase;
}

input[type=search] {
  position: relative;
  background-position: right center;
  background-repeat: no-repeat;
}
input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
input[type=search]:focus {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxIiB2aWV3Qm94PSIwIDAgMjgzIDI4MyIgaGVpZ2h0PSIxNiIgd2lkdGg9IjE2Ij4KICA8cGF0aCBmaWxsPSIjMTIxNjE3IiBvcGFjaXR5PSIwLjUiIGQ9Ik0yODMgMjU1bC04NC04NGMxNC0xOCAyMy00MCAyMy02NEMyMjIgNDggMTcyIDAgMTExIDBTMCA0OCAwIDEwN3M1MCAxMDYgMTExIDEwNmMyMSAwIDQwLTUgNTYtMTVsODYgODUgMzAtMjhtLTE3Mi04MmMtMzggMC02OS0zMC02OS02NiAwLTM3IDMxLTY3IDY5LTY3czY5IDMwIDY5IDY3YzAgMzYtMzEgNjYtNjkgNjZ6IiAvPgo8L3N2Zz4K);
}

/** Search form */
.search-form .search-submit {
  display: none;
}

.widget_mc4wp_form_widget {
  grid-column: 1/span 3;
}
.widget_mc4wp_form_widget.-closed {
  display: none;
}
.widget_mc4wp_form_widget input[type=text],
.widget_mc4wp_form_widget input[type=email] {
  width: 100%;
  max-width: 100%;
}

a,
.menu__toggle,
input[type=submit] {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color ease-in-out 0.2s;
  transition: color ease-in-out 0.2s;
}
a:hover,
.menu__toggle:hover,
input[type=submit]:hover {
  color: #c8c8c8;
}
a.passive,
.passive.menu__toggle,
input.passive[type=submit] {
  color: #c8c8c8;
}
a.passive:hover,
.passive.menu__toggle:hover,
input.passive[type=submit]:hover {
  color: inherit;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.nav .menu-item {
  text-transform: lowercase;
}

@media (min-width: 50rem) {
  .menu__toggle {
    display: none;
  }
}

@media (max-width: 50rem) {
  .-menus-closed-responsive .nav-primary,
  .-menus-closed-responsive .filter {
    display: none;
  }
}

.ticker {
  color: #00f;
  margin-top: calc(-1 * var(--spacer));
  min-height: 60px;
}
.ticker > * {
  max-width: 780px;
}
.ticker p:first-child {
  margin-top: 0;
}
.ticker p:last-child {
  margin-bottom: 0;
}

.research-section {
  display: block;
}
@media (min-width: 50rem) {
  .research-section {
    padding: 0;
    grid-column: 1/span 8;
  }
}

.research-subsection {
  display: block;
  background-color: #f5f0eb;
  margin: 0 calc(-1 * var(--spacer));
}
.research-subsection__content > :last-child {
  padding-bottom: 0;
}
@media (min-width: 50rem) {
  .research-subsection {
    margin: 0;
    grid-column: 1/span 8;
    padding-bottom: 100px;
  }
}
.research-subsection__content {
  display: grid;
  margin-bottom: 4rem;
}
@media (min-width: 50rem) {
  .research-subsection__content {
    margin-bottom: 8rem;
    grid-column: 2/span 6;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: var(--spacer);
  }
}
.research-subsection__content .top-of-context {
  grid-column: 1;
}
:last-child > .research-subsection__content {
  margin-bottom: 0;
}
.research-subsection + .research-subsection {
  border-top: 1px solid #000;
}

.research {
  grid-column: span 2;
  grid-row-gap: 0;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  padding-bottom: var(--spacer);
  grid-template-columns: repeat(6, 1fr);
}
.research a {
  color: #00f;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.research a:hover {
  opacity: 0.5;
}
.research__section-nav {
  margin-bottom: 1.25rem;
}
.research__section-nav li {
  list-style: none;
}
.research__section-nav-link.research__section-nav-link {
  color: inherit;
}
:not(.active) > .research__section-nav-link.research__section-nav-link {
  opacity: 0.5;
}
@media (min-width: 50rem) {
  .research__section-nav {
    margin-bottom: 0;
  }
}
.research > * {
  grid-column: 1/span 6;
}
.research__header {
  margin-bottom: 1.25rem;
}
.research.-type-lead {
  grid-row-gap: 0;
}
@media (min-width: 50rem) {
  .research.-type-lead > * {
    grid-column: 2/span 4;
  }
  .research.-type-lead .research__section-nav {
    grid-column: 1;
    grid-row: span 3;
  }
}
.research.-type-single-image, .research.-type-single-text {
  grid-column: span 2;
  grid-row-gap: 0;
  grid-template-rows: -webkit-min-content -webkit-min-content 1fr;
  grid-template-rows: min-content min-content 1fr;
}
@media (min-width: 50rem) {
  .research.-type-single-image, .research.-type-single-text {
    grid-column: 1;
  }
}
@media (min-width: 50rem) {
  .research.-type-single-image + .research.-type-single-image {
    grid-column: span 1;
  }
}
.research.-type-text-image-left, .research.-type-text-image-right {
  grid-row-gap: 0;
}
@media (min-width: 50rem) {
  .research.-type-text-image-left, .research.-type-text-image-right {
    grid-template-areas: "header image" "text image";
    grid-template-rows: -webkit-min-content 1fr;
    grid-template-rows: min-content 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: top;
        -ms-flex-align: top;
            align-items: top;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .research.-type-text-image-left .research__header, .research.-type-text-image-right .research__header {
    grid-area: header;
  }
  .research.-type-text-image-left .research__image, .research.-type-text-image-right .research__image {
    grid-area: image;
  }
  .research.-type-text-image-left .research__text, .research.-type-text-image-right .research__text {
    grid-area: text;
  }
}
@media (min-width: 50rem) {
  .research.-type-text-image-right {
    grid-template-areas: "image header" "image text";
  }
}
.research__time {
  font-weight: 700;
}
.research__content {
  margin: 0;
}
.research__content p:first-child {
  margin-top: 0;
}
.research__media {
  margin: 0;
  padding-left: 0;
  list-style: none;
  grid-template-columns: repeat(6, 1fr);
}
.research__media.research__media {
  grid-row-gap: 0;
}
.research__media > * {
  grid-column: span 6;
}
.research__media .-video-container {
  position: relative;
  padding-bottom: 56.25%;
}
.research__media .-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.research__media-item {
  margin: 0;
  display: inline-block;
}
@media (min-width: 50rem) {
  .research__media-item.-portrait {
    grid-column: span 5;
  }
}
.research__media figcaption {
  color: #000;
  margin-top: calc(var(--spacer) / 4);
}
.research__media img {
  max-width: 100%;
  max-height: 500px;
  height: auto;
  display: block;
}
.research .attachments__list {
  margin: 0;
}
.research .attachment__list-item {
  padding-left: 0;
}
.research .attachment__list-item::before {
  color: #00f;
  content: none;
}

.flickity-prev-next-button {
  top: 0;
  bottom: 0;
  -webkit-transform: none;
          transform: none;
  border-radius: 0;
  width: auto;
  height: auto;
  background: transparent;
}
.flickity-prev-next-button svg {
  display: none;
}
.flickity-prev-next-button.previous {
  left: 0;
  right: 50%;
}
.flickity-prev-next-button.next {
  left: 50%;
  right: 0;
}
.flickity-prev-next-button:hover {
  background: transparent;
}

.slider__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slider__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  -webkit-transition: 1s ease-in-out left;
  transition: 1s ease-in-out left;
  left: 0;
}
.slider__slide {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
.slider__nav {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}
.slider__nav button {
  -webkit-appearance: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  cursor: pointer;
  opacity: 0;
}
.slider__nav button[data-dir="-1"] {
  left: 0;
  cursor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNCAyNCIgd2lkdGg9IjM0IiBoZWlnaHQ9IjI0IiBmaWxsPSIjZmZmIj4KICAgIDxwYXRoIGQ9Ik0zNCAxMkwyMi42IDI0bC0yLjItMi4yIDQuMy00LjNjMS44LTEuOSAzLjUtMy40IDUuMi00LjUgMCAwLTYuNi40LTkgLjRIMHYtMi45aDIxbDkgLjVjLTItMS4zLTMuNy0yLjgtNS40LTQuNGwtNC4yLTQuNEwyMi42IDAgMzQgMTJ6IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzNCAwKSBzY2FsZSgtMSwgMSkiLz4KPC9zdmc+Cg==), w-resize;
}
.slider__nav button[data-dir="1"] {
  right: 0;
  cursor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNCAyNCIgd2lkdGg9IjM0IiBoZWlnaHQ9IjI0IiBmaWxsPSIjZmZmIj4KICAgIDxwYXRoIGQ9Ik0zNCAxMkwyMi42IDI0bC0yLjItMi4yIDQuMy00LjNjMS44LTEuOSAzLjUtMy40IDUuMi00LjUgMCAwLTYuNi40LTkgLjRIMHYtMi45aDIxbDkgLjVjLTItMS4zLTMuNy0yLjgtNS40LTQuNGwtNC4yLTQuNEwyMi42IDAgMzQgMTJ6IiAvPgo8L3N2Zz4K), e-resize;
}

.hero {
  position: relative;
  width: 100%;
}
.hero__text {
  color: white;
  position: absolute;
  top: -1.5rem;
  right: 0.75rem;
  z-index: 5;
}
@media (min-width: 30rem) {
  .hero__text {
    top: -2rem;
    right: 1rem;
  }
}
.slider__slide .hero__text {
  display: none;
}
.hero__caption {
  position: sticky;
  bottom: 6.25rem;
}
.hero__image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.single-work .ticker {
  display: none;
}
.single-work .ticker + * {
  margin-top: -10px;
}
.single-work .title-container {
  position: sticky;
  bottom: 0;
  margin: calc(-1 * var(--spacer));
  background-color: white;
}
@media (min-width: 50rem) {
  .single-work .title-container {
    grid-row: 3;
    grid-column: 1/span 8;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 50rem) {
  .single-work .title-container .entry-title {
    grid-column: 3/span 4;
  }
}
.single-work .work-category {
  position: relative;
  text-transform: lowercase;
  color: var(--brand-secondary);
}
@media (min-width: 50rem) {
  .single-work .work-category {
    grid-row: 3;
    grid-column: 2;
  }
}
.single-work article.work {
  margin-top: var(--spacer);
}
.single-work article.work a {
  color: #00f;
}
.type-work.preview {
  position: relative;
  overflow: hidden;
}
.type-work.preview header h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.33em;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.type-work.preview figure {
  margin: 0;
  height: 0;
  position: relative;
  padding-bottom: 66%;
  overflow: hidden;
}
.type-work.preview .content {
  background-color: white;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.type-work.preview .subtitle {
  text-transform: lowercase;
}
.type-work.preview .title {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.type-work.preview .subtitle,
.type-work.preview .text {
  display: none;
}
.type-work.preview .year {
  display: none;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  opacity: 0;
  -webkit-transition-property: opacity, display;
  transition-property: opacity, display;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  transition-behavior: allow-discrete;
}
.type-work.preview .text {
  margin-top: var(--spacer);
}
.type-work.preview .status {
  color: #00f;
}
.type-work.preview:hover .subtitle,
.type-work.preview:hover .text,
.type-work.preview .-hover .subtitle,
.type-work.preview .-hover .text {
  display: block;
}
.type-work.preview:hover .year {
  display: block;
  opacity: 1;
}
@starting-style {
  .type-work.preview:hover .year {
    opacity: 0;
  }
}
.type-work.preview a:hover {
  color: inherit;
}
.type-work.preview img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.type-work.preview header {
  margin: 0.3125em 0 0;
  min-height: var(--spacer);
}
.type-work.preview.related {
  -webkit-transition: 0.3s ease-in-out opacity;
  transition: 0.3s ease-in-out opacity;
  opacity: 0.5;
}
.type-work.preview.related:hover {
  opacity: 1;
}

.filter {
  list-style: none;
  padding: 0;
  margin: calc(-1 * var(--spacer)) 0 var(--spacer) 0;
  text-transform: lowercase;
}
@media (min-width: 50rem) {
  .filter {
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.25;
  }
}
.filter a {
  color: #c8c8c8;
}
.filter a:hover {
  color: inherit;
}
.filter .active a {
  color: inherit;
}
.filter .active a:hover {
  color: #c8c8c8;
}

.landing {
  display: none;
  -webkit-box-ordinal-group: -99;
      -ms-flex-order: -100;
          order: -100;
}
.-has-landing .landing {
  display: block;
}
.landing__close {
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  position: relative;
  display: block;
}
.landing__image,
.landing button img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.js .home main {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
}
.js .home main.-fade-in {
  -webkit-animation-name: fadein;
          animation-name: fadein;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.agenda-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid #000;
  padding-top: 0.125rem;
  margin-top: -3px;
}
.agenda-item.-old {
  color: #c8c8c8;
  border-top-color: #c8c8c8;
}
.agenda-item__location {
  color: #c8c8c8;
}
.agenda-item__location a:hover {
  color: #000;
}
.-old .agenda-item__title a:hover {
  color: #000;
}
.agenda-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.agenda-item__meta > *:not(:last-child)::after {
  content: " ";
}
.agenda-item__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.agenda-item__tags > *:not(:last-child)::after {
  content: " ";
}
.agenda-item__date-time {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 30%;
          flex: 1 0 30%;
}
.agenda-item__type {
  margin-left: auto;
  text-transform: lowercase;
}
.agenda-item__info {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 95%;
          flex: 1 1 95%;
  font-size: inherit;
  line-height: inherit;
}
@media (min-width: 50rem) {
  .agenda-item {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-bottom: var(--spacer);
  }
  .agenda-item__date-time {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .agenda-item__info {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
  }
}
.agenda-item.-simple {
  margin-bottom: var(--spacer);
}
.agenda-item.-simple .agenda-item__location {
  color: inherit;
}
.agenda-item.-simple .agenda-item__location a:hover {
  color: #c8c8c8;
}
.agenda-item.-simple .agenda-item__tags {
  color: #c8c8c8;
}
.agenda-item.-simple .agenda-item__link {
  margin-left: auto;
}

.text-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 1px solid #000;
  padding-top: 0.125rem;
  margin-top: -3px;
  outline: none;
  position: relative;
}
.text-item summary {
  outline: none;
  list-style: none;
  cursor: pointer;
}
.text-item summary::-webkit-details-marker {
  display: none;
  list-style: none;
  color: transparent;
}
.text-item[open] summary {
  margin-bottom: var(--spacer);
}
[open] .text-item__title {
  display: none;
}
.text-item__closer {
  position: absolute;
  right: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-transform: translate(7px, -7px);
          transform: translate(7px, -7px);
}
.text-item__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  pointer-events: none;
}
.text-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.text-item__meta > *:not(:last-child)::after {
  content: " ";
}
.text-item__info {
  -webkit-box-flex: 2;
      -ms-flex: 2 1 95%;
          flex: 2 1 95%;
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
  font-size: inherit;
  line-height: inherit;
}
.text-item__info > * {
  font-size: inherit;
  line-height: inherit;
}
.text-item__note {
  color: #c8c8c8;
}
[open] .text-item__note {
  color: currentColor;
}
.text-item__type {
  margin-left: auto;
  text-transform: lowercase;
  text-align: right;
}
.text-item__date-time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
}
.text-item__full-title {
  margin-bottom: var(--spacer);
}
.text-item .attachments__list {
  margin: var(--spacer) 0 0 0;
}
@media (min-width: 50rem) {
  .text-item__closer {
    -webkit-transform: translate(7px, 0);
            transform: translate(7px, 0);
  }
  .text-item__toggle {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .text-item__date-time {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .text-item__info {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

/**
 * WordPress Generated Classes
 * @see http://codex.wordpress.org/CSS#WordPress_Generated_Classes
 */
/** Media alignment */
.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: calc(var(--spacer) / 2) auto;
  height: auto;
}

.alignleft,
.alignright {
  margin-bottom: calc(var(--spacer) / 2);
  height: auto;
}

@media (min-width: 30rem) {
  .alignleft {
    float: left;
    margin-right: calc(var(--spacer) / 2);
  }
  .alignright {
    float: right;
    margin-left: calc(var(--spacer) / 2);
  }
}
/** Captions */
/** Text meant only for screen readers */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  color: #000;
  background: #fff;
}

.wp-block-embed {
  margin-left: 0;
  margin-right: 0;
}
.wp-block-embed figcaption {
  color: #000;
  margin-top: calc(var(--spacer) / 4);
}

.-open-lightbox {
  overflow: hidden;
}

.lightbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
}
.lightbox__opener {
  display: none;
  position: relative;
}
.lightbox__opener:first-of-type {
  display: inline-block;
}
.lightbox__opener.-multi::after {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 34px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 12' width='17' height='12'%3E%3Cpath d='M13.91,2.5V0H0v9.5h2.58V12H17V2.5H13.91z M2.58,8.5H1.03V1h11.85v1.5H2.58V8.5z M15.97,11H3.61V3.5h12.36V11z' fill='%23fff' /%3E%3C/svg%3E");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}
.lightbox__closer {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 30;
  border: 0;
  width: 50px;
  height: 50px;
  background-color: transparent;
  padding: 0;
  outline: none;
}
.lightbox .slider__caption {
  display: none;
}
.lightbox .slider__viewport {
  margin: 45px 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: auto;
}
.lightbox .slider__slider {
  height: 100%;
}
.lightbox .slider__text {
  text-align: center;
  width: 100%;
  margin-bottom: -20px;
  line-height: 20px;
}
.lightbox .slider__progress {
  float: left;
}
.lightbox .slider__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 20px;
}
.lightbox .slider__slide .slider__image {
  display: block;
  height: auto;
  width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

aside.slider {
  color: var(--background);
}
@media (min-width: 50rem) {
  aside.slider {
    grid-row: slider;
    grid-column: 1/span 8;
  }
}
html.no-js:has(aside.slider) {
  -ms-scroll-snap-type: y proximity;
      scroll-snap-type: y proximity;
}
html.js:has(aside.slider) {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
  scroll-padding-block-start: 0;
}
body:has(aside.slider) {
  padding: 0;
}
body:has(aside.slider) > .banner {
  --background-color: none;
  --text-color: var(--background);
  --active-color: var(--brand-secondary);
  max-height: calc(2 * var(--spacer));
}
body:has(aside.slider) main {
  scroll-snap-align: start;
}
aside.slider .slides {
  list-style: none;
  margin: 0;
  padding: 0;
}
aside.slider .slide {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background-color: var(--text);
  width: 100%;
  height: 100vh;
  padding: var(--spacer);
  padding-top: calc(2 * var(--spacer));
}
aside.slider .slide figure {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
aside.slider .slide figure img {
  width: 100%;
  height: calc(100% - var(--spacer));
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
aside.slider .slide figure::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  bottom: 33%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 0)), color-stop(33%, rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 33%, rgba(0, 0, 0, 0) 100%);
}
aside.slider .slide figcaption {
  position: absolute;
  top: calc(0.5 * var(--spacer));
  left: 0;
  max-height: 100%;
  z-index: 1;
}
@media (min-width: 50rem) {
  aside.slider .slide figcaption {
    max-width: 66%;
  }
}
aside.slider .slide figcaption p {
  margin: 0;
}
aside.slider .slide figcaption a {
  text-decoration: underline;
}

.credits__list {
  grid-row-gap: 0 !important;
  grid-template-columns: repeat(9, 1fr);
}

.credit__type {
  grid-column: 1/span 3;
}
.credit__data {
  margin: 0;
  grid-column: 4/-1;
}

.related .section__content, .section, .home.blog .post-list, .post-type-archive .post-list, .search-results .main,
.search-no-results .main, .page .main, .single .main, .banner, body, .research-subsection, .research, .research__media, .single-work .title-container, .credits__list {
  display: grid;
  gap: var(--spacer);
}

.banner, body, .research-subsection, .single-work .title-container {
  padding: var(--spacer);
}
@media (min-width: 50rem) {
  .banner, body, .research-subsection, .single-work .title-container {
    grid-template-columns: [space-start] 1fr [space-end] repeat(6, [column-start] minmax(0, 13.9583333333rem) [column-end]) [space-start] 1fr [space-end];
    grid-template-rows: [content-start] auto [content-end];
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 50rem) {
  .post-type-archive .post-list {
    grid-template-columns: repeat(10, 1fr);
  }
  .post-type-archive .post-list > * {
    grid-column: 1/span 9;
  }
}

@media (min-width: 50rem) {
  .search-results .main,
  .search-no-results .main, .single .main {
    grid-template-columns: repeat(5, 1fr);
  }
  .search-results .main > *,
  .search-no-results .main > *, .single .main > * {
    grid-column: 1/span 4;
    max-width: 750px;
  }
}

body {
  --full-height-space: 3rem;
}
body:has(> .landing) {
  grid-template-rows: [landing-start] calc(100vh - var(--full-height-space)) [landing-end menu-start] 25px [menu-end content-start] auto [content-end];
}
body:has(> .slider) {
  grid-template-rows: [menu-start slider-start] auto [slider-end menu-end content-start] auto [content-end];
}
@media (min-width: 30rem) {
  body {
    --full-height-space: 4rem;
  }
}
@media (min-width: 50rem) {
  body {
    grid-template-rows: [menu-start] 25px [menu-end content-start] minmax(40px, -webkit-min-content) [content-end];
    grid-template-rows: [menu-start] 25px [menu-end content-start] minmax(40px, min-content) [content-end];
  }
  body:has(> .landing) {
    grid-template-rows: [landing-start] calc(100vh - var(--full-height-space)) [landing-end menu-start] 25px [menu-end content-start] minmax(40px, -webkit-min-content) [content-end];
    grid-template-rows: [landing-start] calc(100vh - var(--full-height-space)) [landing-end menu-start] 25px [menu-end content-start] minmax(40px, min-content) [content-end];
  }
  body:has(> .slider) {
    grid-template-rows: [menu-start slider-start] auto [slider-end menu-end content-start] minmax(40px, -webkit-min-content) [content-end];
    grid-template-rows: [menu-start slider-start] auto [slider-end menu-end content-start] minmax(40px, min-content) [content-end];
  }
  body > * {
    grid-column: 2/span 6;
  }
}

.hero,
.ticker {
  -webkit-box-ordinal-group: -4;
      -ms-flex-order: -5;
          order: -5;
}

.sidebar {
  display: none;
}

.banner {
  -webkit-box-ordinal-group: -9;
      -ms-flex-order: -10;
          order: -10;
}
@media (min-width: 50rem) {
  .banner {
    grid-column: 1/span 8;
    grid-row: menu;
  }
}

@media (min-width: 50rem) {
  .sidebar {
    display: block;
    -webkit-box-ordinal-group: -3;
        -ms-flex-order: -4;
            order: -4;
    grid-column: 2/span 1;
  }
  .main {
    grid-column: 3/span 5;
  }
  .hero {
    grid-column: 2/span 6;
  }
}
.banner {
  --background-color: white;
  --text-color: var(--text);
  --active-color: var(--brand-secondary);
  position: sticky;
  top: 0;
  margin-top: calc(-1 * var(--spacer));
  margin-left: calc(-1 * var(--spacer));
  margin-right: calc(-1 * var(--spacer));
  line-height: 1;
  padding: 10px 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  z-index: 500;
  background-color: var(--background-color);
  -webkit-transition: padding 0.05s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: padding 0.05s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
@media (min-width: 50rem) {
  .banner {
    margin-left: 0;
    margin-right: 0;
    padding: var(--spacer) 0 0 0;
  }
}
.banner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-column: 1/span 8;
  padding-left: var(--spacer);
  padding-right: var(--spacer);
}
@media (min-width: 50rem) {
  .banner .container {
    padding-left: 0;
    padding-right: 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    grid-column: 2/span 6;
  }
}
.banner .nav-primary {
  opacity: 1;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 85%;
          flex: 1 0 85%;
}
@media (min-width: 50rem) {
  .banner .nav-primary {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    margin-left: auto;
  }
}
.banner .menu__toggle {
  color: var(--text-color);
  margin-left: auto;
  line-height: 1;
  height: 1rem;
  -webkit-appearance: none;
}
.banner .sidebar {
  display: block;
  padding-top: var(--spacer);
}
@media (min-width: 50rem) {
  .banner .sidebar {
    display: none;
  }
}
.banner .nav {
  margin: var(--spacer) -0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 50rem) {
  .banner .nav {
    margin-top: 0;
    margin-bottom: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.banner .brand {
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: var(--text-color);
}
.banner .brand :hover {
  color: var(--active-color);
}
.banner .menu-item {
  color: var(--active-color);
  margin: 0 0.5rem;
}
.banner .menu-item a:hover {
  color: var(--text-color);
}
.banner .menu-item.current-menu-item a {
  color: var(--text-color);
}
.banner .menu-item.current-menu-item a:hover {
  color: inherit;
}
@media (min-width: 50rem) {
  .banner .menu-item {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1;
  }
  .banner .menu-item a:hover {
    color: var(--active-color);
  }
  .banner .menu-item.current-menu-item a {
    color: var(--active-color);
  }
  .banner .menu-item.current-menu-item a:hover {
    color: inherit;
  }
}
:has(> .landing) .banner {
  position: static;
  padding-top: 10px;
}
:has(> .landing) .banner .nav-primary {
  opacity: 0;
}

footer {
  padding-top: 4rem;
}
footer .search-field {
  width: 100%;
  margin-top: calc(0.5 * var(--spacer));
}
@media (min-width: 50rem) {
  footer {
    display: grid;
    gap: var(--spacer);
    padding-top: 6rem;
    margin-top: auto;
    grid-template-columns: repeat(12, 1fr);
    row-gap: 0;
  }
  footer .brand,
  footer .nav-footer {
    grid-column: 1/span 6;
  }
  footer .widget_search {
    align-self: flex-end;
    grid-column: 10/span 3;
  }
  footer .search-field {
    margin-top: 0;
  }
}
footer .menu-item::after {
  content: ", ";
}
footer .menu-item:last-child::after {
  content: none;
}

.resp-page-title {
  margin-bottom: var(--spacer);
}
@media (min-width: 50rem) {
  .resp-page-title {
    display: none;
  }
}

.page .main {
  grid-row-gap: 0;
}
.page .main > p {
  margin-bottom: 0;
  max-width: 900px;
}
.page .main > p a {
  color: #00f;
}
.page .main > h2 {
  margin-top: 2em;
}
@media (min-width: 50rem) {
  .page .entity-title {
    grid-column: 2/span 1;
  }
  .page .main {
    grid-column: 2/span 6;
    grid-template-columns: repeat(6, 1fr);
  }
  .page .main > * {
    grid-column: 2/span 4;
  }
  .page .main > h2,
  .page .main > .page-header {
    grid-column: 1/span 1;
  }
  .page .main > h2 + p {
    margin-top: 2em;
  }
  .page .main > .page-header + p {
    margin-top: 0;
  }
}

.search-results .main,
.search-no-results .main {
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
}
.search-results .sidebar,
.search-no-results .sidebar {
  display: none;
}
@media (min-width: 50rem) {
  .search-results .page-header,
  .search-no-results .page-header {
    grid-column: 2;
  }
}

@media (min-width: 30rem) {
  .home.blog .post-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 50rem) {
  .section {
    padding: var(--spacer) 0;
    grid-template-columns: repeat(12, 1fr);
  }
  .section__title {
    grid-column: span 2;
    margin-bottom: var(--spacer);
  }
  .section__content {
    grid-column: span 10;
  }
  .agenda .section__content {
    grid-column: span 9;
  }
  .related .section__content {
    grid-column: span 12;
    grid-template-columns: repeat(3, 1fr);
  }
}

body#tinymce {
  margin: 12px !important;
}

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