/*** FONTS ***/
@font-face {
  font-family: "akira";
  src: url("../fonts/Akira-Exp.woff2") format("woff2");
}

@font-face {
  font-family: "bold";
  src: url("../fonts/AlteHaasGroteskBold.woff2") format("woff2");
}

@font-face {
  font-family: "reg";
  src: url("../fonts/AlteHaasGroteskRegular.woff2") format("woff2");
}

/*** GENERAL ***/
:root {
  --px: 16px;
  --base: var(--px);
  --lhValue: 1.31;
  --lineheight: calc(var(--base) * var(--lhValue));
  --padd: 8px;

  --trans-opacity: opacity 0.15s;
  --trans-time-function: cubic-bezier(0.28, 0.37, 0.22, 1);

  --sideW: 500px;
  --mainW: calc(100vw - var(--sideW));

  --serif: times, serif;
  --display: 'akira', arial, sans-serif;
  --sans: 'bold', arial, sans-serif;
  --reg: 'reg', arial, sans-serif;
  --bodyBg: #000000;
  --textColor: #FFFFFF;
  --textGrey: hsl(220, 5%, 50%);
  --brandGreen: #00a640;
  --brandRed: #ff0000;
  --box-shadow: 0 15px 40px -12px rgb(0 0 0 / .25);

  --grid-col: 12;
  --grid-col-gap: 0;
  --grid-row-gap: 0;

  --flx-col: 12;
}

@media (min-width: 500px) {

}

@media (min-width: 800px) {
  :root {
    --sideW: 300px;
    --px: 17px;
  }
}

@media screen and (min-width: 1000px) {
  :root {
    --sideW: 360px;
    --px: 19px;
    --padd: 12px;
  }
}

@media screen and (min-width: 1200px) {
  :root {
    --sideW: 420px;
  }
}

@media screen and (min-width: 1400px) {
  :root {
    --sideW: 500px;
    --px: 21px;
  }
}

@media screen and (min-width: 1600px) {
  :root {
    --sideW: 500px;
    --px: 24px;
  }
}

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

::selection {
  background: var(--brandRed);
}

html {
  scroll-behavior: smooth;
  height: 100%;
  font-size: var(--base);
}

body {
  line-height: var(--lineheight);
  color: var(--textColor);
  font-family: var(--sans);
  background: var(--bodyBg);
  overflow-x: hidden;
  min-width: 1vw;
  width: 100vw;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: none;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-normal: 400;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

a:hover {
  color: var(--grey);
}

small {
  font-size: .875em;
}

.sml {
  font-size: .6em;
  line-height: 1.2;
}

.reg {
  font-family: var(--reg);
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: none;
}

em,
b,
strong,
i {
  font-weight: normal;
  font-style: normal;
}

p {
  margin: 0;
  margin-bottom: var(--lineheight);
}

p:last-of-type {
  margin-bottom: 0;
}

p a {
  transition: color .15s;
  transition-timing-function: var(--trans-time-function);
  color: rgba(255,255,255, .8);
}

p a:hover {
  color: rgba(255,255,255,.5);
}

svg {
  overflow: visible;
}

.t--red {
  color: var(--brandRed)
}

.t--green {
  color: var(--brandGreen)
}

header,
nav {
  z-index: 99;
}

.header--grad {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 150px;
  pointer-events: none;
  z-index: 98;
  background: linear-gradient(180deg, rgb(0% 0% 0%) 0%, rgb(0% 0% 0% / 0.9903926402016152) 6.25%, rgb(0% 0% 0% / 0.9619397662556434) 12.5%, rgb(0% 0% 0% / 0.9157348061512727) 18.75%, rgb(0% 0% 0% / 0.8535533905932737) 25%, rgb(0% 0% 0% / 0.7777851165098011) 31.25%, rgb(0% 0% 0% / 0.6913417161825449) 37.5%, rgb(0% 0% 0% / 0.5975451610080642) 43.75%, rgb(0% 0% 0% / 0.5) 50%, rgb(0% 0% 0% / 0.4024548389919359) 56.25%, rgb(0% 0% 0% / 0.3086582838174552) 62.5%, rgb(0% 0% 0% / 0.22221488349019902) 68.75%, rgb(0% 0% 0% / 0.14644660940672627) 75%, rgb(0% 0% 0% / 0.08426519384872733) 81.25%, rgb(0% 0% 0% / 0.03806023374435663) 87.5%, rgb(0% 0% 0% / 0.009607359798384785) 93.75%, rgb(0% 0% 0% / 0) 100%)
}

.menuBtn {
  position: fixed;
  bottom: 2em;
  left: calc(50% - 1.75em);
  width: 3.5em;
  height: 2.6em;
  border-radius: 50px;
  background-color: black;
  border: 1px solid var(--brandRed);
  transition: background-color .3s ease, border .3s ease;
  z-index: 999;
  padding: 0 10px;
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  cursor: pointer;
  outline: 0;
  box-shadow: 0 0 1rem 0 rgba(0,0,0,.5);
}

.menuBtnInner {
display: flex;
  height: 14px;
  position: relative;
  transition:
transform .3s var(--trans-time-function) 0s;
  width: 14px;
}

.menuBtn span::after {
  background: var(--brandRed);
  display: block;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 7px;
  transition:
transform .3s var(--trans-time-function) 0s, opacity .3s var(--trans-time-function);
  width: 14px;
}

.menuBtn span:nth-child(1) {
  transform: translateY(-2.5px);
}

.menuBtn span:nth-child(2) {
  transform: translateY(2.5px);
}

.menuBtn.menuOpen span:nth-child(1) {
  transform: translateY(0);
}

.menuBtn.menuOpen span:nth-child(2) {
  transform: translateY(0);
}

.menuBtn.menuOpen .menuBtnInner span:first-child::after {
  transform: rotate(45deg);
}

.menuBtn.menuOpen .menuBtnInner span:nth-child(2)::after {
  transform: rotate(-45deg);
}

.menuBtn:hover {
  background-color: var(--brandRed);
}

.menuBtn:hover span:after {
  background-color: white;
}


.navOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
  min-height: 500px;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 75%); 
  color: white;
  z-index: 998;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
}

#navOv.navOpen {
  opacity: 1;
  pointer-events: all;
}

.nav-close {
  position: absolute;
  top: calc(var(--padd)*1.5);
  right: calc(var(--padd)*1.5);
  cursor: pointer;
  width: 32px;
  height: 32px;
}
.nav-close:before, .nav-close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 32px;
  width: 1px;
  background-color: white;
}
.nav-close:before {
  transform: rotate(45deg);
}
.nav-close:after {
  transform: rotate(-45deg);
}
.nav-close:hover .nav-close:before, .nav-close:hover .nav-close:after {
  background-color: var(--brandRed);
}

.nav-links {
  font-size: 2em;
  line-height: 1.05;
  font-family: var(--bold);
  text-transform: uppercase;
  width: 100vw;
  padding-top: var(--padd);
  padding-bottom: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  letter-spacing: -.04em;
}
.nav-logo {
  max-width: 500px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--padd);
  padding-right: var(--padd);
  margin-bottom: .5em;
  margin-top: .25em;
}

.nav-links div {
  display: inline-block;
}
.nav-links a {
  color: white;
  transition: color .3s ease;
}

.nav-links a:hover {
  color: rgba(170, 170, 170, 1);
  transition: color .3s ease;
}

@media (min-width: 800px) {
  .menuBtn {
    left: unset;
    bottom: unset;
    top: calc(var(--padd) * 1.5);
    right: calc(var(--padd) * 1.8);
    height: 2em;
  }
}



.metal--logo {
  width: 100%;
  display: flex;
}

.metal--logo img {
  width: 100%;
}
.metal--mb {display: block;}
.metal--dt {display: none;}

.metal--sp {
  width: 100%;
  max-width: 800px;
  padding: var(--padd) var(--padd) 0 var(--padd);
}

@media (min-width:800px) {
  .metal--logo {
    justify-content: center;
  }

  .metal--logo img {
    width: 100%;
  }
  .metal--mb {display: none;}
  .metal--dt {display: block;}

  .metal--sp {
    padding: var(--padd) 4em 0 4em;
  }
}

@media (min-width:1300px) {
  .metal--mb {display: block;}
  .metal--dt {display: none;}
}

.section-splash {
  display: flex;
  width: 100%;
  height: 40dvh;
  position: relative;
  top: 0;
  left: 0;
}

.section-splash video {
  position: absolute;
  top: 4%;
  left: 4%;
  display: block;
  width: 92%;
  height: 92%;
  object-fit: contain;
}

/* SIDE */
@keyframes float {
  0% {
    transform: translatey(-.15em);
  }

  50% {
    transform: translatey(.15em);
  }

  100% {
    transform: translatey(-.15em);
  }
}

.side {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: auto;
  padding: var(--padd);
  z-index: 99;
}

.side header {
  text-transform: uppercase;
  font-size: .7em;
  text-align: center;
  letter-spacing: .02em;
  line-height: 1;
}

.sideTagline {
  font-size: .7em;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .02em;
  display: none;
  text-align: center;
  position: relative;
  z-index: 990;
  color: var(--brandGreen);
  transform: rotate(180deg);
}
@media (min-width: 800px) {
  .sideTagline {
    display: block;
  }
  .side header {
    color: var(--brandRed);
  }
}

.sideFtInner {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  gap: calc(var(--padd)/2);
}

.sfCol {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  text-transform: uppercase;
}

.ftLogos {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  row-gap: .5em;
  margin-top: calc(var(--lineheight)*4);
}

.footer-logo {
  width: 100%;
}

.footer-logo img {
  max-height: 2.4em;
  width: auto;
  margin: 0 .25em;
}

.footer-end-text {
  margin-top: calc(var(--lineheight)/2);
}

@media (min-width: 800px) {
  .side {
    position: sticky;
    top: 0;
    width: var(--sideW);
    height: 100dvh;
  }

  .section-splash {
    display: flex;
    width: 100%;
    height: 100dvh;
    position: absolute;
    top: 0;
    left: 0;
  }

  .footer-logo {
    width: unset;
  }
}


/* MAIN */
.main {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 99;
}
.non-home {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 99;
}

@media (min-width: 800px) {
  .main {
    width: var(--mainW);
    border-left: 1px solid var(--brandRed);
  }
}

.row {
  width: 100%;
}
.rspt {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(var(--grid-col), 1fr);
  grid-template-rows: 1fr auto;
  padding: var(--padd) var(--padd) calc(var(--padd)*3) var(--padd);
  column-gap: 8px;
}
.rspt:first-of-type {
  padding-bottom: var(--padd);
}
.rspt-logotype {
  grid-row: 1;
  grid-column: span 12;
  margin-bottom: 4em;
}
.rspt-backArrow {
  display: none;
  grid-row: 2;
  grid-column: 1 / span 2;
}
.rspt-backArrow svg {
  fill: var(--brandRed);
  transition: fill .15s ease-in-out;
  width: calc(2rem * var(--lhValue));
}
.rspt-backArrow svg:hover {
  fill: white;
  cursor: pointer;
}
.rspt-title {
  grid-row: 2;
  grid-column: span 12;
}

.rspt-title {
  text-transform: uppercase;
  letter-spacing: -.04em;
  font-size: 2rem;
  line-height: 1;
}

.rspt-footer {
  grid-column: span 12;
}

.rspt-block1, .rspt-block2, .rspt-block-dvdr {
  grid-column: span 12;
  margin-bottom: calc(var(--lineheight)*4);
}
.rspt-block-dvdr {
  border-top: 1px solid var(--brandRed);
  content: "";
  display: block;
  width: 100vw;
  margin-bottom: var(--padd);
  margin-right: calc(var(--padd) * -1);
  margin-left: calc(var(--padd)* -1);
}

@media (min-width: 800px) {
  .rspt-backArrow {
    display: flex;
    justify-content: center;
    align-content: center;
  }

   .rspt-title {
     grid-column: 3 / span 8;
     font-size: 2.375rem;
   }
   .rspt-logotype {
    grid-column: span 12;
    padding-left: calc(2em + (var(--padd)*2));
    padding-right: calc(2em + (var(--padd)*2));
  }

   .rspt-footer, .rspt-block1 {
    grid-column: 3 / span 8;
  }
  .rspt-block2 {
    grid-column: 3 / span 8;
  }
}



.rowSec {
  border-top: 1px solid var(--brandRed);
}

.rowSec:after {
  display: block;
  background: transparent;
  content: "";
  margin: 4em 0 0 0;
}
div.rspt:after {
  display: none;
}

.pageBlock {
  max-width: 80ch;
}
.pageBlock :is(h2,h3,h4) {
  margin-top: 2em;
  margin-bottom: var(--lineheight);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -.02em;
}
.pageBlock:first-of-type :is(h2,h3,h4):first-child {
  margin-top: 0;
}
.pageBlock h2 {font-size: 1.875em;color:var(--brandGreen);}
.pageBlock h3 {font-size: 1.3em;}
.pageBlock h4 {font-size: 1.15em;}

.imgGridBlock {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  gap: calc(var(--lineheight)*3);
}
.imgGridCell img {
  display: block;
  object-fit: contain;
  width: auto;
  height: auto;
  height: 100%;
  width: 100%;
}
.imgGridCap {
  font-size: .8em;
  line-height: var(--lhValue);
  margin-top: .25em;
  display: block;
  position: relative;
  padding-left: 1.2em;
}
.imgGridCap:before {
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--brandGreen);
}

.arc__logoGrid {
  display: flex;
  width: 100%;
  flex-flow: row wrap;
  margin: 0;
  padding: 0;
  gap: 1em;
}
.logoGrid__cell {
  height: 2.5em;
  display: flex;
  justify-content: center;
  position: relative;
}
.logoGrid__cell:after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.logoGrid__cell img {
  width: 100%;
  height: auto;
  filter: invert(1);
}

.hpIntro {
  border-top: 1px solid var(--brandRed);
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  margin-bottom: calc(var(--lineheight)*4);
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.rowPadd {
  padding: var(--padd);
}

@media (min-width: 800px) {
  .hpIntro .textBlock {
    font-size: 1em;
  }
  .hpIntro {
    border-top: none;
  }
}

.secHd {
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: .875em;
  line-height: 1;
  padding: var(--padd);
  letter-spacing: -.04em;
  color: var(--brandGreen);
}

.text2col {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(var(--grid-col), 1fr);
  padding: 0 var(--padd);
  gap: 12px;
}

.text2col div {
  grid-column: span 12;
}

.text2col div p {
  max-width: 60ch;
}

@media (min-width: 800px) {
  .hpIntro {
    margin-bottom: 4em;
  }
  .secHd {
    font-size: 2.37rem;
  }
}

@media (min-width: 1000px) {
  .text2col div {
    grid-column: span 6;
  }
}

.mainEnd {
  padding: var(--padd);
  font-size: .625em;
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 9em;
  padding-top: var(--padd);
  border-top: 1px solid var(--brandRed);
  margin-bottom: 0;
}

.mainEnd a:hover {
  color: var(--brandRed);
}
@media (min-width: 800px) {
  .pgEnd--dt {
    display: none;
  }
}

.nextEvent, .rowFest {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(var(--grid-col), 1fr);
  grid-template-rows: 1fr auto min-content;
  padding: var(--padd) var(--padd) calc(var(--padd)*3) var(--padd);
  column-gap: 8px;
  transition: color .3s ease;
  background-color: black;
  position: relative;
  border-top: 1px solid var(--brandRed);
}

/*:is(.nextEvent, .rowFest):before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--brandRed);
  position: absolute;
  left: var(--padd);
  transition: background-color .3s ease;
}*/

.nextEvent:hover {
  color: var(--brandRed);
}

:is(.nextEvent, .rowFest):hover:before {
  background-color: var(--brandRed);
}

.ne--title {
  grid-column: span 8;
  grid-row: 1;
  font-size: 1.625em;
  line-height: .9;
  margin-bottom: 1em;
}

.ne--datLoc,
.ne--meta {
  grid-column: span 4;
  grid-row: 2;
  font-size: .7em;
  line-height: 1.1;
  text-transform: uppercase;
  transition: color .3s ease;
}
.ne--meta {
  margin-top: 8px;
}

.ne--datLoc {
  color: rgb(170, 170, 170);
}

.nextEvent:hover :is(.ne--datLoc, .ne--meta) {
  color: var(--brandRed);
}

.ne--thumb {
  grid-column: 11 / span 2;
  grid-row: span 2;
  display: flex;
  aspect-ratio: 1 / 1;
  justify-content: end;
}

.ne--thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 800px) {
  .ne--thumb {
    grid-column: 11 / span 2;
  }
}

/* festival */
.yearHd {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(var(--grid-col), 1fr);
  column-gap: 8px;
}

.rowArc {
  grid-template-rows: auto auto auto;
  grid-column: span 12;
}
.rowArc .rf--thumb {
  grid-row: 1 / span 2;
}
.ra--date {
  grid-row: 1;
  grid-column: 1 / span 10;
  font-size: .815em;
  line-height: var(--lhValue);
  color: var(--brandGreen);
  transition: color .3s ease;
}
.rowArc:hover .ra--date {
  color: var(--brandRed)
}
.ra--title {
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: -.04em;
  line-height: 1;
  grid-row: 2;
  grid-column: 1 / span 10;
}
.ra--titleInner {
  max-width: 28ch;
}
.ra--meta {
  grid-row: 3;
  grid-column: span 10;
  font-size: .815em;
  line-height: var(--lhValue);
  margin-top: 12px;
}
.ra--metaInner {
  max-width: 60ch;
}
.ra--mI--date {
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-top: 8px;
}

@media (min-width:800px) {
  .ra--date {
    grid-row: 1;
    grid-column: 1 / span 3;
  }
  .ra--title {
    grid-row: 1;
    grid-column: 3 / span 8;
    font-size: 1.9rem;
  }
  .ra--meta {
    grid-row: 2;
    grid-column: 3 / span 8;
  }
}



.rowFest:hover {
  cursor: pointer;
  color: var(--brandRed)
}

.rf--title {
  grid-row: 2;
  grid-column: span 10;
  margin-top: 1em;
  font-size: 1.625em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -.03em;
}

.rf--date,
.rf--loca,
.rf--ticket {
  grid-row: 1;
  font-size: .7em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--brandGreen);
}

.rowFest:hover :is(.rf--date,.rf--loca,.rf--ticket) {
  color: var(--brandRed);
}

.rf--date,.rf--ticket {
  grid-column: span 3;
}
.rf--loca {
  grid-column: span 4;
}

.rf--thumb {
  grid-row-start: span 2;
  grid-column: 11 / span 2;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: end;
  position: relative;
  transition: transform .3s ease;
}
.rf--thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter .3s ease;
  filter: grayscale(0) contrast(100%);
}

:is(.nextEvent,.rowFest):hover .rf--thumb img {
  filter: grayscale(1) contrast(150%);
}

.eventIntro {
  padding: 0 var(--padd) var(--padd) var(--padd);
}

.rf--thumb::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  background-color: var(--brandRed);
  mix-blend-mode: lighten;
  transition: opacity .3s ease;
}


:is(.nextEvent,.rowFest):hover .rf--thumb::after {
  opacity: 1;
}

.rf--meta {
  grid-row: 3;
  grid-column: span 12;
  font-size: .815em;
  line-height: var(--lhValue);
  margin-top: 8px;
}
:is(.rf--date,.rf--loca,.rf--ticket,.rf--meta) {
  transition: color .3s ease;
}

:is(.rowFest:hover,.nextEvent:hover) :is(.rf--date,.rf--loca,.rf--ticket,.rf--meta) {
  color: var(--brandRed)
}

@media (min-width:800px) {
  .rf--meta {
    grid-column: span 8;
  }
  .rf--thumb {
    grid-row-start: span 3;
  }
}

/* popups */
.eventOv {
  z-index: 1002;
  transition: opacity .3s ease;
  position: fixed;
  height: 100dvh;
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  pointer-events: none;
  transform-style: preserve-3d;
  opacity: 0;
  width: 100vw;
}

.eventOv--addImg {
  padding-top: 4em;
}

.eventOv--inner {
  width: 100%;
  min-height: 100dvh;
  position: relative;
  transform: translate(-50%);
  max-width: 640px;
  margin: 0 0 0 50%;
  background-color: rgba(0,0,0,0);
  padding: var(--padd);
}
@media (min-width: 800px) {
  .eventOv--inner {
    margin: 1em 0 1em 50%;
    min-height: unset;
  }
}

.eventOv--inner h2 {
  color: var(--brandGreen);
}

.eventOv-active {
  pointer-events: all;
  opacity: 1;
}

#dimmer {
  content: "";
  width: 100vw;
  height: 100dvh;
  z-index: 1001;
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0,.3);
  backdrop-filter: blur(30px);
  transition: opacity .3s ease;
  overflow-x: hidden;
}

.eventOv-dim {
  opacity: 1 !important;
  pointer-events: all !important;
}

.eventOv--close {
  font-size: .8em;
  display: block;
  text-transform: uppercase;
  position: sticky;
  top: 8px;
  width: 100%;
  padding: .5em;
  text-align: center;
  border-top: 1px solid var(--brandRed);
  border-bottom: 1px solid var(--brandRed);
  background-color: rgba(0,0,0,.3);
  backdrop-filter: blur(30px);
  transition: background-color .3s ease, color .3s ease;
}

.eventOv--inner h2 {
  font-size: 2em;
  text-transform: uppercase;
  text-align: center;
  padding: 1.5em .5em;
  line-height: 1;
  letter-spacing: -.04em;
}

.eventOv--inner p {
  font-size: .9125em;
  line-height: var(--lhValue);
}

.eventOv-featuredImg {
  margin-bottom: var(--padd);
}
.eventOv-featuredImg img {
  display: block;
}

.eventOv--meta {
  padding: 8px 0;
  border-top: 1px solid var(--brandRed);
  padding-bottom: 4em;
  display: grid;
  grid-template-columns: repeat(var(--grid-col),1fr);
  text-transform: uppercase;
  font-size: .8em;
  line-height: 1.1;
  margin-bottom: 8px;
  column-gap: var(--padd);
}
.eventOv--cta {
  display: block;
  width: 100%;
  background-color: rgba(0,0,0,0);
  transition: color .3s ease, background-color .3s ease;
  margin-top: 1em;
  padding: 4em 0;
  border-top: 1px solid var(--brandRed);
  border-bottom: 1px solid var(--brandRed);
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 1.1;
}
.eventOv--meta-1 {
  grid-column: span 4;
  color: var(--brandGreen);
}
.eventOv--meta-1:last-of-type {

}
.eventOv--cta:hover, .eventOv--close:hover {
  background-color: rgba(0,0,0,.5);
  color: var(--brandGreen)
}

/* archive */
.arcYearNum,.arcYearIntro {
  grid-column: span 12;
}
.arcYearNum {
  color: var(--brandGreen);
}
.arcSec-standfirst {
  padding: var(--padd);
  line-height: 1.25;
}

@media (min-width:800px) {
  .arcYearNum, .arcYearIntro {
    grid-column: 3 / span 8;
  }
}