/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
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:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* latin-ext */
@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/Space-Mono-Regular-Ext.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/Space-Mono-Regular.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/Space-Mono-Bold.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/Space-Mono-Bold.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
}

.visually-shown {
  position: inherit !important;
  overflow: auto;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
}

.skip-link:focus {
  position: inherit !important;
  overflow: auto;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  background-color: var(--background-color);
  color: var(--foreground-color);
  display: block;
  padding: 8px;
  text-align: center;
  transition: none;
  width: 100%;
  z-index: 10000;
}

:root {
  --background-color: #FCFCFC;
  --foreground-color: #111111;
  --accent-color: #1d4ed8;
  --on-background-color: #DDDDDD;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #111111;
    --foreground-color: #FCFCFC;
    --accent-color: #3B82F6;
    --on-background-color: #737373;
  }
}
body {
  background: var(--background-color);
  color: var(--foreground-color);
  font-family: "Space Mono", monospace;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.4em;
  margin: 0;
  padding: 0;
}

form, input, select, textarea, button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}

main {
  box-sizing: border-box;
  outline: none;
}

img {
  border: 0;
  display: inline-block;
  max-width: 100%;
}

svg {
  display: inline-block;
  fill: currentColor;
}

a {
  color: var(--accent-color);
  text-decoration: none;
}

:focus-visible {
  outline: thin dotted;
}

@media (hover: hover) {
  a:hover {
    text-decoration: underline;
  }
}
b, strong {
  font-weight: bold;
}

em, i {
  font-style: italic;
}

.container {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1440px;
  min-width: calc(320px - 10%);
  width: 90%;
}

header {
  padding: 1.5em 0;
}
@media screen and (min-width: 767px) {
  header {
    padding: 2em 0;
  }
}
header .logo {
  /*
  span {
      @include visually-hidden;

      @include breakpoint(md) {
          @include visually-shown;
          display: inline-block;
          font-weight: 700;
          margin-left: 1em;
          text-transform: uppercase;
      }
  }
  */
}
header .logo a {
  align-items: center;
  display: flex;
}
header .logo svg {
  display: block;
  fill: currentColor;
  width: 60px;
}
@media screen and (min-width: 992px) {
  header .logo svg {
    width: 80px;
  }
}
header nav {
  display: none;
}
@media screen and (min-width: 992px) {
  header nav {
    display: block;
  }
}
header nav.active {
  display: block;
}
header li {
  display: inline-block;
  padding-left: 1em;
}
@media screen and (min-width: 767px) {
  header li {
    padding-left: 2em;
  }
}
header a {
  color: var(--foreground-color);
}

.header-content {
  align-items: center;
  display: flex;
}
.header-content nav {
  margin-left: auto;
}

.mobile-menu-open {
  background-color: transparent;
  border: 1px solid var(--foreground-color);
  padding: 0.7em 1em;
  display: block;
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .mobile-menu-open {
    display: none;
  }
}

.mobile-menu-close {
  background-color: transparent;
  border: 1px solid var(--foreground-color);
  padding: 0.7em 1em;
  display: block;
  margin-left: auto;
}

.mobile-menu {
  background-color: var(--background-color);
  box-sizing: border-box;
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}
.mobile-menu.active {
  display: block;
}
@media screen and (min-width: 992px) {
  .mobile-menu.active {
    display: none !important;
  }
}
@media screen and (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu ul {
  font-size: 24px;
  list-style: none;
  margin: 0 auto;
  padding: 0.7em 0;
}
.mobile-menu li {
  display: block;
  margin-bottom: 1em;
  padding: 0;
}
.mobile-menu button {
  background-color: transparent;
  border: 1px solid var(--foreground-color);
}

.mobile-menu-header {
  padding: 1.5em 0;
}
@media screen and (min-width: 767px) {
  .mobile-menu-header {
    padding: 2em 0;
  }
}
.mobile-menu-header .logo {
  color: var(--foreground-color);
}
.mobile-menu-header .logo svg {
  display: block;
  width: 60px;
}
.mobile-menu-header button {
  margin-left: auto;
}

.mobile-header-content {
  align-items: center;
  display: flex;
}
.mobile-header-content nav {
  margin-left: auto;
}

footer {
  padding: 4em 0 2em 0;
}
footer ul {
  justify-content: center;
  -moz-column-gap: 1em;
       column-gap: 1em;
  display: flex;
  flex-wrap: wrap;
  line-height: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  row-gap: 1em;
}
@media screen and (min-width: 767px) {
  footer ul {
    -moz-column-gap: 1.4em;
         column-gap: 1.4em;
  }
}
footer a {
  color: var(--foreground-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  row-gap: 1.4em;
}
@media screen and (min-width: 767px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    justify-items: start;
  }
}

.footer-links {
  display: none;
}
@media screen and (min-width: 767px) {
  .footer-links {
    display: block;
    grid-column: 1;
  }
}

@media screen and (min-width: 767px) {
  .footer-social {
    grid-column: 2;
    justify-self: end;
  }
}

.footer-legal {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  row-gap: 1.4em;
}
@media screen and (min-width: 767px) {
  .footer-legal {
    -moz-column-gap: 1.4em;
         column-gap: 1.4em;
    flex-direction: row;
    grid-row: 2;
    grid-column: 1/span 2;
    justify-self: end;
  }
}
.footer-legal .copyright {
  font-family: monospace;
}
.footer-legal p {
  line-height: 1;
  text-align: center;
}

.pagination {
  align-items: center;
  justify-content: center;
  display: flex;
}
.pagination a {
  text-decoration: underline;
}

.pagination-pages {
  display: flex;
  flex: 1;
  justify-content: center;
}
.pagination-pages .pagination-page {
  padding: 8px;
}

.pagination-page {
  padding: 8px 0;
}

.pagination-inactive {
  color: var(--foreground-color);
}

.pagination-previous {
  justify-self: flex-start;
}

.pagination-next {
  justify-self: flex-end;
}

.rich-text h1 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 1.2em;
}
.rich-text h2 {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 1.2em;
}
.rich-text p {
  margin: 1.4em 0;
}
.rich-text a {
  text-decoration: underline;
}

.about {
  padding: 1em 0;
}

.about-content {
  margin: 0 auto;
  max-width: 65ch;
}

.accessibility {
  padding: 1em 0;
}

.accessibility-content {
  margin: 0 auto;
  max-width: 65ch;
}

.artists-header {
  margin-bottom: 2em;
  padding: 1em 0;
  text-align: center;
  width: 100%;
}
.artists-header h1 {
  font-size: 24px;
  line-height: 1em;
}
.artists-header h2 {
  font-size: 24px;
  line-height: 1em;
}
.artists-header p {
  margin: 1em auto 0 auto;
  max-width: 65ch;
}

@media screen and (min-width: 767px) {
  .artists-index {
    -moz-columns: 3;
         columns: 3;
    -moz-column-gap: 2em;
         column-gap: 2em;
    max-width: 768px;
    margin: 0 auto;
  }
}

.artists-group {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  padding-bottom: 2em;
  position: relative;
}
.artists-group h2 {
  border-bottom: 2px solid var(--on-background-color);
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 0.4em;
  margin-bottom: 1em;
}

.artists-lists li {
  align-items: center;
  color: var(--foreground-color);
  display: flex;
  line-height: 1.2em;
  margin-bottom: 1em;
}
.artists-lists span {
  font-size: 10px;
  margin-left: 4px;
}
.artists-lists a {
  color: var(--foreground-color);
}

.artist-detail {
  text-align: center;
  padding: 1em 0;
}

.artist-detail-name {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.1em;
  margin-bottom: 10px;
}

.artist-detail-genre {
  display: flex;
  justify-content: center;
  margin-bottom: 2em;
}
.artist-detail-genre span {
  background-color: var(--on-background-color);
  display: inline-block;
  font-size: 12px;
  line-height: 1em;
  margin: 0 0.2em;
  padding: 6px;
  text-transform: uppercase;
}

.artist-detail-description {
  margin: 0 auto 2em auto;
  max-width: 70ch;
}

.artist-detail-website {
  background: #06c;
  color: #fff;
  display: inline-block;
  padding: 1em 2em;
  text-decoration: none;
}

#calendar {
  width: 952px;
  float: left;
}

#calendar .nav {
  width: 100%;
  margin: 0 0 10px 0;
  float: left;
}

#calendar .nav .month {
  font-weight: bold;
  font-size: 18px;
  float: left;
}

#calendar .nav .monthnav {
  font-size: 11px;
  float: right;
}

#calendar .nav .monthnav a {
  color: #333;
  text-decoration: none;
}

#calendar .nav .monthnav a:hover {
  color: #333;
  text-decoration: underline;
}

#calendar table {
  width: 100%;
  border-collapse: collapse;
}

#calendar th.weekday {
  width: 14%;
  border: 1px dotted var(--on-background-color);
  font-size: 10px;
  font-weight: bold;
  text-align: center;
}

#calendar table td {
  border: 1px solid var(--on-background-color);
  vertical-align: top;
}

#calendar .day {
  width: 14%;
  height: 150px;
}

#calendar .day .wrapper {
  padding-top: 30px;
  position: relative;
}

#calendar .day span {
  width: 14px;
  background-color: var(--foreground-color);
  font-size: 10px;
  text-align: center;
  padding: 1px;
  margin-bottom: 10px;
  top: 0;
  left: 0;
  position: absolute;
  display: block;
}

#calendar .on {
  background-color: var(--dark-color);
}

#calendar .off {
  background-image: url("../images/empty.gif");
}

#calendar .current {
  background-color: #ffc;
}

#calendar .event {
  font-size: 11px;
  line-height: 1.2em;
  padding: 0 10px 10px 10px;
}

#calendar .event h3 {
  font-size: 14px;
  line-height: 1em;
  margin-bottom: 5px;
}

#calendar .event a {
  color: #D00;
  font-weight: bold;
  text-decoration: none;
}

#calendar .event a:hover {
  text-decoration: underline;
}

.contact {
  padding: 1em 0;
}

.contact-content {
  margin: 0 auto;
  max-width: 65ch;
}

.error {
  padding: 2em 0;
  text-align: center;
}
.error h1 {
  font-size: 24px;
  line-height: 1;
}

.news-header {
  padding: 1em;
  text-align: center;
}
.news-header h1 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1em;
}

.news {
  margin: 0 auto;
  max-width: 65ch;
}

.news .post {
  position: relative;
}

.news .post-excerpt {
  border-bottom: 2px solid var(--on-background-color);
  padding: 1em 0 2em 0;
  margin-bottom: 2em;
}

.news .post-excerpt .post-title {
  font-size: 24px;
  line-height: 1.2em;
  margin-bottom: 10px;
}

.news .post-excerpt .post-title a {
  color: var(--foreground-color);
}

.news .post-full {
  padding: 1em 0;
}

.news .post-full .post-title {
  font-size: 24px;
  line-height: 1.2em;
  margin-bottom: 10px;
}

.news .post-date {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 2em;
}

.news .post-image {
  margin-bottom: 2em;
}
.news .post-image img {
  display: block;
}

.news .post p {
  margin-top: 20px;
}

.news .post-body a {
  text-decoration: underline;
}
.news .post-body blockquote {
  border-left: 1px solid var(--on-background-color);
  padding-left: 20px;
}

.privacy {
  padding: 1em 0;
}

.privacy-content {
  margin: 0 auto;
  max-width: 65ch;
}

.show-detail {
  padding: 1em 0 2em 0;
}
@media screen and (min-width: 767px) {
  .show-detail {
    -moz-column-gap: 2em;
         column-gap: 2em;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.show-detail-image {
  margin-bottom: 2em;
}
@media screen and (min-width: 767px) {
  .show-detail-image {
    margin-bottom: 0;
  }
}
.show-detail-image img {
  display: block;
}

.show-detail-main {
  font-size: 18px;
}

.show-detail-headliner {
  font-size: 24px;
  line-height: 1.1em;
  margin-bottom: 1em;
}

.show-detail-date {
  margin: 0;
}

.show-detail-venue a {
  color: #111111;
}

.show-detail-tags {
  margin-top: 1em;
}
.show-detail-tags span {
  background-color: var(--on-background-color);
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  padding: 6px;
  text-transform: uppercase;
}

.show-detail-tickets {
  margin: 2.4em 0;
}
.show-detail-tickets a, .show-detail-tickets button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #1d4ed8;
  border: 0;
  color: #fff;
  display: inline-block;
  font-size: 20px;
  padding: 1em 2em;
  text-decoration: none;
}
.show-detail-tickets button {
  background: #666;
}

.show-detail-additional {
  -moz-column-gap: 2em;
       column-gap: 2em;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2em;
}
@media screen and (min-width: 767px) {
  .show-detail-additional {
    grid-template-columns: 1fr 1fr;
  }
}
.show-detail-additional .additional-heading {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 1.2em;
  text-transform: uppercase;
}

@media screen and (min-width: 767px) {
  .show-detail-support {
    grid-column: 1/span 2;
  }
}

@media screen and (min-width: 767px) {
  .show-detail-details {
    grid-column: 1/span 2;
  }
}

.show-detail-venue-address address {
  line-height: 1.4em;
}
.show-detail-venue-address .directions {
  display: inline-block;
  font-size: 14px;
  margin-top: 1em;
  text-decoration: underline;
}

.show-detail-info ul {
  line-height: 1.4em;
}

.show-detail-other-shows {
  padding: 2em 0;
}
.show-detail-other-shows .other-shows-heading {
  font-size: 24px;
  margin-bottom: 2.4em;
}
.show-detail-other-shows .other-shows-heading a {
  color: var(--foreground-color);
}
@media screen and (min-width: 767px) {
  .show-detail-other-shows .show-item-headliner {
    grid-column: span 2;
  }
}
@media screen and (min-width: 1200px) {
  .show-detail-other-shows .show-item-headliner {
    grid-column: span 8;
  }
}
.show-detail-other-shows .show-item-venue {
  display: none;
}

.shows-list {
  display: flex;
  flex-direction: column;
}

.show-item {
  border-bottom: 1px solid var(--on-background-color);
  padding: 1em 0;
}
@media screen and (min-width: 767px) {
  .show-item {
    -moz-column-gap: 2em;
         column-gap: 2em;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1200px) {
  .show-item {
    font-size: 18px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

@media screen and (max-width: 767px) {
  .show-item-date {
    font-size: initial;
  }
}
@media screen and (min-width: 1200px) {
  .show-item-date {
    grid-column: span 2;
  }
}

@media screen and (min-width: 1200px) {
  .show-item-headliner {
    grid-column: span 4;
  }
}
.show-item-headliner a {
  color: var(--foreground-color);
}

@media screen and (min-width: 1200px) {
  .show-item-venue {
    grid-column: span 4;
  }
}
.show-item-venue a {
  color: var(--foreground-color);
}

.show-item-tickets {
  margin-top: 1em;
}
@media screen and (min-width: 767px) {
  .show-item-tickets {
    margin-top: 0;
    text-align: right;
  }
}
@media screen and (min-width: 1200px) {
  .show-item-tickets {
    grid-column: span 2;
  }
}

.shows-none {
  margin-top: 2em;
}

.shows-more {
  display: flex;
  justify-content: center;
  margin-top: 2em;
}

.shows-pagination {
  margin-top: 2em;
}

.venue-detail {
  padding: 1em 0 2em 0;
}
.venue-detail-image {
  margin-bottom: 2em;
}
@media screen and (min-width: 767px) {
  .venue-detail-image {
    margin-bottom: 0;
  }
}
.venue-detail-image img {
  display: block;
}

@media screen and (min-width: 992px) {
  .venue-detail-content {
    width: 50%;
  }
}

.venue-detail-name {
  font-size: 24px;
  line-height: 1.1em;
  margin-bottom: 1em;
}

.venue-detail-description {
  line-height: 1.4em;
  max-width: 65ch;
}

.venue-detail-website {
  margin: 2.4em 0;
}
.venue-detail-website a, .venue-detail-website button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #1d4ed8;
  border: 0;
  color: #fff;
  display: inline-block;
  font-size: 20px;
  padding: 1em 2em;
  text-decoration: none;
}
.venue-detail-website button {
  background: #666;
}

.venue-detail-additional {
  -moz-column-gap: 1em;
       column-gap: 1em;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2em;
}
@media screen and (min-width: 767px) {
  .venue-detail-additional {
    grid-template-columns: 1fr 1fr;
  }
}
.venue-detail-additional .additional-heading {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 1.2em;
  text-transform: uppercase;
}

.venue-detail-address address {
  line-height: 1.4em;
}
.venue-detail-address .directions {
  display: inline-block;
  font-size: 14px;
  margin-top: 1em;
  text-decoration: underline;
}

.venue-detail-info ul {
  line-height: 1.4em;
}

.venue-detail-upcoming-shows {
  padding: 2em 0;
}
.venue-detail-upcoming-shows .upcoming-shows-heading {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 2.4em;
}
@media screen and (min-width: 767px) {
  .venue-detail-upcoming-shows .show-item-headliner {
    grid-column: span 2;
  }
}
@media screen and (min-width: 1200px) {
  .venue-detail-upcoming-shows .show-item-headliner {
    grid-column: span 8;
  }
}
.venue-detail-upcoming-shows .show-item-venue {
  display: none;
}

.venues-header {
  margin-bottom: 2em;
  padding: 1em 0;
  text-align: center;
  width: 100%;
}
.venues-header h1 {
  font-size: 24px;
  line-height: 1em;
}
.venues-header p {
  margin: 1em auto 0 auto;
  max-width: 65ch;
}

@media screen and (min-width: 767px) {
  .venues-index {
    -moz-columns: 3;
         columns: 3;
    -moz-column-gap: 2em;
         column-gap: 2em;
    max-width: 768px;
    margin: 0 auto;
  }
}

.venues-group {
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
  padding-bottom: 2em;
}
.venues-group h2 {
  border-bottom: 2px solid var(--on-background-color);
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 0.4em;
  margin-bottom: 1em;
}

.venues-lists li {
  line-height: 1.2em;
  margin-bottom: 1em;
}
.venues-lists a {
  color: var(--foreground-color);
}
