/*nav bar - up to 959px*/

.navBar {
  filter: drop-shadow(0 0.5rem 1rem rgba(0, 0, 0, 0.15));
}

.logo {
  width: min(8rem, 18vw);
}

@media only screen and (max-width: 1023px) {
  .navBar {
    background-color: #fff;
    padding: 0 1rem 0 0;
    height: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .logo {
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-transform: translateX(1.25rem) translateY(0.5rem);
    -ms-transform: translateX(1.25rem) translateY(0.5rem);
    transform: translateX(1.25rem) translateY(0.5rem);
    -webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.6));
    filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.6));
  }

  /*utility nav*/
  .utilityNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .utility_openNav {
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .nav--open {
    color: white;
  }

  .utility_openNav img {
    height: 20px;
  }

  .utility_openNav::before {
    content: "Menu";
    font-weight: 700;
    text-transform: uppercase;
  }

  .nav--open::before {
    content: none;
  }

  .nav--closed .closeNav {
    display: none;
  }
  .nav--open .openNav {
    display: none;
  }

  .siteHeader {
    z-index: 1000;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }

  /*sitenav*/
  .siteNav_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 8rem 0;
    overflow: auto;
    background-color: rgba(37, 32, 33, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    -webkit-animation: fadeInSlideDown 300ms ease-out;
    animation: fadeInSlideDown 300ms ease-out;
  }

  .siteNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 60vw;
    max-width: 500px;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 999;
  }

  .siteNav--hidden {
    display: none;
  }

  .siteNav_item {
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.1;
    text-decoration: none;
    color: #fff;
  }

  .siteNav_item--action {
    background-color: #b50937;
    color: #fff;
    margin-top: 1rem;
  }

  .siteNav_item--search {
    display: none;
  }

  /*site search*/

  .siteSearch_closeBtn {
    display: none;
  }

  .siteSearch {
    margin-top: 4rem;
  }

  .siteSearch_field input:focus {
    color: #fff;
  }
}

.siteSearch_form {
  width: 75vw;
  max-width: 30rem;
}

.siteSearch_form .form_label {
  display: none;
}

.siteSearch_field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.siteSearch_field input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: none;
  background: none;
  border: none;
  font-size: 1.25rem;
  padding: 0 1rem;
  border-bottom: solid 1px rgba(255, 255, 255, 0.33);
  color: rgba(255, 255, 255, 0.33);
}

.siteSearch_field input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, 1);
}

.siteSearch_btn {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  flex-grow: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  width: 3rem;
  background-color: #f6dfa4;
  margin-left: 0.25rem;
}

@media only screen and (min-width: 1024px) {
  .siteHeader {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    z-index: 1000;
    -webkit-box-shadow: 0 5px 60px 40px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 60px 40px rgba(0, 0, 0, 0.1);
  }

  .siteNav_wrap {
    position: relative;
  }

  .navBar {
    background-color: #fff;
    padding: 0 1.5rem 0 0;
    height: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .siteNav_wrap.searching .siteNav {
    display: none;
  }

  .logo {
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-transform: translateX(2rem) translateY(1rem);
    -ms-transform: translateX(2rem) translateY(1rem);
    transform: translateX(2rem) translateY(1rem);
    -webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.6));
    filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.6));
    -webkit-transition: -webkit-transform 200ms ease-out,
      -webkit-filter 200ms ease;
    transition: -webkit-transform 200ms ease-out, -webkit-filter 200ms ease;
    -o-transition: transform 200ms ease-out, filter 200ms ease;
    transition: transform 200ms ease-out, filter 200ms ease;
    transition: transform 200ms ease-out, filter 200ms ease,
      -webkit-transform 200ms ease-out, -webkit-filter 200ms ease;
  }

  .logo a {
    outline: none;
  }

  .logo:hover,
  .logo:focus,
  .logo:focus-within {
    -webkit-transform: translateX(2rem) translateY(1rem) rotate(-1deg)
      scale(1.02);
    -ms-transform: translateX(2rem) translateY(1rem) rotate(-1deg) scale(1.02);
    transform: translateX(2rem) translateY(1rem) rotate(-1deg) scale(1.02);
    -webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.6)) contrast(1.15);
    filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.6)) contrast(1.15);
  }

  .siteSearch {
    display: none;
  }
  .utilityNav {
    display: none;
  }

  .siteNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .siteNav_item {
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 2.25;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #998a8e;
    -webkit-transition: color 100ms ease, border-color 300ms ease,
      background-color 300ms ease;
    -o-transition: color 100ms ease, border-color 300ms ease,
      background-color 300ms ease;
    transition: color 100ms ease, border-color 300ms ease,
      background-color 300ms ease;
    position: relative;
    margin-left: 1.5rem;
  }

  .siteNav_item:hover,
  .siteNav_item:focus {
    color: #322a2c;
  }

  .siteNav_item--active,
  .siteNav_item--active:hover {
    color: #b50937;
  }

  .siteNav_item::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.125rem;
    transform: scale(0);
    background-color: #ccbcc0;
    -webkit-transition: transform 200ms ease;
    -o-transition: transform 200ms ease;
    transition: transform 200ms ease;
  }

  .siteNav_item--active::before {
    background-color: #b50937;
  }

  .siteNav_item:hover::before,
  .siteNav_item:focus::before {
    transform: scale(1);
  }

  .siteNav_item--active::before,
  .siteNav_item--active:hover::before,
  .siteNav_item--active:focus::before {
    transform: scale(1);
  }

  .siteNav_item--action {
    padding: 0 1.25em;
    background-color: #b50937;
    color: #fff;
    border: none;
    margin-left: 2rem;
    -webkit-clip-path: polygon(0 0%, 100% 0%, 100% 100%, 5px 100%);
    clip-path: polygon(0 0%, 100% 0%, 100% 100%, 5px 100%);
  }

  .siteNav_item--action + .siteNav_item--action {
    margin-left: 0.25rem;
    background-color: #750623;
    -webkit-clip-path: none;
    clip-path: none;
  }

  .siteNav_item--action::before,
  .siteNav_item--search::before {
    content: none;
  }

  .siteNav_item--search,
  .siteSearch_btn,
  .siteSearch_closeBtn {
    padding: 0;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f3f4;
    width: 2.5rem; /*this determines the height of the nav*/
    height: 2.5rem;
    margin-left: 0.25rem;
    border: none;
  }

  .siteNav_item--search svg,
  .siteSearch_btn svg,
  .siteSearch_closeBtn svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .siteNav_item--search {
    background-color: #f5f3f4;
  }

  .siteNav_item--search svg {
    opacity: 0.5;
  }

  .siteNav_item--search:hover svg {
    opacity: 1;
  }

  .siteSearch_btn {
    background-color: #f6dfa4;
  }

  .siteSearch_btn:hover {
    background-color: #b50937;
  }

  .siteSearch_btn:hover svg path {
    fill: white;
  }

  .siteNav_item--action:hover,
  .siteNav_item--action:focus {
    color: #fff;
    background-color: #380f1a;
  }

  .siteSearch_form {
    width: auto;
  }

  .siteSearch_closeBtn {
    background: #fff;
    margin-left: 0.5rem;
  }

  .siteSearch_closeBtn:hover path {
    fill: #b50937;
  }

  .siteSearch_formInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .siteSearch input[type="search"] {
    border: 1px solid #c9c0c3;
    color: #322a2c;
    font-size: 1rem;
  }
}

@media only screen and (min-width: 1140px) {
  .navBar {
    height: 6rem;
  }

  .logo {
    -webkit-transform: translateX(2rem) translateY(1rem);
    -ms-transform: translateX(2rem) translateY(1rem);
    transform: translateX(2rem) translateY(1rem);
  }

  .siteNav_item:not(.siteNav_item--search) {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 1140px) {
  .navBar {
    height: 7rem;
  }

  .siteNav_item:not(.siteNav_item--search) {
    font-size: 1.15rem;
  }
}

/*footer news and email signup*/

.footerNews {
  background-color: rgba(62, 32, 40, 0.2);
  padding: 1rem 0;
}

.emailSignup {
  margin-top: 3rem;
}

/*footer*/

.siteFooter_content > * + * {
  margin-top: 2rem;
}

.siteFooter_content h5 {
  color: #f6dfa4;
  line-height: 1.3;
}

.siteFooter_content .col > * + * {
  margin-top: 0.75rem;
}

.siteFooter_content .col p {
  font-size: 0.85rem;
}

.socialLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.socialLinks_item {
  max-width: 2rem;
}

.socialLinks_item + .socialLinks_item {
  margin-left: 0.5rem;
}

.socialLinks_item img {
  -webkit-filter: grayscale(1) opacity(0.8);
  filter: grayscale(1) opacity(0.8);
  -webkit-transition: -webkit-filter 150ms ease;
  transition: -webkit-filter 150ms ease;
  -o-transition: filter 150ms ease;
  transition: filter 150ms ease;
  transition: filter 150ms ease, -webkit-filter 150ms ease;
}

.socialLinks_item:hover img,
.socialLinks_item:focus img {
  -webkit-filter: grayscale(0) opacity(1);
  filter: grayscale(0) opacity(1);
}

/*homeintro stuff*/

.homeIntro {
  max-width: calc(var(--max_width) * 0.7);
  margin: 0 auto;
}

.homeIntro > p {
  font-size: 1.2rem;
  line-height: 1.3;
}

.homeIntro ul {
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.homeIntro ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 12rem;
  flex: 1 1 12rem;
  margin: 0;
  padding: 1rem;
  line-height: 1.3;
}

.homeIntro ul li::before {
  content: "";
  display: block;
  height: 0.25rem;
  background-color: #b50937;
  max-width: 6rem;
  margin: 0 auto 1.5rem;
}

.homeIntro ul li:nth-child(1)::before {
  background-color: #b50937;
}

.homeIntro ul li:nth-child(2)::before {
  background-color: #380f1a;
}

.homeIntro ul li:nth-child(3)::before {
  background-color: #df8c19;
}

@supports (gap: 1px) {
  .homeIntro ul {
    gap: 1.5rem 3rem;
  }

  .homeIntro ul li {
    padding: 0;
  }

  .homeIntro ul li > *:last-child {
    margin-bottom: 0;
  }
}

/*news filter*/

.newsFilter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 2rem;
  gap: 0.75rem;
}

.newsFilter_option {
  border: none;
  outline: none;
  padding: 0.5rem 1.25rem;
  background-color: #fff;
  font-weight: 700;
  font-size: 0.75em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.75);
  opacity: 0.5;
  -webkit-transition: all 150ms ease;
  -o-transition: all 150ms ease;
  transition: all 150ms ease;
  border-radius: 1rem;
}

.newsFilter_option:hover {
  color: #380f1a;
  opacity: 1;
}

.newsFilter_option:focus {
  opacity: 1;
}

.newsFilter_option:focus {
  outline: outset 2px rgba(0, 0, 0, 0.15);
}

.mixitup-control-active {
  -webkit-transition: all 150ms ease;
  -o-transition: all 150ms ease;
  transition: all 150ms ease;
}

.mixitup-control-active,
.mixitup-control-active:hover,
.mixitup-control-active:focus {
  border: none;
  outline: none;
  background-color: #380f1a !important;
  pointer-events: none;
  color: #fff;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mixitup-control-active:focus {
  outline: outset 2px rgba(0, 0, 0, 0.15);
}

/*news item content single.php*/

.news_featuredImg {
  margin: 0 -2em 2rem;
  position: relative;
  z-index: 1;
}

.news_featuredImg img {
  width: 100%;
}

blockquote {
  border-left: solid 0.25rem rgba(0, 0, 0, 0.1);
  padding: 0 2rem;
  margin: 2rem 0;
}

blockquote > *:first-child {
  margin-top: 0;
}

blockquote > *:last-child {
  margin-bottom: 0;
}

/*events grid and cards*/

.csaSeasonTitle {
  margin-bottom: 2rem;
}

.csaSeasonTitle_text {
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 700;
}

.csaSeasonTitle_btn {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

@media only screen and (min-width: 540px) {
  .csaSeasonTitle {
    padding: 1.5em;
  }
  .csaSeasonTitle_btn {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 768px) {
  .csaSeasonTitle_text {
    font-size: 1.8rem;
  }
}

@media only screen and (min-width: 1140px) {
  .csaSeasonTitle_text {
    font-size: 2.1rem;
  }
}

@media only screen and (min-width: 1280px) {
  .csaSeasonTitle_text {
    font-size: 2.4rem;
  }
}

.eventsGrid_title {
  margin: 0 0 2rem;
  text-align: center;
}

.eventsGrid_title::before {
  content: none !important;
}

.eventsGrid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}

.eventsGrid + .eventsGrid_btn {
  margin-top: 2rem;
}

.eventCard_link {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.eventCard_img {
  background-color: #322a2c;
  height: 0;
  padding-top: calc(9 / 16 * 100%); /* creates a 5:3 ratio box */
  overflow: hidden;
  position: relative;
}

.eventCard_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  -webkit-transition: -webkit-filter 150ms ease-in-out;
  transition: -webkit-filter 150ms ease-in-out;
  -o-transition: filter 150ms ease-in-out;
  transition: filter 150ms ease-in-out;
  transition: filter 150ms ease-in-out, -webkit-filter 150ms ease-in-out;
}

.eventCard:hover .eventCard_img img,
.eventCard:focus .eventCard_img img,
.eventCard:focus-within .eventCard_img img {
  -webkit-filter: contrast(125%);
  filter: contrast(125%);
}

.csaArchive .eventCard_img {
  padding-top: calc(52.5%);
}

.csaArchive .eventCard_img img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.csaArchive .eventCard .eventTags {
  display: none;
}

.eventCard_info {
  border-top: solid 1px #eee;
  padding: 1.5rem;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
}

.eventCard_info::after {
  content: "";
  background-color: #b50937;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  -webkit-transition: height 100ms ease-out;
  -o-transition: height 100ms ease-out;
  transition: height 100ms ease-out;
}

.eventCard_link:hover .eventCard_info::after,
.eventCard_link:focus .eventCard_info::after,
.eventCard_link:focus-within .eventCard_info::after {
  height: 0.25rem;
}

.eventCard_title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.1;
  color: #b50937;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  -webkit-transition: color 150ms ease;
  -o-transition: color 150ms ease;
  transition: color 150ms ease;
}

.eventCard:hover .eventCard_title,
.eventCard:focus .eventCard_title,
.eventCard:focus-within .eventCard_title {
  color: #b50937;
}

.eventCard_title + * {
  margin-top: auto;
}

.eventCard_presenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.presenter_label {
  font-size: 0.75rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.presenter_text {
  font-weight: 700;
}

.eventCard_presenter + .eventTags {
  margin-top: 0.5rem;
}

.eventTags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.metaTag {
  padding: 0.4em 0.8em;
  background-color: #f6dfa4;
  color: rgba(50, 42, 44, 0.75);
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.6rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  white-space: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.25rem 0.25rem 0;
  outline: solid 1px #f6dfa4;
  outline-offset: -1px;
  -webkit-transition: outline 150ms ease, background-color 150ms ease,
    color 150ms ease;
  -o-transition: outline 150ms ease, background-color 150ms ease,
    color 150ms ease;
  transition: outline 150ms ease, background-color 150ms ease, color 150ms ease;
}

.eventCard:hover .metaTag,
.eventCard:focus .metaTag,
.eventCard:focus-within .metaTag {
  background-color: #fff;
  outline-offset: 0;
  color: rgba(50, 42, 44, 1);
}

.tagIcon {
  margin-right: 0.25rem;
  height: 0.65rem;
}

.metaTag--program {
  background-color: #380f1a;
  color: #fff;
}

/*event/season sponsors*/

.eventSponsor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5em 3rem;
  padding: 3em 1.5em;
  background: #fff;
}

.eventSponsor_text {
  margin: 0;
}

.eventSponsor_img {
  max-width: 240px;
  width: 100%;
}

/*meta stuff */

.metaDate {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.025em;
  color: #66565a;
}

/*footer news and email signup */

.newsFooter_title {
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.recentNews_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.recentNews_list + * {
  margin-top: 1.5rem;
}

.recentNews_item + .recentNews_item {
  margin-top: 0.75rem;
}

.recentNews_link {
  padding: 1rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-decoration: none;
}

.recentNews_title {
  font-weight: 700;
  color: #b50937;
}

/*pagelead*/

.pageLead {
  /*padding: 6rem 2rem 4em;*/
  padding: clamp(4rem, 9vw, 8rem) 2rem clamp(3rem, 6vw, 6rem);
  position: relative;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#bebebe),
    to(#f5f3f4)
  );
  background: -o-linear-gradient(top, #bebebe 0%, #f5f3f4 100%);
  background: linear-gradient(180deg, #bebebe 0%, #f5f3f4 100%);
  margin: 0;
}

.pageLead--no-img {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#bebebe),
    to(#f5f3f4)
  );
  background: -o-linear-gradient(top, #bebebe 0%, #f5f3f4 100%);
  background: linear-gradient(180deg, #bebebe 0%, #f5f3f4 100%);
}

.pageLead--no-img + .block--padded {
  padding-top: 0;
}

.pageLead--w-img {
  background: #322a2c;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#403638),
    color-stop(85%, #1a1516)
  );
  background: -o-linear-gradient(top, #403638 0%, #1a1516 85%);
  background: linear-gradient(180deg, #403638 0%, #1a1516 85%);
  min-height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pageLead_bgImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center 25%;
  object-position: center 25%;
  z-index: 1; /*put img under content*/
  opacity: 0.2;
}

@supports (filter: grayscale()) {
  .pageLead_bgImg {
    opacity: 1;
    -webkit-filter: grayscale(1) opacity(0.2) contrast(0.75);
    filter: grayscale(1) opacity(0.2) contrast(0.75);
  }
}

.pageLead_inset {
  z-index: 2; /*put content on top of bgImg*/
  position: relative;
  max-width: calc(var(--max_width) * 0.85);
  margin: 0 auto;
}

.pageLead_inset > * {
  margin: 0;
}

.pageLead_inset > * + * {
  margin-top: 2rem;
}

.pageLead_text {
  color: #322a2c;
  font-size: 1.1rem;
}

.pageLead_text > * {
  margin: 0;
}

.pageLead_text > * + * {
  margin-top: 1.5rem;
}

@media only screen and (max-width: 767px) {
  .pageLead_meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.pageLead_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pageLead_meta > * {
  padding: 0 0.75em;
  margin: 0.15rem 0;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}

@media only screen and (min-width: 768px) {
  .pageLead_meta > * + * {
    border-left: solid 1px rgba(0, 0, 0, 0.25);
  }
}

.pageLead_subtitle {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
}

.pageLead_headline {
  color: #b50937;
}

.pageLead_subtitle + .pageLead_headline {
  margin-top: 0.5rem;
}

.pageLead .eventTags {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pageLead .metaTag {
  background-color: rgba(255, 255, 255, 0.5);
}

.pageLead .metaTag--presenter {
  background-color: transparent;
  font-size: 0.8rem;
}

/*pagelead exceptions for dark bg*/
.pageLead--no-img .pageLead_headline {
  color: #b50937;
}
.pageLead--w-img .pageLead_headline {
  color: #f6dfa4;
}

.pageLead--no-img .pageLead_text {
  color: #322a2c;
}
.pageLead--w-img .pageLead_text {
  color: #fff;
}

/*events filter*/

.eventsFilter {
  position: relative;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.eventsFilter_heading {
  text-transform: uppercase;
  letter-spacing: 0.02rem;
  font-weight: 700;
  font-size: 0.8rem;
  margin-right: 1rem;
  color: rgba(0, 0, 0, 0.5);
}

.eventsFilter_group {
  position: relative;
  margin: 0.25rem;
  border-radius: 0;
  text-decoration: none;
}

.eventsFilter_input,
.eventsFilter_label {
  position: relative;
  z-index: 10;
  background: #fff url(../img/filter-inactive.svg) calc(100% - 0.75rem) center
    no-repeat;
  padding: 0.4rem 4rem 0.4rem 0.75rem;
  font-weight: bold;
  font-size: 0.9rem;
  color: #322a2c;
  -webkit-transition: color 150ms ease;
  -o-transition: color 150ms ease;
  transition: color 150ms ease;
}

.tt-menu,
.eventsFilter_input {
  width: 100%;
  max-width: 300px;
  display: block;
  background: white;
  padding: 0.6rem;
  border: 0;
}

.tt-menu {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.twitter-typeahead {
  display: block !important;
}

.eventsFilter_list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  position: absolute;
  top: 75%;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: opacity 150ms ease;
  -o-transition: opacity 150ms ease;
  transition: opacity 150ms ease;
}

.eventsFilter_group {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

.eventsFilter_group--small {
  -webkit-box-flex: 0;
  -ms-flex: 0 1;
  flex: 0 1;
  min-width: 300px;
}

.eventsFilter_group--open .eventsFilter_list {
  opacity: 1;
}

.eventsFilter_group:hover .eventsFilter_label,
.eventsFilter_group--open .eventsFilter_label {
  color: #322a2c;
}

.eventsFilter_group--active .eventsFilter_label,
.eventsFilter_group--active:hover .eventsFilter_label {
  color: #b50937;
  background-image: url(../img/filter-active.svg);
}

.eventsFilter_option {
  margin: 0;
  padding: 0.5em 0.75em;
  font-size: 0.8rem;
  line-height: 1.3;
  color: #322a2c;
  -webkit-transition: color 200ms ease;
  -o-transition: color 200ms ease;
  transition: color 200ms ease;
  font-weight: 700;
}

.eventsFilter_option:hover {
  color: #b50937;
  cursor: pointer;
}

.mixitup-control-active,
.mixitup-control-active:hover,
.eventsFilter_option--selected,
.eventsFilter_option--selected:hover {
  background-color: #b50937;
  color: #fff;
}

/*single-event page stuff*/

.presenter_logo {
  max-height: 4rem;
  width: auto;
  padding: 0.25rem;
}

.eventHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  max-width: calc(var(--max_width) + 160px);
  margin: 0 auto;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
  position: relative;
}

.eventHead_details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.eventHead_detailsInset {
  padding: 4rem 2rem;
}

.eventHead_detailsInset > * {
  margin: 0;
}
.eventHead_detailsInset > * + * {
  margin-top: 1rem;
}

.eventHead_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.event_dates {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
}

.event_purchase {
  border-top: solid 1px rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
}

.event_notes {
  line-height: 1.2;
}

.event_notes > * {
  margin: 0;
}
.event_notes > * + * {
  margin-top: 0.75rem;
}

.event_dateGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 0.75rem;
}

.event_day {
  font-weight: 700;
  font-size: 1rem;
  min-width: 4rem;
  padding-right: 0.75rem;
  text-align: center;
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.event_times {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.25em;
}

.event_dateGroup .btn--time {
  margin: 0;
  text-align: center;
}

.btn--time {
  text-transform: none;
  padding: 0.33em 1em;
  font-size: 1rem;
  line-height: 1.1;
  background-color: rgba(255, 255, 255, 1);
  color: #b50937;
  border: solid 1px #fff;
  border-radius: 1.5rem;
  transition: background 150ms ease, color 150ms ease;
}

.btn--time[disabled],
.btn--time:hover,
.btn--time:focus {
  color: #fff;
  background: transparent;
  outline: none;
}

.btn--time[disabled] {
  cursor: default;
}

@media only screen and (min-width: 1024px) {
  .btn--time,
  .event_day {
    font-size: 0.75rem;
  }

  .eventHead {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .eventHead_img {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
  }
  .eventHead_details {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

.event_playbill .btn,
.event_notes .btn {
  font-size: 0.75rem;
}

.perfNote {
  margin-top: 1rem;
}

.perfNote > * {
  font-size: 0.9rem;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0;
}

.perfNote h5 {
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.perfNote > * + * {
  margin-top: 0.375rem;
}

.relatedNews {
  margin-top: 1rem;
}

h2 + .textColumns {
  margin-top: 1.5rem;
}

/*alerts*/

.alerts {
  margin: 0;
}

.alert + .alert {
  margin-top: 0.5rem;
}

.alert_link {
  background-color: #b50937;
  padding: 1.25rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  line-height: 1.3;
  -webkit-transition: background-color 100ms ease;
  -o-transition: background-color 100ms ease;
  transition: background-color 100ms ease;
}

.alert--w-toggle .alert_link {
  background-image: url(../img/arrow-down-white.svg);
  background-position: calc(100% - 1.5rem) center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
  padding-right: 4.5rem;
}

.alert_link:hover,
.alert_link:focus,
.alert_link:focus-within {
  background-color: #380f1a;
}

.alert_link img {
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}

.alert_content {
  background-color: #fff;
  color: black;
  padding: 1.5rem 2rem;
}

.alert_content > *:last-child {
  margin-bottom: 0;
}

.alert_title strong {
  display: block;
}

@media only screen and (min-width: 768px) {
  .alert_link {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .alert_title strong {
    display: inline;
  }
}

/*directions viewer*/

.directions_title {
  margin-top: 0.33rem;
  background-color: rgba(37, 32, 33, 0.2);
  background-image: url(../img/arrow-down-white.svg);
  background-position: calc(100% - 1rem) center;
  background-repeat: no-repeat;
  background-size: 1rem;
  padding: 0.75rem 3rem 0.75rem 1.25rem;
  color: #322a2c;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: background-color 100ms ease;
  -o-transition: background-color 100ms ease;
  transition: background-color 100ms ease;
}

.directions_content {
  padding: 0.75rem 1.25rem;
  background-color: #fff;
}

.directions_content > ul {
  margin-left: 0.25rem;
}

.directions_content > *:last-child {
  margin-bottom: 0;
}

.parkingSponsor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.5rem;
  gap: 2rem;
  margin: 1.5rem 0;
}

.parking_logo {
  max-width: 300px;
}

.parking_text {
  font-weight: 700;
}

/*show/hide toggles */

.toggle_content {
}

.toggle_title {
  cursor: pointer;
}

.toggle_content--hidden {
  display: none;
}

.toggle_content--open {
  display: block;
  -webkit-animation: fadeIn 500ms ease-out;
  animation: fadeIn 500ms ease-out;
}

/*home hero */

.hero {
  height: min(75vw, 75vh);
  min-height: 33vw;
  position: relative;
  background-color: #322a2c;
  isolation: isolate;
}

video.hero_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.hero_content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgb(0 0 0 / 15%);
}

.hero_content h1 {
  width: min(80vw, 30ch);
  text-align: center;
  color: white;
  text-shadow: 0 1px 3px rgb(0 0 0 / 50%);
  font-size: clamp(1.5rem, 0.913rem + 2.6087vw, 3rem);
  margin: 0;
}

.hero_disable::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(25%, rgba(0, 0, 0, 0)),
    color-stop(75%, rgba(0, 0, 0, 0.5))
  );
  background: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 0.5) 75%
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 0.5) 75%
  );
}

.hero_slider {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #322a2c;
  isolation: isolate;
}

.hero_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center 25%;
  object-position: center 25%;
}

.hero_text {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  isolation: isolate;
  z-index: 900;
}

.hero_text h1 {
  color: #f6dfa4;
  text-align: center;
  text-shadow: 1px 2px 15px rgba(0, 0, 0, 0.5);
}

h1 span {
  display: block;
  font-weight: 300;
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

/*front page notices*/

.homeNotices {
  margin: 0 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  z-index: 100;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.homeNotice_item {
  background-color: #42373a;
  -webkit-transition: all 150ms ease;
  -o-transition: all 150ms ease;
  transition: all 150ms ease;
  width: 50%;
  -webkit-transition: background 400ms ease;
  -o-transition: background 400ms ease;
  transition: background 400ms ease;
}

.homeNotice_item:nth-child(2),
.homeNotice_item:nth-child(3) {
  background-color: #322a2c;
}

.homeNotice_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  padding: 1.25rem;
  color: #fff;
  text-decoration: none;
  -webkit-transition: color 150ms ease;
  -o-transition: color 150ms ease;
  transition: color 150ms ease;
}

.homeNotice_text {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  width: 100%;
}

.homeNotice_item:hover,
.homeNotice_item:focus,
.homeNotice_item:focus-within {
  background-color: #fff;
}

.homeNotice_item:hover .homeNotice_link,
.homeNotice_item:focus .homeNotice_link,
.homeNotice_item:focus-within .homeNotice_link {
  color: #322a2c;
}

@media only screen and (min-width: 768px) {
  .homeNotices {
    margin: -3rem 2rem 2rem;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .homeNotice_item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .homeNotice_text {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
  }

  .homeNotice_item:nth-child(odd) {
    background-color: #42373a;
  }
  .homeNotice_item:nth-child(even) {
    background-color: #322a2c;
  }

  .homeNotice_item:hover,
  .homeNotice_item:focus,
  .homeNotice_item:focus-within {
    background-color: #fff;
  }

  .homeNotice_item:hover .homeNotice_link,
  .homeNotice_item:focus .homeNotice_link,
  .homeNotice_item:focus-within .homeNotice_link {
    color: #42373a;
  }
}

@media only screen and (min-width: 1280px) {
  .homeNotices {
    margin-top: -4rem;
  }

  .homeNotice_item {
    min-height: 13rem;
  }

  .homeNotice_link {
    padding: 1.5rem;
  }
}

/*program previews*/

.previewCard {
  background: #fff;
}

.previewCard_text h2 {
  margin: 0;
}

.previewCard_text > * + * {
  margin: 1rem 0 0;
}

.previewCard + .previewCard {
  margin-top: 2rem;
}

.previewCard_text {
  padding: 1.5rem;
}

@media only screen and (min-width: 600px) {
  .previewCard {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .previewCard--flipped {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .previewCard_img {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .previewCard_content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .previewCard_img img {
    -o-object-fit: cover;
    object-fit: cover;
  }

  .previewCard_text {
    padding: 3rem 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
  }

  .previewCard_text .btn {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}

@media only screen and (min-width: 1140px) {
  .previewCard_text {
    padding: 4.5rem 3rem;
  }
}

/*in page about nav*/

.aboutNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: flex-start;
}

.aboutNav_item + .aboutNav_item {
  margin: 0.25rem 0 0;
}

.aboutNav_item {
  font-size: 1.25rem;
  line-height: 1.1;
  padding: 0.625em 1.25em;
  letter-spacing: 0.02rem;
  background-color: #b50937;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 150ms ease;
}

.aboutNav_item::after {
  content: "";
  background-image: url(../img/arrow-right-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.75rem;
  transition: margin-left 150ms ease-in-out;
}

.aboutNav_item:hover,
.aboutNav_item:focus {
  background-color: #380f1a;
}

.aboutNav_item:hover::after,
.aboutNav_item:focus::after {
  margin-left: 1rem;
}

/*people cards*/

.peopleCard {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 1.5rem;
}

.peopleCard_content {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
  padding-right: 1.5rem;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

.peopleCard_content h5::before {
  display: block;
  content: "";
  max-width: 6rem;
  height: 0.25rem;
  background-color: #b50937;
  margin-bottom: 1rem;
}

.peopleCard_content h5 {
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
}

.peopleCard_content h6 {
  font-style: normal;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #998a8e;
  margin-bottom: 1.25rem;
}

.peopleCard_content > :last-child {
  margin-bottom: 0;
}

.peopleCard_img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.boardList {
  border-left: solid 1px rgba(0, 0, 0, 0.1);
  padding-left: 2em;
}

.boardList *:first-child {
  margin-bottom: 1rem;
}

/*education cards*/

.educationCard {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 0 1.5rem;
}

.educationCard_img {
  margin: 0 0 0.75rem;
}

@media only screen and (min-width: 540px) {
  .educationCard {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .educationCard_content {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    padding-right: 1.5rem;
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }

  .educationCard_img {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 0 0.75rem;
  }
}

/*sponsors grid*/

.sponsorGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -0.5rem;
}

.sponsor {
  -ms-flex-preferred-size: calc(50% - 1rem);
  flex-basis: calc(50% - 1rem);
  margin: 0.5rem;
  background: #fff;
}

.sponsor_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1.5rem;
  height: 100%;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
}

.sponsor img {
  width: auto;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
}

@media only screen and (min-width: 768px) {
  .sponsor {
    -ms-flex-preferred-size: calc(33% - 1rem);
    flex-basis: calc(33% - 1rem);
  }
}

@media only screen and (min-width: 1140px) {
  .sponsor {
    -ms-flex-preferred-size: calc(25% - 1rem);
    flex-basis: calc(25% - 1rem);
  }
}

/* employment/job listings*/

.noJobs {
  background: url("../img/arrow-down-yellow.svg") center bottom no-repeat;
  padding-bottom: 3rem;
}

.jobListings {
  padding: 1.5rem 0 0;
}

.jobListings > h2 {
  margin-bottom: 1.5rem;
}

.jobListing + .jobListing {
  margin-top: 0.75rem;
}

.jobListing_header {
  padding: 1.25rem 1.5rem;
  display: block;
  text-decoration: none;
}

.jobListing_content {
  padding: 0 1.5rem 1.5rem;
}

.jobListing_title {
  font-weight: 700;
  font-size: 1.25rem;
}

@media only screen and (min-width: 768px) {
  .jobListing_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .jobListing_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .jobListing_description {
    margin-right: 4.5rem;
  }
}

/*info cards used on employment page*/

.infoCards {
  margin: 0 -0.75rem;
}

.infoCards .infoCard {
  background-color: #b50937;
}

.infoCards .infoCard:nth-child(even) {
  background-color: #380f1a;
}

.infoCards > * {
  margin-top: 1.5rem;
}

.infoCard_content {
  padding: 1.5rem;
}

.infoCard_content > * + * {
  margin: 1rem 0 0;
}

@media only screen and (min-width: 768px) {
  .infoCards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 0;
  }

  .infoCards > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
  }

  .infoCards > * + * {
    margin-left: 1.5rem;
  }
}

@media only screen and (min-width: 1024px) {
  .infoCard_content {
    padding: 2rem;
  }
}

.downloadsList {
  background-color: white;
  padding: 2rem;
  margin: 1rem 0;
}

* + .downloadsList {
  margin-top: 4rem;
}

.downloadsList h3 {
  margin-bottom: 1rem;
}

.download_link {
  display: block;
  padding: 0.625rem 0;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  transition: color 150ms ease;
  outline: none;
  border-top: solid 1px #eee;
}

.download_link::after {
  content: "";
  width: 0.8rem;
  background-image: url(../img/icon-download-arrow-red.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(1) opacity(0.25);
  transition: filter 150ms ease;
}

.download_link:hover,
.download_link:focus {
  outline: none;
  color: #b50937;
}

.download_link:hover::after,
.download_link:focus::after {
  filter: none;
}

/*visit page*/

.visitPhotos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 0 1.5rem;
  gap: 0.25rem;
}

.visitPhotos img {
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
}

/*rent page*/

.slidesNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slidesNav a {
  margin-right: 0.5rem;
}

.slidesNav + * {
  margin-top: 1.5rem;
}

.accentBlock {
  position: relative;
  margin: 1.5rem 0;
}

.accentBlock_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.accentBlock_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: grayscale(100%) opacity(20%);
  filter: grayscale(100%) opacity(20%);
}

.accentBlock_text {
  position: relative;
  padding: 2rem;
}

@media only screen and (min-width: 540px) {
  .accentBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.5rem 0;
  }

  .accentBlock_img {
    position: static;
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    margin-left: -2rem;
  }

  .accentBlock_img img {
    position: static;
    -webkit-filter: none;
    filter: none;
  }

  .accentBlock_text {
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
    padding: 0 2rem;
  }
}

/*forms*/

.form_item + .form_item {
  margin-top: 0.5rem;
}

.form_label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: block;
  margin: 0 0 0.25rem;
  opacity: 0.75;
}

.form_input {
  width: 100%;
  border: none;
  border-radius: 2px;
  padding: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

/*history slides */

.historySlideshow {
  position: relative;
  margin-bottom: 3rem;
}

.historySlideshow > * + * {
  margin: 1.5rem 0 0;
}

.historySlideshow_slides {
  -webkit-filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.25));
  z-index: 501;
}

.historySlideshow_controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.historySlideshow_controls > * + * {
  margin-left: 0.5rem;
}

@media only screen and (min-width: 768px) {
  .historySlideshow_controls {
    position: absolute;
    top: calc(50% - 1.5rem);
    left: 0;
    width: calc(100% + 3rem);
    z-index: 700;
    margin: 0 -1.5rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 1024px) {
  .historySlideshow_controls {
    width: calc(100% + 6rem);
    margin: 0 -3rem;
    z-index: 500;
  }
}

.historySlideshow_item {
  outline: solid 0.5rem white;
  position: relative;
}

.historySlideshow_year {
  color: #b50937;
}

.historySlideshow_year::after {
  content: " | ";
  color: rgba(0, 0, 0, 0.33);
}

.historySlideshow_caption {
  position: absolute;
  right: 0;
  bottom: 0;
  background: rgba(50, 42, 44, 0.75);
  color: #fff;
  width: calc(100%);
  font-size: 0.75rem;
  text-align: center;
  padding: 0.5rem;
  font-weight: 700;
}

.historySlideshow_year {
  color: #f6dfa4;
}

.historySlideshow_year::after {
  color: rgba(255, 255, 255, 0.33);
}

.historyContent {
  max-width: calc(var(--max_width) * 0.7);
  margin: 0 auto;
}

/*prev/next buttons for history and rent page*/

.prev_btn,
.next_btn {
  display: inline-block;
  padding: 0;
  outline: 0;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url("../img/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  transition: background-position 100ms ease;
}

.next_btn {
  background-image: url("../img/arrow-right-white.svg");
}

.prev_btn {
  background-image: url("../img/arrow-left-white.svg");
}

.prev_btn:hover,
.prev_btn:focus {
  background-position-x: calc(50% - 0.125rem);
}

.next_btn:hover,
.next_btn:focus {
  background-position-x: calc(50% + 0.125rem);
}

.prev_btn::after,
.next_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  mix-blend-mode: overlay;
  -webkit-transition: background-color 150ms ease;
  -o-transition: background-color 150ms ease;
  transition: background-color 150ms ease;
}

.prev_btn:hover::after,
.next_btn:hover::after,
.prev_btn:focus::after,
.next_btn:focus::after {
  background-color: rgba(255, 255, 255, 0.5);
}

.quote {
  padding: 1.5rem 1.5rem 1.5rem 6rem;
  margin: 1.5rem 0;
  background: url(../img/icon-quote.svg) 1.5rem 1.5rem no-repeat;
  background-size: 3rem;
}

.quote_text {
  font-size: 1.33rem;
  color: #998a8e;
}

.quote_attr {
  margin-top: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  font-style: 0.75rem;
}

/*events access block*/

.eventAccess {
  padding: 2rem;
}

.eventAccess_accommodations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 1.5rem;
}

.eventAccess_icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-right: 0.5rem;
}

.rental-inquiry .frm_form_title {
  display: none;
}

.rental-inquiry .frm_description,
.rental-inquiry .frm_required,
.rental-inquiry .with_frm_style .frm_primary_label {
  color: white !important;
}

.pagination-wrap {
  margin-top: 2rem;
  text-align: center;
}

/*search results page*/

.searchAgain {
  display: flex;
  justify-content: center;
}

.searchAgain .siteSearch_form {
  width: 70vw;
  max-width: 25rem;
}

.searchAgain input[type="search"] {
  background-color: white;
  color: gray;
}

.searchAgain input[type="search"]:focus {
  color: black;
}

.searchHead_title {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 1.5rem 0 0;
  font-weight: 700;
}

.searchHead {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
  background-color: #322a2c;
  color: rgba(255, 255, 255, 0.6);
  display: inline-block;
  padding: 0.5em 1.5em;
}

.searchHead span {
  white-space: nowrap;
}

.searchQuery {
  border-bottom: solid 1px currentColor;
}

.searchResults_list {
  max-width: 880px;
  margin: 0 auto 2em;
}

.searchResult + .searchResult {
  margin-top: 1.5rem;
}

.searchResult_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 1rem;
  text-decoration: none;
  -webkit-transition: background 150ms ease;
  -o-transition: background 150ms ease;
  transition: background 150ms ease;
}

.searchResult_img {
  width: 4rem;
  height: 4rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}

.postType {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.25em;
  font-weight: 700;
  font-size: 0.75rem;
  color: white;
  text-transform: uppercase;
  transition: opacity 150ms ease;
}

.searchResult_link:hover img + .postType,
.searchResult_link:focus img + .postType {
  opacity: 0;
}

.searchResult_content {
  margin-left: 0.75rem;
  flex-grow: 1;
  line-height: 1.3;
}

.searchResult_content h4 {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.searchResult_content h4 + div {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1.2;
  align-items: center;
}

.searchResult_link:hover h4,
.searchResult_link:focus h4 {
  text-decoration: underline;
  color: #b50937;
}

.searchResult_content p {
  margin: 0.75em 0 0;
  padding-right: 3rem;
  font-size: 0.85rem;
}

.searchResult_content h4::after {
  content: "\00BB";
  background-color: #b50937;
  color: white;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.1em 0.5em;
  line-height: 1;
  margin-left: 0.5em;
  vertical-align: text-top;
}

.searchResult_link:hover .searchResult_content h4::after,
.searchResult_link:hover .searchResult_content h4::after {
  background-color: #402028;
}

@media only screen and (min-width: 1024px) {
  .searchResult_content {
    margin-left: 1.5rem;
  }
  .searchResult_link {
    padding: 1.5rem;
  }
  .searchResult_img {
    width: 6rem;
    height: 6rem;
  }
}
