/*
Theme Name: Design Canberra 2022
Theme URI: https://www.designcanberrafestival.com.au
Description: WordPress theme for the 2022 Design Canberra Festival
Version: 1.0;
Author: Andy McCray
*/

:root {
  --font-main: "Aeonik", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "Supply Mono", monospace;
  --color-gold: #877750;
  --color-black: #000;
  --color-white: #fff;
  --color-putty: #f1f3f4;
}

/* 1. Reset */

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0;}

/* 2. Fonts */

@font-face {
  font-family: "Supply Mono";
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  src: url("assets/fonts/supply-mono/supply-regular.woff");
}

@font-face {
  font-family: "Aeonik";
  font-display: swap;
  font-weight: 300;
  font-style: normal;
  src: url("assets/fonts/aeonik/aeonik-light.woff");
}

@font-face {
  font-family: "Aeonik";
  font-display: swap;
  font-weight: 300;
  font-style: italic;
  src: url("https://designcanberrafestival.com.au/wp-content/themes/designcanberra2021/assets/fonts/aeonik/aeonik-light-italic.woff2");
}

@font-face {
  font-family: "Aeonik";
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  src: url("assets/fonts/aeonik/aeonik-regular.woff");
}

@font-face {
  font-family: "Aeonik";
  font-display: swap;
  font-weight: 400;
  font-style: italic;
  src: url("assets/fonts/aeonik/aeonik-regular-italic.woff");
}

@font-face {
  font-family: "Aeonik";
  font-display: swap;
  font-weight: 500;
  font-style: normal;
  src: url("assets/fonts/aeonik/aeonik-bold.woff");
}

@font-face {
  font-family: "Aeonik";
  font-display: swap;
  font-weight: 500;
  font-style: italic;
  src: url("assets/fonts/aeonik/aeonik-bold-italic.woff");
}

/* 3. Base */

*,
*:before,
*:after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
}
body {
  background-color: var(--color-white);
  color: #333;
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  min-height: 100vh;
}
body.dark {
  background-color: var(--color-black);
}
a {
  color: var(--color-black);
  text-decoration: underline;
  transition: color 150ms ease;
}
a:hover,
a:focus {
  color: #000;
  text-decoration: none;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
button:focus,
a:focus {
  outline: 1px currentColor dotted;
}
button:hover,
a:hover,
button:active,
a:active {
  outline: none;
}
img {
  display: block;
  height: auto;
  max-width: 100%;
}
svg {
  display: block;
  width: 100%;
  height: 100%;
}
svg path,
svg g {
  transition: fill 150ms ease;
}

/* 3. Common traits and helpers */

.hide-visually {
  border: 0;
  clip: rect(0,0,0,0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.cf:before,
.cf:after {
  content: " ";
  display: table;
}
.cf:after {
  clear: both;
}
.t-center {
  text-align: center;
}
.caps-heading {
  font-family: var(--font-main);
}
.d-inline-block {
  display: inline-block;
}
.d-flex {
  display: flex;
}
.flex-items-center {
  align-items: center;
  justify-content: center;
}
.flex-wrap {
  flex-wrap: wrap;
}
.button {
  border: 1px solid var(--color-white);
  border-radius: 0;
  background-color: var(--color-black);
  cursor: pointer;
  color: var(--color-white);
  text-align: center;
  font-size: 2rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease;
  padding: 1rem 1rem 1.2rem;
}
.button:hover,
.button:focus {
  background-color: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-black);
}
.pt-medium {
  padding-top: 4rem;
}

/* Container */

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 140rem;
  padding-left: 3rem;
  padding-right: 3rem;
  width: 100%;
}

/* Header */

.header {
  padding-bottom: 4rem;
  padding-top: 2rem;
  position: relative;
  overflow: hidden;
  z-index: 5;
}
@media screen and (max-width: 1200px) {
  .header {
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 700px) {
  .header {
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    z-index: 1;
  }
}
.header__inner {
  display: flex;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

/* Logo */

.logo {
  margin-left: -0.8rem;
  margin-top: 1rem;
  padding-right: 12rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1300px) {
  .logo {
    padding-right: 3rem;
  }
}
.logo__anchor {
  display: block;
  width: 20.3rem;
  height: 10.8rem;
  transform: translateY(-1rem);
}
@media screen and (max-width: 1200px) {
  .logo__anchor {
    width: 12.1rem;
    height: 6.4rem;
  }
}

.dark .logo__anchor svg g > g {
  fill: var(--color-white);
}

/* Nav */

.nav {
  display: flex;
  flex-direction: column;
  margin-left: auto;
}
@media screen and (max-width: 1000px) {
  .nav {
    display: none;
  }
}
.nav__social {
  display: flex;
  position: absolute;
  top: 3rem;
  right: 3rem;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .nav__social {
    top: auto;
    bottom: 3rem;
    left: auto;
    right: auto;
  }
}
.nav__social-link {
  padding-left: 2rem;
}
@media screen and (max-width: 1000px) {
  .nav__social-link {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.nav__social-anchor {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
}
.nav__social-anchor--sign-up {
  width: 2.1rem;
}
.nav__social-link .nav__social-anchor svg path {
  fill: var(--color-gold);
}
.nav__social-anchor:hover svg path,
.nav__social-anchor:focus svg path {
  fill: var(--color-black);
}
.dark .nav__social-anchor:hover svg path,
.dark .nav__social-anchor:focus svg path {
  fill: var(--color-white);
}
.nav__links {
  display: flex;
  margin-top: 3.4rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 1300px) {
  .nav__links {
    margin-top: 1.2rem;
  }
}
@media screen and (max-width: 1200px) {
  .nav__links {
    padding-bottom: 0.6rem;
  }
}
@media screen and (max-width: 1000px) {
  .nav__links {
    margin-top: 0;
    flex-direction: column;
    text-align: center;
  }
}
.nav__link {
  padding-right: 1rem;
}
@media screen and (max-width: 1300px) {
  .nav__link {
    padding-right: 1.4rem;
  }
}
@media screen and (max-width: 1000px) {
  .nav__link {
    padding-right: 0;
  }
}
.nav__link:last-of-type {
  padding-right: 0;
}
.nav__anchor {
  color: var(--color-black);
  display: inline-block;
  font-family: var(--font-main);
  font-size: 2.1rem;
  text-decoration: underline;
  font-weight: 400;
  position: relative;
  padding: 1rem;
}
.dark .nav__anchor {
  color: var(--color-white);
}
@media screen and (max-width: 1300px) {
  .nav__anchor {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1000px) {
  .nav__anchor {
    color: var(--color-white);
    font-size: 2rem;
  }
}
.nav__anchor:hover,
.nav__anchor:focus {
  color: var(--color-gold);
  text-decoration: underline;
}

/* Mobile nav */

.nav-mobile-toggle {
  border: none;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
  display: none;
  position: absolute;
  top: 4rem;
  right: 2rem;
  z-index: 5;
  padding: 2rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .nav-mobile-toggle {
    display: flex;
  }
}
@media screen and (max-width: 700px) {
  .nav-mobile-toggle {
    top: 2.6rem;
  }
}
.nav-mobile-toggle--open {
  position: fixed;
}
.nav-mobile-toggle svg {
  width: 2.6rem;
  height: 2.6rem;
}
.dark .nav-mobile-toggle svg path {
  fill: var(--color-white);
}
.nav-mobile-toggle:hover svg path,
.nav-mobile-toggle:focus svg path {
  fill: var(--color-black);
}
.dark .nav-mobile-toggle:hover svg path,
.dark .nav-mobile-toggle:focus svg path {
  fill: var(--color-gold);
}
.nav-mobile-toggle .icon-close {
  display: none;
}
.nav-mobile-toggle .icon-close g {
  fill: var(--color-white);
}
.nav-mobile-toggle--open .icon-close {
  display: block;
}
.nav-mobile-toggle--open .icon-menu {
  display: none;
}
.nav-mobile {
  display: none;
}
@media screen and (max-width: 1000px) {
  .nav-mobile {
    background-color: var(--color-black);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
    overflow: hidden;
    height: 100vh;
  }
  .nav-mobile-toggle--open + .nav-mobile {
    display: block;
  }
  .nav-mobile__inner {
    position: fixed;
    top: 10rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .nav-mobile__shape {
    pointer-events: none;
    position: absolute;
    opacity: 0.9;
    right: -26rem;
    bottom: -4rem;
  }
}

/* Article */

.article {
  overflow: hidden;
  padding-top: 2rem;
}
.article__banner {
  margin-bottom: 6rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  max-width: 180rem;
}
@media screen and (max-width: 1200px) {
  .article__banner {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 900px) {
  .article__banner {
    margin-bottom: 3rem;
  }
}
.header + .article > .article__banner,
.header + .event > .article__banner {
  margin-top: -5rem;
}
@media screen and (max-width: 900px) {
  .header + .article > .article__banner,
  .header + .event > .article__banner {
    margin-top: -3rem;
  }
}
.article__banner img {
  width: 100%;
}
.article__banner-caption,
.article__portrait-caption {
  line-height: 1.4;
  font-size: 1.4rem;
  padding-top: 1.6rem;
  padding-left: 3rem;
  padding-right: 3rem;
  margin-bottom: -1rem;
  text-align: right;
  color: #666;
  max-width: 60%;
  float: right;
}
@media screen and (max-width: 900px) {
  .article__banner-caption,
  .article__portrait-caption {
    font-size: 1.2rem;
    max-width: 80%;
    padding-bottom: 2rem;
  }
}
.article__portrait-caption {
  padding-left: 0;
  padding-right: 0;
  text-align: left;
  max-width: 100%;
}
@media screen and (max-width: 900px) {
  .article__portrait-caption {
    width: 100%;
  }
}
.article__title {
  font-size: 4.4rem;
  font-family: var(--font-mono);
  padding-top: 1rem;
  padding-bottom: 4rem;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}
@media screen and (max-width: 1000px) {
  .article__title {
    font-size: 3.6rem;
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 900px) {
  .article__title {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
  }
  .article__title.container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.article__title h1 {
  border-bottom: 1px solid var(--color-black);
}
.article > .article__title:first-child {
  padding-top: 3rem;
}
.article__date {
  color: var(--color-gold);
  display: block;
  font-weight: 400;
  font-family: var(--font-main);
  font-size: 1.6rem;
  padding-top: 2rem;
}
.article__body {
  padding-left: 3rem;
  padding-right: 3rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
}
@media screen and (max-width: 900px) {
  .article__body {
    padding-left: 4rem;
    padding-right: 4rem;
    max-width: 100%;
  }
}

/* Event */

.event__title {
  font-size: 4.4rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  padding-bottom: 4rem;
}
@media screen and (max-width: 1000px) {
  .event__title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 900px) {
  .event__title {
    padding-bottom: 0;
  }
  .event__title--primary h1 {
    display: none;
  }
  .event__copy--highlight .event__title {
    padding-bottom: 3rem;
  }
  .event__copy-and-image--highlight .event__title {
    padding-top: 3rem;
  }
}
.event__title h1 {
  border-bottom: 1px solid var(--color-black);
}
.event__past {
  color: var(--color-gold);
  display: block;
  font-weight: 400;
  font-size: 1.8rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 1200px) {
  .event__past {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 900px) {
  .event__past {
    font-size: 1.4rem;
  }
}
.event__body {
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
  max-width: 120rem;
}
@media screen and (max-width: 900px) {
  .event__body {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 700px) {
  .event__body {
    padding-left: 4rem;
    padding-right: 4rem;
    max-width: 100%;
  }
}
.event > .event__body:first-child {
  padding-top: 4rem;
}
.event__types {
  padding-top: 3rem;
  padding-left: 3rem;
}
@media screen and (max-width: 900px) {
  .event__copy-and-image .event__types {
    padding-left: 0;
  }
}
.event__type {
  display: flex;
  padding-bottom: 1rem;
}
.event__type svg {
  fill: #fafafa;
  width: 1.6rem;
  height: 1.3rem;
  margin-right: 0.8rem;
  transform: translateY(0.1rem);
}
.event__subtitle {
  display: block;
  padding-bottom: 3rem;
}
.event__copy {
  float: left;
  padding-right: 8rem;
  width: 70%;
}
@media screen and (max-width: 1200px) {
  .event__copy {
    width: 60%;
  }
}
@media screen and (max-width: 900px) {
  .event__copy {
    float: none;
    padding-right: 0;
    width: 100%;
    order: 2;
  }
  .event__copy--highlight {
    padding-bottom: 4rem;
    order: 1;
  }
}
.event__aside {
  float: left;
  padding-top: 10rem;
  width: 30%;
}
@media screen and (max-width: 1200px) {
  .event__aside {
    width: 40%;
  }
}
@media screen and (max-width: 900px) {
  .event__aside {
    float: none;
    margin: 0 -4rem 3rem;
    padding-top: 0;
    width: calc(100% + 8rem);
    order: 1;
  }
}
.event__copy-and-image {
  float: left;
  padding-right: 5rem;
  padding-top: 2rem;
  width: 60%;
}
@media screen and (max-width: 900px) {
  .event__copy-and-image {
    display: flex;
    flex-direction: column;
    float: none;
    padding-right: 0;
    padding-bottom: 4rem;
    order: 2;
    width: 100%;
  }
}
.event__image {
  padding-top: 3rem;
  float: left;
  width: 40%;
}
@media screen and (max-width: 900px) {
  .event__image {
    float: none;
    padding-top: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    order: 1;
  }
}
.event__image img {
  width: 100%;
}
.event__copy-and-image .event__body-copy {
  padding-bottom: 4rem;
}
@media screen and (max-width: 900px) {
  .event__copy-and-image .event__body-copy {
    padding-top: 3rem;
    padding-bottom: 0;
    order: 2;
  }
}
.event__meta {
  background-color: #fafafa;
  padding: 3rem;
}
@media screen and (max-width: 900px) {
  .event__meta {
    padding: 4rem;
  }
  .event__copy-and-image .event__meta {
    margin-left: -4rem;
    margin-right: -4rem;
  }
  .event__copy-and-image--highlight .event__meta {
    margin-left: -4rem;
    margin-right: -4rem;
    margin-top: 4rem;
    order: 3;
  }
}
.event__meta-title {
  display: none;
}
@media screen and (max-width: 900px) {
  .event__meta-title {
    display: block;
    padding-bottom: 2rem;
  }
}
.event__label {
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 1.6rem;
  font-family: var(--font-main);
  display: inline-block;
  font-weight: 400;
  padding: 1.2rem 1.4rem 1.4rem;
  text-transform: none;
  margin-bottom: 2rem;
}
@media screen and (max-width: 900px) {
  .event__label {
    font-size: 1.4rem;
  }
}
.event__status {
  margin-bottom: 3rem;
}
.event__heading {
  color: var(--color-black);
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.3;
  font-family: var(--font-main);
}
.event__heading--highlights {
  color: #262726;
  padding-top: 1rem;
  padding-bottom: 0;
}
.event__detail,
.event__hours {
  display: block;
  font-size: 1.6rem;
  padding-bottom: 2.4rem;
}
.event__detail--date {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 700px) {
  .event__detail--date {
    font-size: 1.6rem;
  }
}
.event__detail--date:only-child,
.event__detail--date:last-child {
  padding-bottom: 0;
}
.event__detail--date em {
  color: var(--color-black);
}
.event__detail--passed {
  opacity: 0.4;
}
.event__detail--highlights {
  padding-bottom: 0;
}
.event__hours-day {
  font-weight: 400;
  padding-top: 0.4rem;
}
.event__hours-time {
  text-align: right;
  padding-top: 0.4rem;
  padding-left: 2rem;
}
.event__location {
  font-size: 1.6rem;
  display: block;
}
.event__price,
.event__past-event {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 400;
}
.event__past-event {
  display: block;
  padding: 3rem;
}
@media screen and (max-width: 900px) {
  .event__past-event {
    display: none;
  }
}
.event__book {
  margin-top: 2rem;
}
.event__book-button {
  text-decoration: none;
}

/* Related block */

.related-block {
  margin-top: 8rem;
  padding-top: 8rem;
  padding-bottom: 6rem;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .related-block {
    margin-top: 6rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.related-block__heading {
  display: block;
  font-size: 1.3rem;
  padding-bottom: 3rem;
}
.related-block__heading span {
  border-bottom: 1px solid #000;
  color: #262726;
  display: inline-block;
  padding-left: 6rem;
  padding-right: 6rem;
  padding-bottom: 0.4rem;
  text-align: center;
}

/* Copy */

.copy p {
  color: #262726;
  font-size: 2rem;
  line-height: 1.6;
  padding-bottom: 2rem;
}
@media screen and (max-width: 1200px) {
  .copy p {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 900px) {
  .copy p {
    font-size: 1.8rem;
  }
}
.copy.copy--small p {
  font-size: 1.7rem;
}
@media screen and (max-width: 900px) {
  .copy.copy--small p {
    font-size: 1.6rem;
  }
}
.copy p:empty {
  display: none;
}
.copy h2 {
  color:  var(--color-gold);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.4;
  font-family: var(--font-main);
  padding-bottom: 3rem;
}
@media screen and (max-width: 1200px) {
  .copy h2 {
    font-size: 2.2rem;
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 900px) {
  .copy h2 {
    font-size: 2rem;
  }
}
.copy h3 {
  color: var(--color-black);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.4;
  padding-bottom: 3rem;
  font-family: var(--font-main);
}
@media screen and (max-width: 1200px) {
  .copy h3 {
    font-size: 1.8rem;
    padding-bottom: 2rem;
  }
}
.copy p + h2,
.copy p + h3,
.copy ul + h2,
.copy ul + h3,
.copy ol + h2,
.copy ol + h3,
.copy blockquote + h2,
.copy blockquote + h3 {
  padding-top: 2rem;
}
@media screen and (max-width: 1200px) {
  .copy p + h2,
  .copy p + h3,
  .copy ul + h2,
  .copy ul + h3,
  .copy ol + h2,
  .copy ol + h3,
  .copy blockquote + h2,
  .copy blockquote + h3 {
    padding-top: 1.2rem;
  }
}
.copy ul,
.copy ol {
  padding-left: 2rem;
  padding-bottom: 2rem;
}
.copy ul:last-child,
.copy ol:last-child {
  padding-bottom: 0;
}
.copy li {
  color: #262726;
  font-size: 2rem;
  line-height: 1.45;
  padding-left: 0.4rem;
  padding-bottom: 1rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .copy li {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 900px) {
  .copy li {
    font-size: 1.8rem;
  }
}
.copy.copy--small li {
  font-size: 1.8rem;
}
@media screen and (max-width: 1200px) {
  .copy.copy--small li {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 900px) {
  .copy.copy--small li {
    font-size: 1.6rem;
  }
}
.copy ul li:before {
  content: "\00b7";
  font-size: 4.6rem;
  font-family: sans-serif;
  line-height: 0;
  position: absolute;
  top: 1.4rem;
  left: -2rem;
}
.copy ol li {
  list-style: decimal;
}
.copy strong {
  font-weight: 400;
}
.copy em {
  font-style: italic;
}
.copy a {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
.copy blockquote {
  border-left: 0.4rem solid var(--color-gold);
  color: var(--color-black);
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1200px) {
  .copy blockquote {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.copy blockquote p,
.copy blockquote p:last-child {
  font-size: 2rem;
  line-height: 1.5;
  padding-bottom: 0;
  font-weight: 400;
  padding-left: 2rem;
}
@media screen and (max-width: 1200px) {
  .copy blockquote p,
  .copy blockquote p:last-child {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 900px) {
  .copy blockquote p,
  .copy blockquote p:last-child {
    font-size: 1.7rem;
  }
}
.copy .aligncenter {
  padding-top: 2rem;
  padding-bottom: 4rem;
  margin-left: -6rem;
  margin-right: -6rem;
  width: calc(100% + 12rem) !important;
}
@media screen and (max-width: 1000px) {
  .copy .aligncenter {
    padding-bottom: 3rem;
    margin-left: 0;
    margin-right: 0;
    width: 100% !important;
  }
}
.copy .alignnone img,
.copy .aligncenter img,
.copy .alignleft img,
.copy .alignright img {
  max-width: none;
  width: 100%;
}
.copy .alignright {
  float: right;
  padding-left: 6rem;
  padding-bottom: 6rem;
  margin-right: -6rem;
  width: 40rem !important
}
@media screen and (max-width: 1000px) {
  .copy .alignright {
    float: none;
    padding-top: 2rem;
    padding-bottom: 3rem;
    padding-left: 0;
    margin-right: 0;
    width: 100% !important;
  }
}
.copy .alignleft {
  float: left;
  padding-right: 6rem;
  padding-bottom: 6rem;
  margin-left: -6rem;
  width: 40rem !important
}
@media screen and (max-width: 1000px) {
  .copy .alignleft {
    float: none;
    padding-top: 2rem;
    padding-bottom: 3rem;
    padding-right: 0;
    margin-left: 0;
    width: 100% !important;
  }
}
.copy .alignnone {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 1000px) {
  .copy .alignnone {
    padding-bottom: 3rem;
  }
}
.copy img + p {
  color: #666;
  font-size: 1.4rem;
  padding-top: 1rem;
}
@media screen and (max-width: 900px) {
  .copy img + p {
    font-size: 1.2rem;
  }
}
.is-portrait-layout .copy .alignnone,
.is-portrait-layout .copy .aligncenter,
.is-portrait-layout .copy .alignleft,
.is-portrait-layout .copy .alignright {
  float: none;
  margin-left: 0;
  margin-right: 0;
  padding: 3rem 0;
  width: 100% !important;
}
.copy img.alignnone.image-small,
.copy img.aligncenter.image-small {
  width: auto !important;
}
.copy hr {
  display: block;
  border-top: 1px solid #fafafa;
  border-bottom: none;
  height: 1px;
  margin-bottom: 3rem;
}
.copy iframe {
  margin-top: 3rem;
  margin-bottom: 3rem;
  min-height: 40rem;
  width: 100% !important;
}
@media screen and (max-width: 700px) {
  .copy iframe {
    min-height: 20rem;
  }
}
.copy table {
  table-layout: fixed;
  height: auto !important;
  width: 100% !important;
  margin-top: 2rem;
  margin-bottom: 4rem;
}
.copy tr {
  border-bottom: 1px solid #fafafa;
}
.copy th,
.copy td {
  font-size: 1.7rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (max-width: 1200px) {
  .copy th,
  .copy td {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 900px) {
  .copy th,
  .copy td {
    font-size: 1.5rem;
  }
}
.copy tr th:first-of-type,
.copy tr td:first-of-type {
  padding-left: 0;
}
.copy tr th:last-of-type,
.copy tr td:last-of-type {
  padding-right: 0;
}
.copy th {
  color: var(--color-black);
  font-weight: 600;
  padding-bottom: 1.4rem;
  vertical-align: bottom;
}
.copy td {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  vertical-align: top;
}
.copy th p,
.copy th p:first-of-type,
.copy td p,
.copy td p:first-of-type {
  font-size: 1.7rem;
  padding-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .copy th p,
  .copy th p:first-of-type,
  .copy td p,
  .copy td p:first-of-type {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 900px) {
  .copy th p,
  .copy th p:first-of-type,
  .copy td p,
  .copy td p:first-of-type {
    font-size: 1.5rem;
  }
}
.copy .gallery {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-left: -2rem;
  margin-right: -2rem;
  width: calc(100% + 4rem);
}
.copy .gallery__item {
  padding: 2rem;
  width: 50%;
}
.copy .gallery__anchor {
  display: block;
  text-decoration: none;
}
.copy .gallery__anchor img {
  width: 100%;
}
.copy .gallery__caption {
  display: block;
  color: #666;
  font-size: 1.4rem;
  padding-top: 1rem;
  line-height: 1.4;
}
@media screen and (max-width: 900px) {
  .copy .gallery__caption {
    font-size: 1.2rem;
  }
}
.copy ul.tabs {
  border-bottom: 1px solid #ccc;
  margin-top: 1rem;
  margin-bottom: 4rem;
  margin-left: -3rem;
  padding: 0;
  display: inline-flex;
}
@media screen and (max-width: 900px) {
  .copy ul.tabs {
    display: flex;
    margin-left: -4rem;
    margin-right: -4rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 700px) {
  .copy ul.tabs {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
}
.copy ul.tabs li {
  margin: 0;
  padding: 0;
}
.copy ul.tabs li:before {
  display: none;
}
.copy ul.tabs li a {
  display: block;
  padding: 2rem 3rem;
  font-size: 1.6rem;
  text-decoration: none;
  font-family: var(--font-main);
  font-weight: 400;
}
@media screen and (max-width: 700px) {
  .copy ul.tabs li a {
    font-size: 1.4rem;
    padding: 1.4rem 0;
  }
}
.copy ul.tabs li a:hover,
.copy ul.tabs li a:focus {
  color: #262726;
}
.copy ul.tabs li.tabs__active {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid var(--color-white);
  margin-bottom: -0.1rem;
  text-decoration: none;
}
@media screen and (max-width: 700px) {
  .copy ul.tabs li.tabs__active {
    border: none;
  }
}
.copy ul.tabs li.tabs__active a {
  text-decoration: none;
  color: #262726;
}

/* Highlight events */

.highlight-events {
  border-top: 1px solid #fafafa;
  margin-top: 2rem;
}
.highlight-event {
  border-bottom: 1px solid #fafafa;
}
.highlight-event:last-of-type {
  border-bottom: none;
}
.highlight-event__anchor {
  display: block;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-decoration: none;
  font-size: 1.8rem;
  position: relative;
}
.highlight-event__title {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
}
.highlight-event__anchor:hover .highlight-event__title,
.highlight-event__anchor:focus .highlight-event__title {
  text-decoration: underline;
}
.highlight-event__date {
  display: block;
  font-size: 1.4rem;
  color: var(--color-gold);
  padding-top: 0.4rem;
  line-height: 1.4;
}
.highlight-event__label {
  background-color: var(--color-gold);
  color: var(--color-white);
  display: inline-block;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding: 0.6rem;
}

/* Social block */

.social-block {
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}
.social-block__inner {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 1200px) {
  .social-block__inner {
    padding-top: 2rem;
  }
}
.social-block__instagram-container {
  background-color: var(--color-black);
  padding-top: 2rem;
}
.social-block__instagram-text {
  border-bottom: 1px solid var(--color-white);
  display: flex;
}
@media screen and (max-width: 1000px) {
  .social-block__instagram-text {
    border-bottom: 0;
    display: block;
  }
}
.social-block__instagram {
  padding-bottom: 2rem;
  position: relative;
  margin-top: 2rem;
  padding-top: 2rem;
}
@media screen and (max-width: 1000px) {
  .social-block__instagram {
    padding-bottom: 0;
  }
}
.social-block__instagram-heading {
  font-family: var(--font-mono);
  font-size: 4.4rem;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .social-block__instagram-heading {
    border-bottom: 1px solid var(--color-white);
    font-size: 3.6rem;
  }
}
.social-block__instagram-heading a {
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
}
.social-block__instagram-heading + p {
  color: var(--color-white);
  font-size: 2.1rem;
  font-weight: 400;
  margin-left: auto;
}
@media screen and (max-width: 1000px) {
  .social-block__instagram-heading + p {
    font-size: 1.6rem;
    padding-top: 2rem;
  }
}
.social-block__instagram-heading + p a {
  color: var(--color-white);
}
.instagram-feed {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.eapps-instagram-feed[id*="eapps-instagram-feed"] .eapps-instagram-feed-posts-view .eapps-instagram-feed-posts-item {
  background-color: var(--color-black) !important;
  padding: 3rem !important;
}
@media screen and (max-width: 900px) {
  .eapps-instagram-feed[id*="eapps-instagram-feed"] .eapps-instagram-feed-posts-view .eapps-instagram-feed-posts-item {
    padding: 2rem;
    width: 50% !important;
  }
}
@media screen and (max-width: 700px) {
  .eapps-instagram-feed[id*="eapps-instagram-feed"] .eapps-instagram-feed-posts-view .eapps-instagram-feed-posts-item {
    padding: 0;
    width: 100% !important;
  }
}

/* Sign up */

.social-block__newsletter-container {
  background-color: var(--color-black);
  padding-bottom: 6rem;
  padding-top: 6rem;
}
.sign-up {
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .sign-up {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
  }
}
.sign-up--modal {
  background-color: var(--color-black);
  display: block;
}
.sign-up__label {
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: 2.8rem;
  cursor: pointer;
  max-width: 50rem;
  text-transform: uppercase;
}
@media screen and (max-width: 1100px) {
  .sign-up__label {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.sign-up--modal .sign-up__label {
  padding-bottom: 2rem;
  font-size: 2rem;
  width: 100%;
}
.sign-up__label span {
  border-bottom: 1px solid var(--color-white);
  display: block;
  line-height: 1.5;
}
.sign-up__form {
  display: block;
  margin-left: auto;
  width: 50rem;
}
@media screen and (max-width: 1100px) {
  .sign-up__form {
    margin-left: 0;
    margin-top: 2rem;
    width: 100%;
  }
}
.sign-up--modal .sign-up__form {
  margin-top: 3rem;
  margin-left: 0;
}
.sign-up__input {
  background-color: var(--color-white);
  border: 1px solid var(--color-white);
  font-size: 2.4rem;
  font-family: var(--font-mono);
  font-weight: 400;
  height: 5rem;
  padding: 1rem 1rem 1.2rem;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .sign-up__input {
    font-size: 2rem;
  }
}
.sign-up__input::placeholder {
  color: var(--color-black);
}
.sign-up__button {
  border: 1px solid var(--color-white);
  border-radius: 0;
  background-color: var(--color-black);
  cursor: pointer;
  color: var(--color-white);
  text-align: center;
  font-size: 2.4rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  height: 5rem;
  width: 16rem;
  transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease;
}
@media screen and (max-width: 1100px) {
  .sign-up__button {
    font-size: 2rem;
  }
}
.sign-up__button:hover,
.sign-up__button:focus {
  border-color: var(--color-white);
  background-color: var(--color-white);
  color: var(--color-black)
}

/* Sponsors */

.sponsors {
  padding-top: 1rem;
  padding-bottom: 3rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 920px) {
  .sponsors {
    padding-top: 3rem;
    padding-bottom: 0;
  }
}
.sponsors__inner {
  padding-top: 6rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 1300px) {
  .sponsors__inner {
    padding-top: 4rem;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 920px) {
  .sponsors__inner {
    padding-top: 0;
  }
}
.sponsors__call-to-action {
  display: none;
  margin-bottom: 6rem;
  width: 40rem;
}
@media screen and (max-width: 1300px) {
  .sponsors__call-to-action {
    margin-bottom: 4rem;
    width: 40rem;
  }
}
@media screen and (max-width: 920px) {
  .sponsors__call-to-action {
    margin-left: auto;
    margin-right: auto;
    max-width: 30rem;
    width: 100%;
  }
}
.sponsors__dates {
  display: none;
  position: absolute;
  top: 1rem;
  right: -1rem;
  width: 16rem;
}
@media screen and (max-width: 1300px) {
  .sponsors__dates {
    width: 12rem;
  }
}
@media screen and (max-width: 920px) {
  .sponsors__dates {
    top: 0;
    width: 8rem;
  }
}
@media screen and (max-width: 700px) {
  .sponsors__dates {
    display: none;
  }
}
.sponsors__heading {
  font-size: 1.3rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 920px) {
  .sponsors__heading {
    text-align: center;
  }
}
.sponsors__heading span {
  border-bottom: 1px solid #000;
  color: #262726;
  display: inline-block;
  padding-left: 6rem;
  padding-right: 6rem;
  padding-bottom: 0.4rem;
  text-align: center;
}
.sponsors__heading a {
  color: #262726;
  text-decoration: none;
}
.sponsors__list {
  margin-right: 16rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1300px) {
  .sponsors__list {
    margin-right: 12rem;
  }
}
@media screen and (max-width: 920px) {
  .sponsors__list {
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    padding-top: 1rem;
  }
}
.sponsors__list-item {
  padding-right: 3rem;
}
@media screen and (max-width: 1300px) {
  .sponsors__list-item {
    padding-top: 1rem;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 920px) {
  .sponsors__list-item {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 2rem;
    width: 50%;
  }
}
.sponsors__anchor {
  display: block;
  max-width: 15rem;
}
@media screen and (max-width: 920px) {
  .sponsors__anchor {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Sponsors: index */

.sponsors-index__container {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 900px) {
  .sponsors__type {
    text-align: center;
  }
}

/* Sponsor */

.sponsor {
  display: flex;
  text-decoration: none;
  margin-bottom: 4rem;
border-top:1px solid #ddd;
padding-top:3rem;
margin-top: 2rem;
}
@media screen and (max-width: 900px) {
  .sponsor {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 700px) {
  .sponsor {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.sponsor:last-of-type {
  margin-bottom: 0;
}
.sponsor__logo {
  display: flex;
  align-items: center;
  width: 20%;
}
@media screen and (max-width: 900px) {
  .sponsor__logo {
    width: 100%;
  }
}
.sponsor__logo-image {
  padding-bottom: 2rem;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .sponsor__logo-image {
    margin-left: auto;
    margin-right: auto;
    max-width: 22rem;
    width: 100%;
  }
}
.sponsor__image {
  display: flex;
  align-items: center;
  padding-left: 6rem;
  padding-right: 6rem;
  width: 35%;
}
@media screen and (max-width: 900px) {
  .sponsor__image {
    padding-top: 2rem;
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .sponsor__image {
    padding-left: 0;
    padding-right: 0;
    margin-left: -4rem;
    margin-right: -4rem;
    width: calc(100% + 8rem);
  }
}
.sponsor__feature-image {
  width: 100%;
}
@media screen and (max-width: 700px) {
  .sponsor__feature-image {
    max-width: none;
  }
}
.sponsor__description {
  width: 45%;
}
@media screen and (max-width: 900px) {
  .sponsor__description {
    padding-top: 4rem;
    width: 100%;
  }
}
.sponsor__title {
  color: var(--color-black);
}
.sponsor-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media screen and (max-width: 900px) {
  .sponsor-grid {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}
.sponsor-grid__image {
  display: block;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 3rem;
  width: 12.5%;
}
@media screen and (max-width: 1200px) {
  .sponsor-grid__image {
    display: block;
    width: 16.6666666%;
  }
}
@media screen and (max-width: 900px) {
  .sponsor-grid__image {
    padding: 2rem;
    width: 25%;
  }
}
@media screen and (max-width: 700px) {
  .sponsor-grid__image {
    width: 33.333333%;
  }
}
.sponsor-grid__image img {
  display: block;
}

/* Footer */

.footers {
  background-color: var(--color-black);
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}
.footer {
  background-color: var(--color-white);
  padding-top: 7rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 1300px) {
  .footer {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 700px) {
  .footer {
    padding-bottom: 6rem;
  }
}
.footer__nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 700px) {
  .footer__nav {
    flex-direction: column;
  }
}
.footer__craft-act-logo {
  width: 13.2rem;
  height: 6.2rem;
}
.footer__craft-act-anchor {
  display: block;
}
.footer__craft-act-anchor g {
  fill: var(--color-black);
}
.footer__links {
  display: flex;
  padding-left: 2rem;
}
@media screen and (max-width: 700px) {
  .footer__links {
    padding-left: 0;
    padding-top: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .footer__links {
    flex-direction: column;
    text-align: center;
  }
}
.footer__link {
  padding-left: 3rem;
}
@media screen and (max-width: 700px) {
  .footer__link {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .footer__link {
    padding-left: 0;
    padding-bottom: 0.6rem;
  }
}
.footer__anchor {
  color: var(--color-black);
  font-size: 1.8rem;
  font-family: var(--font-main);
  font-weight: 400;
}
@media screen and (max-width: 700px) {
  .footer__anchor {
    font-size: 1.8rem;
  }
}
.footer__anchor:hover,
.footer__anchor:focus {
  color: var(--color-gold);
  text-decoration: underline;
}

/* Slideshow */

.slideshow-container {
  background-color: var(--color-white);
  position: relative;
  z-index: 3;
}
.dark .slideshow-container {
  background-color: var(--color-black);
}
.header + .slideshow-container {
  margin-top: -3rem;
}
@media screen and (max-width: 700px) {
  .header + .slideshow-container {
    margin-top: 0;
  }
}
.slideshow-container--sponsors {
  margin-top: -3rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 700px) {
  .slideshow-container--sponsors {
    margin-top: 0;
  }
}
.slideshow {
  margin-left: auto;
  margin-right: auto;
  max-width: 180rem;
}
.slideshow__slide {
  width: 100%;
}
.slideshow__wrapper {
  overflow: hidden;
  height: 0;
  padding-top: 43.75%;
  position: relative;
}
.slideshow__content {
  background-color: var(--color-gold);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
  z-index: 2;
}
.slideshow__content:after {
  background-color: var(--mask-color);
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.slideshow__image {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: auto;
}
.slideshow__slide--stretch .slideshow__image {
  top: auto;
  bottom: auto;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  max-height: none;
}
.slideshow__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-left: 10%;
  margin-right: auto;
  max-width: 80%;
  z-index: 2;
}
@media screen and (max-width: 1100px) {
  .slideshow__copy {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.slide__title,
.slide__subtitle {
  font-family: var(--font-mono);
  font-size: 4rem;
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (max-width: 1000px) {
  .slide__title,
  .slide__subtitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .slide__title,
  .slide__subtitle {
    font-size: 1.6rem;
  }
}
.slide__subtitle {
  margin-top: 2rem;
}
.slide__title span,
.slide__subtitle span {
  background-color: var(--color-black);
  padding: 0.4rem 1rem 0.6rem;
}

/* Tile grid */

.tile-grid-wrapper {
  overflow: hidden;
}
@media screen and (max-width: 700px) {
  .tile-grid-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.tile-grid {
  display: flex;
  flex-wrap: wrap;
  margin-right: -8rem;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .tile-grid {
    margin-right: -4rem;
  }
}
@media screen and (max-width: 700px) {
  .tile-grid {
    margin-right: -2rem;
  }
}
.tile-grid__tile {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .tile-grid__tile {
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}
.tile-grid__tile .scalable-box {
  background-color: var(--color-putty);
}
.dark .tile-grid__tile .scalable-box {
  background-color: var(--color-gold);
}
.home-news .tile-grid__tile .scalable-box {
  background-color: var(--color-black);
}
.tile-grid--1 .scalable-box:before {
  padding-top: 40%;
}
.tile-grid--2 .tile-grid__tile {
  width: 50%;
}
@media screen and (max-width: 900px) {
  .tile-grid--2 .tile-grid__tile {
    width: 100%;
  }
  .tile-grid--2 .scalable-box:before {
    padding-top: 40%;
  }
}
.tile-grid--4 .tile-grid__tile {
  width: 25%;
}
@media screen and (max-width: 900px) {
  .tile-grid--4 .tile-grid__tile {
    width: 50%;
  }
}
.tile-grid--4 .scalable-box:before {
  padding-top: 100%;
}
.tile-grid__anchor {
  display: block;
  text-decoration: none;
  margin-right: 8rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .tile-grid__anchor {
    margin-right: 4rem;
  }
}
@media screen and (max-width: 700px) {
  .tile-grid__anchor {
    margin-right: 2rem;
  }
}
.tile-grid__image {
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-decoration: none;
}
.tile-grid__image:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color-black);
  opacity: 0;
  transition: opacity 300ms ease;
}
.tile-grid__anchor:hover .tile-grid__image:after,
.tile-grid__anchor:focus .tile-grid__image:after {
  opacity: 0.4;
}
.tile-grid__title {
  color: var(--color-black);
  font-size: 2.2rem;
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.4;
  padding-top: 2rem;
}
.dark .tile-grid__title {
  color: var(--color-white);
}
@media screen and (max-width: 1200px) {
  .tile-grid__title {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 900px) {
  .tile-grid__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 700px) {
  .tile-grid__title {
    font-size: 1.6rem;
    padding-top: 1.6rem;
  }
}
.tile-grid__date {
  color: var(--color-black);
  display: block;
  font-size: 1.6rem;
  line-height: 1.4;
  padding-top: 1rem;
}
@media screen and (max-width: 900px) {
  .tile-grid__date {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 700px) {
  .tile-grid__date {
    font-size: 1rem;
    padding-top: 0.6rem;
  }
}
.tile-grid__label {
  background-color: var(--color-gold);
  color: var(--color-white);
  font-size: 1.4rem;
  display: inline-block;
  padding: 1.2rem 0.8rem 1.4rem;
  margin-bottom: 2rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

/* Advertisement */

.advertisements {
  padding-top: 5rem;
}
.advertisement {
  background-color: #eee;
  display: none;
  margin-left: auto;
  margin-right: auto;
  width: 970px;
  height: 250px;
}
.advertisement--visible {
  display: block;
}
.advertisement__banner,
.advertisement__rectangle,
.advertisement__mobile {
  display: none;
}
@media screen and (max-width: 1030px) {
  .advertisement {
    width: 728px;
    height: 90px;
  }
  .advertisement__banner {
    display: block;
  }
  .advertisement__billboard,
  .advertisement__rectangle,
  .advertisement__mobile {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .advertisement {
    width: 300px;
    height: 250px;
  }
  .advertisement__rectangle {
    display: block;
  }
  .advertisement__billboard,
  .advertisement__banner,
  .advertisement__mobile {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .advertisement {
    width: 300px;
    height: 50px;
  }
  .advertisement__mobile {
    display: block;
  }
  .advertisement__billboard,
  .advertisement__banner,
  .advertisement__rectangle {
    display: none;
  }
}

/* Scalable box */

.scalable-box {
  position: relative;
  overflow: hidden;
}
.scalable-box:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 50%;
}
@media screen and (max-width: 900px) {
  .scalable-box:before {
    padding-top: 100%;
  }
}
.scalable-box__content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  width: 100%;
}

/* Pagination */

.pagination {
  margin-top: 2rem;
}
.pagination__pages {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination__label {
  font-size: 1.3rem;
  padding-right: 1rem;
}
.pagination__number {
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}
.pagination__number span,
.pagination__number a {
  border-radius: 50%;
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  -webkit-font-feature-settings: "lnum";
          font-feature-settings: "lnum";
  font-weight: 400;
  width: 4rem;
  height: 4rem;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease;
}
.pagination__number a:hover,
.pagination__number a:focus {
  color: var(--color-white);
  background-color: var(--color-black);
}
.pagination__number span.current {
  background-color: var(--color-black);
  color: var(--color-white);
}

/* Flickity */

.flickity-enabled {
  position: relative;
}
.flickity-enabled:focus {
  outline: none;
}
.flickity-viewport {
  overflow: hidden;
  position: relative;
  max-height: 78rem !important;
  height: 100%;
}
.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.flickity-button {
  border-radius: 50%;
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 2rem;
  margin-top: -2rem;
  width: 4rem;
  height: 4rem;
  opacity: 0.6;
  transition: opacity 150ms ease;
}
@media screen and (max-width: 1000px) {
  .flickity-button {
    display: none;
  }
}
.slideshow--single .flickity-button {
  display: none;
}
.flickity-button:hover,
.flickity-button:focus {
  opacity: 1;
}
.flickity-button.next {
  left: auto;
  right: 2rem;
}
.flickity-button svg {
  fill: var(--color-white);
  transform: scale(0.8);
}
.flickity-page-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 3;
}
.slideshow--single .flickity-page-dots {
  display: none;
}
.flickity-page-dots .dot {
  border-radius: 50%;
  background-color: var(--color-white);
  cursor: pointer;
  width: 1.4rem;
  height: 1.4rem;
  margin-left: 0.4rem;
  margin-right: 0.4rem;
  opacity: 0.6;
}
@media screen and (max-width: 1000px) {
  .flickity-page-dots .dot {
    width: 1rem;
    height: 1rem;
  }
}
.flickity-page-dots .dot.is-selected {
  background-color: var(--color-gold);
  opacity: 1;
}

/* Home: section */

.home-section {
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .home-section {
    padding-bottom: 2rem;
  }
}
.home-section:first-of-type {
  padding-top: 4rem;
}
@media screen and (max-width: 900px) {
  .home-section:first-of-type {
    padding-top: 2rem;
  }
}

.home-section svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 80rem;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}

@media screen and (max-width: 900px) {
  .home-section svg {
    width: 40rem;
  }
}

/* Home: news */

.home-news {
  background-color: var(--color-gold);
  margin-top: -6rem;
  padding-top: 5rem;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .home-news {
    margin-top: 0;
  }
}
.home-news__text {
  border-bottom: 1px solid var(--color-white);
  display: flex;
}
@media screen and (max-width: 900px) {
  .home-news__text {
    border-bottom: 0;
    display: block;
  }
}
.home-news__heading {
  font-family: var(--font-mono);
  font-size: 4.4rem;
  line-height: 1;
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (max-width: 900px) {
  .home-news__heading {
    border-bottom: 1px solid var(--color-black);
    font-size: 3.6rem;
  }
}
.home-news__all {
  color: var(--color-white);
  font-size: 2.1rem;
  font-weight: 400;
  margin-left: auto;
}
@media screen and (max-width: 900px) {
  .home-news__all{
    font-size: 1.6rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.home-news__all a {
  text-decoration: none;
}

.home-news__all a {
  color: var(--color-white);
  font-family: var(--font-main);
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.home-news .tile-grid__text,
.home-section .tile-grid__text {
  border-bottom: 1px solid var(--color-white);
}

/* Calendar */

.calendar {
  overflow: hidden;
  position: relative;
  padding-top: 3rem;
}
.calendar__explore-all {
  font-size: 1.8rem;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1000px) {
  .calendar__explore-all {
    display: none;
  }
}
.calendar__week {
  border-bottom: 1px solid #ccc;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .calendar__week {
    flex-direction: column;
    border-bottom: 0;
  }
}
.calendar__week:last-of-type {
  border-bottom: none;
}
.calendar__day {
  border-right: 1px solid #ccc;
  padding: 2.4rem 1.8rem;
  position: relative;
  width: calc(100% / 7);
}
@media screen and (max-width: 1000px) {
  .calendar__day {
    border-bottom: 1px solid #ccc;
    border-right: 0;
    width: 100%;
  }
}
.calendar__day:last-of-type {
  border-right: none;
}
.calendar__day--weekend {
  background-color: #f8f8f8;
  width: calc(100% / 4.5);
}
@media screen and (max-width: 1000px) {
  .calendar__day--weekend {
    width: 100%;
  }
}
.calendar__day--expand {
  overflow: hidden;
  max-height: 85rem;
}
@media screen and (max-width: 1000px) {
  .calendar__day--expand {
    max-height: 60rem;
  }
}
.has-expanded-calendar-cell .calendar__day--expand {
  max-height: 100%;
}
@media screen and (max-width: 1000px) {
  .has-expanded-calendar-cell .calendar__day--expand {
    max-height: 60rem;
  }
}
.calendar__day--expand:after {
  content: "";
  background-image: linear-gradient(to top, rgba(248,248,248,1) 40%, rgba(248,248,248,0));
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 18rem;
}
.has-expanded-calendar-cell .calendar__day--expand:after {
  display: none;
}
@media screen and (max-width: 1000px) {
  .has-expanded-calendar-cell .calendar__day--expand:after {
    display: block;
  }
}
.calendar__show-more-button {
  background-color: var(--color-white);
  border: 1px solid #262726;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  position: absolute;
  top: 77rem;
  left: 2rem;
  right: 2rem;
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 600;
  padding-top: 1.6rem;
  padding-bottom: 1.4rem;
  width: calc(100% - 4rem);
  transition: color 150ms ease;
  z-index: 4;
}
@media screen and (max-width: 1000px) {
  .calendar__show-more-button {
    top: 52rem;
  }
}
.calendar__show-more-button em {
  color: var(--color-black);
  display: inline-block;
  font-size: 2.4rem;
  transform: translateY(0.2rem);
}
.calendar__show-more-button:hover,
.calendar__show-more-button:focus {
  color: var(--color-black);
}
.calendar__show-more-button--hide {
  display: none;
}
.has-expanded-calendar-cell .calendar__show-more-button {
  display: none;
}
@media screen and (max-width: 1000px) {
  .has-expanded-calendar-cell .calendar__show-more-button {
    display: block;
  }
  .has-expanded-calendar-cell .calendar__show-more-button--hide {
    display: none;
  }
}
.calendar__date {
  font-size: 2rem;
  font-weight: 600;
  display: block;
  padding-bottom: 2rem;
}
.calendar__day--passed > .calendar__date,
.calendar__date:only-child {
  opacity: 0.4;
}
.calendar__day--today {
  background-color: #eee;
}
.calendar__date em {
}
.calendar__date strong {
  color: var(--color-ocean-dark);
}
.calendar__day--passed > .calendar__events {
  opacity: 0.4;
}
.calendar__event {
  padding-bottom: 1.6rem;
}
.calendar__event:last-of-type {
  padding-bottom: 0;
}
.calendar__event-anchor {
  color: #262726;
  display: block;
  font-size: 1.5rem;
  position: relative;
  text-decoration: none;
}
.calendar__event-start-time {
  display: block;
  color: var(--color-black);
  padding-bottom: 0.2rem;
}
.calendar__event-anchor:hover .calendar__event-start-time,
.calendar__event-anchor:focus .calendar__event-start-time {
  color: var(--color-black);
}
.calendar__event--featured .calendar__event-start-time {
  font-weight: 400;
}
.calendar__event-title {
  color: #262726;
  display: block;
  font-size: 1.6rem;
  line-height: 1.4;
}
.calendar__event-anchor:hover .calendar__event-title,
.calendar__event-anchor:focus .calendar__event-title {
  color: var(--color-black);
  text-decoration: none;
}
.calendar__event--featured .calendar__event-title {
  font-weight: 400;
}

/* Calendar filtering */

.events__filter {
  margin-top: -4rem;
}
.events__filter-button {
  display: block;
  text-align: center;
  cursor: pointer;
}
.events__filter-button summary {
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 1rem;
}
details > summary {
  list-style: none;
}
.events__filter-button summary::marker {
  display: none;
}
.events__filter-button p:first-child {
  font-weight: 400;
  padding-bottom: 0;
}
.events__filter-button span:first-of-type {
  text-decoration: underline;
  color: var(--color-black);
}
.events__filter-button summary .arrow-down {
  display: none;
}
.events__filter-button[open] summary .arrow-down {
  display: inline;
}
.events__filter-button[open] summary .arrow-right {
  display: none;
}
.events__filter-tags {
  padding-bottom: 1rem;
  position: relative;
}
.events__filter-tag {
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}
@media screen and (max-width: 1000px) {
  .events__filter-tags {
    max-width: 100%;
  }
}
.events__filter-tag {
  display: inline-block;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  padding-bottom: 0.7rem;
}
.events__filter-tag label {
  font-size: 1.6rem;
  cursor: pointer;
}
.events__filter-tag--active label {
  font-weight: 400;
}
.events__filter-submit {
  margin-right: 1rem;
  margin-bottom: 3rem;
}
.events__filter-submit + a {
  font-size: 1.8rem;
}
.events__search {
  padding-bottom: 2rem;
  display: flex;
  justify-content: center;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .events__search {
    padding-bottom: 0;
  }
}
.events__search-input {
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
  border-radius: 0;
  font-size: 2rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  padding: 1.6rem 1.2rem 1.8rem;
  max-width: 50rem;
  width: 100%;
}
.events__search-input::placeholder {
  color: var(--color-black);
}
.events__search-button {
  border: 1px solid var(--color-white);
  border-radius: 0;
  background-color: var(--color-black);
  cursor: pointer;
  color: var(--color-white);
  text-align: center;
  font-size: 2rem;
  margin-left: 1rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease;
}
.events__search-button:hover,
.events__search-button:focus {
  background-color: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-black);
}
.events_search-clear {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .events_search-clear {
    margin-top: 2rem;
    margin-bottom: 0;
  }
}
.events__no-results {
  padding-top: 3rem;
}

/* Subscription modal */

.subscribe-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease;
  z-index: 50;
}
@media screen and (max-width: 600px) {
  .subscribe-modal {
    top: auto;
    bottom: 0;
  }
}
.subscribe-modal--open {
  opacity: 1;
  pointer-events: all;
}
.subscribe-modal__mask {
  background-color: rgba(0,0,0,0.2);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.subscribe-modal__form {
  background-color: var(--color-black);
  border: 1px solid var(--color-white);
  box-shadow: 0 0 3rem 0 rgba(0,0,0,0.4);
  padding: 5rem 4rem;
  position: relative;
  max-width: 80rem;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .subscribe-modal__form {
    border: none;
  }
}
.subscribe-modal__close {
  background-color: transparent;
  border-radius: 0;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem;
  width: 6.4rem;
  height: 6.3rem;
}
.subscribe-modal__close svg g {
  fill: var(--color-white)
}

/* Submission form */

.copy .acf-field {
  padding: 2rem 0 !important;
}
.copy .acf-field label {
  cursor: pointer;
  font-weight: 400 !important;
  font-size: 1.6rem;
}
.copy .acf-field input,
.copy .acf-field textarea {
  background-color: var(--color-white);
  border: 1px solid #262726;
  font-size: 1.6rem !important;
  font-family: var(--font-main);
  padding: 1.8rem 1.6rem 2rem !important;
  box-sizing: content-box !important;
  width: 95% !important;
}
.copy .acf-field p.description {
  font-size: 1.5rem !important;
}
.copy .acf-field span.message {
  font-weight: 400 !important;
}
.copy .acf-field ul {
  padding-top: 1rem;
}
.copy .acf-field li {
  padding-bottom: 1rem !important;
}
.copy .acf-field li:before {
  display: none !important;
}
.copy .acf-field li input {
  margin-right: 0.8rem !important;
}
.copy .acf-field li label {
  font-weight: 400 !important;
  font-size: 1.6rem !important;
}
.copy .acf-field li a {
  text-decoration: none !important;
}
.copy .acf-field li a:hover,
.copy .acf-field li a:focus {
  color: var(--color-white) !important;
}
.copy .acf-field .acf-checkbox-custom + input {
  padding: 1rem !important;
  width: 60% !important;
}

/* Directory */

.directory {
  padding-top: 2rem;
  margin-left: -18rem;
  margin-right: -18rem;
  width: calc(100% + 36rem) !important;
}
@media screen and (max-width: 1140px) {
  .directory {
    margin-left: 0;
    margin-right: 0;
    width: 100% !important;
  }
}
.directory__column {
  float: left;
  padding-right: 3rem;
  width: 25%;
}
@media screen and (max-width: 1140px) {
  .directory__column {
    padding-right: 2rem;
    width: 50%;
  }
}
h2.directory__heading {
  color: var(--color-black);
  font-size: 2rem;
  padding-bottom: 2rem;
}
ul.directory__list {
  padding-left: 0;
}
li.directory__item {
  padding-left: 0;
  padding-bottom: 2rem;
}
li.directory__item:last-of-type {
  padding-bottom: 4rem;
}
li.directory__item:before {
  display: none;
}
.directory__title,
a.directory__title {
  color: currentColor;
  display: block;
  hyphens: none;
  word-wrap: normal;
  word-break: normal;
}
.directory__description {
  display: block;
}

/* 2021 shapes */

.shape-2021-wrapper {
  position: relative;
}

.shape-2021 {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
  transform: scale(0.8);
  z-index: -1;
}

.shape-2021--1 {
  top: -6rem;
  right: 2rem;
}

.shape-2021--2 {
  bottom: 0;
  left: 2rem;
}

/* Acknowledgment of country */

.acknowledgment {
  background-color: var(--color-black);
  border-top: 1px solid var(--color-white);
  border-left: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  color: var(--color-white);
  display: none;
  font-size: 1.6rem;
  position: fixed;
  bottom: 0;
  left: 50%;
  margin-left: -30rem;
  padding: 2rem;
  width: 60rem;
  z-index: 5;
}

@media screen and (max-width: 700px) {
  .acknowledgment {
    font-size: 1.4rem;
    margin-left: 0;
    padding-right: 3rem;
    left: 0;
    right: 0;
    width: 100%;
  }
}

.acknowledgment--shown {
  display: block;
}

.acknowledgment p {
  padding-right: 4rem;
}

.acknowledgment__button {
  background-color: var(--color-black);
  border: none;
  cursor: pointer;
  padding: 1rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.acknowledgment__button svg g {
  fill: var(--color-white);
}