:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: #10110f;
  color: #f2f2eb;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-width: 0;
  background:
    radial-gradient(circle at 100% 0, #242b1d 0, transparent 36rem), #10110f;
}
a {
  color: inherit;
}
.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 10;
  background: #c6ff35;
  color: #10110f;
  padding: 12px;
}
.appBanner,
.siteHeader,
footer {
  max-width: 1200px;
  margin: auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.appBanner {
  font-size: 13px;
  border-bottom: 1px solid #383b34;
}
.storeLink,
.actionLink,
.expandButton {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.storeLink {
  color: #c6ff35;
  white-space: nowrap;
}
.siteHeader {
  padding-block: 22px;
}
.brand {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-decoration: none;
  font-weight: 800;
}
main {
  max-width: 1200px;
  padding: 12px 24px 72px;
  margin: auto;
}
#venue-profile {
  display: grid;
  gap: 36px;
}
.venueHero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  min-height: 350px;
  border-bottom: 1px solid #474a43;
  gap: 28px;
  align-items: end;
}
.heroCopy {
  padding: 28px 0 36px;
}
.eyebrow {
  color: #c6ff35;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 700;
}
h1 {
  font-size: clamp(2.6rem, 7vw, 6.8rem);
  line-height: 0.92;
  margin: 14px 0;
  overflow-wrap: anywhere;
}
h2 {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
h3 {
  margin: 0;
  font-size: 1.15rem;
  overflow-wrap: anywhere;
}
.context,
.muted {
  color: #b6b7ad;
}
.description {
  max-width: 62ch;
  line-height: 1.6;
}
.venueImage {
  width: min(100%, 280px);
  aspect-ratio: 1;
  object-fit: contain;
  justify-self: end;
  border-radius: 2px;
  background: #20221d;
}
.externalActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.actionLink,
.expandButton {
  border: 1px solid #62665b;
  padding: 0 14px;
  text-decoration: none;
  background: transparent;
  color: #f2f2eb;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
}
.actionLink:hover,
.expandButton:hover {
  border-color: #c6ff35;
  color: #c6ff35;
}
:focus-visible {
  outline: 3px solid #c6ff35;
  outline-offset: 3px;
}
.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: #3b3e36;
}
.fact {
  padding: 20px;
  background: #181a17;
  min-width: 0;
}
dt {
  color: #c6ff35;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
dd {
  margin: 8px 0 0;
  line-height: 1.6;
  white-space: pre-line;
  overflow-wrap: anywhere;
}
.programSection {
  display: grid;
  gap: 12px;
}
.programList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.programCard {
  min-width: 0;
  background: #1b1d19;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 150px;
}
.programPoster {
  width: 112px;
  height: 150px;
  object-fit: cover;
  background: #262922;
}
.programBody {
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 8px;
}
.performers {
  margin: 0;
  color: #d2d4c9;
  overflow-wrap: anywhere;
}
.textLink {
  color: #c6ff35;
  margin-top: 8px;
}
footer {
  border-top: 1px solid #383b34;
  justify-content: flex-start;
  font-size: 13px;
}
.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
@media (max-width: 640px) {
  .appBanner,
  .siteHeader,
  footer,
  main {
    padding-inline: 16px;
  }
  .bannerCopy {
    display: none;
  }
  .venueHero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .heroCopy {
    padding-bottom: 8px;
  }
  .venueImage {
    width: min(100%, 220px);
    justify-self: start;
  }
  .facts,
  .programList {
    grid-template-columns: 1fr;
  }
  .programCard {
    grid-template-columns: 88px minmax(0, 1fr);
    min-height: 132px;
  }
  .programPoster {
    width: 88px;
    height: 132px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
