@charset "UTF-8";
@font-face {
  font-family: "Arielvetica";
  src: url("../fonts/Arielvetica-Regular.woff");
}
@font-face {
  font-family: "Union";
  src: url("../fonts/union_regular.woff");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font: inherit;
  color: inherit;
}

html {
  font-size: 10px;
  width: 100vw;
  --size-large: 3.2rem;
  --size-body: 2.4rem;
  --size-mobile: 2rem;
  --size-mini: 1.6rem;
  --size-small: 1.2rem;
  --gutter: 1rem;
  --break-medium: 1200px;
  --break-small: 640px;
  --header-height: 3.2rem;
  --header-height-small: 2.8rem;
  --sidebar-min-width: 38rem;
}
@media (max-width: 720px) {
  html {
    --sidebar-min-width: 30rem;
    --size-large: 2.7rem;
    --size-body: 2rem;
  }
}

body {
  font-size: var(--size-body);
  line-height: 1.1;
  font-family: "Union", sans-serif;
  width: 100vw;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.mobile-menu-open .top__inner {
  position: relative;
  flex-direction: column;
  height: 11.5em;
}
body.mobile-menu-open .nav {
  position: absolute;
  z-index: 1;
  top: 2em;
  left: 0;
}
body.no-scroll {
  overflow: hidden;
}
body.lightbox-open {
  overflow: hidden;
}
@media (max-width: var(--break-small)) {
  body {
    font-size: var(--size-mobile);
  }
}

img {
  max-width: 100%;
}

figcaption,
.small,
small {
  font-size: var(--size-small);
  letter-spacing: 0.015em;
}

a {
  text-decoration: none;
}
a:hover, a.active {
  color: #bbb;
}

p,
h2,
h3,
h4,
h5 {
  margin-bottom: 1.1em;
}

.block-indent {
  margin-left: 1.1em;
}

.announcements {
  padding: 0.4em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 0.4em;
}
@media (max-width: 670px) {
  .announcements {
    grid-template-columns: 1fr;
    grid-row-gap: 0.5em;
  }
}
.announcements .announce {
  background: #eee;
  padding: 1em;
  text-align: center;
  border-radius: 0.5em;
}
.announcements .announce.single {
  grid-column: span 2;
}
.announcements .announce p {
  margin: 0;
}
.announcements .announce:hover {
  background: yellow;
  color: black;
}
.announcements .announce:hover a {
  color: black;
}

.features {
  display: flex;
  height: calc(100vh - var(--gutter) * 2);
  font-size: var(--size-large);
  margin: var(--gutter);
}
@media (max-width: var(--break-small)) {
  .features {
    flex-direction: column;
    font-size: inherit;
  }
}
.features h1 {
  position: absolute;
  pointer-events: none;
  margin: var(--gutter);
  top: 0;
  left: 0;
}
.features:hover .feature:not(:hover) {
  opacity: 0;
}
.features .feature {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}
@media (min-width: calc(var(--break-small) + 1px)) {
  .features .feature {
    background-size: 85%;
  }
}
.features .feature-header {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 1em;
}
.features .feature-header h1 {
  position: relative;
  width: auto;
  margin: 0;
}
.features .feature__text {
  position: absolute;
  top: 0;
  left: 50%;
  display: none;
  margin: var(--gutter);
  width: calc(50% - var(--gutter) * 2);
  height: calc(100% - var(--gutter) * 2);
  flex-direction: column;
  pointer-events: none;
}
@media (max-width: var(--break-small)) {
  .features .feature__text {
    width: calc(100% - var(--gutter));
    padding-right: var(--gutter);
  }
}
.features .feature__text > * {
  pointer-events: initial;
}
.features .feature__location {
  margin-top: auto;
  margin-bottom: 0;
}
.features .feature:hover .feature__text {
  display: grid;
}

.exhibit-title {
  display: block;
}
.exhibit-title:before {
  content: "‘";
}
.exhibit-title:after {
  content: "’";
}

.top {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 10;
}
.top__inner {
  margin: 0 var(--gutter);
  border-bottom: 1px solid;
  padding: 0.7rem 0;
  padding-top: 2px;
  height: var(--header-height);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  transition: height 0.5s ease-in-out;
}
@media (max-width: 720px) {
  .top__inner {
    padding-top: 4px;
  }
}
.top h1 {
  grid-column: span 3;
  min-width: var(--sidebar-min-width);
  white-space: nowrap;
}
@media (max-width: var(--break-medium)) {
  .top h1 {
    width: unset;
    min-width: unset;
  }
}
.top .nav {
  grid-column: span 9;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 720px) {
  .top .nav {
    display: none;
  }
}
.top nav {
  display: flex;
  grid-column: span 5;
}
@media (max-width: 720px) {
  body.mobile-menu-open .top nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-direction: column;
    padding-bottom: 0.4rem;
  }
}
.top nav a,
.top nav .newsletter {
  margin-right: 1.5rem;
}
.top nav .newsletter {
  margin-top: 0.02em;
  flex: 1;
}
.top nav .newsletter input {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  outline: none;
}
.top nav .newsletter input::placeholder {
  color: inherit;
}
.top nav .newsletter input:focus::placeholder {
  color: gray;
}
.top__links {
  margin-left: auto;
  margin-top: 0;
}
@media (max-width: var(--break-small)) {
  .top__links {
    display: none;
  }
}
.top .hamburger {
  display: none;
  height: 1em;
  text-align: right;
  text-decoration: none !important;
  position: absolute;
  top: 0;
  right: 0;
  margin: var(--gutter);
  margin-top: 0.5rem;
}
@media (max-width: 720px) {
  .top .hamburger {
    display: block;
  }
}
.top .hamburger span:nth-of-type(1) {
  display: inline;
}
.top .hamburger span:nth-of-type(2) {
  display: none;
}
body.mobile-menu-open .top .hamburger span:nth-of-type(1) {
  display: none;
}
body.mobile-menu-open .top .hamburger span:nth-of-type(2) {
  display: inline;
}
@media (max-width: var(--break-small)) {
  .top h1 {
    width: auto;
    flex: 1;
  }
  body.mobile-menu-open .top h1 {
    display: none;
  }
  body.mobile-menu-open .top nav {
    flex: 1;
  }
  body:not(.mobile-menu-open) .top nav {
    display: none;
  }
  .top .hamburger {
    display: block;
  }
}

.running-head {
  position: sticky;
  top: calc(var(--header-height) - 1px);
  background: white;
  margin-top: -1px;
  z-index: 9;
}
@media (max-width: var(--break-small)) {
  .running-head {
    top: calc(var(--header-height-small-1px));
  }
}
.running-head h2 {
  margin-bottom: 0;
  width: 25%;
  min-width: var(--sidebar-min-width);
}
@media (max-width: var(--break-medium)) {
  .running-head h2 {
    display: none;
  }
}
.running-head__inner {
  border-top: 1px solid;
  border-bottom: 1px solid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 var(--gutter);
  padding: calc(var(--gutter) / 2) 0 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.running-head__inner h2 {
  grid-column: span 1;
}
.running-head__inner div {
  grid-column: span 3;
}
@media (max-width: 720px) {
  .running-head__inner {
    grid-template-columns: 1fr;
    padding: 4px 0;
  }
}

figure {
  display: table;
}
figure img {
  max-height: calc(100vh - var(--header-height) * 2 - 2em);
  width: 100%;
  max-width: 100%;
  display: block;
}
@media (max-width: 720px) {
  figure img {
    width: auto;
  }
}
@media (max-width: var(--break-small)) {
  figure img {
    max-width: calc(50vw - var(--gutter) * 1.6);
    max-height: calc(100vh - var(--header-height-small) - 2em);
  }
}
figure figcaption {
  display: table-caption;
  caption-side: bottom;
  padding-top: 0.2rem;
  margin-bottom: var(--gutter);
}

.takeover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
}
.takeover[data-visibility=true] {
  display: block;
}
.takeover__controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 100;
  opacity: 0;
}
.takeover__controls:hover {
  cursor: pointer;
  opacity: 0.5;
}
.takeover:hover .takeover__controls {
  opacity: 1;
}
.takeover video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

#player {
  width: 100%;
  height: 100vh;
}
#player iframe {
  width: 100%;
  height: 100vh;
  border: none;
  outline: 0;
}

.takeover {
  z-index: 0;
  position: absolute;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
}
.takeover video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.takeover-embed {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.takeover-embed > * {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

#player video {
  object-fit: cover;
}

.exhibition {
  margin-left: var(--gutter);
  margin-top: calc(var(--gutter));
  width: calc(100% - 2rem);
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}
.exhibition.video.open .exhibition__images {
  padding-top: 6em;
}
[data-template=home] .exhibition:after, [data-template=exhibitions] .exhibition:after {
  content: "";
  width: 100%;
  display: block;
  height: 1px;
  background: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
}
.exhibition__feature {
  grid-column: span 3;
}
.exhibition__feature figure {
  margin-right: 0 !important;
}
.exhibition__feature__video {
  width: 100%;
  grid-column: span 3;
  position: relative;
}
@media (max-width: 720px) {
  .exhibition__feature__video {
    padding-top: 1em;
  }
}
.exhibition__feature__video__controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  color: white;
}
.exhibition__feature__video__controls.dim {
  opacity: 0.15;
}
.exhibition__feature__video__controls:hover {
  cursor: pointer;
}
.exhibition__feature__video video {
  max-width: 100%;
  width: 100%;
  display: block;
}
.exhibition__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: var(--gutter);
}
@media (max-width: 720px) {
  .exhibition__top {
    grid-template-columns: 1fr;
  }
}
.exhibition__top figure img {
  max-width: 100%;
  display: block;
}
@media (max-width: var(--break-medium)) {
  .exhibition__top {
    display: block;
  }
  .exhibition__top figure img {
    max-height: none;
  }
}
.exhibition__aside {
  min-width: var(--sidebar-min-width);
  padding-right: var(--gutter);
  grid-column: span 1;
}
@media (max-width: 720px) {
  .exhibition__aside {
    min-width: unset;
    width: 100%;
    padding-right: 0;
  }
}
.exhibition__aside p {
  max-width: 56rem;
}
@media (max-width: var(--break-medium)) {
  .exhibition__aside {
    width: 100%;
  }
  .exhibition__aside__footer {
    max-width: 56rem;
    margin-top: 1em;
  }
}
.exhibition__aside__footer {
  margin-bottom: calc(var(--gutter) / 2);
}
.exhibition:not(.open) .exhibition__aside__footer--more, .exhibition.open .exhibition__aside__footer--see {
  display: none;
}
.exhibition__aside__footer--more {
  font-size: var(--size-mini);
}
.exhibition__aside__footer p:last-child {
  margin-bottom: 0;
}
.exhibition figure {
  max-width: 100%;
}
.exhibition__images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}
@media (max-width: 720px) {
  .exhibition__images {
    grid-template-columns: repeat(2, 1fr);
  }
}
.exhibition__images:after {
  content: "";
  width: calc(100% - var(--gutter));
  display: block;
  height: 1px;
}
.exhibition:not(.open) .exhibition__images {
  display: none;
}

.upcoming__row {
  display: flex;
  margin: 0 calc(var(--gutter) / 2);
  padding: var(--gutter) 0;
}
.upcoming__exhibition {
  margin: 0 calc(var(--gutter) / 2);
  flex: 1;
}
.upcoming__exhibition--image {
  display: flex;
  align-items: flex-end;
}

.acknowledgement {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: yellow;
  padding: 0.5em;
}
.acknowledgement_close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--size-large);
}
@media (max-width: 720px) {
  .acknowledgement_close {
    display: none;
  }
}
.acknowledgement p {
  font-size: var(--size-large);
}
.acknowledgement:hover {
  cursor: pointer;
}

.archive {
  margin-top: -1px;
  margin-left: var(--gutter);
  margin-right: var(--gutter);
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
@media (max-width: 720px) {
  .archive {
    grid-template-columns: 1fr;
  }
}
.archive__sidebar {
  grid-column: span 3;
  min-width: var(--sidebar-min-width);
}
@media (max-width: var(--break-medium)) {
  .archive__sidebar {
    min-width: unset;
  }
}
.archive__inner {
  grid-column: span 9;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 720px) {
  .archive__inner {
    grid-template-columns: 1fr 1fr;
  }
}
.archive__inner:first-of-type .archive__exhibition__year {
  border-top: none;
}
.archive__exhibition {
  width: 100%;
  padding-right: var(--gutter);
  padding-top: calc(var(--gutter) / 2);
  margin-bottom: 2em;
}
@media (max-width: var(--break-medium)) {
  .archive__exhibition {
    width: 50%;
  }
}
@media (max-width: var(--break-small)) {
  .archive__exhibition {
    width: 100%;
  }
}
.archive__exhibition__year {
  position: absolute;
  left: 0;
  border-top: 1px solid;
  width: 100%;
  padding-top: calc(var(--gutter) / 2);
  margin-top: calc(0 - var(--gutter) / 2 - 1px);
}
@media (max-width: 720px) {
  .archive__exhibition__year {
    position: sticky;
    top: 1em;
    border-bottom: 1px solid;
    grid-column: span 2;
  }
}
.archive__exhibition__text {
  display: inline-block;
}
.archive__exhibition__text:hover {
  position: relative;
  z-index: 30;
}
.archive__exhibition__text:hover + img {
  display: inline-block;
}
.archive__exhibition__text .details-header {
  display: flex;
  flex-direction: column;
}
.archive__exhibition__text .details-header span.details:before {
  content: "–";
  display: block;
}
.archive__exhibition img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  max-width: 50vw;
  max-height: 80vh;
  z-index: 20;
  display: none;
}

.footer {
  display: grid;
  padding: 10em 0 0.5em 0;
  margin-top: auto;
  width: calc(100% - var(--gutter) * 2);
  margin: 0 var(--gutter) var(--gutter);
  grid-template-columns: repeat(12, 1fr);
}
@media (max-width: 720px) {
  .footer {
    grid-template-columns: 3fr;
    padding: 10em 0.5em 0;
  }
}
.footer__left {
  grid-column: span 3;
  min-width: var(--sidebar-min-width);
}
@media (max-width: var(--break-medium)) {
  .footer__left {
    display: none;
  }
}
.footer__cols {
  display: grid;
  grid-column: span 12;
  grid-template-columns: repeat(12, 1fr);
}
.footer__cols p, .footer__cols a {
  font-size: var(--size-mini);
}
@media (max-width: 720px) {
  .footer__cols {
    grid-template-columns: 1fr;
  }
}
.footer__cols > div {
  grid-column: span 3;
  font-size: var(--size-mini);
}
.footer__cols > div:nth-of-type(3) {
  visibility: hidden;
}
@media (max-width: 720px) {
  .footer__cols > div {
    width: 100%;
  }
  .footer__cols > div:not(:last-child) {
    margin-bottom: 1em;
  }
}
.footer p {
  margin: 0;
}
@media (max-width: var(--break-medium)) {
  .footer {
    margin-left: var(--gutter);
  }
}
@media (max-width: var(--break-small)) {
  .footer {
    display: block;
  }
}

.artists-list p {
  margin-bottom: 0;
  text-indent: -1em;
  margin-left: 1em;
}

.artists {
  display: flex;
  margin-top: calc(var(--gutter) / 2);
  margin-right: var(--gutter);
}
@media (max-width: 720px) {
  .artists {
    display: block;
  }
}
.artists__aside {
  width: 25%;
  min-width: var(--sidebar-min-width);
  margin-right: var(--gutter);
  padding-left: var(--gutter);
}
@media (max-width: var(--break-small)) {
  .artists__aside {
    min-width: unset;
  }
}
.artists__main {
  flex: 1;
}
@media (max-width: 720px) {
  .artists__main {
    padding-left: 1rem;
    padding-top: 2.2em;
    width: calc(100% - 2rem);
  }
}
.artists__main h2 {
  display: flex;
}
.artists__main h2 span {
  margin-right: auto;
}
.artists .artist p {
  max-width: 60rem;
}
.artists .artist__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: flex-end;
  width: calc(100% + var(--gutter));
}
@media (max-width: 720px) {
  .artists .artist__images {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: var(--break-small)) {
  .artists {
    flex-wrap: wrap;
  }
  .artists__aside, .artists__main {
    width: 100%;
    flex: none;
  }
  .artists__main {
    padding-left: var(--gutter);
  }
  .artists__aside {
    order: 2;
  }
}

.locations {
  margin-top: calc(var(--gutter) / 2);
}
.locations__sidebar {
  width: 25%;
  margin-right: var(--gutter);
  min-width: var(--sidebar-min-width);
}
@media (max-width: var(--break-medium)) {
  .locations__sidebar {
    display: none;
  }
}
.locations__row {
  display: flex;
  margin-right: var(--gutter);
  margin-bottom: var(--gutter);
  position: relative;
}
.locations__row:nth-of-type(4) {
  display: none;
}
@media (max-width: 720px) {
  .locations__row {
    display: block;
    padding-left: 1rem;
  }
}
@media (max-width: var(--break-medium)) {
  .locations__row {
    margin-left: var(--gutter);
  }
}
@media (max-width: var(--break-small)) {
  .locations__row {
    flex-direction: column;
  }
  .locations__row:first-of-type {
    flex-direction: column-reverse;
  }
}
.locations__row:not(:first-of-type) {
  padding-top: var(--gutter);
}
.locations__cols {
  column-count: 2;
  column-gap: var(--gutter);
}
@media (max-width: 1400px) {
  .locations__cols {
    column-count: 1;
  }
}
.locations__aside, .locations__main {
  border-top: 1px solid;
  padding-top: calc(var(--gutter) / 2);
}
.locations__row:first-of-type .locations__aside, .locations__row:first-of-type .locations__main {
  border-top: none;
  padding-top: 0;
}
.locations__main {
  flex: 1;
}
@media (max-width: var(--break-small)) {
  .locations__main {
    border-top: none;
  }
}
.locations__aside {
  width: 25%;
  padding-right: var(--gutter);
  min-width: var(--sidebar-min-width);
}
@media (max-width: 720px) {
  .locations__aside {
    width: 100%;
    margin-bottom: 1em;
    min-width: unset;
  }
}
.locations__map {
  background: #eee;
  position: relative;
}
.locations__map__content {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.locations__map__sizer {
  width: 100%;
  padding-top: 50%;
}

.page {
  margin: var(--gutter);
}

.comma-list > *:not(:last-of-type):after {
  content: ",";
}

.lightbox {
  position: fixed !important;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: white;
  z-index: 200;
  display: none;
  user-select: none;
}
.lightbox__close {
  position: fixed;
  top: 0;
  right: 0;
  padding: var(--gutter);
  padding-top: 0.7rem;
  z-index: 201;
}
.lightbox__image {
  width: 100vw;
  height: 100vh;
  cursor: pointer;
}
.lightbox__image figure {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: var(--gutter) 0;
}
.lightbox__image img {
  max-width: calc(100vw - var(--gutter) * 2);
}

div.figure__wrapper {
  display: inline-block;
}
div.figure__wrapper:nth-child(3n+3) {
  margin-right: 0 !important;
}

.news {
  display: flex;
  margin: var(--gutter);
  margin-top: calc(var(--gutter) / 2);
}
@media (max-width: 720px) {
  .news {
    display: block;
  }
}
.news__sidebar {
  width: 25%;
  min-width: var(--sidebar-min-width);
}
@media (max-width: var(--break-medium)) {
  .news__sidebar {
    display: none;
  }
}
.news__main {
  flex: 1;
}

.details-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.exhibition[data-location=online]:not(.unlocked) .exhibition__feature {
  pointer-events: none;
}

.online-splash {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  z-index: 5;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 30rem;
}
.online-splash form {
  display: flex;
  flex-direction: column;
}
.online-splash input,
.online-splash button {
  border: none;
  appearance: none;
  background: none;
  line-height: 1;
  padding: 0.8rem;
  padding-bottom: 0.1rem;
}
.online-splash input {
  border-bottom: 1px solid black;
  padding-left: 0;
}
.online-splash input {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}
.online-splash button {
  margin-left: auto;
  background: #ccc;
  cursor: pointer;
  padding-bottom: 0.3rem;
}

[data-template=exhibitions] .takeover {
  display: none;
}

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