@charset "UTF-8";
/* Baseplate */
/* ==========================================================================
   Settings & Tools
   ========================================================================== */
/*  stylelint-disable */
/**
 * Get color from palette w/default tone
 */
/**
 * Add percentage of white to a color
 */
/**
 * Add percentage of black to a color
 */
/* ==========================================================================
   Base
   ========================================================================== */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: 700;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
Base
========================================================================== */
html {
  box-sizing: border-box;
  height: 100%;
  font-size: 100%;
  line-height: 1.5;
  text-rendering: geometricPrecision;
  scroll-padding-top: 200px;
}

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

body {
  color: #000;
  background-color: #fff;
  overflow-x: hidden;
  /**
  * Sticky footer
  * https://philipwalton.github.io/solved-by-flexbox/demos/sticky-footer/
  */
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
body:before {
  content: "";
  display: block;
  backdrop-filter: blur(5px) brightness(75%) contrast(120%);
  background-color: rgba(25, 25, 25, 0.7);
  transition: backdrop-filter 0.4s ease, background-color 0.4s ease;
  position: fixed;
  z-index: 20;
  width: 100%;
  height: 100svh;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
body.nav-open {
  overflow: hidden;
}
body.nav-open .calendar__sidebar {
  z-index: 5;
}
body.filters-open, body.dates-open {
  position: fixed;
  width: 100%;
}
body.filters-open:before, body.dates-open:before {
  opacity: 1;
  visibility: visible;
}
body.filters-open .calendar__sidebar,
body.filters-open .whatson-grid__sidebar, body.dates-open .calendar__sidebar,
body.dates-open .whatson-grid__sidebar {
  z-index: 20;
  background-color: transparent;
}
body.filters-open .calendar-actions, body.dates-open .calendar-actions {
  filter: blur(6px);
  pointer-events: none;
}

.global-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #F7F5F2;
}

.page-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.global-group {
  width: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
}
@media (max-width: 71.99em) {
  .global-container:has(.global-navigation.is-toggled) .global-group {
    z-index: 9;
  }
}
@media (min-width: 72em) {
  .global-group {
    position: sticky;
    top: 0;
    z-index: 9;
  }
}
.global-group .global-alerts {
  order: 1;
}
@media (min-width: 62.5em) {
  .global-group .global-alerts {
    order: 0;
  }
}
.global-group .global-header {
  order: 0;
}
@media (min-width: 62.5em) {
  .global-group .global-header {
    order: 1;
  }
}

svg.o-icon--logo,
svg.o-icon--logo-mobile {
  width: 100%;
  height: 100%;
  transition: background-color 0.4s ease;
}

:root {
  --link-color: #000;
  --focus-color: #BD8C3C;
  --theme-color: #BD8C3C;
  --content-margin: 40px 0;
  --content-margin-small: 20px 0;
  --global-header-size-1: 16px;
  --global-header-size-2: 18px;
  --global-header-size-3: 20px;
  --global-header-size-4: 22px;
  --global-header-size-5: 24px;
  --global-header-size-6: 26px;
  --global-header-size-7: 28px;
  --global-header-size-8: 32px;
  --global-header-size-9: 38px;
  --global-header-size-10: 42px;
  --global-header-size-11: 48px;
  --global-header-size-12: 56px;
  --global-header-size-13: 60px;
  --global-header-size-14: 72px;
  --global-header-size-15: 90px;
  --global-header-size-16: 96px;
  --global-header-size-h1: var(--global-header-size-8);
  --global-header-size-h2: var(--global-header-size-4);
  --global-header-size-h3: var(--global-header-size-3);
  --global-header-size-h4: var(--global-header-size-2);
  --global-header-size-h5: var(--global-header-size-1);
  --global-header-size-h6: var(--global-header-size-1);
}
@media (min-width: 50em) {
  :root {
    --content-margin: 80px 0;
    --content-margin-small: 40px 0;
  }
}
@media (min-width: 62.5em) {
  :root {
    --content-margin: 120px 0;
    --content-margin-small: 60px 0;
  }
}
@media (min-width: 30em) {
  :root {
    --global-header-size-h1: var(--global-header-size-11);
    --global-header-size-h2: var(--global-header-size-5);
    --global-header-size-h3: var(--global-header-size-4);
    --global-header-size-h4: var(--global-header-size-3);
    --global-header-size-h5: var(--global-header-size-2);
    --global-header-size-h6: var(--global-header-size-2);
  }
}
@media (min-width: 50em) {
  :root {
    --global-header-size-h1: var(--global-header-size-13);
    --global-header-size-h2: var(--global-header-size-7);
    --global-header-size-h3: var(--global-header-size-5);
    --global-header-size-h4: var(--global-header-size-4);
    --global-header-size-h5: var(--global-header-size-3);
    --global-header-size-h6: var(--global-header-size-2);
  }
}
@media (min-width: 62.5em) {
  :root {
    --global-header-size-h1: var(--global-header-size-14);
    --global-header-size-h2: var(--global-header-size-9);
    --global-header-size-h3: var(--global-header-size-5);
    --global-header-size-h4: var(--global-header-size-4);
    --global-header-size-h5: var(--global-header-size-3);
    --global-header-size-h6: var(--global-header-size-2);
  }
}

.spacer {
  height: 40vh;
}

/* ==========================================================================
Typography
========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6,
.h6,
.ff-display {
  font-weight: bold;
  font-family: "brandon-grotesque", sans-serif;
}

h1,
h2 {
  font-weight: 700;
}

.ff-display {
  font-weight: normal;
}

h4.ff-display {
  font-weight: bold;
}

/**
* ff-* classes chained to avoid fonts-loaded specificity
*/
html,
body,
button,
input,
select,
textarea,
.ff-body.ff-body {
  font-family: "brandon-grotesque", sans-serif;
}

.ff-caption.ff-caption {
  font-family: "brandon-grotesque", sans-serif;
}

pre,
code,
kbd,
samp,
.ff-monospace.ff-monospace {
  font-family: "brandon-grotesque", sans-serif;
}

/* ==========================================================================
Base - Headings
========================================================================== */
h1,
.h1 {
  font-size: var(--global-header-size-h1);
}

h2,
.h2 {
  font-size: var(--global-header-size-h2);
}

h3,
.h3 {
  font-size: var(--global-header-size-h3);
}

h4,
.h4 {
  font-size: var(--global-header-size-h4);
}

h5,
.h5 {
  font-size: var(--global-header-size-h5);
}

h6,
.h6 {
  font-size: var(--global-header-size-h6);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  line-height: 1;
  margin: 0 0 0.5rem;
  color: inherit;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: normal;
  font-family: "brandon-grotesque", sans-serif;
}

/*  =========================================================================
    Grouping content
    http://developers.whatwg.org/grouping-content.html
    ========================================================================= */
p,
pre,
blockquote,
ul,
ol,
dl,
figure,
table,
fieldset {
  margin: 0;
  margin-bottom: 0.75em;
}

ol,
ul {
  padding-left: 1.5em;
  list-style-position: outside;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

ul {
  list-style-type: disc;
}

blockquote {
  margin: 0;
}

figure,
figcaption {
  /*  Correct `block` display for `figure` and `figcaption` elements in IE 8/9 */
  display: block;
}

/*  =========================================================================
    Text-level semantics
    http://developers.whatwg.org/text-level-semantics.html
    ========================================================================= */
small {
  /*  Address inconsistent and variable font size in all browsers */
  font-size: 90%;
  display: inline-block;
  letter-spacing: 0;
  font-weight: normal;
  font-family: inherit;
}

dfn {
  /*  Address styling not present in Safari 5 and Chrome */
  font-style: italic;
}

abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

sub,
sup {
  /*  Position subscript and superscript content without affecting line-height */
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

::-moz-selection {
  background: #b3d4fc;
  /*  Remove text-shadow in selection highlight */
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  /*  Remove text-shadow in selection highlight */
  text-shadow: none;
}

/*  =========================================================================
    Links
    http://developers.whatwg.org/links.html
    ========================================================================= */
a {
  color: inherit;
  font-weight: normal;
  line-height: inherit;
  word-wrap: break-word;
  text-decoration: none;
  /* Remove gray background color from active links in IE 10 */
  background-color: transparent;
}
a:not([class]) {
  text-decoration: underline;
}
a:active, a:hover {
  /* Improve readability when focused and mouse hovered in all browsers */
  outline: 0;
  cursor: pointer;
}
a:focus {
  outline: none;
}
.user-is-tabbing a:focus {
  outline: 2px solid #000;
}

.skip-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.92);
  color: #181822;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: underline;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 2;
  opacity: 1;
  outline: 0 !important;
  border: 2px solid #181822;
  backdrop-filter: blur(1px);
  transition: opacity 0.4s ease;
}
.skip-link:not(:focus) {
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
Page: Skip to content
========================================================================== */
.skip-to-content {
  background: var(--theme-color);
  color: #fff;
  font-weight: 500;
  left: 50%;
  padding: 10px;
  position: absolute;
  transform: translate(-50%, -110%);
  transition: transform 0.3s;
  z-index: 13;
}

.skip-to-content:focus {
  outline: none;
  transform: translate(-50%);
}

/*  =========================================================================
    Embedded content
    http://developers.whatwg.org/embedded-content-1
    ========================================================================= */
img,
picture,
embed,
object,
video {
  /* Remove border when inside `a` element in IE 8/9 */
  display: block;
  border: 0;
  max-width: 100%;
}

img[width],
img[height] {
  /* Non-fluid images if you specify `width` and/or `height` attributes. */
  max-width: none;
}

svg:not(:root) {
  /* Correct overflow displayed oddly in IE9 */
  overflow: hidden;
}

iframe {
  border: none;
}

/*  =========================================================================
    Pattern Styling
    ========================================================================= */
h1.sg-section__title.sg-heading {
  font-family: "brandon-grotesque", sans-serif !important;
  font-size: var(--global-header-size-h1) !important;
}

h2.sg-section__title.sg-heading {
  font-family: "brandon-grotesque", sans-serif !important;
  font-size: var(--global-header-size-h2) !important;
}

h2#styleguide,
h2#pagespages,
h2#patternspatterns {
  font-size: 1.75rem;
  margin-bottom: 10px;
}
h2#styleguide a,
h2#pagespages a,
h2#patternspatterns a {
  text-decoration: none;
  color: var(--link-color);
  background: linear-gradient(to bottom, var(--focus-color) 0%, var(--focus-color) 100%), linear-gradient(to bottom, var(--focus-color) 0%, var(--focus-color) 100%);
  background-position: 0 100%, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 3px, 0 3px;
  text-decoration: none;
  transition: background-size 0.2s ease-in-out;
  border-bottom: 0;
  padding-bottom: 3px;
  border: none;
}
@keyframes ButtonLine {
  0% {
    background-size: 100% 3px, 0 3px;
  }
  50% {
    background-size: 0 3px, 0 3px;
  }
  100% {
    background-size: 0 3px, 100% 3px;
  }
}
h2#styleguide a:visited,
h2#pagespages a:visited,
h2#patternspatterns a:visited {
  color: var(--link-color);
}
h2#styleguide a:hover, h2#styleguide a:focus,
h2#pagespages a:hover,
h2#pagespages a:focus,
h2#patternspatterns a:hover,
h2#patternspatterns a:focus {
  animation-name: ButtonLine;
  animation-duration: 0.75s;
}

.sg-section-pages-list .sg-list {
  margin-top: 30px;
  list-style: decimal;
}
.sg-section-pages-list .sg-list__item {
  margin-bottom: 5px;
  font-size: 1.25rem;
}
.sg-section-pages-list .sg-list__item a {
  text-decoration: none;
  color: var(--link-color);
  background: linear-gradient(to bottom, var(--focus-color) 0%, var(--focus-color) 100%), linear-gradient(to bottom, var(--focus-color) 0%, var(--focus-color) 100%);
  background-position: 0 100%, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 3px, 0 3px;
  text-decoration: none;
  transition: background-size 0.2s ease-in-out;
  border-bottom: 0;
  padding-bottom: 3px;
  --focus-color: #000;
}
@keyframes ButtonLine {
  0% {
    background-size: 100% 3px, 0 3px;
  }
  50% {
    background-size: 0 3px, 0 3px;
  }
  100% {
    background-size: 0 3px, 100% 3px;
  }
}
.sg-section-pages-list .sg-list__item a:visited {
  color: var(--link-color);
}
.sg-section-pages-list .sg-list__item a:hover, .sg-section-pages-list .sg-list__item a:focus {
  animation-name: ButtonLine;
  animation-duration: 0.75s;
}

.sg-container {
  max-width: 1440px !important;
}

#pattern-Modules-NewsItem .news-item {
  max-width: 500px;
}

#pattern-Modules-PageItem .page-item {
  max-width: 500px;
}

#pattern-Modules-EventItem .sg-pattern__content {
  background-color: #F0F0F0;
  padding: 30px;
}
#pattern-Modules-EventItem .event-item {
  max-width: 500px;
}

#pattern-Widgets-CalendarList .sg-pattern__content {
  background-color: #F0F0F0;
  margin: 0 -5px;
  padding: 10px 5px;
}
@media (min-width: 50em) {
  #pattern-Widgets-CalendarList .sg-pattern__content {
    padding: 30px;
    margin: 0;
  }
}

#pattern-Modules-PeoplePopup .people-popup {
  position: relative;
  top: auto;
  left: auto;
  opacity: 1;
  height: auto;
}

/* ==========================================================================
   Scoped Contexts
   ========================================================================== */
/*  =========================================================================
    Scopes: Prose
    ========================================================================= */
:root {
  --global-body-size-1: 8px;
  --global-body-size-2: 10px;
  --global-body-size-3: 12px;
  --global-body-size-4: 14px;
  --global-body-size-5: 16px;
  --global-body-size-6: 18px;
  --global-body-size-7: 20px;
  --global-body-size-8: 22px;
  --global-body-size-9: 24px;
  --global-body-size-10: 26px;
  --global-body-size-11: 28px;
  --global-body-size-12: 32px;
  --global-body-text: var(--global-body-size-6);
  --global-body-text-small: var(--global-body-size-3);
  --global-body-text-big: var(--global-body-size-8);
  --global-caption: var(--global-body-size-5);
}
@media (min-width: 50em) {
  :root {
    --global-body-text: var(--global-body-size-7);
    --global-body-text-small: var(--global-body-size-4);
    --global-body-text-big: var(--global-body-size-9);
    --global-caption: var(--global-body-size-6);
  }
}
@media (min-width: 62.5em) {
  :root {
    --global-body-text: var(--global-body-size-9);
    --global-body-text-small: var(--global-body-size-5);
    --global-body-text-big: var(--global-body-size-12);
  }
}

.s-prose h1,
.s-prose h2,
.s-prose h3,
.s-prose h4,
.s-prose h5,
.s-prose h6 {
  margin: 0 0 15px;
  line-height: 1.2;
  text-wrap: pretty;
}
.s-prose h1.text-center,
.s-prose h2.text-center,
.s-prose h3.text-center,
.s-prose h4.text-center,
.s-prose h5.text-center,
.s-prose h6.text-center {
  text-align: center;
}
.s-prose h1 + ul,
.s-prose h2 + ul,
.s-prose h3 + ul,
.s-prose h4 + ul,
.s-prose h5 + ul,
.s-prose h6 + ul {
  margin-top: 20px;
}
.s-prose h2,
.s-prose h3,
.s-prose h4,
.s-prose h5,
.s-prose h6 {
  margin-top: 60px;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
}
.s-prose h2:first-child,
.s-prose h3:first-child,
.s-prose h4:first-child,
.s-prose h5:first-child,
.s-prose h6:first-child {
  margin-top: 0;
}
.s-prose h2:last-child,
.s-prose h3:last-child,
.s-prose h4:last-child,
.s-prose h5:last-child,
.s-prose h6:last-child {
  margin-bottom: 0;
}
.s-prose p:last-child {
  margin-bottom: 0;
}
.s-prose p {
  margin: var(--global-body-text) 0 0;
  text-wrap: pretty;
}
.s-prose p:first-child {
  margin-top: 0;
}
.s-prose p.text-center {
  text-align: center;
}
.s-prose p:empty {
  display: none;
}
.s-prose p:not(.quote__text):not(.cta):not(.caption):not(.lead),
.s-prose ul, .s-prose ol, .s-prose dl {
  font-size: var(--global-body-text);
}
.s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results),
.s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results):visited,
.s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results):hover,
.s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results):active {
  text-decoration: none;
  color: var(--link-color);
  background: linear-gradient(to bottom, var(--focus-color) 0%, var(--focus-color) 100%), linear-gradient(to bottom, var(--focus-color) 0%, var(--focus-color) 100%);
  background-position: 0 100%, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 3px, 0 3px;
  text-decoration: none;
  transition: background-size 0.2s ease-in-out;
  border-bottom: 0;
  padding-bottom: 3px;
  font-weight: 700;
}
@keyframes ButtonLine {
  0% {
    background-size: 100% 3px, 0 3px;
  }
  50% {
    background-size: 0 3px, 0 3px;
  }
  100% {
    background-size: 0 3px, 100% 3px;
  }
}
.s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results):visited,
.s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results):visited:visited,
.s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results):hover:visited,
.s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results):active:visited {
  color: var(--link-color);
}
.s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results):hover, .s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results):focus,
.s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results):visited:hover,
.s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results):visited:focus,
.s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results):hover:hover,
.s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results):hover:focus,
.s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results):active:hover,
.s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results):active:focus {
  animation-name: ButtonLine;
  animation-duration: 0.75s;
}
.s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results):hover,
.s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results):visited:hover,
.s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results):hover:hover,
.s-prose a:not(.inline-button):not(.btn):not([data-component*=dialog] menu button):not(.calendar-filters__view-results):active:hover {
  font-weight: 700;
}
.s-prose .btn, .s-prose :where([data-component*=dialog] menu button), .s-prose .calendar-filters__view-results {
  margin-top: 30px;
  margin-bottom: 30px;
}
.s-prose .inline-button {
  margin: 5px 10px 5px 0;
}
.s-prose .fluid-width-video-wrapper {
  margin-bottom: 1em;
}
.s-prose hr {
  max-width: 15em;
  margin: 2em auto;
  border: none;
  border-top: 1px solid #6A6A6A;
}
.s-prose .inline-video {
  margin: 20px -20px;
}
.s-prose small {
  font-size: var(--global-body-text-small);
}
.s-prose .lead {
  font-size: var(--global-body-text-big);
}
.s-prose pre {
  margin: 30px 0;
  padding: 30px;
  background-color: #000;
  color: #5aff75;
  white-space: pre-wrap;
}
.s-prose ul, .s-prose ol {
  margin: 20px 0;
}
@media (min-width: 30em) {
  .s-prose ul, .s-prose ol {
    margin: 30px 0;
  }
  .s-prose ul:only-child,
  .s-prose ol:only-child {
    margin: 0;
  }
}
@media (min-width: 50em) {
  .s-prose .inline-video {
    margin: 40px -40px;
  }
}
@media (min-width: 23em) {
  .s-prose {
    --global-header-size-h1: var(--global-header-size-7);
    --global-header-size-h2: var(--global-header-size-5);
    --global-header-size-h3: var(--global-header-size-3);
    --global-header-size-h4: var(--global-header-size-2);
    --global-header-size-h5: var(--global-header-size-1);
    --global-header-size-h6: var(--global-header-size-1);
  }
}
@media (min-width: 30em) {
  .s-prose {
    --global-header-size-h1: var(--global-header-size-8);
    --global-header-size-h2: var(--global-header-size-7);
    --global-header-size-h3: var(--global-header-size-5);
    --global-header-size-h4: var(--global-header-size-4);
    --global-header-size-h5: var(--global-header-size-3);
    --global-header-size-h6: var(--global-header-size-2);
  }
}
@media (min-width: 50em) {
  .s-prose {
    --global-header-size-h1: var(--global-header-size-10);
    --global-header-size-h2: var(--global-header-size-8);
    --global-header-size-h3: var(--global-header-size-6);
    --global-header-size-h4: var(--global-header-size-5);
    --global-header-size-h5: var(--global-header-size-4);
    --global-header-size-h6: var(--global-header-size-3);
  }
}
@media (min-width: 72em) {
  .s-prose {
    --global-header-size-h2: var(--global-header-size-9);
    --global-header-size-h3: var(--global-header-size-7);
    --global-header-size-h4: var(--global-header-size-6);
    --global-header-size-h5: var(--global-header-size-5);
    --global-header-size-h6: var(--global-header-size-4);
  }
}

/* ==========================================================================
   Objects
   ========================================================================== */
/* ==========================================================================
   Grid
   ========================================================================== */
.o-grid {
  padding-left: 0;
}
.o-grid:before, .o-grid:after {
  content: " ";
  display: table;
}
.o-grid:after {
  clear: both;
}

.o-grid, .o-grid__item {
  list-style: none;
  margin: 0;
}

.o-grid__item {
  border-color: transparent;
  margin-bottom: 2.5%;
}

/**
 * Drop bottom margins if we know we only
 * have a single row of grid items.
 */
@media (min-width: 62.5em) {
  .o-grid--single-row .o-grid__item {
    margin-bottom: 0 !important;
  }
}

/**
 * Even numbers
 */
@media (min-width: 30em) {
  .o-grid--2up, .o-grid--4up {
    width: 102.5%;
    margin-left: -2.5%;
  }
}
@media (min-width: 30em) {
  .o-grid--2up .o-grid__item, .o-grid--4up .o-grid__item {
    float: left;
    margin-left: 1.25%;
    padding-left: 1.25%;
    margin-bottom: 2.5%;
    width: 48.75%;
  }
}
@media (min-width: 50em) {
  .o-grid--2up .o-grid__item, .o-grid--4up .o-grid__item {
    border-style: solid;
    border-width: 0 0 0 1px;
  }
}

@media (min-width: 50em) {
  .o-grid--2up .o-grid__item:nth-of-type(2n + 1) {
    clear: left;
    border-left: none;
  }
}

@media (min-width: 50em) {
  .o-grid--4up .o-grid__item {
    width: 23.75%;
  }
  .o-grid--4up .o-grid__item:nth-of-type(2n + 1) {
    clear: none;
  }
  .o-grid--4up .o-grid__item:nth-of-type(4n + 1) {
    clear: left;
    border-left: none;
  }
}

/**
 * Odd numbers
 */
@media (min-width: 50em) {
  .o-grid--3up {
    width: 102.5%;
    margin-left: -2.5%;
  }
  .o-grid--3up .o-grid__item {
    float: left;
    margin-left: 1.25%;
    padding-left: 1.25%;
    margin-bottom: 2.5%;
    width: 32.05%;
  }
  .o-grid--3up .o-grid__item:nth-of-type(2n + 1) {
    clear: none;
  }
  .o-grid--3up .o-grid__item:nth-of-type(3n + 1) {
    clear: left;
    border-left: none;
  }
}
/* ==========================================================================
   Objects: Icons
   ========================================================================== */
.o-icon {
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  width: 24px;
  height: 24px;
}

.o-icon--small {
  width: 13px;
  height: 13px;
}

.o-icon--medium {
  width: 26px;
  height: 26px;
}

.o-icon--large {
  width: 32px;
  height: 32px;
}

.o-icon--xlarge {
  width: 40px;
  height: 40px;
}

.o-icon--scale {
  width: 0.75em;
  height: 0.75em;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.o-icon--top {
  vertical-align: top;
}

.o-icon--bottom {
  vertical-align: bottom;
}

.o-icon--offset {
  margin-right: 5px;
}

/* ==========================================================================
   Objects: Lists
   ========================================================================== */
.o-block-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.o-block-list__item, .o-block-list__link {
  display: block;
}

.o-block-list__item {
  margin-bottom: 5px;
}

.o-inline-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.o-inline-list__item {
  display: inline-block;
  margin-right: 10px;
}
.o-inline-list__item:last-child {
  margin-right: 0;
}

.o-inline-list__link {
  display: block;
}

/* ==========================================================================
   Object: Buttons
   ========================================================================== */
:root {
  --global-button-size: 14px;
  --global-button-size-small: 12px;
  --global-button-border-radius: 8px;
  --global-button-border-radius-medium: 6px;
  --global-button-border-radius-small: 3px;
  --global-button-padding: 16px 12px;
  --global-button-padding-small: 17px 20px;
}
@media (min-width: 50em) {
  :root {
    --global-button-size: 16px;
    --global-button-size-small: 14px;
    --global-button-padding: 16px 36px;
    --global-button-padding-small: 17px 20px;
  }
}

.btn, :where([data-component*=dialog] menu button), .calendar-filters__view-results,
.inline-button,
.btn-primary,
.step-button-next,
.step-button-prev,
.userform input[type=button],
.userform input[type=submit] {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-appearance: none;
  font: inherit;
  font-family: "brandon-grotesque", sans-serif;
  font-size: var(--global-button-size);
  font-weight: 700;
  margin: 0;
  line-height: 1;
  padding: var(--global-button-padding);
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(105deg, #BD8C3C 5.05%, #D0A764 87.07%);
  border: none;
  border-radius: var(--global-button-border-radius);
  isolation: isolate;
  transition: 0.5s ease;
}
.btn, :where([data-component*=dialog] menu button), .calendar-filters__view-results, .btn:hover, .btn:focus, .btn:active,
.inline-button,
.inline-button:hover,
.inline-button:focus,
.inline-button:active,
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.step-button-next,
.step-button-next:hover,
.step-button-next:focus,
.step-button-next:active,
.step-button-prev,
.step-button-prev:hover,
.step-button-prev:focus,
.step-button-prev:active,
.userform input[type=button],
.userform input[type=button]:hover,
.userform input[type=button]:focus,
.userform input[type=button]:active,
.userform input[type=submit],
.userform input[type=submit]:hover,
.userform input[type=submit]:focus,
.userform input[type=submit]:active {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover, :hover:where([data-component*=dialog] menu button), .calendar-filters__view-results:hover,
  .inline-button:hover,
  .btn-primary:hover,
  .step-button-next:hover,
  .step-button-prev:hover,
  .userform input[type=button]:hover,
  .userform input[type=submit]:hover {
    color: #000;
    text-decoration: none;
    outline: none;
    filter: brightness(1.2);
  }
}
.user-is-tabbing .btn:focus, .user-is-tabbing :focus:where([data-component*=dialog] menu button), .user-is-tabbing .calendar-filters__view-results:focus,
.user-is-tabbing .inline-button:focus,
.user-is-tabbing .btn-primary:focus,
.user-is-tabbing .step-button-next:focus,
.user-is-tabbing .step-button-prev:focus,
.user-is-tabbing .userform input[type=button]:focus,
.user-is-tabbing .userform input[type=submit]:focus {
  outline: 4px double #000;
}

.btn-primary[disabled],
.btn-primary[disabled]:hover {
  background-color: var(--theme-color);
}

.btn[disabled], [disabled]:where([data-component*=dialog] menu button), [disabled].calendar-filters__view-results,
.btn[disabled]:hover,
.btn.is-disabled,
.is-disabled:where([data-component*=dialog] menu button),
.is-disabled.calendar-filters__view-results,
.btn.is-disabled:hover {
  cursor: default;
  cursor: not-allowed;
  opacity: 0.5;
}

.btn--small {
  font-size: var(--global-button-size-small);
  padding: var(--global-button-padding-small);
  border-radius: var(--global-button-border-radius-small);
  line-height: 1.1;
}

.btn--black {
  color: #fff;
  background-image: linear-gradient(to right, #333 0%, #333 5%, #000 50%, #000 100%);
  background-size: 200% 100%;
  background-position: 100% 0%;
}
@media (hover: hover) and (pointer: fine) {
  .btn--black:hover {
    color: #fff;
    background-position: 0% 0%;
    filter: none;
  }
}

.btn--white {
  color: #000;
  background-image: linear-gradient(to right, #dadada 0%, #dadada 5%, #fff 50%, #fff 100%);
  background-size: 200% 100%;
  background-position: 100% 0%;
}
@media (hover: hover) and (pointer: fine) {
  .btn--white:hover {
    color: #000;
    background-position: 0% 0%;
    filter: none;
  }
}

.btn--disabled {
  color: #000;
  background: #6A6A6A;
}
@media (hover: hover) and (pointer: fine) {
  .btn--disabled:hover {
    color: #000;
    background: #6A6A6A;
  }
}
.btn--disabled .loader {
  border: 4px solid #8c8c8c;
  border-radius: 50%;
  border-top: 4px solid #ddd;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-left: 8px;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btn--solid-white {
  color: #000;
  background: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .btn--solid-white:hover {
    color: #fff;
    background-color: transparent;
    border-color: #fff;
  }
}

.btn--text, :where([data-component*=dialog] [data-ref=cancel]) {
  color: var(--theme-color);
  background: transparent;
  margin: 0;
  text-decoration: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
@media (hover: hover) and (pointer: fine) {
  .btn--text:hover, :hover:where([data-component*=dialog] [data-ref=cancel]) {
    color: var(--theme-color);
    background: transparent;
    text-decoration: underline;
  }
}

.btn:has(.o-icon), :has(.o-icon):where([data-component*=dialog] menu button), .calendar-filters__view-results:has(.o-icon) {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn:has(.o-icon) .o-icon, :has(.o-icon):where([data-component*=dialog] menu button) .o-icon, .calendar-filters__view-results:has(.o-icon) .o-icon {
  flex-shrink: 0;
}

.btn--outline-black,
.btn--outline {
  color: #000;
  background: transparent;
  box-shadow: inset 0 0 0 2px #000;
}
@media (hover: hover) and (pointer: fine) {
  .btn--outline-black:hover,
  .btn--outline:hover {
    color: #fff;
    background: #000;
  }
}

.btn--outline-white {
  background: transparent;
  box-shadow: inset 0 0 0 2px #fff;
}
@media (hover: hover) and (pointer: fine) {
  .btn--outline-white:hover {
    color: #000;
    background: #fff;
  }
}

.btn--loading {
  background-image: linear-gradient(-45deg, #bd8c3c, #bd8c3c 25%, rgba(189, 140, 60, 0.8) 25%, rgba(189, 140, 60, 0.8) 50%, #bd8c3c 50%, #bd8c3c 75%, rgba(189, 140, 60, 0.8) 75%, rgba(189, 140, 60, 0.8));
  background-color: #000;
  animation: loadingButton 1s linear infinite;
  background-size: 4em 4em;
  color: white;
  cursor: progress;
}
@media (hover: hover) and (pointer: fine) {
  .btn--loading:hover {
    background-color: #000;
    cursor: progress;
  }
}

@keyframes loadingButton {
  to {
    background-position: 4em 0;
  }
}
/* ==========================================================================
   Objects: Blocks
   ========================================================================== */
.o-slats {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 0;
}

.o-slats__item {
  display: block;
  font-weight: normal;
  padding: 0.5em 0;
  border-bottom: 1px solid #6A6A6A;
}
.o-slats__item:last-of-type {
  border-bottom: none;
}

/* ==========================================================================
   Object: Figures
   ========================================================================== */
.o-figure {
  position: relative;
  margin: 0;
}

.o-figure__media {
  width: 100%;
}

.o-figure__caption {
  font-size: 80%;
  margin: 0;
  position: absolute;
  bottom: 8px;
  left: 8px;
  padding: 0.3em 0.5em;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
}

/* ==========================================================================
   Object: Embeds
   ========================================================================== */
.o-embed {
  height: 0;
  position: relative;
  /*  Default 3:2 aspect-ratio */
  padding-bottom: 0.6666666667;
}

.o-embed--video {
  /*  16:9 aspect-ratio for video */
  padding-bottom: 0.5625;
}

.o-embed__iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Globals
   ========================================================================== */
/* ==========================================================================
   Global Alert
   ========================================================================== */
.global-alerts__alert {
  background-color: #F7F5F2;
  color: #fff;
  display: none;
}

.global-alerts__alert.visible {
  display: flex;
  justify-content: center;
}
.nav-open .global-alerts__alert.visible, .global-container:has(.event-sticky-nav.show) .global-alerts__alert.visible {
  display: none;
}

.global-alerts__alert + .global-alerts__alert {
  border-top: 1px solid #fff;
}

.global-alert__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  position: relative;
  width: 100%;
  font-size: 0.75rem;
  background-color: #224986;
  max-width: 1390px;
  margin: 0;
}
@media (min-width: 50em) {
  .global-alert__inner {
    font-size: 0.875rem;
  }
}
@media (min-width: 62.5em) {
  .global-alert__inner {
    margin: 15px 15px 0;
  }
}

.global-alert__message {
  text-align: left;
  text-transform: none;
  width: calc(100% - 35px);
  margin: 0;
}
@media (min-width: 50em) {
  .global-alert__message {
    padding: 0 70px 0 60px;
    text-align: center;
  }
}
.global-alert__message p {
  margin-bottom: 0;
  font-size: 0.9375rem;
  font-weight: 700;
}
@media (min-width: 50em) {
  .global-alert__message p {
    font-size: 1rem;
  }
}
.global-alert__message a {
  --focus-color: #fff;
  --link-color: #fff;
  text-decoration: none;
  color: var(--link-color);
  background: linear-gradient(to bottom, var(--focus-color) 0%, var(--focus-color) 100%), linear-gradient(to bottom, var(--focus-color) 0%, var(--focus-color) 100%);
  background-position: 0 100%, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 1px, 0 1px;
  text-decoration: none;
  transition: background-size 0.2s ease-in-out;
  border-bottom: 0;
  padding-bottom: 1px;
  font-weight: 500;
}
@keyframes ButtonLine-thin {
  0% {
    background-size: 100% 1px, 0 1px;
  }
  50% {
    background-size: 0 1px, 0 1px;
  }
  100% {
    background-size: 0 1px, 100% 1px;
  }
}
.global-alert__message a:visited {
  color: var(--link-color);
}
.global-alert__message a:hover, .global-alert__message a:focus {
  animation-name: ButtonLine-thin;
  animation-duration: 0.75s;
  animation-fill-mode: forwards;
}
.user-is-tabbing .global-alert__message a:focus {
  outline-color: #fff;
}

.global-alert__close {
  display: flex;
  align-items: center;
  font-family: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.8;
  line-height: 0.5625rem;
  color: #fff;
  transition: opacity 0.3s ease;
}
.global-alert__close:hover {
  opacity: 1;
}
@media (min-width: 50em) {
  .global-alert__close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.global-alert__close .o-icon {
  width: 16px;
  height: 16px;
}
.user-is-tabbing .global-alert__close:focus {
  outline: 2px solid #fff;
}

/* ==========================================================================
    Global Footer
    ========================================================================== */
.global-footer {
  background-color: transparent;
  color: #000;
  position: relative;
  padding: 30px 0;
  z-index: 5;
}
.user-is-tabbing .global-footer a:focus {
  outline-color: #000;
}
@media (min-width: 62.5em) {
  .global-footer {
    padding: 40px 0;
  }
}

.global-footer__inner {
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 50em) {
  .global-footer__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 50em) {
  .global-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }
}

.global-footer__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}
@media (min-width: 62.5em) {
  .global-footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    padding: 40px 0;
    margin-bottom: 25px;
  }
}

.global-footer__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.global-footer__logo {
  display: inline-block;
}
.global-footer__logo .o-icon {
  width: 100px;
  height: 64px;
}
@media (min-width: 62.5em) {
  .global-footer__logo .o-icon {
    width: 160px;
    height: 101px;
  }
}

.global-footer__brand-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 62.5em) {
  .global-footer__brand-wrapper {
    display: flex;
    flex-direction: row;
    gap: 50px;
    position: relative;
    padding-right: 32px;
  }
  .global-footer__brand-wrapper:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
  }
}

.global-footer__brand {
  display: flex;
  flex-direction: row;
  gap: 25px;
}
@media (min-width: 62.5em) {
  .global-footer__brand {
    flex: 1;
    flex-direction: column;
  }
}
@media (min-width: 80em) {
  .global-footer__brand {
    padding-right: 20px;
  }
}

.global-footer__address {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}
@media (min-width: 62.5em) {
  .global-footer__address {
    font-size: 1.125rem;
  }
}
.global-footer__address p {
  margin-bottom: 0;
}
.global-footer__address p:last-child {
  margin-bottom: 0;
}
.global-footer__address a {
  color: #000;
  text-decoration: underline;
  display: block;
  margin-top: 10px;
}
.global-footer__address h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 10px;
}

.global-footer__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.global-footer__details {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  gap: 15px;
}
@media (min-width: 62.5em) {
  .global-footer__details {
    flex: 1;
    padding-top: 0;
    border-top: none;
    gap: 25px;
  }
}
.global-footer__details h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
}

.global-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.global-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 62.5em) {
  .global-footer__nav-list {
    gap: 40px;
  }
}
@media (min-width: 72em) {
  .global-footer__nav-list {
    flex-direction: row;
    gap: 40px;
  }
  .global-footer__nav-list > * {
    flex: 1;
  }
}

.global-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 62.49em) {
  .global-footer__links {
    padding: 15px 0 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}
@media (min-width: 72em) {
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}

.footer-links__item {
  display: flex;
}

.footer-links__link {
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: underline;
}
@media (min-width: 62.5em) {
  .footer-links__link {
    font-size: 1.125rem;
  }
}

.global-footer__communication {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  width: 100%;
  padding-bottom: 25px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 62.5em) {
  .global-footer__communication {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    margin-bottom: 0;
    gap: 40px;
  }
}

.global-footer__social {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 24.3em) {
  .global-footer__social {
    gap: 15px;
    justify-content: flex-start;
  }
}
@media (min-width: 62.5em) {
  .global-footer__social {
    justify-content: flex-end;
  }
}
.global-footer__social:hover .o-icon {
  opacity: 0.4;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}
.social-link .o-icon {
  height: 100%;
  width: 100%;
  fill: transparent;
  transition: opacity 0.4s ease;
}
.social-link:hover .o-icon {
  opacity: 1;
}

.global-footer__hours-title {
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 5px;
  margin-top: 20px;
}
.global-footer__hours-title:first-of-type {
  margin-top: 0;
}

.global-footer__hours-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 20px;
  margin-bottom: 0;
  font-size: 1.125rem;
}
@media (min-width: 62.5em) {
  .global-footer__hours-list {
    grid-template-columns: auto;
  }
}
@media (min-width: 80em) {
  .global-footer__hours-list {
    grid-template-columns: auto 1fr;
  }
}
.global-footer__hours-list dt {
  font-weight: 500;
}
.global-footer__hours-list dd {
  margin: 0;
  text-align: left;
}

.global-footer__newsletter {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  flex: 1;
}
@media (min-width: 62.5em) {
  .global-footer__newsletter {
    max-width: 500px;
  }
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  position: relative;
  width: 100%;
}

label.footer-newsletter__label {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  text-align: left;
  width: 100%;
  display: block;
}

.footer-newsletter__input-field {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 62.5em) {
  .footer-newsletter__input-field {
    max-width: 365px;
  }
}
.footer-newsletter__input-field input.footer-newsletter__input {
  padding: 10px 15px 8px 15px;
  font-size: 1.125rem;
  border-radius: 6px 0 0 6px;
  border: none;
  background: white;
  line-height: 1;
  flex: 1;
  min-width: 0;
}
.footer-newsletter__input-field input.footer-newsletter__input::-moz-placeholder {
  color: #676767;
}
.footer-newsletter__input-field input.footer-newsletter__input::placeholder {
  color: #676767;
}

.footer-newsletter__button {
  border-radius: 0 6px 6px 0;
  flex-shrink: 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 32em) {
  .footer-newsletter__button {
    width: auto;
  }
}

.global-footer__meta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
  position: relative;
  width: 100%;
}
@media (min-width: 62.5em) {
  .global-footer__meta {
    padding: 30px 0 20px;
  }
}

.global-footer__made {
  margin-bottom: 0;
}
.global-footer__made .o-icon {
  width: 60px;
  height: 18px;
}
@media (min-width: 62.5em) {
  .global-footer__made .o-icon {
    width: 80px;
    height: 25px;
  }
}

.global-footer__copyright {
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 0;
  flex-shrink: 0;
  text-align: left;
}
@media (min-width: 62.5em) {
  .global-footer__copyright {
    font-size: 1.125rem;
  }
}

/*  ==========================================================================
    Global Header
    ========================================================================== */
.global-header {
  box-sizing: border-box;
  position: relative;
  z-index: 9;
  padding: 15px 0;
}
@media (min-width: 72em) {
  .global-header {
    width: 100%;
    background-color: #F7F5F2;
    padding: 20px 0;
  }
}

.global-header__inner {
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  z-index: 3;
}
@media (min-width: 50em) {
  .global-header__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 62.5em) {
  .global-header__inner {
    display: flex;
    align-items: center;
    gap: 0;
  }
}
@media (min-width: 32em) {
  body.nav-open .global-header__inner {
    margin-right: 0;
  }
}
@media (min-width: 72em) {
  body.nav-open .global-header__inner {
    margin-right: auto;
  }
}

.global-header__logo {
  border: none;
  z-index: 3;
  position: relative;
  width: 120px;
  height: 75px;
  display: none;
}
@media (min-width: 62.5em) {
  .global-header__logo {
    display: block;
  }
}
.user-is-tabbing .global-header__logo:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.global-header__logo-mobile {
  border: none;
  z-index: 3;
  position: relative;
  width: 140px;
  height: 48px;
  min-width: 140px;
}
@media (min-width: 62.5em) {
  .global-header__logo-mobile {
    display: none;
  }
}
.user-is-tabbing .global-header__logo-mobile:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.global-header__navs {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 20px;
}
@media (min-width: 62.5em) {
  .global-header__navs {
    flex: 1;
    justify-content: space-between;
    align-items: center;
  }
}

/*  ==========================================================================
    Global Header - Toolbar
    ========================================================================== */
.global-header__toolbar {
  display: flex;
}
@media (min-width: 62.5em) {
  .global-header__toolbar {
    justify-content: flex-end;
  }
}

.global-header__tools {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 4;
  margin-right: 15px;
  padding-right: 10px;
}
@media (min-width: 24.3em) {
  .global-header__tools {
    gap: 10px;
    padding-right: 15px;
  }
}
@media (max-width: 62.49em) {
  .global-header__tools {
    border-right: 1px solid rgba(0, 0, 0, 0.4);
  }
}
@media (min-width: 62.5em) {
  .global-header__tools {
    gap: 20px;
    padding-right: 0;
    margin-right: 0;
  }
}
.global-header__tools:hover .global-header__button {
  opacity: 0.5;
}

.global-header__button {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #000;
  background-color: transparent;
  padding: 0;
  border: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.global-header__button .o-icon {
  width: 34px;
  height: 34px;
  padding: 5px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .global-header__button:hover {
    opacity: 1 !important;
  }
  .global-header__button:hover .o-icon {
    transform: scale(1.1);
  }
}

.global-header__button-text {
  display: none;
  font-weight: 500;
  font-size: 1rem;
}
@media (max-width: 31.99em) {
  .global-header__button-text {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

.global-header__button--search {
  display: none;
}
@media (min-width: 62.5em) {
  .global-header__button--search {
    display: flex;
  }
}
@media (max-width: 62.49em) {
  body.nav-open .global-header__button--search {
    display: none;
  }
}

body.user-logged-in .global-header__button--login {
  display: none;
}

.global-header__account {
  display: flex;
}
@media (min-width: 50em) {
  .global-header__account {
    display: flex;
  }
}

.global-header__account-menu {
  position: relative;
  transition: opacity 0.3s ease;
  display: none;
}
@media (max-width: 31.99em) {
  .global-header__account-menu {
    display: flex;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    width: 0;
    height: 0;
  }
}

.global-header__button--login {
  display: flex;
}
.global-header__button--login .o-icon {
  width: 32px;
  height: 32px;
}

.global-header__button--logged-out {
  display: none;
}

@media (min-width: 32em) {
  body.user-logged-in .global-header__account-menu {
    display: flex;
  }
}
@media (max-width: 62.49em) {
  body.user-logged-in .global-header__account-menu {
    opacity: 1;
    visibility: visible;
    width: auto;
    height: auto;
  }
}

@media (max-width: 31.99em) {
  body.user-logged-out.nav-open .global-header__button--login {
    opacity: 1;
    visibility: visible;
    width: auto;
    height: auto;
  }
}
@media (min-width: 32em) {
  body.user-logged-out .global-header__button--login {
    display: flex;
  }
}
@media (max-width: 62.49em) {
  body.user-logged-out .global-header__account-menu {
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
  }
}

.global-header__button--tickets {
  display: flex;
}
@media (min-width: 62.5em) {
  .global-header__button--tickets {
    display: none;
  }
}

.global-header__cart {
  display: none;
  position: relative;
}
@media (min-width: 62.5em) {
  .global-header__cart {
    display: flex;
  }
}
.global-header__cart .o-icon {
  padding: 6px 4px 4px 0;
}
.global-header__cart .cart-number {
  background: #A23625;
  color: #fff;
  height: 21px;
  line-height: 1.3125rem;
  width: 21px;
  text-align: center;
  border-radius: 50%;
  font-size: 0.8125rem;
  font-weight: 500;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}
.items-in-cart .global-header__cart .cart-number {
  display: inline-block;
}

.global-header__button--search {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* ==========================================================================
    Global Header - Menu Button
    ========================================================================== */
.global-header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: 0;
  width: 28px;
  height: 28px;
  padding: 2px;
  background: none;
  z-index: 4;
  cursor: pointer;
  margin-top: 3px;
}
@media (min-width: 62.5em) {
  .global-header__menu {
    display: none;
  }
}
.user-is-tabbing .global-header__menu:focus {
  outline: 2px solid #000;
}

.menu-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: hidden;
  width: 100%;
  transition: all 250ms ease-in-out;
}

.menu-icon__line {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #000;
  transition: all 0.3s ease-out;
}

.menu-icon__line--1 {
  transform: translateY(-7px);
}

.menu-icon__line--2 {
  transform: translateY(7px);
}

.global-header__menu.is-toggled .menu-icon__line--1 {
  transform: translateY(0) rotate(45deg) scaleX(1.05);
}
.global-header__menu.is-toggled .menu-icon__line--2 {
  transform: translateY(0) rotate(-45deg) scaleX(1.05);
}
.global-header__menu.is-toggled .menu-icon__line--3 {
  opacity: 0;
}

.global-header__dropdown-menu {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 0px;
  width: 100vw;
  height: 100svh;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
body.nav-open .global-header__dropdown-menu {
  opacity: 1;
}
@media (min-width: 72em) {
  .global-header__dropdown-menu {
    display: none;
  }
}
.global-header__dropdown-menu .header__navigation {
  display: block;
}
.global-header__dropdown-menu .header__navigation .desktop-navigation {
  margin-top: 150px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.global-header__dropdown-menu .header__navigation .desktop-navigation .desktop-navigation__item {
  display: block;
  margin: 25px 0;
}
.global-header__dropdown-menu .header__navigation .desktop-navigation .desktop-navigation__item .desktop-navigation__link:before {
  display: block;
  margin-right: 0;
  width: 0px;
  height: 0px;
}

/*  ==========================================================================
    Global Header - Navigation
    ========================================================================== */
.global-header__navigation {
  display: none;
  margin-left: auto;
}
@media (min-width: 62.5em) {
  .global-header__navigation {
    display: flex;
    justify-content: center;
    flex: 1;
  }
}

.desktop-navigation {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0 40px;
}
@media (min-width: 62.5em) {
  .desktop-navigation {
    flex-direction: row;
  }
}
@media (min-width: 80em) {
  .desktop-navigation {
    gap: 0 60px;
  }
}
.user-is-tabbing .desktop-navigation a:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.desktop-navigation:hover .desktop-navigation__link {
  opacity: 0.5;
}

.desktop-navigation__item {
  display: inline-block;
}

.desktop-navigation__link {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  font-family: "brandon-grotesque", sans-serif;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}
.desktop-navigation__link:hover {
  opacity: 1 !important;
}

/* ==========================================================================
    Global Header - Account Menu
    ========================================================================== */
.account-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 40px;
  width: 180px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 7px 10px 9px rgba(0, 0, 0, 0.1490196078);
  border-radius: 10px;
  transition: opacity 0.5s ease;
}
.account-menu.is-toggled {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 72em) {
  .account-menu {
    right: 15px;
  }
}
.account-menu:before {
  content: "";
  position: absolute;
  top: -6px;
  right: 51px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
}
@media (min-width: 72em) {
  .account-menu:before {
    right: 36px;
  }
}
@media (min-width: 80em) {
  .account-menu:before {
    right: 46px;
  }
}

.account-menu__item:first-child .account-menu__link {
  border-radius: 5px 10px 0 0;
}
@media (min-width: 32em) {
  .account-menu__item:first-child .account-menu__link {
    border-radius: 10px 10px 0 0;
  }
}

.account-menu__link {
  display: block;
  font-weight: bold;
  padding: 15px;
  background-color: #fff;
  transition: background-color 0.3s ease;
  outline-offset: -4px;
}
.account-menu__link:hover, .account-menu__link:focus {
  background-color: #F0F0F0;
}

.account-menu__item--logout {
  padding: 10px 15px;
  background-color: #BD8C3C;
  border-radius: 0 0 10px 10px;
  text-align: right;
}
.account-menu__item--logout .account-menu__link {
  background-color: transparent;
  padding: 0 0 3px;
  border-bottom: 2px solid transparent;
  color: #000;
}
.account-menu__item--logout .account-menu__link, .account-menu__item--logout .account-menu__link:focus {
  outline: none;
}
.account-menu__item--logout:has(.account-menu__link:focus-visible) {
  outline: 2px solid #000;
  outline-offset: -5px;
}

/*  ==========================================================================
    Global Header - Nav Open
    ========================================================================== */
body.nav-open .global-header__logo-mobile .o-icon--logo-mobile {
  fill: #BD8C3C;
}
@media (min-width: 38.4375em) {
  body.nav-open .global-header__logo-mobile .o-icon--logo-mobile {
    fill: #fff;
  }
}
@media (max-width: 62.49em) {
  body.nav-open .global-header__button {
    color: #fff;
  }
}
body.nav-open .global-nav__item-arrow svg {
  fill: #A5A5A5;
}
body.nav-open .global-nav__item-arrow:hover svg {
  fill: #fff;
}
body.nav-open .global-header__tools {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
body.nav-open .global-header__menu.is-toggled .menu-icon__line {
  background-color: #fff;
}
body.nav-open .global-navigation__items .global-nav__item {
  border-bottom: transparent;
}
body.nav-open .global-navigation__items .global-nav__link {
  color: #fff;
}
body.nav-open .global-navigation__items .global-nav__link::visited, body.nav-open .global-navigation__items .global-nav__link:active {
  color: #fff;
}
body.nav-open .global-navigation__search-input {
  border: 1px solid #fff;
  border-width: 1px;
  padding: 15px;
  border-radius: 40px;
  color: #fff;
  font-size: 1rem;
}
body.nav-open .global-navigation__search-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.95);
}
body.nav-open .global-navigation__search-input::placeholder {
  color: rgba(255, 255, 255, 0.95);
}
@media (max-width: 62.49em) {
  body.nav-open .o-icon.o-icon--search {
    position: relative;
    top: 2px;
    left: -20px;
    width: 18px;
    height: 18px;
    fill: #fff;
  }
}

/*  ==========================================================================
    Global Header - Mobile - Cart
    ========================================================================== */
body.items-in-cart .global-header__cart {
  display: flex;
}
@media (max-width: 62.49em) {
  body.items-in-cart .global-header__account {
    display: none;
  }
}
@media (max-width: 62.49em) {
  body.items-in-cart .global-header__button--favorite {
    order: 4;
  }
}

/*  ==========================================================================
	Global Navigation
	========================================================================== */
.global-navigation {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  height: 100svh;
  width: 100%;
  z-index: 8;
  background-color: #fff;
  transition: transform 0.5s ease;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.global-navigation::-webkit-scrollbar-thumb, .global-navigation::-webkit-scrollbar, .global-navigation::-webkit-scrollbar-track {
  background-color: transparent;
  display: none;
}
.global-navigation.is-toggled {
  transform: translateX(0);
  background-color: #000;
}
@media (min-width: 32em) {
  .global-navigation {
    max-width: 450px;
  }
}
@media (min-width: 72em) {
  .global-navigation {
    display: none;
  }
}

.global-navigation__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 78px;
}
@media (min-width: 62.5em) {
  .global-navigation__inner {
    padding-top: 115px;
  }
}

.global-navigation__search {
  display: flex;
  align-items: center;
  padding: 15px 15px 30px;
}

.global-navigation__search-input {
  color: #000;
  background-color: transparent;
  border: 1px solid #000;
  border-width: 0 0 1px;
  padding: 10px 0;
  width: 100%;
  transition: border-bottom-color 0.3s ease;
}
.global-navigation__search-input:focus {
  outline: 2px solid var(--theme-color-dark);
  border-bottom-color: #BD8C3C;
}
.global-navigation__search-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.global-navigation__search-input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.global-navigation__search-submit {
  color: #000;
  background-color: transparent;
  border: none;
  padding: 0;
  margin-top: -5px;
  margin-left: -20px;
}
.global-navigation__search-submit:focus {
  outline: 2px solid var(--theme-color-dark);
}

.global-navigation__footer {
  display: flex;
  gap: 15px;
  background-color: #fff;
  padding: 15px;
  padding-top: 0;
  box-shadow: 0px -7px 20px 20px rgba(255, 255, 255, 0.9);
  z-index: 3;
}
.global-navigation__footer > .btn, .global-navigation__footer > :where([data-component*=dialog] menu button), .global-navigation__footer > .calendar-filters__view-results {
  flex-basis: 100%;
  justify-content: center;
}

/*  ==========================================================================
    Global Navigation - Global Nav
    ========================================================================== */
.global-navigation__items {
  flex: 1;
}

.global-nav {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  overflow-y: auto;
}

.global-nav__inner {
  height: 100%;
  width: 100%;
  overflow: visible;
}

.global-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  max-height: -moz-fit-content;
  max-height: fit-content;
  position: absolute;
  left: 100%;
  top: 0;
  padding: 5px 15px;
  background-color: #fff;
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s ease;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
}
.global-nav__list:not(.is-active) {
  overflow: initial;
  -webkit-overflow-scrolling: touch;
}
.global-nav__list > ul:first-child {
  height: auto;
  background-color: #fff;
}
body.nav-open .global-nav__list {
  background-color: #000;
}

.global-nav__account {
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  padding-top: 25px;
  margin-top: 40px;
}
.global-nav__account .global-nav__link {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.global-nav__account-arrow {
  margin-top: -5px;
}

.global-nav__description {
  font-size: 0.875rem;
  margin-top: 10px;
  padding-right: 40px;
}

.global-nav__item.has-child > ul > .global-nav__item.has-child.global-nav__item--active > ul > li > ul {
  overflow-y: auto;
}

.global-nav__list.global-nav--level-0 {
  left: 0;
}

.global-nav__list.is-active {
  transform: translate3d(-100%, 0, 0);
}

.global-nav__item--active > .global-nav__child {
  z-index: 2;
}

.global-nav__item:not(.global-nav__item--active) ul {
  display: none;
}

.global-nav__item.global-nav__item--active > ul {
  display: block;
}

.global-nav__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 45px;
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
  margin-bottom: 15px;
  word-break: break-word;
}

.global-nav__item-arrow {
  color: #000;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (min-width: 62.5em) {
  .global-nav__item-arrow {
    width: 40px;
    height: 40px;
  }
}
.global-nav__item-arrow .o-icon {
  width: 24px;
  height: 24px;
}

.global-nav__item--back {
  margin-top: 20px;
  padding-top: 15px;
}
body.nav-open .global-nav__item--back.global-nav__item {
  margin-top: 0;
  padding-top: 0;
  cursor: pointer;
}
body.nav-open .global-nav__item--back .global-nav__back {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
}

.global-nav__link {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  color: #000;
  padding-right: 10px;
}
.global-nav__link:visited, .global-nav__link:active {
  color: #000;
}

.global-nav__back {
  display: flex;
  gap: 10px;
  align-items: center;
  border: none;
  margin: 0;
  padding: 0;
  background: transparent;
  font-weight: 700;
  font-size: 0.875rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.global-nav__back::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.global-nav__back .o-icon {
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
}

.global-nav--level-1 .global-nav__item,
.global-nav--level-2 .global-nav__item,
.global-nav--level-3 .global-nav__item {
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.global-nav--level-1 .global-nav__link,
.global-nav--level-2 .global-nav__link,
.global-nav--level-3 .global-nav__link {
  font-size: 1.5rem;
}
body.nav-open .global-nav--level-1 .global-nav__item--section,
body.nav-open .global-nav--level-2 .global-nav__item--section,
body.nav-open .global-nav--level-3 .global-nav__item--section {
  border-bottom: 1px solid #fff;
}
.global-nav--level-1 .global-nav__item--section .global-nav__link,
.global-nav--level-2 .global-nav__item--section .global-nav__link,
.global-nav--level-3 .global-nav__item--section .global-nav__link {
  font-size: 1.5rem;
}
.global-nav--level-1 .global-nav__item--section .global-nav__link span,
.global-nav--level-2 .global-nav__item--section .global-nav__link span,
.global-nav--level-3 .global-nav__item--section .global-nav__link span {
  line-height: 1.2;
}
@media screen and (max-height: 47.5rem) {
  .global-nav--level-1 .global-nav__item--section .global-nav__link,
  .global-nav--level-2 .global-nav__item--section .global-nav__link,
  .global-nav--level-3 .global-nav__item--section .global-nav__link {
    font-size: 1.375rem;
  }
}
.global-nav--level-1 .global-nav__item-arrow .o-icon,
.global-nav--level-2 .global-nav__item-arrow .o-icon,
.global-nav--level-3 .global-nav__item-arrow .o-icon {
  width: 20px;
  height: 20px;
}

/*  ==========================================================================
	Global Navigation Overlay
	========================================================================== */
.global-navigation-overlay {
  backdrop-filter: blur(5px) brightness(75%) contrast(120%);
  background-color: rgba(25, 25, 25, 0.7);
  transition: backdrop-filter 0.4s ease, background-color 0.4s ease;
  position: fixed;
  opacity: 1;
  height: 100%;
  width: 100%;
  z-index: 7;
  visibility: visible;
  transition: opacity 0.5s ease;
  top: 0;
  left: 0;
}
body:not(.nav-open) .global-navigation-overlay {
  visibility: hidden;
  opacity: 0;
}

/*  ==========================================================================
	Global Navigation
	========================================================================== */
.global-search {
  backdrop-filter: blur(5px) brightness(75%) contrast(120%);
  background-color: rgba(25, 25, 25, 0.7);
  transition: backdrop-filter 0.4s ease, background-color 0.4s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.global-search.is-toggled {
  opacity: 1;
  visibility: visible;
}

.global-search + .page-content:has(.site-search__results) .search-form__wrapper {
  width: auto;
}

.global-search__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  padding: 0;
  color: #fff;
  cursor: pointer;
}

.global-search__form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 15px;
  width: 100%;
  max-width: 500px;
}
@media (min-width: 50em) {
  .global-search__form {
    margin-top: -80px;
  }
}

.global-search__field {
  width: 100%;
  position: relative;
}

.global-search__label {
  width: 100%;
  color: #fff;
  font-size: var(--global-header-size-h4);
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  justify-content: center;
}

.global-search__input {
  width: 100%;
  height: 50px;
  line-height: 3.125rem;
  padding: 0 70px 0 20px;
  border-radius: 30px;
  border: none;
  height: auto;
  border: 1px solid #fff;
  font-family: "brandon-grotesque", sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.global-search__input:focus {
  outline: none;
  border-color: #224986;
}

input#global-search-field {
  font-size: 1rem;
}

.global-search__submit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  background-color: transparent;
  border: none;
  z-index: 3;
  padding: 0;
}
.global-search__submit .o-icon {
  width: 25px;
  height: 25px;
}

/* ==========================================================================
   Modules
   ========================================================================== */
@custom-media --small-viewport (width >=576px);
@custom-media --medium-small-viewport (width > 768px);
@custom-media --medium-viewport (width >=992px);
@custom-media --large-viewport (width >=1200px);
.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  outline: none;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.glightbox-container.inactive {
  display: none;
}
.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  z-index: 9999;
  overflow: hidden;
  display: flex;
  justify-content: center;
  max-width: 1280px;
}
.glightbox-container .gslider {
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: translate3d(0, 0, 0);
}
.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  opacity: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  /* top: 0;
  left: 0;
  right: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
}
.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}
.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}
.glightbox-container .gslide-inner-content {
  width: 100%;
}
.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
}
.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}
@media (--medium-small-viewport) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    flex-direction: row;
  }
}
.glightbox-container .ginner-container.desc-bottom, .glightbox-container .ginner-container.desc-top {
  flex-direction: column;
}
.glightbox-container .ginner-container.desc-left, .glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}
@media (--medium-small-viewport) {
  .glightbox-container .ginner-container.desc-top .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
  .glightbox-container .ginner-container.desc-top .gslide-image img {
    order: 1;
  }
}
@media (--medium-small-viewport) {
  .glightbox-container .ginner-container.desc-left .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    order: 1;
  }
}

.gslide iframe,
.gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
}

.gslide-image {
  align-items: center;
}
.gslide-image img {
  max-height: 100vh;
  display: block;
  max-width: 100%;
  margin: 0;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}
@media (--medium-small-viewport) {
  .gslide-image img {
    max-height: 97vh;
    max-width: calc(100% - 20px);
    max-width: 100%;
  }
}
.desc-top .gslide-image img, .desc-bottom .gslide-image img {
  width: auto;
}
.desc-left .gslide-image img, .desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}
.gslide-image img.zoomable {
  position: relative;
}
@media (--medium-small-viewport) {
  .gslide-image img.zoomable {
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: grab;
  }
}
.gslide-image img.dragging {
  cursor: grabbing !important;
  transition: none;
}

.gslide-video {
  width: 100%;
  max-width: 100%;
  position: relative;
  width: 100vh;
  max-width: 100vh;
  width: 100% !important;
  margin: auto;
}
.gslide-video .gvideo-wrapper {
  width: 100%;
  /* max-width: 160vmin; */
  margin: auto;
}
.gslide-video:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}
.gslide-video.playing:before {
  display: none;
}
.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
}
.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.plyr--video .plyr__control:hover {
  opacity: 0.5;
  background-color: transparent;
}
.plyr--video .plyr__control:focus {
  background-color: transparent;
}

.plyr--video .plyr__control.plyr__control--overlaid, .plyr--video .plyr__control.plyr__control--overlaid:hover, .plyr--video .plyr__control.plyr__control--overlaid.plyr__tab-focus {
  opacity: 1;
  overflow: hidden;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 2px solid #fff;
  transition: color 0.4s ease;
  box-shadow: none;
  background-color: transparent;
}

.plyr--full-ui input[type=range] {
  color: var(--theme-color);
}

.gslide-inline {
  background: #fff;
  padding: 20px;
  text-align: left;
  max-height: calc(100vh - 40px);
  height: auto;
  overflow: auto;
  width: 90%;
  max-width: 600px;
  margin: auto;
}
.gslide-inline.gslide-media {
  width: 90%;
}
@media (--medium-small-viewport) {
  .gslide-inline {
    max-height: 95vh;
  }
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 62vh;
}
@media (--medium-small-viewport) {
  .gslide-external {
    max-height: 95vh;
  }
}

.gslide-media {
  display: block;
  display: inline-flex;
  display: flex;
  width: auto;
}
.zoomed .gslide-media {
  box-shadow: none !important;
}
.desc-top .gslide-media, .desc-bottom .gslide-media {
  margin: 0 auto;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  display: none;
}
.gslide-description.description-left, .gslide-description.description-right {
  max-width: 100%;
}
@media (--medium-small-viewport) {
  .gslide-description.description-left, .gslide-description.description-right {
    max-width: 275px;
  }
}
.gslide-description.description-bottom, .gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}
.gslide-description p {
  margin-bottom: 12px;
}
.gslide-description p:last-child {
  margin-bottom: 0;
}
.zoomed .gslide-description {
  display: none;
}

/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/
.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  background: transparent;
  position: absolute;
  bottom: 15px;
  padding: 19px 11px;
  max-width: 100vw !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}
.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}
.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}
.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: bold;
}
.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}
.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 0.4;
}
.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}
@media (--medium-small-viewport) {
  .glightbox-open {
    height: auto;
  }
}

.gloader {
  height: 25px;
  width: 25px;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(5px) brightness(75%) contrast(120%);
  background-color: rgba(25, 25, 25, 0.7);
  transition: backdrop-filter 0.4s ease, background-color 0.4s ease;
  will-change: opacity;
}
.gprev,
.gnext,
.gclose {
  background-repeat: no-repeat;
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  display: block;
  background-position: 0 0;
  border: none;
}
.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 100%;
  height: auto;
}
.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}
.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gnext,
.glightbox-closing .gprev,
.glightbox-closing .gclose {
  opacity: 0 !important;
}

.glightbox-clean,
.glightbox-modern {
  /* .gprev,
  .gnext,
  .gclose{
      border: none;
      background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGMAAAA2CAYAAADTeCfRAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIE1hY2ludG9zaCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo5NThDMEMwNzg3NjgxMUU1QUM2MUYwRDYwNTNEN0UxMSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo5NThDMEMwODg3NjgxMUU1QUM2MUYwRDYwNTNEN0UxMSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjk1OEMwQzA1ODc2ODExRTVBQzYxRjBENjA1M0Q3RTExIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjk1OEMwQzA2ODc2ODExRTVBQzYxRjBENjA1M0Q3RTExIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+htE8KwAAA9BJREFUeNrsm1tIFGEYhndDI4OSLgqkMrKjBXYwCjt40QkpL4pMyoqMgigIgm6iiy66KSwpj2vrucKgpINRRhYRooQkWYEWUkaWERokhVQXbu/QOyDhpjPzz3H/Dx7W1f2+753/3X9mnPnHHwqFfDKcEWPkEEgzZEgzpBkybDbjHLhvIP8GKLNhPILgksEaFaDKKWacAMdAn4Ean8F+kGOxGXFgDyjSmZ8L9oFpurKVU1uBnAr9jZMCah1hrQLBGkciyL7FGvNymXdZb2+RG3GGYo4LrHmINS9abEiZRkMu8PNXjPQVJV4Vc9SEgclm7WqLDSkd5RdBiBGizCihmMMmDkwWe1yz2JBy9g2E+ft5o7smkWZUUMwBCwYmg71u2nQMCZhphFEzaihmt4UDk86e9TYZUsj3OaKNMGJGHcVkWjwoChvZ+7HFfQvZt42vpaJ76Em6SzHbbDBCZR01NFvct519u8yorzXhEcWk2WiESiq1tFrUT901veZrnp1mNFHEWgcYoZJMTe0m98ljn3K+z+f7oB1mtLD5agcZoZJEbZ3Ab0J9deCrwpzSB6004xWbLnegESqJ1NgNok04aFeF+XtA5MF8pA90stkiBxuhkkCtvSBGQL2iEYz415Bys8yIAu/ZZKELjFCJp+Z+EGugTgHrVGq8ClEm2oxZ4CUYAHNcZIRKHOjj6ed8A8eISo15xUaPIcP9spFFk11ohMp0bkOHxrxa5lXo7Ksack9Pvn+YpTqLwS0QDZbxRo+bYgJoBZPAZtCiIVe5QzceZBroXwP8YKfWRH+YdVOx4AOYCOJBt0uMUAz4BGLAVNDjhXvg/bwF2UdTElywLVOoN5o/97hsRv/3HvgAv10fwVuQ6ODtUO45f6HmyaDXi6tDfoMZNKMdJDlwG2ZyN/qVs/mbl5fqDILZoAO8AMkO0j8XvONJhjKLf0TKuqkF4Dl4BlY6QLty1vcGdHE39SvSFrEtBc2gCWywUfcKfjE6eHIxGKkrCleBRvAApNmgOQU8BW2crRG/vDMV1JN0C/WmcmYqZizxeSyMLO/cBG6DOyDDAq3rwRPOyhSfB8PoWtst4DrJMlGnYnwDeMjZ4c0QdGGumhfIsk246LeVtetcfOFyVEQJ8nQv+AkqwThQIqjuDnAV1ILtPo9HlMBaB/kfewCMBfkG6ylL85VnJZSroLt8kRAmTLezOpfUD+W0WQvFnIzfpEePlaeO5oE1OvOVp56+R8KuaWiYZYYMG05tZUgzpBkypBnSDBnSDGmGDGmGDGmGNEOGNEOaIUOa4YH4I8AAM9m8BFEzyDIAAAAASUVORK5CYII=');
  } */
}
@media (--medium-small-viewport) {
  .glightbox-clean .gslide-media,
  .glightbox-modern .gslide-media {
    box-shadow: 1px 2px 9px rgba(0, 0, 0, 0.65);
  }
}
.glightbox-clean .gslide-description,
.glightbox-modern .gslide-description {
  background: #fff;
}
.glightbox-clean .gdesc-inner,
.glightbox-modern .gdesc-inner {
  padding: 22px 20px;
}
.glightbox-clean .gslide-title,
.glightbox-modern .gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: arial, sans-serif;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}
.glightbox-clean .gslide-desc,
.glightbox-modern .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial, sans-serif;
  line-height: 1.4em;
}
.glightbox-clean .gslide-video,
.glightbox-modern .gslide-video {
  background: #000;
}
.glightbox-clean .gprev,
.glightbox-clean .gnext,
.glightbox-clean .gclose,
.glightbox-modern .gprev,
.glightbox-modern .gnext,
.glightbox-modern .gclose {
  background-color: rgba(0, 0, 0, 0.12);
}
.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path,
.glightbox-modern .gprev path,
.glightbox-modern .gnext path,
.glightbox-modern .gclose path {
  fill: #fff;
}
.glightbox-clean button:focus:not(.focused):not(.disabled),
.glightbox-modern button:focus:not(.focused):not(.disabled) {
  outline: none;
}
.glightbox-clean .gprev,
.glightbox-modern .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 56px;
}
@media (--medium-small-viewport) {
  .glightbox-clean .gprev,
  .glightbox-modern .gprev {
    top: 45%;
  }
}
.glightbox-clean .gnext,
.glightbox-modern .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 56px;
}
@media (--medium-small-viewport) {
  .glightbox-clean .gnext,
  .glightbox-modern .gnext {
    top: 45%;
  }
}
.glightbox-clean .gclose,
.glightbox-modern .gclose {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  transition: background-color 0.4s ease;
  position: fixed;
  top: 10px;
  right: 10px;
}
@media (min-width: 62.5em) {
  .glightbox-clean .gclose,
  .glightbox-modern .gclose {
    position: unset;
    margin: 0 5px;
  }
}
.glightbox-clean .gclose:before,
.glightbox-modern .gclose:before {
  content: "";
  z-index: 20;
  position: absolute;
  top: 5px;
  right: 10px;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 16 16%22 xml:space=%22preserve%22%3E%3Cpath d=%22M.3 15.7c.4.4 1 .4 1.4 0L8 9.4l6.3 6.3c.4.4 1 .5 1.4.1.4-.3.5-1 .1-1.4l-.1-.1L9.4 8l6.3-6.3c.4-.4.4-1 .1-1.4-.4-.4-1-.4-1.4-.1l-.1.1L8 6.6 1.7.3C1.3-.1.7 0 .3.4c-.3.3-.3 1 0 1.3L6.6 8 .3 14.3c-.4.3-.4 1 0 1.4z%22/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 16 16%22 xml:space=%22preserve%22%3E%3Cpath d=%22M.3 15.7c.4.4 1 .4 1.4 0L8 9.4l6.3 6.3c.4.4 1 .5 1.4.1.4-.3.5-1 .1-1.4l-.1-.1L9.4 8l6.3-6.3c.4-.4.4-1 .1-1.4-.4-.4-1-.4-1.4-.1l-.1.1L8 6.6 1.7.3C1.3-.1.7 0 .3.4c-.3.3-.3 1 0 1.3L6.6 8 .3 14.3c-.4.3-.4 1 0 1.4z%22/%3E%3C/svg%3E");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: var(--theme-color-light);
  transition: background-color 0.4s ease;
  background-color: #fff;
  position: relative;
  right: unset !important;
  top: 0 !important;
  transition: background-color 0.4s ease;
}
@media (min-width: 50em) {
  .glightbox-clean .gclose:before,
  .glightbox-modern .gclose:before {
    top: 20px;
    right: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .glightbox-clean .gclose:before:hover,
  .glightbox-modern .gclose:before:hover {
    background-color: #fff;
  }
}
@media (hover: hover) and (pointer: fine) {
  .glightbox-clean .gclose:hover,
  .glightbox-modern .gclose:hover {
    background-color: #fff;
  }
  .glightbox-clean .gclose:hover:before,
  .glightbox-modern .gclose:hover:before {
    background-color: #000;
  }
}
.glightbox-clean .gclose svg,
.glightbox-modern .gclose svg {
  display: none;
}

.gfadeIn {
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  animation: gzoomOut 0.5s ease;
}

@keyframes lightboxLoader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes gfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes gfadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes gslideInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }
  100% {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideOutLeft {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideInRight {
  0% {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideOutRight {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gzoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 1;
  }
}
@keyframes gzoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
/*  ==========================================================================
	Dialog
	========================================================================== */
:where(dialog) {
  border: 0;
}
:where(dialog)::backdrop {
  backdrop-filter: blur(5px) brightness(75%) contrast(120%);
  background-color: rgba(25, 25, 25, 0.7);
  transition: backdrop-filter 0.4s ease, background-color 0.4s ease;
}

:where(dialog) button[data-dialog-close] {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: color 0.4s ease;
  cursor: pointer;
}
:where(dialog) button[data-dialog-close] .o-icon {
  width: 30px;
  height: 30px;
  padding: 8px;
  position: relative;
  top: 1px;
}
@media (min-width: 50em) {
  :where(dialog) button[data-dialog-close] {
    font-size: 1.25rem;
  }
}
@media (min-width: 62.5em) {
  :where(dialog) button[data-dialog-close] {
    font-size: 1.375rem;
  }
}

/* ==========================================================================
   Forms
   ========================================================================== */
:root {
  --global-input-size: 16px;
}
@media (min-width: 50em) {
  :root {
    --global-input-size: 18px;
  }
}

input[type=email],
input[type=number],
input[type=text],
input[type=tel],
input[type=url],
input[type=date],
input[type=search],
textarea,
select {
  font-size: 0.875rem;
  font-family: "brandon-grotesque", sans-serif;
}

.form__inner {
  width: 100%;
  max-width: 940px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .form__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.form__title {
  width: 100%;
}

.form__body {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  background-color: #F7F5F2;
}
@media (min-width: 50em) {
  .form__body {
    gap: 30px;
  }
}

.form-group {
  box-sizing: border-box;
  width: calc(var(--field-width) * 1% - 15px);
}
.form-group[style*="--field-width: 100"] {
  width: 100%;
}
@media (max-width: 31.99em) {
  .form-group {
    width: 100%;
  }
}

.form-label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
}
@media (min-width: 50em) {
  .form-label {
    font-size: 1.125rem;
  }
}

.checkbox-group {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}
@media (min-width: 30em) {
  .checkbox-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-input {
  width: 100%;
  margin-top: 5px;
  box-sizing: border-box;
}
.form-input:focus {
  outline: none;
}
.form-input:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}

.form-input--checkbox,
.form-input--radio {
  width: auto;
  margin: 0;
}

.radio-group {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}
@media (min-width: 30em) {
  .radio-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-select {
  width: 100%;
  margin-top: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20fill%3D%22black%22%20viewBox%3D%220%200%2018%2012%22%3E%3Cpath%20d%3D%22M8.995%2011.286a.927.927%200%200%200%20.694-.305l8.021-8.341a.945.945%200%200%200%20.28-.672C18%201.42%2017.596%201%2017.057%201c-.26%200-.497.105-.674.273L8.446%209.508h1.108L1.617%201.273A.94.94%200%200%200%20.943%201C.404%201%200%201.42%200%201.968c0%20.264.093.497.28.683l8.02%208.33c.208.208.497.305.705.305Z%22/%3E%3C/svg%3E");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
  padding-left: 5px;
}
.form-select::-ms-expand {
  display: none;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.form-select,
.form-input,
.form-textarea {
  padding: 10px;
  border: 2px solid transparent;
  border-radius: 3px;
  font-size: 0.875rem;
  font-family: "brandon-grotesque", sans-serif;
  background-color: #fff;
  height: 46px;
  box-sizing: border-box;
}
.form-select:focus,
.form-input:focus,
.form-textarea:focus {
  outline: none;
}
.form-select:focus-visible,
.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}
.form-select[placeholder],
.form-input[placeholder],
.form-textarea[placeholder] {
  text-transform: capitalize;
}

.form-textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
}

.form-message {
  padding: 15px;
  border-radius: 3px;
  color: #181822;
}
.form-message p {
  margin: 0;
}

.form-submit__button {
  margin: 1rem 0 0 auto;
}

/* ==========================================================================
   Animated Checkbox Styles
   ========================================================================== */
@keyframes check {
  0% {
    height: 0;
    width: 0;
  }
  25% {
    height: 0;
    width: 6px;
  }
  50% {
    height: 12px;
    width: 6px;
  }
}
@keyframes checkBig {
  0% {
    height: 0;
    width: 0;
  }
  25% {
    height: 0;
    width: 7px;
  }
  50% {
    height: 15px;
    width: 7px;
  }
}
.form-label--checkbox {
  position: relative;
  padding-left: 33px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 5px;
}
.form-label--checkbox .form-input--checkbox {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.form-label--checkbox:before {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  background-color: transparent;
  border: 2px solid #000;
  border-radius: 3px;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
}
.form-label--checkbox:after {
  border-right: 2px solid transparent;
  border-top: 2px solid transparent;
  transform: scaleX(-1) rotate(135deg);
  transform-origin: left top;
  content: "";
  display: block;
  height: 15px;
  width: 7px;
  left: 3px;
  top: 12px;
  position: absolute;
  transition: border-color 0.4s;
}
.form-label--checkbox:has(.form-input--checkbox:checked):before {
  background-color: #BD8C3C;
  border-color: #BD8C3C;
}
.form-label--checkbox:has(.form-input--checkbox:checked):after {
  animation: checkBig 0.8s;
  border-color: #000;
}

/* ==========================================================================
   Animated Radio Styles
   ========================================================================== */
.form-label--radio {
  position: relative;
  padding-left: 33px;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 5px;
}
.form-label--radio .form-input--radio {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.form-label--radio:before {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  background-color: transparent;
  border: 2px solid #000;
  border-radius: 50%;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
}
.form-label--radio:after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  background-color: transparent;
  border-radius: 50%;
  left: 5px;
  top: 5px;
  transition: all 0.3s ease;
  transform: scale(0);
}
.form-label--radio:has(.form-input--radio:checked):before {
  background-color: #BD8C3C;
  border-color: #BD8C3C;
}
.form-label--radio:has(.form-input--radio:checked):after {
  background-color: #F7F5F2;
  transform: scale(1);
}
.form-label--radio:has(.form-input--radio:focus):before {
  outline: none;
}
.form-label--radio:has(.form-input--radio:focus-visible):before {
  outline: -webkit-focus-ring-color auto 1px;
}

/*  ==========================================================================
	Accessibility Panel
	========================================================================== */
.accessibility-panel {
  position: relative;
  margin: var(--content-margin);
}

@media (min-width: 58em) {
  .accessibility-panel__inner {
    width: 100%;
    max-width: 1040px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 58em) and (min-width: 50em) {
  .accessibility-panel__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 72em) {
  .accessibility-panel__inner {
    padding: 0;
  }
}

.accessibility-panel__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 58em) {
  .accessibility-panel__wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
  }
}
@media (min-width: 62.5em) {
  .accessibility-panel__wrapper {
    gap: 60px;
  }
}
@media (min-width: 72em) {
  .accessibility-panel__wrapper {
    gap: 80px;
  }
}

.accessibility-panel__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 15px;
  width: 100%;
}
@media (min-width: 58em) {
  .accessibility-panel__content {
    align-self: center;
    padding: 0;
  }
  .accessibility-panel--has-items .accessibility-panel__content {
    max-width: 430px;
  }
}

.accessibility-panel__title {
  text-transform: uppercase;
  margin-bottom: 25px;
}

.accessibility-panel__info {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: underline;
  margin-top: 20px;
  cursor: pointer;
}
.accessibility-panel__info .o-icon {
  width: 22px;
  height: 22px;
}
@media (min-width: 50em) {
  .accessibility-panel__info {
    font-size: 1.125rem;
  }
}
@media (min-width: 62.5em) {
  .accessibility-panel__info {
    font-size: 1.25rem;
    margin-top: 30px;
  }
  .accessibility-panel__info .o-icon {
    width: 25px;
    height: 25px;
  }
}

.accessibility-panel__description {
  font-size: var(--global-body-text);
}
.accessibility-panel__description p:last-child {
  padding-bottom: 0;
}

.accessibility-panel__action {
  margin-top: 20px;
  padding: 0 15px;
}

.accessibility-panel__cta--desktop {
  display: none;
}
@media (min-width: 32em) {
  .accessibility-panel__cta--mobile {
    display: none;
  }
  .accessibility-panel__cta--desktop {
    display: flex;
    margin-top: 30px;
  }
}
@media (min-width: 58em) {
  .accessibility-panel__cta--desktop {
    width: 100%;
  }
}
@media (min-width: 62.5em) {
  .accessibility-panel__cta--desktop {
    margin-top: 40px;
  }
}

.accessibility-panel__heading {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 25px;
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
}
@media (min-width: 50em) {
  .accessibility-panel__heading {
    font-size: 1.75rem;
  }
}
@media (min-width: 62.5em) {
  .accessibility-panel__heading {
    font-size: 1.875rem;
  }
}

.accessibility-panel__performances {
  background-color: #6A6A6A;
  padding: 25px 15px;
  flex: 1;
}
@media (min-width: 58em) {
  .accessibility-panel__performances {
    padding: 30px;
  }
}
@media (min-width: 62.5em) {
  .accessibility-panel__performances {
    padding: 35px;
  }
}

.accessible-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
@media (min-width: 23em) {
  .accessible-item {
    flex-direction: row;
    justify-content: space-between;
  }
  .accessible-item .accessible-performances {
    text-align: right;
  }
}
.accessible-item:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.accessible-item:not(:last-child):after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background-image: url("icons/performance-info-line.svg");
  background-size: auto 1px;
  background-repeat: repeat-x;
  margin: 0;
  height: 1px;
  width: 100%;
}

.accessible-item__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.accessible-item__title {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 50em) {
  .accessible-item__title {
    font-size: 1.125rem;
  }
}
@media (min-width: 62.5em) {
  .accessible-item__title {
    font-size: 1.25rem;
  }
}

.accessible-item__seats {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
  cursor: pointer;
}
.accessible-item__seats .o-icon {
  width: 21px;
  height: 21px;
}
@media (min-width: 62.5em) {
  .accessible-item__seats .o-icon {
    width: 25px;
    height: 25px;
  }
}

.accessible-item__seats-link {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: underline;
}
@media (min-width: 62.5em) {
  .accessible-item__seats-link {
    font-size: 1.125rem;
  }
}

.accessible-item__seats-text {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 5px;
}
@media (min-width: 62.5em) {
  .accessible-item__seats-text {
    font-size: 0.875rem;
    margin-top: 10px;
  }
}

.accessible-performances {
  font-size: 0.875rem;
  line-height: 1.6786;
}
@media (min-width: 50em) {
  .accessible-performances {
    font-size: 1rem;
    line-height: 1.6563;
  }
}
@media (min-width: 62.5em) {
  .accessible-performances {
    font-size: 1.125rem;
    line-height: 1.6389;
  }
}

/*  ==========================================================================
    Accessibility Panel - Info Popup
    ========================================================================== */
.accessibility-info__popup {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  transition: all 0.4s ease-in-out;
}
.accessibility-info__popup:not(.is-toggled) {
  opacity: 0;
  visibility: hidden;
}

.accessibility-info-popup {
  max-width: 700px;
}

.accessibility-info-popup__close {
  margin-left: auto;
}

.accessibility-info-popup__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  background-color: #fff;
  color: #000;
}
@media (min-width: 50em) {
  .accessibility-info-popup__inner {
    padding: 30px;
  }
}

.accessibility-info-popup__header {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 62.5em) {
  .accessibility-info-popup__header {
    gap: 15px;
  }
}

.accessibility-info-popup__title {
  margin-bottom: 0;
  font-size: var(--global-header-size-h5);
}

.accessibility-info-popup__body {
  font-size: var(--global-body-text);
}

.accessibility-info-popup__icon {
  display: flex;
  align-items: center;
}
.accessibility-info-popup__icon .o-icon {
  width: 24px;
  height: 24px;
  color: var(--secondary-theme-color, #000);
}
@media (min-width: 50em) {
  .accessibility-info-popup__icon .o-icon {
    width: 27px;
    height: 27px;
  }
}
@media (min-width: 62.5em) {
  .accessibility-info-popup__icon .o-icon {
    width: 30px;
    height: 30px;
  }
}

/*  ==========================================================================
    Accordion Block
    ========================================================================== */
.accordion-block {
  position: relative;
  margin: var(--content-margin);
}

.accordion-block__inner {
  width: 100%;
  max-width: 1360px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 50em) {
  .accordion-block__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 50em) {
  .accordion-block__inner {
    flex-direction: row;
    gap: 15px;
  }
}

.accordion-block__header {
  padding-bottom: 0;
  width: 100%;
}
@media (min-width: 50em) {
  .accordion-block__header {
    padding-bottom: 20px;
    width: 40%;
  }
}

.accordion-block__title {
  border-bottom: 1px solid #BD8C3C;
  font-size: 1.5rem;
  margin-bottom: 0;
  padding-bottom: 10px;
  text-transform: uppercase;
}
@media (min-width: 50em) {
  .accordion-block__title {
    border-left: 1px solid #BD8C3C;
    border-bottom: none;
    font-size: 2rem;
    padding-left: 25px;
    padding-bottom: 0;
  }
}

.accordion-block__body {
  width: 100%;
}
@media (min-width: 50em) {
  .accordion-block__body {
    width: 60%;
  }
}

.accordion-block__item__header {
  width: 100%;
  max-width: 1040px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  padding: 15px 0;
  transition: transform 0.3s ease;
  list-style: none;
  box-sizing: border-box;
}
@media (min-width: 50em) {
  .accordion-block__item__header {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.accordion-block__item__header::-webkit-details-marker {
  display: none;
}
@media (min-width: 50em) {
  .accordion-block__item__header {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 25px 0;
  }
}
.accordion-block__item__header .o-icon {
  width: 18px;
  height: 18px;
  margin-left: auto;
  flex-shrink: 0;
  rotate: 90deg;
  color: var(--theme-color-dark);
  transition: rotate 0.4s ease, scale 0.4s ease;
}
.accordion__item--open .accordion-block__item__header .o-icon {
  rotate: 270deg;
}
.accordion-block__item__header:hover .o-icon, .accordion-block__item__header:focus .o-icon {
  scale: 1.1;
}

.accordion-block__item__title {
  font-size: var(--global-body-size-6);
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.3;
}
@media (min-width: 50em) {
  .accordion-block__item__title {
    font-size: var(--global-body-size-10);
  }
}

.accordion-block__item__subtitle {
  font-size: var(--global-body-size-4);
  font-family: "brandon-grotesque", sans-serif;
  margin-top: 5px;
}
@media (min-width: 50em) {
  .accordion-block__item__subtitle {
    font-size: var(--global-body-size-7);
  }
}

.accordion-block__name {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-wrap: pretty;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .accordion-block__name {
    font-size: 1.375rem;
  }
}
@media (min-width: 62.5em) {
  .accordion-block__name {
    font-size: 1.5rem;
  }
}

.accordion-block__content {
  box-sizing: border-box;
  padding-bottom: 25px;
}
@media (min-width: 50em) {
  .accordion-block__content {
    padding-bottom: 30px;
  }
}
.accordion-block__content ul:first-child {
  margin-top: 0;
}
.accordion-block__content li:has(ul) {
  list-style: none;
}

.accordion-block__prose {
  padding: 0 0 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
}
.accordion__item--open .accordion-block__prose {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 50em) {
  .accordion-block__prose {
    padding: 0 0 40px;
  }
}

.accordion__item--open .accordion-block__content {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 50em) {
  .accordion__item--open .accordion-block__content {
    border-bottom: 1px solid transparent;
  }
}

/*  ==========================================================================
    Membership Levels Block
    ========================================================================== */
.membership-levels .accordion-block__inner {
  width: 100%;
  max-width: 820px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .membership-levels .accordion-block__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.btn.membership-levels__button, .membership-levels__button:where([data-component*=dialog] menu button), .membership-levels__button.calendar-filters__view-results {
  margin-bottom: 0;
}

.membership-levels__sticky {
  position: sticky;
  bottom: 0;
  z-index: 3;
  padding: 80px 0 20px;
  margin-bottom: 40px;
  text-align: center;
  background: linear-gradient(to top, #fff 0%, #fff 60%, rgba(255, 255, 255, 0) 100%);
  display: none;
}
.membership-levels__sticky.is-toggled {
  display: block;
}
@media (min-width: 50em) {
  .membership-levels__sticky {
    padding-bottom: 40px;
  }
}

.membership-levels__form {
  width: 100%;
  max-width: 820px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .membership-levels__form {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.membership-levels__field {
  display: inline-flex;
}
.membership-levels__field .currency {
  font-weight: 700;
  font-size: var(--global-body-size-6);
  align-self: center;
}

.membership-levels__value {
  color: #000;
  background-color: #fff;
  border: 1px solid #A5A5A5;
  border-right: 0;
  padding: 15px 0 15px 20px;
  margin-left: 10px;
  border-radius: 30px 0 0 30px;
  width: 100%;
  transition: border-color 0.3s ease;
  font-size: var(--global-body-size-5);
  max-width: 200px;
}
.membership-levels__value:focus {
  outline: none;
  border-color: var(--theme-color-dark);
}
.membership-levels__value::-moz-placeholder {
  color: #000;
  font-size: var(--global-body-size-5);
}
.membership-levels__value::placeholder {
  color: #000;
  font-size: var(--global-body-size-5);
}
.membership-levels__value::-webkit-outer-spin-button, .membership-levels__value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.membership-levels__value[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

.membership-levels__submit {
  border-radius: 0 30px 30px 0;
  padding-left: 25px;
  padding-right: 40px;
}

.membership-levels__selected-level {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}

.membership-levels__next-level .next-level {
  text-decoration: underline;
  font-weight: 700;
  text-transform: capitalize;
}

/* Content Panel */
.rich-text {
  background-color: transparent;
  position: relative;
  margin: var(--content-margin);
}
.rich-text:first-child {
  margin-top: 40px;
}
@media (min-width: 58em) {
  .rich-text:first-child {
    margin-top: 60px;
  }
}
.rich-text:last-child:not(.element:last-child) {
  margin-bottom: 0;
  padding-bottom: 0;
}
.rich-text img {
  max-width: 100%;
  height: auto;
  display: block;
}

.rich-text__inner {
  width: 100%;
  max-width: 940px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .rich-text__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

/*  ==========================================================================
    Donation Panel
    ========================================================================== */
.donation-panel {
  position: relative;
  padding: var(--content-margin);
  background-image: url(https://images.cdn.beta.basker.net/nycitycenter/media/NCC-filigree-bg-tes.png);
  background-repeat: repeat;
  background-position: top left;
  background-size: 250px;
  background-attachment: fixed;
  background-color: #000;
}
.donation-panel:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.donation-panel__inner {
  position: relative;
  width: 100%;
  z-index: 3;
}
@media (min-width: 50em) {
  .donation-panel__inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.donation-panel__media {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.donation-panel__image {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  top: 0;
  z-index: 1;
}

.donation-panel__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  margin: 0 auto;
  text-align: center;
  z-index: 3;
  background: #F7F5F2;
  color: #000;
  width: calc(100% - 60px);
}
@media (min-width: 50em) {
  .donation-panel__content {
    padding: 40px 20px;
    width: 666px;
  }
}
@media (min-width: 62.5em) {
  .donation-panel__content {
    padding: 40px 60px;
  }
}

.donation-panel__details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.donation-panel__inline__media {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 58em) {
  .donation-panel__inline__media {
    width: 45%;
    flex-shrink: 0;
  }
}

.donation-panel__inline__intrinsic-ratio {
  padding-bottom: 50%;
}
@media (min-width: 58em) {
  .donation-panel__inline__intrinsic-ratio {
    padding-bottom: 66.6666666667%;
  }
}

.donation-panel__inline__image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.donation-panel__title {
  margin: 10px 0 0;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 50em) {
  .donation-panel__title {
    font-size: 2rem;
  }
}

.donation-panel__description {
  font-size: 1.125rem;
  font-weight: 400;
}
@media (min-width: 50em) {
  .donation-panel__description {
    font-size: 1.5rem;
    text-wrap: balance;
  }
}
.donation-panel__description p {
  margin-bottom: 0;
}

.donation-panel__amounts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
@media (min-width: 62.5em) {
  .donation-panel__amounts {
    gap: 15px;
  }
}

.donation-panel__amount:first-child .donation-panel__button {
  margin-left: 0;
}

.donation-panel__input {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.donation-panel__input:checked + .donation-panel__button,
.donation-panel__button:hover,
.donation-panel__button:focus {
  background-color: #BD8C3C;
  border-color: #BD8C3C;
  color: #000;
  text-decoration: none;
  transform: scale(1.1);
}

.donation-panel__button:active {
  filter: brightness(1.2);
}

.donation-panel__button {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 400;
  justify-content: center;
  margin: 0;
  padding: 10px;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  background: transparent;
  border: 1px solid;
}
@media (min-width: 50em) {
  .donation-panel__button {
    width: 62px;
    height: 62px;
  }
}
.donation-panel__button:focus-visible {
  outline: none;
  border: none;
}

.donation-panel__actions .btn, .donation-panel__actions :where([data-component*=dialog] menu button), .donation-panel__actions .calendar-filters__view-results {
  padding: var(--global-button-padding-small);
}

.donation-amount {
  visibility: hidden;
}

/*  ==========================================================================
    Donation Panel - Background Image
    ========================================================================== */
.donation-panel--bg-image {
  background-image: none;
}

/*  ==========================================================================
    Donation Panel - Inline Image
    ========================================================================== */
@media (min-width: 50em) {
  .donation-panel--inline-image .donation-panel__content {
    padding: 30px;
  }
}
@media (min-width: 58em) {
  .donation-panel--inline-image .donation-panel__inner {
    width: 100%;
    max-width: 1160px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 58em) and (min-width: 50em) {
  .donation-panel--inline-image .donation-panel__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 58em) {
  .donation-panel--inline-image .donation-panel__content {
    flex-direction: row;
    width: 100%;
  }
  .donation-panel--inline-image .donation-panel__title,
  .donation-panel--inline-image .donation-panel__description {
    text-align: left;
  }
  .donation-panel--inline-image .donation-panel__amounts {
    justify-content: flex-start;
  }
  .donation-panel--inline-image .donation-panel__actions {
    display: flex;
  }
}

/*  ==========================================================================
    Downloads
    ========================================================================== */
.downloads {
  position: relative;
  color: #000;
}
@media (min-width: 50em) {
  .downloads {
    margin: var(--content-margin-small);
  }
}

.downloads__inner {
  width: 100%;
  max-width: 1360px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 15px;
  padding-top: 15px;
  background-color: #F0F0F0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
@media (min-width: 50em) {
  .downloads__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 50em) {
  .downloads__inner {
    flex-direction: row;
    gap: 60px;
    padding: 60px;
  }
}

.downloads__title {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  text-align: left;
}

.downloads__description {
  text-align: left;
}

.downloads__list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 50em) {
  .downloads__list {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
  }
}

.downloads__list,
.downloads__content {
  width: 100%;
}
@media (min-width: 50em) {
  .downloads__list,
  .downloads__content {
    width: 50%;
  }
}

.downloads__item {
  width: 100%;
}

.downloads__link {
  display: flex;
  align-items: center;
  text-align: left;
  width: 100%;
  border-top: 1px solid #000;
  padding: 10px;
  transition: box-shadow 0.2s ease;
}
@media (min-width: 50em) {
  .downloads__link {
    padding: 15px;
  }
}
.downloads__link:hover {
  cursor: pointer;
}
.downloads__link:hover .downloads__icon {
  transform: scale(1.1);
}

.downloads__icon {
  position: relative;
  margin-right: 10px;
  transition: transform 0.3s ease-in-out;
}
.downloads__icon .o-icon {
  width: 24px;
  height: 24px;
}
@media (min-width: 50em) {
  .downloads__icon .o-icon {
    width: 30px;
    height: 30px;
  }
}

.downloads__details {
  display: inline;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: normal;
  margin-bottom: 0;
  vertical-align: bottom;
}

.downloads__name {
  font-size: 1rem;
  font-weight: 700;
  display: inline;
}

.downloads__meta {
  font-size: 0.75rem;
  margin-left: auto;
}
@media (min-width: 32em) {
  .downloads__meta {
    font-size: 0.875rem;
  }
}
@media (min-width: 58em) {
  .downloads__meta {
    font-size: 1rem;
  }
}

.downloads__filetype {
  text-transform: uppercase;
}

/*  ==========================================================================
    Feature Item
    ========================================================================== */
.feature-item {
  display: flex;
  flex-direction: column;
  padding: 20px 15px 15px;
  background-color: #232323;
  color: #fff;
}
@media (min-width: 62.5em) {
  .feature-item {
    padding: 30px 20px 20px;
  }
}
@media (min-width: 62.5em) {
  .feature-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    padding: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .feature-item:hover .feature-item__image {
    transform: scale(1.05);
  }
  .feature-item:hover .feature-item__cta {
    filter: brightness(1.2);
    transform: scale(0.95);
  }
}

.feature-item__media {
  overflow: hidden;
  width: 100%;
}
@media (min-width: 62.5em) {
  .feature-item__media {
    width: 50%;
    margin-bottom: 0;
    flex-grow: 1;
  }
}

.feature-item__intrinsic-ratio {
  position: relative;
  padding-bottom: 71.4285714286%;
  height: 0;
}

.feature-item__image {
  height: auto;
  position: absolute;
  right: 0;
  transform: scale(1);
  transition: transform 0.4s ease;
  width: 100%;
  z-index: 3;
}

.feature-item__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 30px;
  transition: color 0.2s ease-in-out;
}
@media (min-width: 62.5em) {
  .feature-item__details {
    margin: 0;
    gap: 20px;
    width: 50%;
    padding: 20px 40px;
  }
}

.feature-item__title {
  font-size: 1.5rem;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (min-width: 50em) {
  .feature-item__title {
    font-size: 2rem;
  }
}
@media (min-width: 72em) {
  .feature-item__title {
    font-size: 3rem;
  }
}

.feature-item__description {
  margin-bottom: 0;
  font-size: 1.25rem;
}
.feature-item__description p {
  font-size: 1.125rem;
  line-height: 1.625rem;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .feature-item__description p {
    font-size: 1.5rem;
    line-height: 2.0625rem;
  }
}

/*  ==========================================================================
    Feature item
    ========================================================================== */
.feature-group {
  position: relative;
  background-size: cover;
  margin: var(--content-margin);
}
.feature-group .feature-item {
  width: 100%;
  flex-direction: column;
}
@media (min-width: 50em) {
  .feature-group .feature-item {
    width: 50%;
    justify-content: unset;
  }
}
.feature-group .feature-item__media {
  width: 100%;
  flex-grow: 0;
}
.feature-group .feature-item__details {
  width: 100%;
  max-width: unset;
}

.feature-group__inner {
  width: 100%;
  max-width: 1280px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: relative;
  gap: 40px;
}
@media (min-width: 50em) {
  .feature-group__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 50em) {
  .feature-group__inner {
    flex-direction: row;
  }
}

/*  ==========================================================================
    Feature Panel
    ========================================================================== */
.feature-panel {
  position: relative;
}
@media (min-width: 62.5em) {
  .feature-panel {
    margin: var(--content-margin-small);
  }
}

.feature-panel__inner {
  position: relative;
}
@media (min-width: 62.5em) {
  .feature-panel__inner {
    width: 100%;
    max-width: 1440px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 62.5em) and (min-width: 50em) {
  .feature-panel__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

/*  ==========================================================================
    Feature Panel - Right Aligned Image
    ========================================================================== */
@media (min-width: 62.5em) {
  .feature-panel--right .feature-item {
    flex-direction: row;
  }
}

.content-block .feature-panel:first-child .feature-item {
  padding-top: 60px;
}
@media (min-width: 62.5em) {
  .content-block .feature-panel:first-child .feature-item {
    padding-top: 80px;
  }
}

/* Remove padding on feature panels that immediately follow a content-block */
.content-panel + .feature-panel .feature-item {
  padding: 0;
}

/*  ==========================================================================
    Image Gallery
    ========================================================================== */
.image-gallery {
  --image-height: 280px;
  position: relative;
  padding: var(--content-margin-small);
  overflow: hidden;
}
@media (min-width: 50em) {
  .image-gallery {
    --image-height: 500px;
  }
}
@media (min-width: 62.5em) {
  .image-gallery {
    --image-height: 500px;
  }
}

.image-gallery__container {
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (min-width: 50em) {
  .image-gallery__container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.image-gallery__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  justify-content: space-between;
  position: relative;
  margin-bottom: 25px;
}
@media (min-width: 50em) {
  .image-gallery__header {
    flex-direction: row;
    align-items: center;
  }
}

.image-gallery__actions {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 15px;
}

.image-gallery__title {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: #000;
  flex-shrink: 0;
  text-transform: uppercase;
}
@media (min-width: 50em) {
  .image-gallery__title {
    font-size: 2rem;
  }
}

.image-gallery__buttons {
  display: none;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
}
@media (min-width: 50em) {
  .image-gallery__buttons {
    display: flex;
  }
}

.image-gallery__button {
  border: none;
  padding: 0;
  cursor: pointer;
  display: none;
  width: 40px;
  height: 40px;
  background-color: transparent;
}
@media (min-width: 62.5em) {
  .image-gallery__button {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.image-gallery__button.swiper-button-disabled {
  cursor: not-allowed;
}
.image-gallery__button .o-icon {
  color: #000;
  scale: 1;
  transition: scale 0.4s ease;
}
.image-gallery__button:not(.swiper-button-disabled):hover .o-icon {
  scale: 1.1;
}

.image-gallery__button--previous {
  margin-left: 0;
}
.image-gallery__button--previous .o-icon {
  rotate: -180deg;
}

.image-gallery__button--next {
  margin-left: 15px;
}
@media (min-width: 62.5em) {
  .image-gallery__button--next {
    margin-left: 0;
  }
}

.image-gallery__body {
  display: flex;
  position: relative;
  align-self: center;
}

.image-gallery__content.swiper-container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  list-style: none;
  height: 100%;
  width: 100%;
  padding: 0;
  z-index: 3;
}

.image-gallery__slides.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.image-gallery__slide.swiper-slide {
  width: auto;
  flex-shrink: 0;
  margin-right: 30px;
}
.image-gallery__slide.swiper-slide:last-child {
  margin-right: 0;
}

.image-gallery__info {
  margin-bottom: 0;
  padding-right: 20px;
  display: none;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: var(--global-body-size-7);
}
@media (min-width: 32em) {
  .image-gallery__info {
    display: block;
  }
}

.image-gallery__meta {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  margin-top: 20px;
  max-width: 600px;
}
@media (min-width: 50em) {
  .image-gallery__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    font-size: 1.125rem;
  }
}

.image-gallery__description {
  font-family: "brandon-grotesque", sans-serif;
  margin-bottom: 0;
}

.image-gallery__length,
.image-gallery__zoom {
  border-left: 1px solid #898989;
  padding-left: 15px;
  flex-shrink: 0;
  height: 28px;
}

.image-gallery__length,
.image-gallery__fullscreen {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: color 0.4s ease;
}
@media (min-width: 50em) {
  .image-gallery__length,
  .image-gallery__fullscreen {
    font-size: 1rem;
  }
}
.image-gallery__length .o-icon,
.image-gallery__fullscreen .o-icon {
  width: 16px;
  height: 16px;
}

.image-gallery--fullscreen .image-gallery__buttons {
  width: 250px;
}

.image-gallery__length {
  margin-bottom: 0;
}
@media (max-width: 49.99em) {
  .image-gallery__length {
    border-left: 0;
    padding-left: 0;
  }
}

.image-gallery__zoom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 4;
}

.image-gallery__fullscreen {
  background: none;
  padding: 0;
  margin: 0;
  border: 0;
  cursor: pointer;
}
.image-gallery__fullscreen .open,
.image-gallery__fullscreen .close {
  align-items: center;
  gap: 10px;
}
.image-gallery__fullscreen .open .o-icon,
.image-gallery__fullscreen .close .o-icon {
  transition: scale 0.4s ease;
}
.image-gallery__fullscreen .open {
  display: flex;
  flex-direction: row-reverse;
}
.image-gallery__fullscreen .close {
  display: none;
}
.image-gallery__fullscreen .close .o-icon {
  position: relative;
  top: 1px;
}
@media (min-width: 50em) {
  .image-gallery__fullscreen {
    flex-direction: row-reverse;
  }
}
@media (hover: hover) and (pointer: fine) {
  .image-gallery__fullscreen:hover .o-icon {
    scale: 1.1;
  }
}

.image-gallery__details {
  display: none;
}

.gallery-slide__caption {
  font-size: 1.25rem;
  font-weight: 500;
}

.gallery-slide__credit {
  display: block;
  font-size: 1rem;
  font-weight: 500;
}

@media (hover: hover) and (pointer: fine) {
  .image-gallery__body:hover .image-gallery__button {
    opacity: 1;
  }
  .image-gallery__body:hover .image-gallery__button.swiper-button-disabled {
    opacity: 0;
  }
  .image-gallery__body:hover .image-gallery__fullscreen {
    opacity: 1;
  }
}
.gallery-slide__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  box-sizing: border-box;
  margin-bottom: 0;
}

.gallery-slide__media {
  position: relative;
  aspect-ratio: 16/9;
}
.gallery-slide__media.gallery-slide__media--portrait {
  aspect-ratio: 11/7;
}

.gallery-slide__image {
  height: var(--image-height);
  width: auto;
}

.gallery-slide__content {
  width: 100%;
}

.image-gallery__index {
  display: none;
  color: #000;
}

.image-gallery--fullscreen .image-gallery__fullscreen {
  position: fixed;
  right: 15px;
  opacity: 1;
}
@media (min-width: 58em) {
  .image-gallery--fullscreen .image-gallery__fullscreen {
    margin: 15px;
  }
}
.image-gallery--fullscreen .image-gallery__fullscreen .open {
  display: none;
}
.image-gallery--fullscreen .image-gallery__fullscreen .close {
  display: flex;
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  padding: 7px;
}
@media (min-width: 58em) {
  .image-gallery--fullscreen .image-gallery__fullscreen .close {
    background: transparent;
  }
}
.image-gallery--fullscreen .image-gallery__button {
  opacity: 1;
  box-shadow: none;
  width: 50px;
  height: 50px;
}
.image-gallery--fullscreen .image-gallery__button.swiper-button-disabled {
  opacity: 0.3;
}
.image-gallery--fullscreen .image-gallery__button .o-icon {
  width: 36px;
  height: 36px;
}
.image-gallery--fullscreen .image-gallery__header {
  position: absolute;
  margin-bottom: 0;
}
.image-gallery--fullscreen .image-gallery__container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background-color: #F7F5F2;
  width: 100%;
  max-width: none;
  padding: 0;
}
@media (min-width: 58em) {
  .image-gallery--fullscreen .image-gallery__container {
    display: flex;
  }
}
.image-gallery--fullscreen .image-gallery__title {
  display: none;
}
.image-gallery--fullscreen .image-gallery__body {
  position: static;
  background-color: #F7F5F2;
}
@media (min-width: 58em) {
  .image-gallery--fullscreen .image-gallery__body {
    width: calc(100% - 300px);
  }
}
.image-gallery--fullscreen .image-gallery__body:after {
  content: none;
}
.image-gallery--fullscreen .image-gallery__buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3;
}
.image-gallery--fullscreen .image-gallery__button--previous {
  top: auto;
  bottom: 20px;
  right: 90px;
  left: auto;
  transform: none;
}
.image-gallery--fullscreen .image-gallery__button--next {
  top: auto;
  bottom: 20px;
  right: 20px;
  left: auto;
  transform: none;
  margin-left: 20px;
}
.image-gallery--fullscreen .image-gallery__body:hover .image-gallery__button.swiper-button-disabled {
  opacity: 0.3;
}
.image-gallery--fullscreen .image-gallery__zoom {
  max-width: unset;
  position: absolute;
  top: 20px;
  bottom: unset;
}
@media (min-width: 50em) {
  .image-gallery--fullscreen .image-gallery__zoom {
    padding-top: 0;
  }
}
.image-gallery--fullscreen .image-gallery__info {
  display: none;
}
.image-gallery--fullscreen .image-gallery__meta {
  display: flex;
  justify-content: flex-end;
  background-color: #F7F5F2;
  color: #000;
  font-size: var(--global-body-size-5);
  margin-top: 0;
  padding: 15px;
}
@media (min-width: 58em) {
  .image-gallery--fullscreen .image-gallery__meta {
    width: 300px;
    margin-top: 0;
    padding: 100px 30px;
  }
}
.image-gallery--fullscreen .image-gallery__details {
  display: block;
  width: 100%;
  padding-right: 0;
  padding-bottom: 20px;
}
@media (min-width: 58em) {
  .image-gallery--fullscreen .image-gallery__details {
    border-bottom: 1px solid #dcdee4;
    padding-right: 0;
    padding-bottom: 60px;
  }
}
.image-gallery--fullscreen .image-gallery__index {
  display: flex;
  font-weight: 500;
  margin-bottom: 0;
  margin-left: auto;
}
.image-gallery--fullscreen .image-gallery__description,
.image-gallery--fullscreen .image-gallery__length,
.image-gallery--fullscreen .gallery-slide__content {
  display: none;
}
.image-gallery--fullscreen .image-gallery__content.swiper-container {
  height: auto;
  max-width: 100%;
  overflow: hidden;
}
.image-gallery--fullscreen .image-gallery__slides.swiper-wrapper {
  align-items: center;
  padding-left: 0;
}
.image-gallery--fullscreen .image-gallery__slide.swiper-slide {
  height: auto;
  width: 100%;
}
.image-gallery--fullscreen .image-gallery__position {
  margin: 0 0 40px;
}
.image-gallery--fullscreen .gallery-slide__caption {
  display: block;
  font-size: 1.375rem;
}
@media (min-width: 50em) {
  .image-gallery--fullscreen .gallery-slide__caption {
    font-size: 1.75rem;
  }
}
.image-gallery--fullscreen .gallery-slide__credit {
  display: block;
  margin-top: 20px;
}
.image-gallery--fullscreen .gallery-slide {
  padding: 0;
}
.image-gallery--fullscreen .gallery-slide__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
  height: auto;
}
.image-gallery--fullscreen .gallery-slide__media .gallery-slide__image {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.image-gallery--fullscreen .gallery-slide__media--portrait .gallery-slide__image {
  width: auto;
  height: auto;
  max-height: 60vh;
}
@media (min-width: 58em) {
  .image-gallery--fullscreen .gallery-slide__media--portrait .gallery-slide__image {
    width: auto;
    height: calc(100vh - 30px);
    max-height: none;
  }
}

/*  ==========================================================================
    People Panel
    ========================================================================== */
.people-panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  padding: var(--content-margin-small);
  background-color: transparent;
}
@media (min-width: 50em) {
  .people-panel {
    gap: 60px;
  }
}

.people-panel__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
}
@media (min-width: 72em) {
  .people-panel__inner {
    width: 100%;
    max-width: 1360px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 72em) and (min-width: 50em) {
  .people-panel__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.people-panel__header {
  padding: 0 15px;
}
@media (min-width: 72em) {
  .people-panel__header {
    padding: 0;
  }
}

.people-panel__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (min-width: 50em) {
  .people-panel__title {
    font-size: 2rem;
  }
}

.people-panel__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
  align-items: flex-start;
  padding: 0 15px;
}
.people-panel__list::-webkit-scrollbar {
  display: none;
}
@media (max-width: 29.99em) {
  .people-panel__list {
    gap: 15px;
  }
  .people-panel__primary .people-panel__list {
    display: grid;
    grid-template-columns: 1fr;
  }
  .people-panel__primary .people-panel__list .person {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
}
@media (min-width: 42.5em) {
  .people-panel__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 62.5em) {
  .people-panel__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}
@media (min-width: 72em) {
  .people-panel__list {
    padding: 0;
  }
}
@media (min-width: 80em) {
  .people-panel__list {
    grid-template-columns: repeat(6, 1fr);
    gap: 60px;
  }
}

.person {
  margin: 0;
  border: 0;
  padding: 0;
  flex-shrink: 0;
  background: none;
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .person--bio {
    cursor: pointer;
  }
}

.person__media {
  position: relative;
  padding-bottom: 100%;
  height: 0;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 29.99em) {
  .person__media {
    width: 25%;
    margin-bottom: 0;
    padding-bottom: 25%;
  }
}

.person__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.person__details {
  text-align: left;
}
@media (min-width: 30em) {
  .person__details {
    text-align: center;
  }
}
@media (max-width: 29.99em) {
  .person__details {
    border-top: 1px solid #C9C9C9;
    height: -webkit-fill-available;
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.person__name {
  display: inline;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  transition: color 0.4s ease;
}
@media (max-width: 29.99em) {
  .person__name {
    margin-bottom: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .person--bio:hover .person__name {
    color: #BD8C3C;
  }
}

.person__role {
  margin-top: 7px;
  font-size: 0.875rem;
  color: #232323;
}
@media (min-width: 50em) {
  .person__role {
    font-size: 1rem;
  }
}

/* ==========================================================================
    People Panel - 1 & 2 People
    ========================================================================== */
@media (min-width: 50em) {
  .people-panel--1.people-panel__primary .people-panel__inner,
  .people-panel--2.people-panel__primary .people-panel__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .people-panel--1.people-panel__primary .people-panel__list,
  .people-panel--2.people-panel__primary .people-panel__list {
    display: flex;
  }
  .people-panel--1.people-panel__primary .person,
  .people-panel--2.people-panel__primary .person {
    max-width: 280px;
    flex-shrink: 1;
  }
}
@media (min-width: 72em) {
  .people-panel--1.people-panel__primary .people-panel__inner,
  .people-panel--2.people-panel__primary .people-panel__inner {
    gap: 0 60px;
  }
}

/*  ==========================================================================
    People Panel - Secondary
    ========================================================================== */
.people-panel__secondary .people-panel__list {
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}
.people-panel__secondary .person {
  border-top: 1px solid #C9C9C9;
  padding-top: 5px;
  width: 75%;
}
@media (min-width: 42.5em) {
  .people-panel__secondary .person {
    padding: 15px;
  }
}
.people-panel__secondary .person__details {
  border-top: none;
  color: #000;
  text-align: left;
  transition: color 0.4s ease, border-color 0.4s ease;
}
@media (min-width: 24.3em) {
  .people-panel__secondary .person {
    width: 100%;
  }
  .people-panel__secondary .people-panel__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 42.5em) {
  .people-panel__secondary .people-panel__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
@media (min-width: 62.5em) {
  .people-panel__secondary .people-panel__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 80em) {
  .people-panel__secondary .people-panel__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 60px;
  }
}

/* ==========================================================================
    People Panel - People Popup
    ========================================================================== */
.people-popup {
  --link-color: #fff;
  --focus-color: #fff;
  width: auto;
  height: 100%;
  max-width: 1120px;
  max-height: 100svh;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #fff;
  color: #000;
  z-index: 20;
  text-align: left;
  border: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 50em) {
  .people-popup {
    margin: auto;
    max-height: 90svh;
    width: calc(100% - 40px);
  }
}
@media (min-width: 80em) {
  .people-popup {
    overflow: visible;
  }
}

.people-popup__inner {
  padding: 15px;
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .people-popup__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 50em) {
  .people-popup__inner {
    padding: 30px;
  }
}

@media (min-width: 50em) {
  .people-popup__header {
    display: flex;
    justify-content: flex-end;
  }
}

.people-popup__close {
  position: fixed;
  top: 30px;
  right: -30px;
  padding: 0;
  margin: 0;
  border: 0;
  color: #fff;
  background-color: #000;
  border: 2px solid #000;
  border-radius: 50%;
  z-index: 4;
  transition: background-color 0.4s ease;
}
@media (min-width: 50em) {
  .people-popup__close {
    color: #fff;
    position: static;
  }
}
@media (min-width: 50em) and (hover: hover) and (pointer: fine) {
  .people-popup__close:hover {
    color: #BD8C3C;
  }
}
@media (min-width: 80em) {
  .people-popup__close {
    background-color: transparent;
    border: 2px solid #fff;
    top: 0 !important;
    right: -60px !important;
  }
}
.people-popup__close .o-icon--close {
  fill: #fff;
}
.people-popup__close:hover {
  background-color: #fff;
}
.people-popup__close:hover .o-icon--close {
  fill: #000;
}

.people-popup__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 50em) {
  .people-popup__body {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
}
@media (min-width: 62.5em) {
  .people-popup__body {
    gap: 60px;
  }
}

.people-popup__details {
  flex-shrink: 0;
  text-align: left;
}
@media (min-width: 50em) {
  .people-popup__details {
    width: 45%;
  }
}

.people-popup__sticky {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 50em) {
  .people-popup__sticky {
    position: sticky;
    top: 30px;
  }
}

.people-popup__name {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .people-popup__name {
    font-size: 2.375rem;
  }
}

.people-popup__role {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (min-width: 50em) {
  .people-popup__role {
    font-size: 1.5rem;
  }
}

.people-popup__sticky.people-popup__sticky--image .people-popup__meta {
  margin-left: 20px;
}
@media (min-width: 50em) {
  .people-popup__sticky.people-popup__sticky--image .people-popup__meta {
    margin-left: 0;
  }
}
.people-popup__sticky.people-popup__sticky--image .people-popup__name {
  font-size: 1.375rem;
}
.people-popup__sticky.people-popup__sticky--image .people-popup__role {
  font-size: 1.125rem;
}

.people-popup__media {
  width: 100%;
}

.people-popup__intrinsic-ratio {
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}

.people-popup__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media (min-width: 62.5em) {
  .people-popup__information {
    max-width: 600px;
  }
}

.people-popup__bio p {
  font-size: 1.125rem !important;
  line-height: 1.5625rem;
}

/*  ==========================================================================
    Pull Quote
    ========================================================================== */
.pull-quote {
  position: relative;
  margin: var(--content-margin);
  margin-bottom: 0;
  padding-left: 15px;
  padding-right: 15px;
  background-color: transparent;
  color: #000;
  width: 100%;
  max-width: 940px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .pull-quote {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.pull-quote__rating {
  display: flex;
  text-align: center;
}
.pull-quote__rating .o-icon {
  width: 45px;
  height: 45px;
}
@media (min-width: 50em) {
  .pull-quote__rating .o-icon {
    width: 60px;
    height: 60px;
  }
}

.pull-quote__image-container {
  width: 100%;
  height: 100%;
}

.pull-quote__image {
  max-width: 190px;
}
@media (min-width: 50em) {
  .pull-quote__image {
    max-width: 300px;
  }
}

.quote {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  padding-left: 30px;
}
.quote:before {
  position: absolute;
  content: "";
  background-color: #BD8C3C;
  width: 2px;
  height: 70%;
  bottom: 0;
  left: 0;
}
@media (min-width: 50em) {
  .quote:before {
    height: 100%;
  }
}
@media (min-width: 62.5em) {
  .quote {
    padding-left: 0;
  }
  .quote:before {
    left: -30px;
  }
}
@media (min-width: 72em) {
  .quote:before {
    left: -60px;
  }
}

.quote__description {
  width: 100%;
}

.quote__text {
  position: relative;
  font-size: 1.5rem;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  margin: 0 auto;
  padding-bottom: 0;
  line-height: 1.2;
}
.quote__text p {
  margin-bottom: 0;
  text-wrap: pretty;
}
.quote__text p:first-child:before {
  content: "“";
}
.quote__text p:last-child:after {
  content: "”";
}
@media (min-width: 50em) {
  .quote__text {
    font-size: 2rem;
  }
}
@media (min-width: 62.5em) {
  .quote__text {
    font-size: 4.25rem;
  }
}

.quote__meta,
.quote__link {
  width: 100%;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
@media (min-width: 50em) {
  .quote__meta,
  .quote__link {
    font-size: 1.25rem;
  }
}
@media (min-width: 62.5em) {
  .quote__meta,
  .quote__link {
    font-size: 1.5rem;
  }
}

.quote__link {
  display: inline;
}

.quote__cite,
.quote__publisher {
  display: inline-block;
  text-decoration: none;
}

/*  ==========================================================================
    Review
    ========================================================================== */
.review-block {
  position: relative;
  margin: var(--content-margin);
  overflow: hidden;
  width: 100%;
  max-width: 1160px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .review-block {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.review-block__list {
  position: relative;
  height: auto;
  width: 100%;
  display: flex;
  transition-property: transform;
}

.review {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 30px 0;
  position: relative;
  z-index: 3;
  min-height: 250px;
  flex-shrink: 0;
  background-color: #fff;
  width: 100%;
}
@media (min-width: 50em) {
  .review {
    padding: 30px 20px;
  }
}

.review__rating {
  display: flex;
  gap: 0 10px;
  text-align: center;
  flex-shrink: 0;
}
@media (min-width: 50em) {
  .review__rating {
    gap: 0 20px;
  }
}
.review__rating .o-icon {
  display: none;
  width: 39px;
  height: 39px;
}
@media (min-width: 50em) {
  .review__rating .o-icon {
    width: 60px;
    height: 60px;
  }
}

.review__rating--1 .o-icon:nth-child(-n+1) {
  display: inline-block;
}

.review__rating--2 .o-icon:nth-child(-n+2) {
  display: inline-block;
}

.review__rating--3 .o-icon:nth-child(-n+3) {
  display: inline-block;
}

.review__rating--4 .o-icon:nth-child(-n+4) {
  display: inline-block;
}

.review__rating--5 .o-icon {
  display: inline-block;
}

.review__description {
  max-width: 860px;
  width: 100%;
}

.review__quote {
  color: #000;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto;
  padding-bottom: 0;
  position: relative;
  text-align: center;
}
@media (min-width: 50em) {
  .review__quote {
    font-size: 2.375rem;
  }
}
.review__quote p {
  margin-bottom: 0;
}
.review__quote p:first-child:before {
  content: "“";
}
@media (min-width: 50em) {
  .review__quote p:first-child:before {
    margin-left: -0.95rem;
  }
}
.review__quote p:last-child:after {
  content: "”";
}
@media (min-width: 30em) {
  .review__quote {
    font-size: var(--global-header-size-6);
  }
}
@media (min-width: 50em) {
  .review__quote {
    font-size: var(--global-header-size-7);
  }
}
@media (min-width: 72em) {
  .review__quote {
    font-size: var(--global-header-size-9);
  }
}

.review__meta {
  border-top: 1px solid #fff;
  font-size: 0.875rem;
  max-width: 860px;
  text-align: center;
  width: 100%;
}
@media (min-width: 50em) {
  .review__meta {
    font-size: var(--global-body-size-5);
  }
}

.review__link {
  display: inline-block;
  text-decoration: none;
  color: var(--link-color);
  background: linear-gradient(to bottom, var(--focus-color) 0%, var(--focus-color) 100%), linear-gradient(to bottom, var(--focus-color) 0%, var(--focus-color) 100%);
  background-position: 0 100%, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 3px, 0 3px;
  text-decoration: none;
  transition: background-size 0.2s ease-in-out;
  border-bottom: 0;
  padding-bottom: 3px;
}
@keyframes ButtonLine {
  0% {
    background-size: 100% 3px, 0 3px;
  }
  50% {
    background-size: 0 3px, 0 3px;
  }
  100% {
    background-size: 0 3px, 100% 3px;
  }
}
.review__link:visited {
  color: var(--link-color);
}
.review__link:hover, .review__link:focus {
  animation-name: ButtonLine;
  animation-duration: 0.75s;
}

.review__cite,
.review__publisher {
  display: inline-block;
  font-family: "brandon-grotesque", sans-serif;
  text-decoration: none;
  font-size: 1.25rem;
}
@media (min-width: 50em) {
  .review__cite,
  .review__publisher {
    font-size: 1.5rem;
  }
}

.review.center .review__text,
.review.center .review__meta {
  text-align: center;
}

.review__stop-autoplay {
  cursor: pointer;
  display: flex;
  justify-self: flex-end;
  background: none;
  border: none;
  padding: 0;
}
.review__stop-autoplay .o-icon {
  color: var(--theme-color-dark);
}
.review__stop-autoplay .o-icon:hover {
  color: #000;
}

.review__play-title {
  display: none;
}

.review-block .swiper-pagination-bullets {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.review-block .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #BD8C3C;
  opacity: 0.2;
  cursor: pointer;
  border: none;
  margin: 0;
}
.review-block .swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/*  ==========================================================================
    Sponsors
    ========================================================================== */
.sponsors-block {
  position: relative;
  padding: var(--content-margin-small);
  background-color: #FBFBFB;
}

.sponsors-block__inner {
  width: 100%;
  max-width: 1280px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 50em) {
  .sponsors-block__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 58em) {
  .sponsors-block__inner {
    gap: 60px;
  }
}

.sponsors-block__title {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .sponsors-block__title {
    font-size: 2rem;
  }
}
@media (min-width: 62.5em) {
  .sponsors-block__title {
    font-size: 2.625rem;
  }
}

.sponsors-block__group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 58em) {
  .sponsors-block__group {
    grid-template-columns: 1fr auto;
  }
}

.sponsors-block__heading {
  font-size: 1.75rem;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .sponsors-block__heading {
    font-size: 2rem;
  }
}
@media (min-width: 62.5em) {
  .sponsors-block__heading {
    font-size: 2.375rem;
  }
}

.sponsors-block__list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}

.sponsors-block__header {
  padding: 15px 0 0 0;
}
@media (min-width: 50em) {
  .sponsors-block__header {
    padding: 20px 0;
  }
}

@media (min-width: 32em) {
  .sponsors-block__group--single {
    grid-template-columns: 1fr auto;
  }
}
.sponsors-block__group--single .sponsors-block__list {
  grid-template-columns: 1fr;
}

.sponsors-block__group--extended {
  grid-template-columns: 1fr;
}
@media (min-width: 58em) {
  .sponsors-block__group--extended .sponsors-block__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 72em) {
  .sponsors-block__group--extended .sponsors-block__list {
    gap: 30px 60px;
  }
}
.sponsors-block__group--extended .sponsor {
  width: 100%;
}

@media (min-width: 58em) {
  .sponsors-block__group--4-up .sponsors-block__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 72em) {
  .sponsors-block__group--4-up .sponsors-block__list {
    gap: 30px 60px;
  }
}

/*  ==========================================================================
    Sponsors - Item
    ========================================================================== */
.sponsor {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
@media (min-width: 62.5em) {
  .sponsor {
    width: 250px;
  }
}
@media (min-width: 72em) {
  .sponsor {
    width: 300px;
  }
}

.sponsor__image-container,
.sponsor__description:only-child {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 30px;
  overflow: hidden;
}
@media (min-width: 32em) {
  .sponsor__image-container,
  .sponsor__description:only-child {
    padding: 60px 30px;
  }
}
@media (min-width: 62.5em) {
  .sponsor__image-container,
  .sponsor__description:only-child {
    height: 160px;
  }
}

.sponsor__image-container {
  flex: 1;
}

img.sponsor__image {
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-height: 40px;
  transition: transform 0.3s ease-in-out;
}
@media (min-width: 62.5em) {
  img.sponsor__image {
    max-height: 60px;
    max-width: 160px;
  }
}
@media (hover: hover) and (pointer: fine) {
  a.sponsor:hover img.sponsor__image {
    transform: scale(1.05);
  }
}

.sponsor__description {
  text-align: center;
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: 400;
  text-wrap: balance;
  transition: color 0.4s ease;
}
.sponsor__description:only-child {
  height: 100%;
}
a.sponsor .sponsor__description {
  color: #BD8C3C;
  text-decoration: underline;
}
@media (min-width: 58em) {
  .sponsor__description {
    font-size: 1rem;
  }
  .sponsor__description:only-child {
    font-size: 1.25rem;
  }
}
@media (min-width: 62.5em) {
  .sponsor__description:only-child {
    height: 100%;
    min-height: 160px;
  }
}

/*  ==========================================================================
    Venue Panel
    ========================================================================== */
.venue-panel {
  padding: var(--content-margin-small);
  background-color: #232323;
  color: #fff;
}

.venue-panel__inner {
  width: 100%;
  max-width: 1280px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 50em) {
  .venue-panel__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 50em) {
  .venue-panel__inner {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}
@media (min-width: 62.5em) {
  .venue-panel__inner {
    gap: 40px;
  }
}
@media (min-width: 72em) {
  .venue-panel__inner {
    gap: 60px;
  }
}

.venue-panel__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.venue-panel__header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
}
@media (min-width: 62.5em) {
  .venue-panel__header {
    gap: 20px;
  }
}

.venue-panel__footer {
  border-top: 1px solid #fff;
  margin-top: 30px;
  padding-top: 15px;
}

.venue-panel__titles {
  display: flex;
  flex-direction: column;
}
@media (min-width: 62.5em) {
  .venue-panel__titles {
    gap: 5px;
  }
}

.venue-panel__title {
  text-wrap: balance;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
}

.venue-panel__address {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
  line-height: 1.2;
  text-wrap: pretty;
  font-size: 0.875rem;
}
.venue-panel__address .o-icon {
  width: 14px;
  height: 18px;
}
@media (min-width: 50em) {
  .venue-panel__address {
    font-size: 1rem;
  }
}

.venue-panel__media {
  width: 100%;
}

.venue-panel__intrinsic-ratio {
  position: relative;
  padding-bottom: 62.5%;
  height: 0;
  overflow: hidden;
}

.venue-panel__image {
  height: 100%;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 3;
  transition: transform 0.3s ease-in-out;
}

.venue-panel__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
}
.venue-panel__link .o-icon {
  width: 20px;
  height: 20px;
  transform: translateX(0);
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .venue-panel:has(.venue-panel__link:hover) .venue-panel__image {
    transform: scale(1.05);
  }
  .venue-panel__link:hover .o-icon {
    transform: translateX(5px);
  }
}

/*  ==========================================================================
    Video Gallery
    ========================================================================== */
.video-gallery {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
  background-color: transparent;
}
@media (min-width: 50em) {
  .video-gallery {
    padding: 60px 0;
  }
}
.video-gallery:last-child {
  margin-bottom: 0;
}

@media (min-width: 62.5em) {
  .video-gallery__inner {
    width: 100%;
    max-width: 1360px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 62.5em) and (min-width: 50em) {
  .video-gallery__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.video-gallery__header {
  position: relative;
  margin: 0 15px 30px;
  padding-top: 15px;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 50em) {
  .video-gallery__header {
    align-items: center;
  }
}
@media (min-width: 62.5em) {
  .video-gallery__header {
    margin: 0 0 25px;
  }
}

.video-gallery__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (min-width: 50em) {
  .video-gallery__title {
    font-size: 2rem;
  }
}

.video-gallery__description {
  color: #232323;
}
.video-gallery__description p {
  margin-bottom: 0;
}

.video-gallery__actions {
  display: flex;
  gap: 0 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.video-gallery__previous,
.video-gallery__next {
  border: none;
  padding: 0;
  cursor: pointer;
  display: none;
  width: 40px;
  height: 40px;
  transition: background-color 0.4s ease;
  background-color: transparent;
}
@media (min-width: 62.5em) {
  .video-gallery__previous,
  .video-gallery__next {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.video-gallery__previous.swiper-button-disabled,
.video-gallery__next.swiper-button-disabled {
  cursor: not-allowed;
}
.video-gallery__previous .o-icon,
.video-gallery__next .o-icon {
  scale: 1;
  transition: scale 0.4s ease;
}
.video-gallery__previous:not(.swiper-button-disabled):hover .o-icon,
.video-gallery__next:not(.swiper-button-disabled):hover .o-icon {
  scale: 1.1;
}

.video-gallery__previous {
  margin-left: 0;
}
.video-gallery__previous .o-icon {
  rotate: -180deg;
}

.video-gallery__next {
  margin-left: 15px;
}
@media (min-width: 62.5em) {
  .video-gallery__next {
    margin-left: 0;
  }
}

.video-gallery__scroll::-webkit-scrollbar {
  display: none;
}
@media (max-width: 62.49em) {
  .video-gallery__scroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    padding-left: 15px;
  }
}

.video-gallery__list {
  display: flex;
  -webkit-overflow-scrolling: touch;
}

.video-gallery__item {
  display: flex;
  width: 320px;
  padding-right: 15px;
  flex-shrink: 0;
  box-sizing: content-box;
  position: relative;
}
@media (min-width: 62.5em) {
  .video-gallery__item {
    width: calc(33.3% - 26px);
    padding-right: 40px;
  }
  .video-gallery__item:last-child {
    padding-right: 0;
  }
}

/*  ==========================================================================
    Video Gallery - Items
    ========================================================================== */
.video-gallery .video-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  width: 100%;
}
.video-gallery .video-item .video-item__details {
  flex: 1;
  margin-top: 5px;
}
.video-gallery .video-item .video-item__media {
  position: relative;
  overflow: hidden;
}
.video-gallery .video-item .video-item__image {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  z-index: 3;
  transition: transform 0.4s ease;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.video-gallery .video-item .video-item__intrinsic-ratio {
  display: block;
  position: relative;
  padding-bottom: 75%;
  height: 0;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 80em) {
  .video-gallery .video-item .video-item__intrinsic-ratio {
    padding-bottom: 66.6666666667%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .video-gallery .video-item:hover .video-item__image {
    transform: scale(1.05);
  }
}
.video-gallery .video-item .video-item__title {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 15px;
}
.video-gallery .video-item .video-item__description {
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 0;
  text-wrap: pretty;
}
@media (min-width: 50em) {
  .video-gallery .video-item .video-item__description {
    font-size: 1.125rem;
  }
}
.video-gallery .video-item .video-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  margin: auto;
  padding: 1px;
  background-color: #fff;
  color: #fff;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  z-index: 3;
  transition: background-color 0.4s ease;
}
.video-gallery .video-item .video-item__icon .o-icon {
  position: relative;
  left: 3px;
  fill: #000;
}
@media (min-width: 62.5em) {
  .video-gallery .video-item .video-item__icon {
    width: 69px;
    height: 69px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .video-gallery .video-item:hover .video-item__icon {
    background-color: #000;
  }
  .video-gallery .video-item:hover .video-item__icon .o-icon {
    fill: #fff;
  }
}

/* ==========================================================================
   Well Block
   ========================================================================== */
.well-block {
  position: relative;
  padding: 0 15px;
  margin: var(--content-margin);
  color: #000;
}

@media (min-width: 58em) {
  .well-block__inner {
    width: 100%;
    max-width: 1040px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 58em) and (min-width: 50em) {
  .well-block__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 50em) {
  .well-block--centered {
    text-align: center;
  }
}

.well {
  background-color: #fff;
  padding: 30px;
}
@media (min-width: 62.5em) {
  .well {
    padding: 40px;
  }
}
.well + .well {
  margin-top: 0;
}

/*  ==========================================================================
    Event Header
    ========================================================================== */
.event-header {
  background-color: transparent;
  color: #000;
  position: relative;
  padding: var(--content-margin-small);
  padding-bottom: 0;
}
@media (max-width: 62.49em) {
  .event-header {
    padding-top: 0;
  }
}

.event-header__inner {
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 50em) {
  .event-header__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 50em) {
  .event-header__inner {
    gap: 30px;
  }
}
@media (min-width: 62.5em) {
  .event-header__inner {
    gap: 60px;
  }
}

.event-header__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  height: 100%;
  z-index: 6;
}
@media (min-width: 50em) {
  .event-header__body {
    flex-direction: row;
    gap: 30px;
  }
}

.event-header__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 50em) {
  .event-header__content {
    gap: 15px;
    max-width: 65%;
  }
}

.event-header__titles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-header__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 2.375rem;
  font-weight: 700;
  width: 100%;
  line-height: 1;
  text-transform: uppercase;
}
@media (min-width: 62.5em) {
  .event-header__title {
    font-size: 4.25rem;
  }
}

.event-header__prefix,
.event-header__suffix {
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  margin-bottom: 0;
  text-transform: uppercase;
}

.event-header__description {
  font-size: 1.125rem;
  margin: 15px 0;
}
@media (min-width: 50em) {
  .event-header__description {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
}

.event-header__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 50em) {
  .event-header__details {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 30px;
  }
}

.event-header__dates {
  font-size: 1.25rem;
  font-weight: 700;
}
@media (min-width: 50em) {
  .event-header__dates {
    font-size: 1.5rem;
  }
}

.event-header__venue {
  font-weight: 500;
  text-transform: uppercase;
}

.event-header__meta {
  display: flex;
  flex-direction: column;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1rem;
  gap: 5px;
}
@media (min-width: 50em) {
  .event-header__meta {
    font-size: 1.125rem;
  }
}

.event-header__actions {
  background-color: #F7F5F2;
  display: flex;
  gap: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 15px;
  width: 100%;
}
@media (max-width: 49.99em) {
  .event-header__actions {
    flex-wrap: wrap;
  }
  .event-header__actions .event-header__btn {
    flex-grow: 1;
  }
}
@media (min-width: 50em) {
  .event-header__actions {
    background-color: transparent;
    gap: 15px;
    padding: 0;
    position: unset;
  }
}

.event-header__extras {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1rem;
}
@media (min-width: 50em) {
  .event-header__extras {
    gap: 15px;
    font-size: 1.125rem;
  }
}

.event-header__info {
  font-weight: 700;
  margin-bottom: 0;
}

.event-header__presale {
  font-weight: 500;
  margin-bottom: 0;
}
.event-header__presale a {
  font-weight: 500;
  text-decoration: underline;
}

.event-header__media {
  position: relative;
  margin-bottom: 0;
  z-index: 1;
  width: 100%;
}

.event-header__media-inner {
  position: relative;
  height: 100%;
}

.event-header__intrinsic-ratio {
  position: relative;
  padding-bottom: 66.6666666667%;
  height: 0;
  margin-bottom: 0;
}
@media (min-width: 42.5em) {
  .event-header__intrinsic-ratio {
    padding-bottom: 66.6666666667%;
  }
}
@media (min-width: 72em) {
  .event-header__intrinsic-ratio {
    padding-bottom: 55.5555555556%;
  }
}

.event-header__image {
  width: 100%;
  height: auto;
  position: absolute;
  right: 0;
  z-index: 1;
}

.event-header__trailer {
  display: flex;
  align-items: center;
  gap: 5px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 15px;
  font-weight: 500;
  font-size: 1.125rem;
}

.event-header__trailer-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #000;
  cursor: pointer;
  width: 22px;
  height: 22px;
}
.event-header__trailer-btn .o-icon {
  width: 8px;
  height: 8px;
  margin-right: -2px;
}

/*  ==========================================================================
    Event Header - Video
    ========================================================================== */
.event-header--video .video-container {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 120%;
  height: auto;
  aspect-ratio: 3/2;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease 3s;
}
.event-header--video .video-container iframe {
  width: 100%;
  height: 100%;
}
.event-header--video .video-container--loaded {
  opacity: 1;
}
.event-header--video.header-video--loaded .video-container {
  opacity: 1;
}

.event-header__video {
  position: absolute;
  inset: 0;
  padding: 0 15px;
  overflow: hidden;
  z-index: 2;
}

.event-header__pause {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  z-index: 3;
}
@media (min-width: 50em) {
  .event-header__pause {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}
.event-header__pause .o-icon {
  fill: #fff;
  width: 100%;
  height: 100%;
}

/*  ==========================================================================
    Page Header
    ========================================================================== */
.page-header {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: transparent;
  padding: 15px;
}
@media (min-width: 50em) {
  .page-header {
    width: 100%;
    max-width: 940px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 50em) and (min-width: 50em) {
  .page-header {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.page-header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.page-header__breadcrumbs-list {
  display: flex;
  gap: 10px;
  font-size: 1rem;
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}
@media (min-width: 50em) {
  .page-header__breadcrumbs-list {
    padding: 15px 0;
  }
}

.page-header__breadcrumbs-list li:last-child .o-icon {
  display: none;
}

.page-header__media {
  position: relative;
  margin-bottom: 0;
  z-index: -1;
  width: 100%;
}

.page-header__media-inner {
  position: relative;
  height: 100%;
}

.page-header__intrinsic-ratio {
  position: relative;
  padding-bottom: 55.5555555556%;
  height: 0;
}

.page-header__image {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  z-index: 1;
}

.page-header__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  color: #000;
  width: 100%;
}

.page-header__breadcrumb {
  position: relative;
  z-index: 1;
}

.page-header__title {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 2.375rem;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (min-width: 50em) {
  .page-header__title {
    font-size: 4.25rem;
  }
}

.page-header__description {
  font-size: 1rem;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .page-header__description {
    font-size: 1.375rem;
  }
}

/*  ==========================================================================
    Page Header - Image
    ========================================================================== */
.page-header--image {
  background-color: transparent;
  padding: 0;
}
@media (min-width: 50em) {
  .page-header--image {
    width: 100%;
    max-width: 1440px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 50em) and (min-width: 50em) {
  .page-header--image {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.page-header--image .page-header__title {
  font-size: 1.5rem;
}
@media (min-width: 50em) {
  .page-header--image .page-header__title {
    font-size: 2.625rem;
  }
}
.page-header--image .page-header__content {
  padding: 20px 15px;
}
@media (min-width: 50em) {
  .page-header--image .page-header__content {
    align-items: center;
    padding-bottom: 40px;
    max-width: 75%;
    text-align: center;
    text-wrap: balance;
  }
}

/*  ==========================================================================
    Page Header - Slim
    ========================================================================== */
.page-header--slim .page-header__breadcrumbs-list {
  padding: 15px 0;
}
.page-header--slim .page-header__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--Colors-Neutral-Alpha-Black-70, rgba(0, 0, 0, 0.7)) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 2;
}
.page-header--slim .page-header__intrinsic-ratio {
  padding-bottom: 100%;
}
@media (min-width: 32em) {
  .page-header--slim .page-header__intrinsic-ratio {
    padding-bottom: 75%;
  }
}
@media (min-width: 50em) {
  .page-header--slim .page-header__intrinsic-ratio {
    padding-bottom: 50%;
  }
}
@media (min-width: 80em) {
  .page-header--slim .page-header__intrinsic-ratio {
    padding-bottom: 33.3333333333%;
  }
}
.page-header--slim .page-header__title {
  font-size: 2.375rem;
}
@media (min-width: 62.5em) {
  .page-header--slim .page-header__title {
    font-size: 3.75rem;
  }
}
.page-header--slim .page-header__description {
  font-size: 1.125rem;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .page-header--slim .page-header__description {
    font-size: 1.5rem;
  }
}
.page-header--slim .page-header__content {
  align-items: flex-start;
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  color: #fff;
  text-align: left;
}
@media (min-width: 50em) {
  .page-header--slim .page-header__content {
    padding: 40px;
  }
}
@media (min-width: 62.5em) {
  .page-header--slim .page-header__content {
    padding: 40px 60px;
  }
}

/*  ==========================================================================
    Page Header - 404 page
    ========================================================================== */
.page-error .page-header__logo {
  display: flex;
  justify-content: center;
}
.page-error .page-header__logo .o-icon--logo-made-small {
  display: block;
  width: 120px;
  height: 120px;
  color: #fff;
  padding: 15px 0;
}

/*  ==========================================================================
	Calendar
	========================================================================== */
.calendar {
  background-color: transparent;
  position: relative;
  padding: 30px 0;
}
@media (min-width: 62.5em) {
  .calendar {
    padding: 40px 0;
  }
}

.calendar .dialog:open .calendar-date-picker {
  display: block;
}

.calendar__inner {
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  overflow: visible !important;
}
@media (min-width: 50em) {
  .calendar__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 62.5em) {
  .calendar__inner {
    flex-wrap: nowrap;
  }
}

.calendar__list {
  margin-top: -30px;
  order: 2;
  width: 100%;
}
@media (min-width: 62.5em) {
  .calendar__list {
    order: 1;
    flex-grow: 1;
    flex-shrink: 1;
    margin-top: 0;
    width: auto;
  }
}

.calendar__sidebar {
  background-color: transparent;
  order: 1;
  width: 100%;
  position: sticky;
  top: 0;
  padding: 15px 0;
  z-index: 7;
  margin-bottom: -20px;
}
@media (min-width: 50em) {
  .calendar__sidebar {
    width: 200px;
  }
}
@media (min-width: 62.5em) {
  .calendar__sidebar {
    order: 2;
    width: 300px;
    flex-shrink: 0;
    margin-left: 40px;
    margin-bottom: 60px;
    position: sticky;
    top: 0;
  }
}
@media (min-width: 80em) {
  .calendar__sidebar {
    width: 350px;
    margin-left: 100px;
  }
}

.calendar__sticky {
  position: sticky;
  top: 20px;
  width: 100%;
}
@media (min-width: 72em) {
  .calendar__sticky {
    top: 0;
  }
}

.calendar-actions {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.calendar-actions__date,
.calendar-actions__toggle,
.date-selector__close,
.calendar-filters__close {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--theme-color-dark);
  cursor: pointer;
}
.calendar-actions__date .o-icon,
.calendar-actions__toggle .o-icon,
.date-selector__close .o-icon,
.calendar-filters__close .o-icon {
  width: 24px;
  height: 24px;
}
@media (min-width: 50em) {
  .calendar-actions__date,
  .calendar-actions__toggle,
  .date-selector__close,
  .calendar-filters__close {
    font-size: 1.25rem;
  }
}
@media (min-width: 62.5em) {
  .calendar-actions__date,
  .calendar-actions__toggle,
  .date-selector__close,
  .calendar-filters__close {
    font-size: 1.375rem;
  }
}

@media (min-width: 62.5em) {
  .date-selector__close {
    display: none;
  }
}

.date-selector__close,
.calendar-filters__close {
  flex-direction: row-reverse;
  position: absolute;
  top: 25px;
  right: 20px;
  color: #000;
  z-index: 4;
  transition: color 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .date-selector__close:hover,
  .calendar-filters__close:hover {
    color: var(--theme-color-dark);
  }
}

@media (min-width: 62.5em) {
  .calendar-actions__date {
    display: none;
  }
}

.calendar-actions__toggle {
  margin-left: auto;
  transition: color 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .calendar-actions__toggle:hover {
    color: #000;
  }
}

/*  ==========================================================================
    Whats On
    ========================================================================== */
.page-whatson .page-content,
.page-curated .page-content,
.page-calendar .page-content {
  background-color: transparent;
}

.page-whatson .global-group {
  position: relative;
}

/*  ==========================================================================
    Whats On - Header
    ========================================================================== */
.whatson-header {
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  background-color: transparent;
}
@media (min-width: 50em) {
  .whatson-header {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.whatson-header__inner {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  padding-top: 15px;
  padding-bottom: 10px;
}
@media (min-width: 72em) {
  .whatson-header__inner {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 15px;
  }
}

.whatson-header__content {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}
@media (min-width: 72em) {
  .whatson-header__content {
    margin: 0;
    gap: 40px;
  }
}

.whatson-header__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
}
@media (min-width: 50em) {
  .whatson-header__title {
    font-size: 2.625rem;
  }
}

@media (max-width: 71.99em) {
  .whatson-header__logo {
    width: 51px;
    height: 80px;
    visibility: hidden;
  }
}
.whatson-header__logo .o-icon {
  border: 0;
  width: 51px;
  height: 80px;
}
@media (min-width: 72em) {
  .whatson-header__logo .o-icon {
    width: 105px;
    height: 171px;
  }
}
.user-is-tabbing .whatson-header__logo:focus {
  outline: 2px solid var(--theme-color-dark);
  outline-offset: 2px;
}

.whatson-header__tabs {
  background-color: #BD8C3C;
  border-radius: 30px;
  display: flex;
  flex-direction: row-reverse;
  gap: 15px;
  justify-content: flex-end;
  padding: 5px;
}
.whatson-header__tabs svg {
  display: none;
}
@media (min-width: 50em) {
  .whatson-header__tabs svg {
    display: block;
  }
}

.whatson-header__tab {
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  height: auto;
  padding: 8px 12px;
  position: relative;
}
@media (min-width: 50em) {
  .whatson-header__tab {
    height: 42px;
    padding: 12px 20px;
  }
}
@media (min-width: 72em) {
  .whatson-header__tab:before {
    bottom: -3px;
    height: 2px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .whatson-header__tab:hover:before {
    transform: scaleX(100%);
  }
}

.whatson-header__tab--active {
  background-color: #fff;
  color: #000;
}
.whatson-header__tab--active:before {
  transform: scaleX(100%);
}

/*  ==========================================================================
	Performance Popup
	========================================================================== */
.performance-popup {
  align-items: center;
  justify-content: center;
  position: fixed;
  background-color: transparent;
  margin: auto;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 50em) {
  .performance-popup {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
}
.performance-popup[open] {
  display: flex;
}
.performance-popup::backdrop {
  backdrop-filter: blur(5px) brightness(75%) contrast(120%);
  background-color: rgba(25, 25, 25, 0.7);
  transition: backdrop-filter 0.4s ease, background-color 0.4s ease;
}

.performance-popup__inner {
  display: flex;
  flex-direction: column;
  background-color: var(--theme-color-dark);
  color: #fff;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 50em) {
  .performance-popup__inner {
    max-width: 760px;
    max-height: 720px;
  }
}

.performance-popup__header {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  position: sticky;
  top: 0;
  padding: 15px;
  background-color: var(--theme-color-dark);
  z-index: 6;
}
@media (min-width: 50em) {
  .performance-popup__header {
    padding: 25px 40px;
  }
}

.performance-popup__close {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
@media (min-width: 50em) {
  .performance-popup__close {
    position: fixed;
    top: 0;
    right: 0;
    margin: 20px 15px;
    font-size: 1.375rem;
    color: var(--theme-color-light);
  }
}
@media (min-width: 50em) and (hover: hover) and (pointer: fine) {
  .performance-popup__close:hover {
    color: #fff;
  }
}
.performance-popup__close .o-icon {
  position: relative;
  top: 1px;
  width: 23px;
  height: 23px;
}

.performance-popup__name {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .performance-popup__name {
    font-size: 2.625rem;
  }
}

.performance-popup__group {
  overflow-y: auto;
  padding: 0 15px;
}
@media (min-width: 50em) {
  .performance-popup__group {
    padding: 0 40px;
  }
}

.performance-popup__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
}
@media (min-width: 50em) {
  .performance-popup__list {
    padding-bottom: 40px;
  }
}

/*  ==========================================================================
	Performance Popup - Item
	========================================================================== */
.performance-popup-item {
  background-color: #fff;
  color: #000;
  padding: 15px;
  transition: background-color 0.4s ease;
  display: flex;
  justify-content: space-between;
}
.performance-popup-item .o-icon {
  transition: 0.2s ease-in-out;
  color: var(--theme-color-dark);
}
@media (min-width: 50em) {
  .performance-popup-item {
    min-width: 650px;
    padding: 20px;
    background-color: #F0F0F0;
  }
  .performance-popup-item .o-icon {
    transform: translateX(-10px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .performance-popup-item:hover {
    background-color: #fff;
  }
  .performance-popup-item:hover .o-icon {
    transform: translateX(0);
  }
}

.performance-popup-item__title {
  font-size: var(--global-body-size-5);
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .performance-popup-item__title {
    font-size: var(--global-body-size-7);
  }
}

.performance-popup-item__date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.performance-popup-item__info {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #F0F0F0;
}
@media (min-width: 50em) {
  .performance-popup-item__info {
    flex-direction: row;
    border-color: #C9C9C9;
  }
}

.performance-popup-item__tag {
  background-color: var(--theme-color-dark);
  color: #fff;
  font-weight: 700;
  padding: 6px 10px;
  box-sizing: border-box;
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.performance-popup-item__footer {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  border-top: 1px solid #C9C9C9;
  padding-top: 10px;
}

.performance-popup-item__tags {
  display: flex;
  gap: 15px;
}

.performance-popup-item__availability {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
}

.performance-popup-item__availability {
  display: flex;
  align-items: center;
  gap: 15px;
}
.performance-popup-item__availability.limited .performance-popup-item__availability-line:after {
  width: 20%;
}
.performance-popup-item__availability.good .performance-popup-item__availability-line:after {
  width: 80%;
}

.performance-popup-item__availability-line {
  width: 120px;
  height: 8px;
  background: #A5A5A5;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.performance-popup-item__availability-line:after {
  content: "";
  width: 0;
  height: 8px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0;
}

/*  ==========================================================================
    Event Details
    ========================================================================== */
.event-details {
  padding: var(--content-margin);
  background-color: #FBFBFB;
}

.event-details__inner {
  width: 100%;
  max-width: 1360px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .event-details__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.event-details__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 62.5em) {
  .event-details__items {
    flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 72em) {
  .event-details__items {
    gap: 60px;
  }
}

.event-details-item {
  border-top: 1px solid #C9C9C9;
  padding-top: 15px;
}

.event-details-item__title {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 50em) {
  .event-details-item__title {
    font-size: 1.125rem;
  }
}

.event-details-item__description {
  font-size: 0.875rem;
  margin-bottom: 0;
  text-wrap: pretty;
}
@media (min-width: 50em) {
  .event-details-item__description {
    font-size: 1rem;
  }
}

/*  ==========================================================================
	Event Sticky Bar
	========================================================================== */
.event-sticky-bar {
  display: none;
  position: sticky;
  top: 0;
  background-color: #232323;
  color: #fff;
  margin-bottom: -5px;
  padding: 8px 0 15px;
  z-index: 4;
  width: 100%;
  transition: transform 0.4s ease;
}
@media (min-width: 72em) {
  .event-sticky-bar {
    position: fixed;
    top: var(--global-header-height);
    padding: 10px 0 15px;
    background-color: #000;
    border-top: 1px solid #6A6A6A;
    transform: translateY(-100%);
    z-index: 6;
  }
  .event-sticky-bar.show {
    transform: translateY(0%);
  }
}
.event-sticky-bar .event-btns__btn {
  padding: 10px 40px;
}
.event-sticky-bar .event-btns button {
  color: #000;
}
.event-sticky-bar .event-btns button::after {
  background-color: #fff;
  color: #000;
}

.event-sticky-bar__inner {
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
@media (min-width: 50em) {
  .event-sticky-bar__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.event-sticky-bar__nav {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-bottom: -5px;
  padding-bottom: 5px;
}
.event-sticky-bar__nav::-webkit-scrollbar {
  display: none;
}

.event-sticky-bar__list {
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.event-sticky-bar__item {
  display: flex;
}

.event-sticky-bar__link {
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 700;
}

@media (max-width: 71.99em) {
  .event-sticky-bar__actions {
    display: none;
  }
}

.event-sticky-bar__btns {
  display: flex;
  gap: 10px;
}

.event-sticky-bar__link {
  --link-color: #fff;
}

/*  ==========================================================================
    Review Scroller
    ========================================================================== */
.review-scroller {
  position: relative;
  background: #000;
  padding: 40px 0;
  overflow: hidden;
}
@media (min-width: 50em) {
  .review-scroller {
    padding: 60px 0;
  }
}
@media (min-width: 62.5em) {
  .review-scroller {
    padding: 60px 0 80px;
  }
}
.review-scroller:last-child {
  margin-bottom: 0;
}

.review-scroller__inner {
  width: 100%;
  max-width: 1280px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .review-scroller__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.review-scroller__header {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 50em) {
  .review-scroller__header {
    align-items: center;
  }
}

.review-scroller__title {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .review-scroller__title {
    font-size: 2.375rem;
  }
}
@media (min-width: 62.5em) {
  .review-scroller__title {
    font-size: 2.625rem;
  }
}

.review-scroller__actions {
  display: flex;
  gap: 0 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.review-scroller__previous,
.review-scroller__next {
  border: none;
  padding: 0;
  cursor: pointer;
  display: none;
  width: 40px;
  height: 40px;
  transition: background-color 0.4s ease;
  background-color: #fff;
}
@media (min-width: 62.5em) {
  .review-scroller__previous,
  .review-scroller__next {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.review-scroller__previous.swiper-button-disabled,
.review-scroller__next.swiper-button-disabled {
  cursor: not-allowed;
}
.review-scroller__previous .o-icon,
.review-scroller__next .o-icon {
  color: #000;
  scale: 1;
  transition: scale 0.4s ease;
}
.review-scroller__previous:not(.swiper-button-disabled):hover .o-icon,
.review-scroller__next:not(.swiper-button-disabled):hover .o-icon {
  scale: 1.1;
}

.review-scroller__previous {
  margin-left: 0;
}
.review-scroller__previous .o-icon {
  rotate: -180deg;
}

.review-scroller__next {
  margin-left: 15px;
}
@media (min-width: 62.5em) {
  .review-scroller__next {
    margin-left: 0;
  }
}

.review-scroller__scroll::-webkit-scrollbar {
  display: none;
}
@media (max-width: 62.49em) {
  .review-scroller__scroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding-left: 20px;
  }
}

.review-scroller__list {
  display: flex;
}

/*  ==========================================================================
    Review Scroller - Items
    ========================================================================== */
.review-scroller-item {
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-shrink: 0;
  width: 256px;
  margin-right: 20px;
}
@media (min-width: 32em) {
  .review-scroller-item {
    width: 300px;
  }
}
@media (min-width: 50em) {
  .review-scroller-item {
    width: 400px;
    padding: 30px;
  }
}
@media (min-width: 62.5em) {
  .review-scroller-item:last-child {
    margin-right: 0;
  }
}
@media (min-width: 80em) {
  .review-scroller-item {
    width: calc(33.3% - 13px);
  }
}

.review-scroller-item__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
  height: 100%;
}

.review-scroller-item__quote {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.review-scroller-item__quote p:last-child {
  margin-bottom: 0;
}
.review-scroller-item__quote p:first-child:before {
  content: "“";
}
.review-scroller-item__quote p:last-child:after {
  content: "”";
}
@media (min-width: 32em) {
  .review-scroller-item__quote {
    font-size: 1.25rem;
  }
}
@media (min-width: 50em) {
  .review-scroller-item__quote {
    font-size: 1.5rem;
  }
}

.review-scroller-item__meta {
  width: 100%;
  max-width: 720px;
  text-align: left;
  position: relative;
  font-size: 0.875rem;
  color: #000;
}
@media (min-width: 32em) {
  .review-scroller-item__meta {
    font-size: 1rem;
  }
}
@media (min-width: 50em) {
  .review-scroller-item__meta {
    font-size: 1.125rem;
  }
}

.review-scroller-item__cite {
  font-style: normal;
}

/* ==========================================================================
   Swiper
   ========================================================================== */
.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination.swiper-pagination-bullets {
  text-align: center;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 calc(10px / 2);
  display: inline-block;
  border-radius: 100%;
  background: transparent;
  border: 1px solid #000;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #000;
}

/* ==========================================================================
   Slider nav
   ========================================================================== */
.swiper-button {
  position: absolute;
  top: 0%;
  z-index: 3;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-indent: -999999px;
  overflow: hidden;
  width: 50px;
  height: 50px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  margin: 0;
  padding: 0;
}
@media (min-width: 50em) {
  .swiper-button {
    top: 30%;
    transform: translateY(-50%);
  }
}
@media (min-width: 58em) {
  .swiper-button {
    top: 50%;
    transform: translateY(-50%);
  }
}

.swiper-button-disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.swiper-button__prev {
  background: rgba(255, 255, 255, 0.4) url("images/navigate-before.svg") no-repeat center center;
  background-size: 100%;
  left: 15px;
}

.swiper-button__next {
  background: rgba(255, 255, 255, 0.4) url("images/navigate-next.svg") no-repeat center center;
  background-size: 100%;
  right: 15px;
}

@media (min-width: 50em) {
  .swiper-button__prev {
    left: 0;
    background: url("images/navigate-before.svg") no-repeat;
    background-size: 100%;
  }
  .swiper-button__next {
    right: 0;
    background: url("images/navigate-next.svg") no-repeat;
    background-size: 100%;
  }
}
@media (min-width: 72em) {
  .swiper-button__prev {
    left: 40px;
  }
  .swiper-button__next {
    right: 40px;
  }
}
.swiper-scrollbar {
  z-index: 50;
  height: 5px;
  margin: 20px 0 0;
  position: sticky;
  left: 0;
  display: none;
}
@media (min-width: 62.5em) {
  .swiper-scrollbar {
    display: block;
  }
}

.swiper-scrollbar-drag {
  height: 5px;
  position: relative;
  background: var(--theme-highlight-color);
  left: 0;
  top: 0;
}

/* ==========================================================================
   Scroller nav
   ========================================================================== */
.scroller__buttons {
  position: absolute;
  right: 0;
  bottom: 0;
}

.scroller__button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

.scroller__button {
  display: block;
  text-indent: -999999px;
  overflow: hidden;
  display: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
}
@media (min-width: 58em) {
  .scroller__button {
    display: inline-block;
  }
}

.scroller__button--previous {
  background: url("images/navigate-before.svg") no-repeat center center;
  background-size: 100%;
}

.scroller__button--next {
  background: url("images/navigate-next.svg") no-repeat center center;
  background-size: 100%;
}

/*  ==========================================================================
    Synopsis Popup
    ========================================================================== */
.synopsis-popup {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  background-color: #000;
  color: #fff;
  padding: 0;
}

.synopsis-popup__inner {
  width: 100%;
  max-width: 1040px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .synopsis-popup__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.synopsis-popup__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: sticky;
  gap: 5px;
  top: 0;
  padding: 15px 0;
  background-color: #000;
}
@media (min-width: 50em) {
  .synopsis-popup__header {
    gap: 15px;
    padding: 40px 0 20px;
  }
}

@media (min-width: 50em) {
  .synopsis-popup__titles {
    display: flex;
    flex-direction: column-reverse;
    max-width: 800px;
  }
}
@media (min-width: 72em) {
  .synopsis-popup__titles {
    max-width: 1000px;
  }
}

.synopsis-popup__prefix {
  display: block;
  line-height: 1;
  padding-bottom: 5px;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
}
@media (min-width: 50em) {
  .synopsis-popup__prefix {
    font-size: 2rem;
  }
}
@media (min-width: 62.5em) {
  .synopsis-popup__prefix {
    font-size: 2.375rem;
  }
}

.synopsis-popup__title {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  margin-bottom: 0;
  text-wrap: balance;
}

.synopsis-popup__close {
  color: #fff;
}
@media (min-width: 62.5em) {
  .synopsis-popup__close {
    position: fixed;
    top: 40px;
    right: 60px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .synopsis-popup__close:hover {
    color: #BD8C3C;
  }
}

.synopsis-popup__body {
  padding: 15px 0;
  font-size: 1.125rem;
}
@media (min-width: 50em) {
  .synopsis-popup__body {
    font-size: 1.25rem;
  }
}
.synopsis-popup__body h3 {
  font-size: 1.5rem;
}
@media (min-width: 50em) {
  .synopsis-popup__body h3 {
    font-size: 1.75rem;
  }
}
@media (min-width: 62.5em) {
  .synopsis-popup__body h3 {
    font-size: 2rem;
  }
}
.synopsis-popup__body p {
  margin-bottom: 1.3em;
}
.synopsis-popup__body p:last-child {
  margin-bottom: 0;
}

/*  ==========================================================================
    Embed Video
    ========================================================================== */
.embed-video {
  position: relative;
  padding: 30px 0;
  background-color: transparent;
  color: #000;
}
@media (min-width: 50em) {
  .embed-video {
    padding: 40px 0;
  }
}
@media (min-width: 62.5em) {
  .embed-video {
    padding: 60px 0;
  }
}
.user-is-tabbing .embed-video a:focus {
  outline-color: #000;
}

.embed-video__inner {
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  background-color: transparent;
}
@media (min-width: 50em) {
  .embed-video__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 62.49em) {
  .embed-video__inner {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

/*  ==========================================================================
    Embed Video - Video Item
    ========================================================================== */
.embed-video .video-item {
  display: flex;
  flex-direction: column-reverse;
  gap: 25px;
}
@media (min-width: 50em) {
  .embed-video .video-item {
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 60px;
  }
}
.embed-video .video-item .video-item__content {
  background-color: transparent;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 25px;
  width: 100%;
}
@media (min-width: 62.5em) {
  .embed-video .video-item .video-item__content {
    background-color: #fff;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }
}
.embed-video .video-item .video-item__details {
  border-top: 1px solid #C9C9C9;
}
@media (min-width: 62.5em) {
  .embed-video .video-item .video-item__details {
    margin: 0 60px;
  }
}
.embed-video .video-item .video-item__title {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  padding: 15px 0;
}
@media (min-width: 50em) {
  .embed-video .video-item .video-item__title {
    font-size: 2.375rem;
  }
}
.embed-video .video-item .video-item__description {
  font-size: 1.125rem;
  margin-bottom: 0;
  line-height: 1.4;
}
@media (min-width: 50em) {
  .embed-video .video-item .video-item__description {
    font-size: 1.25rem;
  }
}
.embed-video .video-item .video-item__cta {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
@media (min-width: 50em) {
  .embed-video .video-item .video-item__cta {
    font-size: 1.25rem;
  }
}
@media (min-width: 62.5em) {
  .embed-video .video-item .video-item__cta {
    font-size: 1.375rem;
  }
}
.embed-video .video-item .video-item__media {
  display: block;
  position: relative;
  padding-bottom: 66.6666666667%;
  height: 0;
  width: 100%;
  grid-column: 2;
  grid-row: 1;
}
.embed-video .video-item .video-item__image {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  z-index: 3;
}
.embed-video .video-item .video-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  margin: auto;
  padding: 20px;
  background-color: #fff;
  color: #fff;
  width: 69px;
  height: 69px;
  border-radius: 50%;
  z-index: 3;
  transition: background-color 0.4s ease;
}
.embed-video .video-item .video-item__icon .o-icon {
  fill: #000;
  position: relative;
  left: 2px;
  width: 100%;
  height: 100%;
}
@media (min-width: 62.5em) {
  .embed-video .video-item .video-item__icon .o-icon {
    fill: #fff;
  }
}
@media (min-width: 32em) {
  .embed-video .video-item .video-item__icon {
    padding: 20px;
  }
}
@media (min-width: 62.5em) {
  .embed-video .video-item .video-item__icon {
    background-color: transparent;
    border: 5px solid;
    width: 91px;
    height: 91px;
    padding: 25px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .embed-video .video-item .video-item__media:hover .video-item__icon {
    background-color: #000;
  }
}
@media (hover: hover) and (pointer: fine) and (min-width: 62.5em) {
  .embed-video .video-item .video-item__media:hover .video-item__icon {
    background-color: #fff;
  }
}
@media (hover: hover) and (pointer: fine) {
  .embed-video .video-item .video-item__media:hover .video-item__icon .o-icon {
    fill: #fff;
  }
}
@media (hover: hover) and (pointer: fine) and (min-width: 62.5em) {
  .embed-video .video-item .video-item__media:hover .video-item__icon .o-icon {
    fill: #000;
  }
}

/*  ==========================================================================
	Embed Audio
	========================================================================== */
.embed-iframe {
  background: #232323;
  color: #fff;
  padding: 20px 0 35px;
}
@media (min-width: 50em) {
  .embed-iframe {
    padding: var(--content-margin-small);
  }
}

.embed-iframe__title {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 600;
  border-top: 1px solid #fff;
  padding: 15px 0;
  width: 100%;
}
@media (min-width: 50em) {
  .embed-iframe__title {
    width: 30%;
  }
}

.embed-iframe__inner {
  width: 100%;
  max-width: 1360px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}
@media (min-width: 50em) {
  .embed-iframe__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 50em) {
  .embed-iframe__inner {
    align-items: center;
    flex-direction: row;
    gap: 60px;
  }
}

.embed-iframe__media {
  position: relative;
  flex: 1;
  width: 100%;
}
@media (min-width: 50em) {
  .embed-iframe__media {
    width: auto;
  }
}

@media (max-width: 49.99em) {
  .embed-iframe__audio {
    height: 100px;
  }
}

/*  ==========================================================================
	Grouped Info
	========================================================================== */
.grouped-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  background-color: #fff;
  color: #000;
  margin: 40px 0;
}
@media (min-width: 58em) {
  .grouped-info {
    margin: 60px 0;
  }
}

.grouped-info__title {
  width: 100%;
  max-width: 1280px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  font-size: 2rem;
  text-transform: capitalize;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .grouped-info__title {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 50em) {
  .grouped-info__title {
    font-size: 2.375rem;
  }
}
@media (min-width: 62.5em) {
  .grouped-info__title {
    font-size: 2.625rem;
  }
}

.grouped-info__inner {
  width: 100%;
  max-width: 1280px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .grouped-info__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.preformance-info__border {
  border-top: 1px solid #F0F0F0;
  padding-top: 22px;
}

.grouped-info__group {
  height: auto;
}

.grouped-info__group:last-child:nth-child(odd) {
  flex: 1;
}
@media (min-width: 42.5em) {
  .grouped-info__group:last-child:nth-child(odd) .grouped-info__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 50em) {
  .grouped-info__group:last-child:nth-child(odd) .grouped-info__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grouped-info__header {
  border-top: 1px solid #000;
  display: flex;
  justify-content: space-between;
}

.grouped-info__heading {
  font-size: 2rem;
  margin-bottom: 15px;
  text-transform: capitalize;
  width: auto;
}
@media (min-width: 50em) {
  .grouped-info__heading {
    font-size: 2.375rem;
    width: 50%;
  }
}
@media (min-width: 62.5em) {
  .grouped-info__heading {
    font-size: 2.625rem;
  }
}

.grouped-info:has(.grouped-info__title) .grouped-info__heading {
  font-size: 1.625rem;
}
@media (min-width: 50em) {
  .grouped-info:has(.grouped-info__title) .grouped-info__heading {
    font-size: 2rem;
  }
}
@media (min-width: 62.5em) {
  .grouped-info:has(.grouped-info__title) .grouped-info__heading {
    font-size: 2.625rem;
  }
}

.grouped-info__cta {
  display: none;
  align-items: center;
  gap: 5px;
  color: var(--theme-color-dark);
  font-weight: 700;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1rem;
}
@media (min-width: 50em) {
  .grouped-info__cta {
    display: flex;
    font-size: 1.375rem;
  }
}

.grouped-info__cta.mobile {
  display: flex;
}
@media (min-width: 50em) {
  .grouped-info__cta.mobile {
    display: none;
  }
}

.grouped-info__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

.grouped-info__header {
  padding: 15px 0 0 0;
}
@media (min-width: 50em) {
  .grouped-info__header {
    padding: 20px 0;
  }
}

.grouped-info__item {
  width: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.grouped-info__item-title {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
@media (min-width: 58em) {
  .grouped-info__item-title {
    font-size: 1.75rem;
  }
}

.grouped-info__description {
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 400;
}
@media (min-width: 58em) {
  .grouped-info__description {
    font-size: 1.25rem;
  }
}

/*  ==========================================================================
	Grouped Info - Inline
	========================================================================== */
.grouped-info--inline .grouped-info__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grouped-info--inline .grouped-info__group {
  width: 100%;
  margin-bottom: 40px;
}
.grouped-info--inline .grouped-info__group:last-child {
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .grouped-info--inline .grouped-info__group {
    height: auto;
  }
}
@media (min-width: 62.5em) {
  .grouped-info--inline .grouped-info__group {
    width: 48%;
  }
}
@media (min-width: 50em) {
  .grouped-info--inline .grouped-info__heading {
    width: 100%;
  }
}
.grouped-info--inline .grouped-info__item {
  width: 100%;
}
@media (min-width: 50em) {
  .grouped-info--inline .grouped-info__cta.mobile {
    display: flex;
  }
}

/*  ==========================================================================
	grouped-info-4up
	========================================================================== */
.grouped-info--4up .grouped-info__group {
  border-bottom: 1px solid #F0F0F0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 32em) {
  .grouped-info--4up .grouped-info__group {
    border-bottom: none;
    width: 45%;
  }
}
@media (min-width: 62.5em) {
  .grouped-info--4up .grouped-info__group {
    width: 24%;
  }
}
.grouped-info--4up .grouped-info__header {
  align-items: center;
  border-top: none;
}
@media (min-width: 62.5em) {
  .grouped-info--4up .grouped-info__header {
    flex: 1;
  }
}
.grouped-info--4up .grouped-info__heading {
  font-size: 1.25rem;
  text-transform: capitalize;
  margin-bottom: 0;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}
@media (min-width: 50em) {
  .grouped-info--4up .grouped-info__heading {
    font-size: 1.5rem;
  }
}
@media (min-width: 58em) {
  .grouped-info--4up .grouped-info__heading {
    font-size: 1.625rem;
  }
}
.grouped-info--4up .grouped-info__list {
  gap: 0;
  padding: 0 0 20px;
}
.grouped-info--4up .preformance-info__border {
  border: none;
}

/*  ==========================================================================
    Calendar List
    ========================================================================== */
.calendar-list {
  position: relative;
}

.calendar__date-picker-button {
  display: flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  font-weight: 700;
}
@media (min-width: 50em) {
  .calendar__date-picker-button {
    font-size: 1.25rem;
  }
}
.calendar__date-picker-button ::before {
  content: "";
  display: block;
  position: absolute;
  width: 100px;
  height: 100px;
}
@media (min-width: 62.5em) {
  .calendar__date-picker-button {
    display: none;
  }
}

.calendar-list__months {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 0;
}
@media (min-width: 50em) {
  .calendar-list__months {
    gap: 30px;
  }
}

.calendar-list-month {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.calendar-list-month__title {
  background-color: #F7F5F2;
  display: none;
  font-weight: 700;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: sticky;
  top: 0;
  z-index: 6;
  font-size: 1.75rem;
}
@media (min-width: 50em) {
  .calendar-list-month__title {
    display: flex;
    font-size: 2rem;
  }
}
@media (min-width: 62.5em) {
  .calendar-list-month__title {
    margin-top: 0;
    margin-bottom: 30px;
    padding-top: 15px;
    top: 0;
  }
}
@media (min-width: 72em) {
  .calendar-list-month__title {
    top: 0;
  }
}

.calendar-list-month__days {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 0;
}
@media (min-width: 50em) {
  .calendar-list-month__days {
    gap: 30px;
  }
}

.calendar-list-day {
  display: grid;
  grid-template-columns: 1fr;
  align-items: flex-start;
}
@media (min-width: 50em) {
  .calendar-list-day {
    grid-template-columns: 105px 1fr;
    gap: 40px;
  }
}

.calendar-list-day__title {
  display: flex;
  flex-direction: row;
  gap: 5px;
  background-color: #F7F5F2;
  position: sticky;
  top: 0;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 2.375rem;
  font-weight: 700;
  margin-bottom: 0;
  padding: 15px 0;
  text-align: center;
}
@media (min-width: 50em) {
  .calendar-list-day__title {
    border-top: 1px solid #000;
    flex-direction: column;
    top: 70px;
    padding: 20px 0;
  }
}
@media (min-width: 62.5em) {
  .calendar-list-day__title {
    top: 90px;
  }
}
@media (min-width: 72em) {
  .calendar-list-day__title {
    top: 75px;
  }
}
@media (max-width: 49.99em) {
  .calendar-list-day__title span {
    display: flex !important;
  }
}

.calendar-list-day__weekday {
  font-size: 1.25rem;
}
@media (min-width: 50em) {
  .calendar-list-day__weekday {
    font-size: 1.125rem;
  }
}

.calendar-list-day__month {
  display: block;
  font-size: 1.25rem;
}
@media (min-width: 50em) {
  .calendar-list-day__month {
    display: none;
  }
}

.calendar-list-events {
  list-style: none;
  padding-left: 0;
}
@media (max-width: 49.99em) {
  .calendar-list-events .calendar-list-event-li:first-child .calendar-list-event {
    border-top: none;
  }
}

.calendar-list-day__day {
  font-size: 0.875rem;
}
@media (min-width: 50em) {
  .calendar-list-day__day {
    font-size: 1rem;
  }
}

.calendar-list-day__date {
  font-size: 1.25rem;
  order: 3;
}
@media (min-width: 50em) {
  .calendar-list-day__date {
    font-size: 3rem;
    order: 2;
  }
}

.calendar-list-day__events {
  list-style: none;
}

.calendar-list-event {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  background: none;
  padding: 20px 0;
  border-width: 1px 0 0 0;
  border-color: #A5A5A5;
  text-align: left;
  width: 100%;
  cursor: pointer;
}
@media (min-width: 50em) {
  .calendar-list-event {
    border-color: #6A6A6A;
  }
}

.calendar-list-event__title {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  transition: color 0.4s ease;
  color: #000;
  padding-bottom: 10px;
  text-transform: uppercase;
}
@media (hover: hover) and (pointer: fine) {
  .calendar-list-event:hover .calendar-list-event__title {
    color: var(--theme-color-dark);
  }
}

.calendar-list-event__prefix,
.calendar-list-event__suffix {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.calendar-list-event__suffix {
  margin-bottom: 10px;
}

.calendar-list-event__time {
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 0;
  color: #000;
  text-transform: lowercase;
}
@media (min-width: 50em) {
  .calendar-list-event__time {
    font-size: 1.125rem;
  }
}
@media (min-width: 62.5em) {
  .calendar-list-event__time {
    font-size: 1rem;
  }
}

.calendar-list-event__date {
  display: none;
}

.calendar-list-event__time,
.calendar-list-event__venue {
  font-weight: 700;
}

.calendar-list-event__venue {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.calendar-list-event__repertory {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  font-style: italic;
  margin-top: 15px;
  padding-top: 15px;
}

.calendar-list__event-image {
  height: 110px;
  width: 190px;
  display: none;
}
@media (min-width: 62.5em) {
  .calendar-list__event-image {
    display: flex;
  }
}

.calendar-list-event__info {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 70%;
}

.calendar-list-event__footer {
  width: 100%;
}

/*  ==========================================================================
    Calendar - Footer
    ========================================================================== */
.calendar-info {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}
@media (min-width: 50em) {
  .calendar-info {
    flex-direction: row;
    gap: 30px;
  }
}

.calendar-list-event__genres {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px 15px;
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.calendar-list-event__genre-badge {
  background-color: #fff;
  border: 1px solid #C9C9C9;
  border-radius: 18px;
  padding: 7px 10px;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
}

.calendar-availability {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  flex-shrink: 0;
}
@media (min-width: 50em) {
  .calendar-availability {
    margin-left: auto;
  }
}

.calendar-availability--line {
  width: 130px;
  height: 7px;
  border-radius: 10px;
  background: linear-gradient(#000 0 0) 0/0% no-repeat #ddd;
}
@media (min-width: 50em) {
  .calendar-availability--line {
    width: 100px;
  }
}

.calendar-availability--text {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.calendar-availability--good .calendar-availability--line {
  background: linear-gradient(#289500 0 0) 0/0 no-repeat #ddd;
  animation: goodProgress 1s linear forwards;
  animation-iteration-count: 1;
}

.calendar-availability--low .calendar-availability--line {
  background: linear-gradient(#f5c600 0 0) 0/0 no-repeat #ddd;
  animation: lowProgress 1s linear forwards;
  animation-iteration-count: 1;
}

.calendar-availability--limited-seating .calendar-availability--line {
  background: linear-gradient(#be0000 0 0) 0/0 no-repeat #ddd;
  animation: limitedProgress 1s linear forwards;
  animation-iteration-count: 1;
}

@keyframes goodProgress {
  100% {
    background-size: 100%;
  }
}
@keyframes lowProgress {
  100% {
    background-size: 55%;
  }
}
@keyframes limitedProgress {
  100% {
    background-size: 25%;
  }
}
.calendar-list__view-more {
  background: #000;
  color: #fff;
  border-radius: 18px;
  padding: 6px 18px;
  font-weight: 700;
}

/*  ==========================================================================
    Calendar Date Selector
    ========================================================================== */
.calendar-date-picker {
  display: flex;
  z-index: 14;
  padding: 0;
  width: 100%;
  transition: transform 0.4s ease;
}
.dates-open .calendar-date-picker {
  transform: translateX(0);
}
@media (min-width: 62.5em) {
  .calendar-date-picker {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: unset;
    top: unset;
    right: unset;
    height: unset;
    padding: 0;
    max-width: 470px;
    background-color: transparent;
    transform: translateX(0);
    opacity: 1;
    transition: opacity 0.4s ease;
  }
  .filters-open .calendar-date-picker, .nav-open .calendar-date-picker {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 62.49em) {
  .calendar__desktop-date-picker {
    display: none;
  }
}

.date-selector__inner {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 30px;
  height: 100vh;
  max-width: 550px;
  margin: 0 auto;
}
@media (min-width: 62.5em) {
  .date-selector__inner {
    height: unset;
    max-width: none;
    margin: 0;
  }
}
.date-selector__inner::-webkit-scrollbar {
  display: none;
}
@-moz-document url-prefix() {
  .date-selector__inner {
    scrollbar-width: none;
  }
}

.date-selector__month {
  margin-bottom: 15px;
}
@media (min-width: 32em) {
  .date-selector__month {
    margin-bottom: 0;
  }
}

.calendar-date-picker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 3;
  background-color: #fff;
  padding: 20px 0 0;
  margin-bottom: 15px;
}
@media (min-width: 62.5em) {
  .calendar-date-picker__header {
    background-color: transparent;
    padding: 0;
    margin-bottom: 20px;
  }
}

.date-selector__month-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.calendar-date-picker__month-title {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 5px 0 15px;
}
@media (min-width: 62.5em) {
  .calendar-date-picker__month-title {
    margin-bottom: 0;
  }
}
.calendar-date-picker__month-title strong {
  margin-right: 8px;
}

.calendar-date-picker__actions {
  display: flex;
  gap: 5px;
  position: absolute;
  right: 0;
  top: 15px;
}

.calendar-date-picker__nav-button.btn, .calendar-date-picker__nav-button:where([data-component*=dialog] menu button), .calendar-date-picker__nav-button.calendar-filters__view-results {
  background-color: transparent;
  border: none;
  padding: 15px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxNyIgdmlld0JveD0iMCAwIDEwIDE3IiBmaWxsPSJub25lIj48cGF0aCBkPSJNMCw4LjQ3NjU2QzAsOC43MjA3LDAuMDg3ODk2LDguOTM1NTUsMC4yNzM0MzgsOS4xMjEwOUw4LjAxNzU4LDE2LjY4OTVjMC4xNjE4LDAuMTc2NywwLjM3NjY2LDAuMjY0NiwwLjYzMDU2LDAuMjY0NmMwLjUwNzg0LDAuMDAwMSwwLjkxODQ0LC0wLjM5ODQsMC45MTg0NCwtMC45MTg0NGMwLC0wLjI1MzktMC4xMDc4NCwtMC40OTgzNC0wLjI2NzE2LC0wLjY0Nzg0TDIuMTc3NzMsOC40NzY1Nkw5LjI4NzExLDEuNTIzNDRjMC4xNTkzMiwtMC4xNDk1LDAuMjY3MTYsLTAuMzk0LDAuMjY3MTYsLTAuNjQ3ODRjMCwtMC41MjA2MiwtMC40MTEgLTAuOTE4NDQsLTAuOTE4NDQsLTAuOTE4NDRjLTAuMjUzOTEsMCAtMC40Njg3NiwwLjA4NzkgLTAuNjMwNTYsMC4yNjQ2TDAuMjczNDM4LDcuODMyMDNjLTAuMTg1NTIsMC4xNzU3MSAtMC4yNzM0MzgsMC40MjE3NiAtMC4yNzM0MzgsMC42NTM1M1oiIGZpbGw9ImJsYWNrIiBmaWxsLW9wYWNpdHk9IjAuODUiLz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 17px;
}

.calendar-date-picker__actions .calendar-date-picker__nav-button:nth-of-type(2) {
  transform: rotate(180deg);
}

.date-selector__actions {
  display: flex;
  gap: 0 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.date-selector__button {
  background-color: #BD8C3C;
  color: #fff;
  border: none;
  padding: 0;
  cursor: pointer;
  display: none;
  width: 40px;
  height: 40px;
  transition: background-color 0.4s ease;
}
@media (min-width: 62.5em) {
  .date-selector__button {
    display: inline-block;
  }
}
.date-selector__button.swiper-button-disabled {
  cursor: not-allowed;
}
.date-selector__button .o-icon {
  width: 16px;
  height: 20px;
  transition: color 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .date-selector__button:not(.swiper-button-disabled):hover {
    background-color: color-mix(in srgb, #BD8C3C 75%, white);
  }
}

.date-selector__button--previous {
  margin-left: 0;
}
.date-selector__button--previous .o-icon {
  rotate: -180deg;
}

.date-selector__button--next {
  margin-left: 15px;
}
@media (min-width: 62.5em) {
  .date-selector__button--next {
    margin-left: 0;
  }
}

.date-selector__days-header {
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}

.date-selector__day-name {
  width: 14.285%;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 0.875rem;
  text-align: center;
}

.calendar-date-picker__table {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.calendar-date-picker__table thead, .calendar-date-picker__table tbody {
  width: 100%;
}
.calendar-date-picker__table tbody tr {
  display: flex;
  justify-content: space-between;
}
.calendar-date-picker__table thead tr {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.calendar-date-picker__table thead tr th {
  width: 14.285%;
  font-weight: 700;
  text-align: center;
}

.calendar-date-picker__date-cell {
  width: 14.285%;
  opacity: 0.3;
  text-align: center;
  padding: 5px;
  margin: 10px 0;
  border: none;
  background: transparent;
  color: #444;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.125rem;
}
.calendar-date-picker__date-cell .calendar-date-picker__date-button {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.calendar-date-picker__date-cell:has(.calendar-date-picker__date-button) {
  opacity: 1;
}

.date-selector__day--events {
  font-weight: 600;
  opacity: 1;
  cursor: pointer;
}

.date-selector__day--today {
  opacity: 1;
  position: relative;
  color: #fff;
  font-weight: 600;
}
.date-selector__day--today:after {
  content: "";
  width: 34px;
  height: 34px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #BD8C3C;
  z-index: -1;
  border-radius: 100%;
}

.date-selector__day--events:not(.date-selector__day--today):active, .date-selector__day--events:not(.date-selector__day--today):hover {
  color: #BD8C3C;
}

/*  ==========================================================================
        Calendar Date Selector - Mobile (Vertical Scrolling)
        ========================================================================== */
.calendar__mobile-date-picker {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.calendar__mobile-date-picker .dialog {
  max-height: -webkit-fill-available;
  max-width: none;
  width: 100%;
}
@media (min-width: 42.5em) {
  .calendar__mobile-date-picker .dialog {
    max-width: revert;
    width: -moz-max-content;
    width: max-content;
    max-height: revert;
  }
}
.calendar__mobile-date-picker .dialog__close {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0;
  border: none;
  background-color: transparent;
}
.calendar__mobile-date-picker .date-selector__month {
  margin-bottom: 15px;
}
.calendar__mobile-date-picker .date-selector__month-title {
  font-size: 1.625rem;
  margin-bottom: 30px;
}
.calendar__mobile-date-picker .date-selector__month-header {
  display: block;
  position: sticky;
  top: 0;
  z-index: 3;
  background-color: #fff;
  margin-bottom: 15px;
}
@media (min-width: 62.5em) {
  .calendar__mobile-date-picker {
    display: none;
  }
}

/*  ==========================================================================
	Calendar Filters
	========================================================================== */
.calendar-filters {
  max-width: unset;
  max-height: unset;
  padding: unset;
  margin: unset;
  margin-left: auto;
  width: 316px;
  z-index: 20;
}
@media (min-width: 30em) {
  .calendar-filters {
    width: 400px;
  }
}
@media (min-width: 50em) {
  .calendar-filters {
    width: 500px;
  }
}

.calendar-filters__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: sticky;
  bottom: 0;
  margin-top: 20px;
  padding-bottom: 15px;
  background-color: #fff;
  box-shadow: 0 -6px 20px 10px #fff;
}
.calendar-filters__action .calendar-filters__btn {
  width: 100%;
  justify-content: center;
  outline-offset: 2px;
}
@media (min-width: 50em) {
  .calendar-filters__action {
    padding-bottom: 40px;
  }
}

.calendar__filters--desktop {
  display: none;
}
@media (min-width: 62.5em) {
  .calendar__filters--desktop {
    display: flex;
  }
}

.calendar__filters--mobile {
  position: fixed;
  right: 10px;
  top: 90vh;
}
@media (min-width: 62.5em) {
  .calendar__filters--mobile {
    display: none;
  }
}

.calendar__filters--mobile .calendar-popup__close-icon {
  width: 24px;
  height: 24px;
}

.calendar__filters--mobile:has(.dialog:open) {
  display: block;
}

.calendar__filters--mobile .dialog:open .calendar-filters {
  display: block;
  margin: 0;
  width: 100%;
}

.calendar__filters--button {
  display: flex;
  align-items: center;
  gap: 3px;
  background-color: #000;
  color: #fff;
  padding: 8px 12px;
  border-radius: 30px;
  font-weight: bold;
}
@media (min-width: 62.5em) {
  .calendar__filters--button {
    display: none;
  }
}

.calendar__filters--mobile .dialog {
  margin-top: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
}
@media (min-width: 42.5em) {
  .calendar__filters--mobile .dialog {
    width: 500px;
  }
}
@media (min-width: 62.5em) {
  .calendar__filters--mobile .dialog {
    display: none;
  }
}
.calendar__filters--mobile .dialog .dialog__close {
  border: none;
  padding: 0;
  width: 24px;
  height: 24px;
  background: none;
  position: absolute;
  left: 10px;
  cursor: pointer;
}

.calendar-filters__body {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 20px 15px 0;
  height: 100svh;
  width: 100%;
  max-width: 316px;
  overflow-y: auto;
  z-index: 20;
}
@media (min-width: 30em) {
  .calendar-filters__body {
    max-width: 400px;
  }
}
@media (min-width: 50em) {
  .calendar-filters__body {
    max-width: 500px;
    padding: 40px 40px 0;
  }
}
.calendar-filters__body .calendar-filters__toggle {
  top: 0;
  right: 0;
}
.user-is-tabbing .calendar-filters__body .calendar-filters__toggle:focus {
  outline: 2px solid #000;
  outline-offset: 5px;
  overflow: hidden;
}

.calendar-filters__view-results {
  margin-top: 30px;
  width: 100%;
}

.calendar-filters__reset {
  background: none;
  border: none;
  color: #000;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 700;
  position: absolute;
  top: 15px;
  right: 15px;
  text-decoration: underline;
}
@media (min-width: 62.5em) {
  .calendar-filters__reset {
    position: relative;
    right: 0;
    font-size: 1rem;
  }
}

.calendar-filter__header {
  position: relative;
}

.calendar-filters__title {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "brandon-grotesque", sans-serif;
  margin-bottom: 5px;
  padding-bottom: 15px;
  text-align: center;
}
@media (min-width: 62.5em) {
  .calendar-filters__title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left;
  }
}

.calendar-filters__fieldset {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.calendar-filters__groups {
  margin-bottom: auto;
}

.calendar-filters__group {
  border: none;
}

.calendar-filters__group + .calendar-filters__group {
  margin-top: 40px;
}

.calendar-filters__group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0 0 10px;
  border: solid #A5A5A5;
  border-width: 0 0 1px 0;
  background-color: transparent;
  width: 100%;
}
.user-is-tabbing .calendar-filters__group__header:focus {
  outline: 2px solid #000;
  outline-offset: 5px;
  overflow: hidden;
}

.calendar-filters__group__name {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "brandon-grotesque", sans-serif;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .calendar-filters__group__name {
    font-size: 1.25rem;
  }
}
@media (min-width: 62.5em) {
  .calendar-filters__group__name {
    font-size: 1.375rem;
  }
}

.calendar-filters__group__toggle {
  position: relative;
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  margin-left: auto;
  background-color: var(--theme-color-dark);
  border: 1.5px solid #fff;
  border-radius: 100%;
}
.calendar-filters__group__toggle:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 1px);
  width: 10px;
  height: 2px;
  transform: rotate(90deg) translate(-50%, -50%);
  transform-origin: left;
  background-color: #fff;
  transition: background-color 0.3s ease;
}
.calendar-filters__group__header.is-toggled .calendar-filters__group__toggle:before {
  content: none;
}
.calendar-filters__group__toggle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  transition: background-color 0.3s ease;
}

.calendar-filters__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.calendar-filters__options.is-toggled {
  display: block;
}

.calendar-filters__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}

.calendar-filters__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
  padding-top: 20px;
}

.calendar-filters__item {
  display: flex;
  align-items: flex-start;
}
.calendar-filters__item--disabled {
  opacity: 0.5;
}
.user-is-tabbing .calendar-filters__item:has(input:focus) {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.calendar-filters__more {
  margin: 0 0 20px;
}

.calendar-filters__group--long .calendar-filters__list div:nth-of-type(1n+7) {
  display: none;
}
.calendar-filters__group--long.is-toggled .calendar-filters__list div {
  display: block;
}
.calendar-filters__group--long.is-toggled .calendar-filters__more {
  display: none;
}

.calendar-filters__container {
  margin-left: -15px;
  margin-right: -15px;
  padding: 30px 15px;
}
@media (min-width: 62.5em) {
  .calendar-filters__container {
    padding: 0 15px;
  }
}

.calendar-filters__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 1.25rem;
  list-style: none;
  height: 40px;
  margin-left: -15px;
  margin-right: -15px;
  padding: 0 15px;
}

.calendar-filters__group {
  margin-left: -15px;
  margin-right: -15px;
  padding: 0 15px;
}

.calendar-filters__summary::-webkit-details-marker {
  display: none;
}

.calendar-filters__summary::marker {
  display: none;
}

.calendar-filters__fieldset:nth-child(-n+2)[open] .calendar-filters__summary::after {
  content: "+";
  transform: rotate(45deg);
}

.calendar-filters__fieldset:nth-child(-n+2) .calendar-filters__summary::after {
  content: "+";
  margin-left: 0.5rem;
  transition: transform 0.4s;
  display: inline-block;
  font-size: 2.625rem;
  font-weight: 300;
}

.calendar-filters__toggle {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  padding-bottom: 10px;
  padding-top: 5px;
  font-size: 1.25rem;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.calendar-filters__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.calendar-filters__toggle .calendar-filters__label {
  font-size: 1.25rem;
}

.calendar-filters__slider {
  border-radius: 34px;
  width: 32px;
  height: 20px;
  position: relative;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #676767;
  transition: 0.4s;
}

.calendar-filters__slider:before {
  border-radius: 50%;
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: 0.4s;
}

.calendar-filters__toggle input:checked + .calendar-filters__slider:before {
  transform: translateX(13px);
}

/*  ==========================================================================
    Event Scroller
    ========================================================================== */
.event-scroller {
  position: relative;
  padding: var(--content-margin-small);
  background-color: transparent;
  overflow: hidden;
}

.event-scroller__inner {
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .event-scroller__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.event-scroller__header {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: space-between;
  position: relative;
  margin-bottom: 15px;
}
@media (min-width: 50em) {
  .event-scroller__header {
    flex-direction: row;
    gap: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 72em) {
  .event-scroller__header {
    margin-bottom: 30px;
  }
}

.event-scroller__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (min-width: 50em) {
  .event-scroller__title {
    font-size: 2rem;
  }
}

.event-scroller__description {
  margin-bottom: 0;
}

.event-scroller__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  height: 28px;
  border-left: 1px solid #898989;
  padding-left: 15px;
}
.event-scroller__cta .o-icon {
  width: 20px;
  height: 20px;
  transform: translateX(0);
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .event-scroller__cta:hover .o-icon {
    transform: translateX(5px);
  }
}

.event-scroller__actions {
  display: none;
  gap: 0;
  margin-left: auto;
  flex-shrink: 0;
}
@media (min-width: 62.5em) {
  .event-scroller__actions {
    display: flex;
  }
}

.event-scroller__previous,
.event-scroller__next {
  background-color: transparent;
  color: #000;
  border: none;
  padding: 0;
  cursor: pointer;
  display: none;
  width: 40px;
  height: 40px;
  transition: background-color 0.4s ease;
}
@media (min-width: 62.5em) {
  .event-scroller__previous,
  .event-scroller__next {
    display: inline-block;
  }
}
.event-scroller__previous.swiper-button-disabled,
.event-scroller__next.swiper-button-disabled {
  cursor: not-allowed;
}
.event-scroller__previous .o-icon,
.event-scroller__next .o-icon {
  width: 28px;
  height: 22px;
  transition: color 0.4s ease;
}

.event-scroller__previous {
  margin-right: 0;
}
.event-scroller__previous .o-icon {
  transform: rotate(180deg);
}
.event-scroller__previous:active:not(.swiper-button-disabled) .o-icon {
  transform: scale(0.9) rotate(180deg);
}

.event-scroller__next {
  margin-right: 15px;
}
@media (min-width: 62.5em) {
  .event-scroller__next {
    margin-right: 0;
  }
}
.event-scroller__next:active:not(.swiper-button-disabled) .o-icon {
  transform: scale(0.9);
}

.event-scroller__scroll::-webkit-scrollbar {
  display: none;
}
@media (max-width: 62.49em) {
  .event-scroller__scroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding-left: 20px;
  }
}

.event-scroller__list {
  display: flex;
  -webkit-overflow-scrolling: touch;
}

.event-scroller__item {
  display: flex;
  flex-shrink: 0;
  width: 300px;
  box-sizing: content-box;
  padding-right: 20px;
}
@media (min-width: 62.5em) {
  .event-scroller__item {
    width: calc(33.3% - 20px);
    padding-right: 30px;
  }
  .event-scroller__item:last-child {
    padding-right: 0;
  }
}
.event-scroller__item .event-item {
  width: 100%;
}

/*  ==========================================================================
    Event Item
    ========================================================================== */
.event-item {
  width: 100%;
}

.event-item__media {
  position: relative;
  height: 0;
  padding-bottom: 66.6666666667%;
  overflow: hidden;
}

.event-item__image {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .event-item:hover .event-item__image {
    transform: scale(1.05);
  }
}

.event-item__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  height: 100%;
  border-left: 1px solid #C9C9C9;
}

.event-item__details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 15px;
  padding: 0 15px;
}
@media (min-width: 50em) {
  .event-item__details {
    gap: 20px;
  }
}

.event-item__titles {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.event-item__title {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
}

.event-item__prefix,
.event-item__suffix {
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 500;
}

.event-item__footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 15px;
}
@media (min-width: 50em) {
  .event-item__footer {
    padding-bottom: 20px;
  }
}

.event-item__date {
  font-weight: 700;
}

.event-item__venue {
  font-weight: 500;
  text-transform: uppercase;
}

.event-item__date,
.event-item__venue {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.event-item__favourites {
  background: none;
  border: none;
  width: -moz-min-content;
  width: min-content;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 10;
}

/*  ==========================================================================
    Search Result Event Item
    ========================================================================== */
.site-search__results .event-item__media {
  padding-bottom: 20%;
}
.site-search__results .event-item__content {
  padding: 20px 0;
}
.site-search__results .event-item__details {
  gap: 0;
}
.site-search__results .event-item__prefix,
.site-search__results .event-item__suffix {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .site-search__results .event-item__prefix,
  .site-search__results .event-item__suffix {
    font-size: 1.125rem;
  }
}
@media (min-width: 62.5em) {
  .site-search__results .event-item__prefix,
  .site-search__results .event-item__suffix {
    font-size: 1.25rem;
  }
}
.site-search__results .event-item__suffix {
  margin-bottom: 10px;
}
.site-search__results .event-item__location {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #000;
}
@media (min-width: 50em) {
  .site-search__results .event-item__location {
    font-size: 1.125rem;
  }
}
@media (min-width: 62.5em) {
  .site-search__results .event-item__location {
    font-size: 1.25rem;
  }
}
.site-search__results .event-item__footer {
  align-items: flex-start;
}
.site-search__results .event-item__content {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 60px;
}
.site-search__results .event-item__media {
  display: none;
  width: 30%;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .site-search__results .event-item__media {
    display: flex;
  }
}
.site-search__results .event-item__image {
  width: 100%;
  height: 100%;
}
.site-search__results .event-item__intrinsic-ratio {
  width: 240px;
  aspect-ratio: 5/4;
}
.site-search__results .event-item__details {
  width: 100%;
}
@media (min-width: 50em) {
  .site-search__results .event-item__details {
    width: 70%;
  }
}
.site-search__results .event-item__title {
  font-size: 1.5rem;
}
@media (min-width: 50em) {
  .site-search__results .event-item__title {
    font-size: 2.375rem;
  }
}
.site-search__results .event-item__favorite {
  display: none;
}

/*  ==========================================================================
	Event List
	========================================================================== */
.event-list {
  position: relative;
  padding: 30px 0;
  background-color: var(--theme-color-dark);
  color: #fff;
}
@media (min-width: 50em) {
  .event-list {
    padding: 40px 0;
  }
}
@media (min-width: 62.5em) {
  .event-list {
    padding: 60px 0;
  }
}

.event-list__inner {
  width: 100%;
  max-width: 1280px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .event-list__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.event-list__title {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.event-list__events {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 50em) {
  .event-list__events {
    gap: 30px;
  }
}
@media (min-width: 62.5em) {
  .event-list__events {
    gap: 40px;
  }
}

.event-list-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background-color: #fff;
  color: #000;
}
@media (min-width: 50em) {
  .event-list-item {
    flex-direction: row;
    align-items: initial;
    gap: 0;
    padding: 30px;
  }
}

.event-list-item__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.event-list-item__titles {
  display: flex;
  flex-direction: column;
  text-transform: capitalize;
  font-weight: 700;
  font-family: "brandon-grotesque", sans-serif;
  line-height: 1;
}

.event-list-item__title {
  margin-bottom: 0;
}
@media (min-width: 62.5em) {
  .event-list-item__title {
    font-size: 2.625rem;
    margin-bottom: 5px;
  }
}

.event-list-item__prefix,
.event-list-item__suffix {
  font-size: 1.375rem;
}
@media (min-width: 50em) {
  .event-list-item__prefix,
  .event-list-item__suffix {
    font-size: 1.625rem;
  }
}
@media (min-width: 62.5em) {
  .event-list-item__prefix,
  .event-list-item__suffix {
    font-size: 1.75rem;
  }
}

.event-list-item__description {
  margin-bottom: 0;
}
@media (max-width: 31.99em) {
  .event-list-item__description {
    display: none;
  }
}
@media (min-width: 50em) {
  .event-list-item__description {
    font-size: 1.125rem;
  }
}
@media (min-width: 62.5em) {
  .event-list-item__description {
    font-size: 1.25rem;
  }
}

.event-list-item__date,
.event-list-item__price {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .event-list-item__date,
  .event-list-item__price {
    font-size: 1.375rem;
  }
}
@media (min-width: 62.5em) {
  .event-list-item__date,
  .event-list-item__price {
    font-size: 1.5rem;
  }
}

.event-list-item__date {
  line-height: 1.3;
}

.event-list-item__action {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
}
@media (min-width: 50em) {
  .event-list-item__action {
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    padding-left: 40px;
    margin-left: 40px;
    border-left: 1px solid #C9C9C9;
    width: 360px;
    max-width: 100%;
  }
}

.event-list-item__cta {
  margin-top: 15px;
}
@media (max-width: 49.99em) {
  .event-list-item__cta {
    width: 100%;
  }
}

/*  ==========================================================================
    Post Scroller
    ========================================================================== */
.post-scroller {
  background-color: #FBFBFB;
  position: relative;
  padding: var(--content-margin);
  overflow: hidden;
}

.post-scroller__inner {
  width: 100%;
  max-width: 1360px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .post-scroller__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.post-scroller__header {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 50em) {
  .post-scroller__header {
    align-items: center;
  }
}

.post-scroller__title {
  font-weight: 700;
  margin-bottom: 0;
}

.post-scroller__actions {
  display: flex;
  gap: 0 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.post-scroller__previous,
.post-scroller__next {
  background-color: transparent;
  color: #000;
  border: none;
  padding: 0;
  cursor: pointer;
  display: none;
  width: 40px;
  height: 40px;
  transition: background-color 0.4s ease;
}
@media (min-width: 62.5em) {
  .post-scroller__previous,
  .post-scroller__next {
    display: inline-block;
  }
}
.post-scroller__previous.swiper-button-disabled,
.post-scroller__next.swiper-button-disabled {
  cursor: not-allowed;
}
.post-scroller__previous .o-icon,
.post-scroller__next .o-icon {
  transition: color 0.4s ease;
}

.post-scroller__previous {
  margin-right: 0;
}
.post-scroller__previous .o-icon {
  transform: rotate(180deg);
}
.post-scroller__previous:active .o-icon {
  transform: scale(0.9) rotate(180deg);
}

.post-scroller__next {
  margin-right: 15px;
}
@media (min-width: 62.5em) {
  .post-scroller__next {
    margin-right: 0;
  }
}
.post-scroller__next:active .o-icon {
  transform: scale(0.9);
}

.post-scroller__scroll::-webkit-scrollbar {
  display: none;
}
@media (max-width: 62.49em) {
  .post-scroller__scroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding-left: 20px;
  }
}

.post-scroller__list {
  display: flex;
  -webkit-overflow-scrolling: touch;
}

.post-scroller__item {
  display: flex;
  flex-shrink: 0;
  width: 300px;
  box-sizing: content-box;
  padding-right: 20px;
}
@media (min-width: 62.5em) {
  .post-scroller__item {
    width: calc(33.3% - 26px);
    padding-right: 40px;
  }
  .post-scroller__item:last-child {
    padding-right: 0;
  }
}
.post-scroller__item .post-item {
  width: 100%;
}
.post-scroller__item .post-item__footer {
  font-weight: 400;
}

/*  ==========================================================================
	Breadcrumb
	========================================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.breadcrumb .o-icon {
  width: 15px;
  height: 15px;
  transition: transform 0.4s ease;
}
@media (min-width: 62.5em) {
  .breadcrumb {
    font-size: 1rem;
  }
}
.breadcrumb:hover .o-icon {
  transform: translateX(5px);
}

/*  ==========================================================================
	Article List
	========================================================================== */
.article-list {
  background-color: #FBFBFB;
  padding: 20px 0;
}
@media (min-width: 50em) {
  .article-list {
    padding: 40px 0;
  }
}

.article-list__inner {
  width: 100%;
  max-width: 1360px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .article-list__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.article-list__grid {
  display: grid;
  gap: 30px;
}
@media (min-width: 32em) {
  .article-list__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}
@media (min-width: 50em) {
  .article-list__grid {
    gap: 30px;
  }
}
@media (min-width: 58em) {
  .article-list__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 62.5em) {
  .article-list__grid {
    gap: 30px;
  }
}
@media (min-width: 80em) {
  .article-list__grid {
    gap: 60px;
  }
}

.article-list__item .post-item {
  height: 100%;
}

/*  ==========================================================================
	Article List Header
	========================================================================== */
.article-list-header {
  position: relative;
  padding-top: 15px;
  padding-bottom: 20px;
  background-color: #fff;
}
@media (min-width: 72em) {
  .article-list-header {
    padding-bottom: 30px;
  }
}

.article-list-header__inner {
  width: 100%;
  max-width: 1360px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
@media (min-width: 50em) {
  .article-list-header__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 72em) {
  .article-list-header__inner {
    margin-top: 0;
    gap: 40px;
  }
}

.article-list-header__content {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  padding-right: 60px;
}
@media (min-width: 72em) {
  .article-list-header__content {
    margin: 0;
    padding: 0;
    gap: 40px;
  }
}

.article-list-header__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  width: 100%;
  line-height: 0.8;
}

@media (max-width: 71.99em) {
  .article-list-header__logo {
    visibility: hidden;
    width: 51px;
    height: 80px;
  }
}
.article-list-header__logo .o-icon {
  border: 0;
  width: 105px;
  height: 171px;
}

/*  ==========================================================================
    Article Header
    ========================================================================== */
.article-header {
  background-color: #FBFBFB;
  position: relative;
  margin-top: 15px;
}

.article-header__inner {
  width: 100%;
  max-width: 1280px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 50em) {
  .article-header__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 72em) {
  .article-header__inner {
    gap: 40px;
  }
}

.article-header__details {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 72em) {
  .article-header__details {
    margin-top: 20px;
  }
}

.article-header__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  width: 100%;
}
@media (min-width: 50em) {
  .article-header__title {
    font-size: 3.75rem;
  }
}

.article-header__category {
  font-weight: 700;
  font-size: 1.125rem;
}
@media (min-width: 50em) {
  .article-header__category {
    font-size: 1.375rem;
  }
}

.article-header__date,
.article-header__author {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .article-header__date,
  .article-header__author {
    font-size: 1rem;
  }
}

.article-header__footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-shrink: 0;
  gap: 5px 15px;
  width: 100%;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #000;
}
@media (min-width: 50em) {
  .article-header__footer {
    margin-top: 30px;
    padding-top: 5px;
  }
}

/*  ==========================================================================
    Article Header - Media
    ========================================================================== */
.article-header__media {
  margin-top: 20px;
  position: relative;
}
@media (min-width: 72em) {
  .article-header__media {
    margin-top: 40px;
  }
}

.article-header__media--image,
.article-header__media--video {
  width: 100%;
  max-width: 1280px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .article-header__media--image,
  .article-header__media--video {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.article-header__media--audio {
  display: flex;
  background-color: #F0F0F0;
  padding: 20px 0;
}
@media (min-width: 50em) {
  .article-header__media--audio {
    padding: 40px 0;
  }
}

.article-header__figure {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.article-header__intrinsic-ratio {
  position: relative;
  padding-bottom: 55.5555555556%;
  height: 0;
}

.article-header__image {
  width: 100%;
  height: auto;
  position: absolute;
  right: 0;
  z-index: 3;
}

.article-header__figcaption {
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  text-align: right;
  text-wrap: balance;
  margin-top: 15px;
  font-size: 0.875rem;
  gap: 3px;
}
@media (min-width: 50em) {
  .article-header__figcaption {
    font-size: 1rem;
  }
}
@media (min-width: 72em) {
  .article-header__figcaption {
    padding: 0;
  }
}

.article-header__caption {
  font-weight: 600;
}

.article-header__credit {
  font-style: italic;
}

.article-header__video {
  aspect-ratio: 16/9;
}

.article-header__play {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  inset: 0;
  margin: auto;
  padding: 14px;
  background-color: var(--theme-color-light);
  overflow: hidden;
  border-radius: 100%;
  cursor: pointer;
}
.article-header__play .o-icon {
  width: 100%;
  height: 100%;
  color: var(--theme-color-dark);
  position: relative;
  left: 2px;
}
@media (min-width: 32em) {
  .article-header__play {
    width: 69px;
    height: 69px;
    padding: 20px;
  }
}
@media (min-width: 62.5em) {
  .article-header__play {
    width: 100px;
    height: 100px;
    padding: 30px;
  }
  .article-header__play .o-icon {
    left: 4px;
  }
}

.article-header__audio {
  width: 100%;
  max-width: 820px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .article-header__audio {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 49.99em) {
  .article-header__audio {
    height: 100px;
  }
}

/*  ==========================================================================
    Event Inline
    ========================================================================== */
.event-inline {
  background-color: #000;
  width: 100%;
}

.event-inline__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 15px;
  background-color: #000;
}
@media (min-width: 50em) {
  .event-inline__inner {
    width: 100%;
    max-width: 1280px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 170px 1fr auto;
    align-items: center;
  }
}
@media (min-width: 50em) and (min-width: 50em) {
  .event-inline__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 62.5em) {
  .event-inline__inner {
    gap: 30px;
    padding: 20px 30px;
  }
}
@media (min-width: 72em) {
  .event-inline__inner {
    gap: 40px;
  }
}

.event-inline__intrinsic-ratio {
  position: relative;
  padding-bottom: 55.5555555556%;
  height: 0;
  overflow: hidden;
}

.event-inline__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.event-inline__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
}

.event-inline__title {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .event-inline__title {
    font-size: 1.625rem;
  }
}
@media (min-width: 62.5em) {
  .event-inline__title {
    font-size: 2rem;
  }
}

.event-inline__date {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0;
}

.event-inline__actions {
  display: flex;
  flex-direction: column;
  gap: 10px 15px;
}
@media (min-width: 42.5em) {
  .event-inline__actions {
    flex-direction: row;
  }
}
@media (min-width: 50em) {
  .event-inline__actions {
    flex-direction: column;
  }
}
@media (min-width: 62.5em) {
  .event-inline__actions {
    flex-direction: row;
  }
}

.event-inline__btn {
  width: 100%;
}

/*  ==========================================================================
    Event Inline - Sticky
    ========================================================================== */
.event-inline--sticky {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 6;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
@media (min-width: 62.5em) {
  .event-inline--sticky {
    display: block;
  }
  .event-inline--sticky.show {
    transform: translateY(0%);
  }
}
@media (min-width: 72em) {
  .event-inline--sticky.show {
    transform: translateY(calc(0% + var(--global-header-height)));
  }
}

/*  ==========================================================================
    Page Item
    ========================================================================== */
.page-item {
  width: 100%;
}

.page-item__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  width: 100%;
}

.page-item__media {
  margin-bottom: 0;
}

.page-item__intrinsic-ratio {
  position: relative;
  padding-bottom: 66.6666666667%;
  height: 0;
  overflow: hidden;
}

.page-item__image {
  width: 100%;
  height: auto;
  position: absolute;
  right: 0;
  z-index: 3;
  transition: transform 0.3s ease-in-out;
}
.page-item:hover .page-item__image {
  transform: scale(1.05);
}

.page-item__content {
  display: flex;
  flex-direction: column;
}

.page-item__title {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .page-item__title {
    font-size: 1.375rem;
  }
}

.page-item__description {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 0.875rem;
}
@media (min-width: 50em) {
  .page-item__description {
    font-size: 1.125rem;
  }
}

/*  ==========================================================================
	Search Page
	========================================================================== */
.search-page {
  background-color: #F0F0F0;
}

.site-search {
  position: relative;
  z-index: 3;
}

.search-form__wrapper {
  padding-bottom: 20px;
  width: 100%;
}
@media (min-width: 50em) {
  .search-form__wrapper {
    width: 70%;
  }
}

.site-search__header {
  background-color: #fff;
  padding-top: 20px;
  text-align: center;
}
@media (min-width: 32em) {
  .site-search__header {
    padding-top: 40px;
  }
}

.site-search__header-inner {
  width: 100%;
  max-width: 1040px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 50em) {
  .site-search__header-inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 50em) {
  .site-search__header-inner {
    flex-direction: row;
  }
}
.site-search__header-inner:has(.search-nav__item) {
  justify-content: space-between;
}

.site-search__title {
  font-weight: 600;
  margin-bottom: 20px;
}

.search-form {
  display: inline-block;
  position: relative;
  padding: 0;
  width: 100%;
}

.search-form__input {
  width: 100%;
  height: 45px;
  line-height: 2.8125rem;
  padding: 0 70px 0 20px;
  border-radius: 30px;
  border: none;
  height: auto;
  font-size: 1rem;
  border: 1px solid #C9C9C9;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
}

.search-form__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  background-color: transparent;
  border: none;
  z-index: 3;
  padding: 0;
}
.search-form__button .o-icon {
  width: 25px;
  height: 25px;
}

.site-search__nav {
  padding-bottom: 10px;
}
@media (min-width: 42.5em) {
  .site-search__nav {
    gap: 0 40px;
    justify-content: center;
  }
}

.search-nav {
  display: flex;
  gap: 0 20px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.search-nav__link {
  display: flex;
  flex-direction: column;
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.4s ease;
}
@media (min-width: 50em) {
  .search-nav__link {
    font-size: 1.125rem;
  }
}
.search-nav__link:after {
  position: absolute;
  content: "";
  height: 4px;
  width: 100%;
  left: 0;
  bottom: -5px;
  background-color: #4d4d4d;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease, opacity 1s ease;
}
@media (min-width: 42.5em) {
  .search-nav__link:after {
    bottom: -10px;
  }
}
.search-nav__link.search-nav__link--current, .search-nav__link:hover {
  opacity: 1;
}
.search-nav__link.search-nav__link--current:after, .search-nav__link:hover:after {
  opacity: 1;
  transform: scaleY(1);
}

.search-nav__link--current {
  cursor: default;
}

.search-nav__link-results {
  color: #000;
  font-size: 0.75rem;
}

.site-search__message {
  text-align: center;
  padding: 60px 15px;
}

.site-search__loading {
  padding: 40px 0;
  min-height: 300px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}

.site-search__list .event-scroller {
  margin-bottom: 60px;
}
@media (min-width: 72em) {
  .site-search__list .event-scroller {
    margin-bottom: 80px;
  }
}

.site-search__results {
  width: 100%;
  max-width: 1040px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (min-width: 50em) {
  .site-search__results {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.site-search__pagination {
  width: 100%;
  max-width: 1040px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 60px;
  border-top: 1px solid #000;
  padding-top: 15px;
}
@media (min-width: 50em) {
  .site-search__pagination {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 58em) {
  .site-search__pagination {
    margin-bottom: 100px;
  }
}

.search-result {
  display: block;
  padding-bottom: 0;
  border-top: 1px solid #C9C9C9;
  margin: 0;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.search-result:first-child {
  margin-top: 20px;
}
.search-result:last-child {
  border-bottom: 1px solid #C9C9C9;
}
@media (hover: hover) and (pointer: fine) {
  .search-result:hover, .search-result:focus {
    transform: scale(1.01);
  }
}
.search-result .search-result__title {
  margin-bottom: 0;
  line-height: 1.1;
}
.search-result .search-result__container {
  width: 100%;
}
@media (min-width: 42.5em) {
  .search-result .search-result__container {
    display: flex;
    align-items: flex-start;
  }
}
.search-result .search-result__body {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 60px;
  justify-content: space-between;
  flex-grow: 1;
  padding: 10px 0;
}
@media (min-width: 50em) {
  .search-result .search-result__body {
    flex-direction: row-reverse;
  }
}
.search-result .search-result__media {
  display: none;
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
  width: 30%;
}
@media (min-width: 50em) {
  .search-result .search-result__media {
    margin-bottom: 0;
    display: block;
  }
}
.search-result .search-result__image {
  width: 100%;
  height: 53vw;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease;
}
@media (min-width: 50em) {
  .search-result .search-result__image {
    width: 100%;
    height: 100%;
  }
}
.search-result .search-result__content {
  width: 100%;
}
@media (min-width: 50em) {
  .search-result .search-result__content {
    display: block;
    width: 70%;
  }
}
.search-result .search-result__meta {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding: 10px 0;
  flex-direction: row;
}
@media (min-width: 42.5em) {
  .search-result .search-result__meta {
    flex-direction: column;
    gap: 5px;
  }
}
.search-result .search-result__running-time {
  display: flex;
  align-items: center;
}
.search-result .search-result__running-time .o-icon {
  width: 12px;
  height: 12px;
  margin-right: 5px;
}
.search-result .search-result__icon {
  position: absolute;
  z-index: 3;
  bottom: 12px;
  left: 12px;
  background-color: transparent;
  padding: 0;
  border: none;
  color: #fff;
}
.search-result .search-result__icon .o-icon {
  width: 28px;
  height: 28px;
}
@media (hover: hover) and (pointer: fine) {
  .search-result:hover .search-result__image, .search-result:focus .search-result__image {
    transform: scale(1.05);
  }
}

.site-search__totals {
  display: none;
}

.search-result__type,
.search-result__prefix {
  display: block;
  color: #000;
  letter-spacing: 0.03em;
  font-size: var(--global-body-size-2);
}
@media (min-width: 50em) {
  .search-result__type,
  .search-result__prefix {
    font-size: var(--global-body-size-3);
  }
}

.search-result__title {
  font-weight: 600;
}

.search-result__content {
  margin: 0;
  font-size: var(--global-body-text-small);
}
.search-result__content em {
  background-color: var(--theme-color);
  color: var(--theme-text-color);
  padding: 4px;
  font-style: normal;
}

.search-result__meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: var(--global-body-size-4);
  color: #535353;
}
@media (min-width: 50em) {
  .search-result__meta {
    font-size: var(--global-body-size-5);
  }
}

.search-result__link {
  display: inline-block;
  margin-bottom: 10px;
}

.search-result--page .search-result__type {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.search-result--page .search-result__title {
  font-family: "brandon-grotesque", sans-serif;
  font-size: var(--global-header-size-h4);
}

.search-result--news {
  padding: 20px;
  border-bottom: none;
}

/* ==========================================================================
   Page: Search Result
   ========================================================================== */
.page-item .search-result__body {
  align-items: center;
}

.article-item {
  width: 100%;
}
.article-item .search-result__body {
  flex-direction: row;
}
.article-item .search-result__title {
  margin-bottom: 15px;
}
.article-item .search-result__type {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .article-item .search-result__type {
    font-size: 1rem;
  }
}
.article-item .search-result__media {
  width: 30%;
  flex-shrink: 0;
}
.article-item .search-result__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  font-weight: 700;
  font-size: 0.75rem;
  border-top: 1px solid #C9C9C9;
  padding-top: 15px;
}
@media (min-width: 42.5em) {
  .article-item .search-result__footer {
    font-size: 0.875rem;
  }
}
@media (min-width: 50em) {
  .article-item .search-result__footer {
    padding-bottom: 20px;
  }
}
.article-item .search-result__author {
  margin-bottom: 0;
}

/* ==========================================================================
   Navigation: Search Results pagination
   ========================================================================== */
.search-result__pagination-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

.search-result__previous .pagination__link .o-icon {
  transform: rotate(180deg);
}

.pagination__item {
  padding: 0;
  background-color: var(--theme-color-dark);
  border: 1px solid #C9C9C9;
  border-radius: 4px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  margin-right: 7px;
  width: 31px;
  height: 31px;
  cursor: pointer;
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
.pagination__item .o-icon {
  height: 15px;
  width: 15px;
}
.pagination__item:last-child {
  margin-right: 0;
}
@media (hover: hover) and (pointer: fine) {
  .pagination__item:hover {
    border-color: #000;
    background-color: #000;
    color: #fff;
  }
}
.pagination__item:active .o-icon {
  scale: 0.9;
}

.pagination__item--current {
  border: 1px solid #000;
}

.pagination__item--disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.pagination__item--previous .o-icon {
  rotate: 180deg;
}

/*  ==========================================================================
    Subscription Panel
    ========================================================================== */
.subscription-panel {
  position: relative;
  margin: var(--content-margin);
}

.subscription-panel__inner {
  width: 100%;
  max-width: 820px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .subscription-panel__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.subscription-panel__subscriptions {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 50em) {
  .subscription-panel__subscriptions {
    gap: 40px;
  }
}

.subscription__header {
  margin-bottom: 20px;
}
@media (min-width: 50em) {
  .subscription__header {
    margin-bottom: 30px;
  }
}

.subscription__prefix,
.subscription__suffix,
.subscription__prices {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 0.7;
}
@media (min-width: 50em) {
  .subscription__prefix,
  .subscription__suffix,
  .subscription__prices {
    font-size: 1.375rem;
  }
}
@media (min-width: 62.5em) {
  .subscription__prefix,
  .subscription__suffix,
  .subscription__prices {
    font-size: 1.5rem;
  }
}

.subscription__title {
  font-size: 1.625rem;
  font-weight: 700;
}
@media (min-width: 50em) {
  .subscription__title {
    font-size: 2rem;
  }
}

.subscription__prices {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 0;
  margin-top: 15px;
}
.subscription__prices > span:last-child {
  padding-left: 5px;
}

.subscription__content.s-prose {
  line-height: 1.6;
}

.subscription__content.s-prose ul:only-child {
  margin: 20px 0;
}
@media (min-width: 50em) {
  .subscription__content.s-prose ul:only-child {
    margin: 30px 0;
  }
}

.subscription__content.s-prose li {
  margin-bottom: 5px;
}

/*  ==========================================================================
    Image
    ========================================================================== */
.image-block {
  margin: var(--content-margin);
}

.image-block__inner {
  width: 100%;
  max-width: 940px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .image-block__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.image-block__media {
  position: relative;
}

.image-block__figure {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.image-block__intrinsic-ratio {
  position: relative;
  padding-bottom: 55.5555555556%;
  height: 0;
}

.image-block__image {
  width: 100%;
  height: auto;
  position: absolute;
  right: 0;
  z-index: 3;
}

.image-block__figcaption {
  display: flex;
  gap: 15px;
  flex-direction: column;
  justify-content: space-between;
  text-wrap: balance;
  margin-top: 15px;
  font-size: 0.875rem;
}
@media (min-width: 50em) {
  .image-block__figcaption {
    font-size: 1rem;
    flex-direction: row;
  }
}

/*  ==========================================================================
    Image - Full Width
    ========================================================================== */
@media (min-width: 72em) {
  .image-block--full .image-block__inner {
    padding: 0;
    max-width: none;
  }
  .image-block--full .image-block__figcaption {
    width: 100%;
    max-width: 1280px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 72em) and (min-width: 50em) {
  .image-block--full .image-block__figcaption {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.image-block--full .image-block__full-image {
  height: 0;
  background-size: cover;
  background-position: center;
  padding-bottom: 56.25%;
}
@media (min-width: 72em) {
  .image-block--full .image-block__full-image {
    padding-bottom: 33.3333333333%;
    background-attachment: fixed;
  }
}
@media (min-width: 106em) {
  .image-block--full .image-block__full-image {
    padding-bottom: 50%;
  }
}

/*  ==========================================================================
	Feature Card Scroller
	========================================================================== */
.featured-card-scroller {
  position: relative;
  margin: var(--content-margin);
  overflow: hidden;
}
.user-is-tabbing .featured-card-scroller a:focus {
  outline-color: #BD8C3C;
}

@media (min-width: 62.5em) {
  .featured-card-scroller__inner {
    width: 100%;
    max-width: 1280px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 62.5em) and (min-width: 50em) {
  .featured-card-scroller__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.featured-card-scroller__header {
  position: relative;
  margin: 0 15px 30px;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 50em) {
  .featured-card-scroller__header {
    align-items: center;
  }
}
@media (min-width: 62.5em) {
  .featured-card-scroller__header {
    margin: 30px 0;
  }
}

.featured-card-scroller__title {
  font-weight: 700;
  margin-bottom: 0;
}

.featured-card-scroller__actions {
  display: flex;
  gap: 0 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.featured-card-scroller__previous,
.featured-card-scroller__next {
  background-color: #BD8C3C;
  color: #fff;
  border: none;
  padding: 0;
  cursor: pointer;
  display: none;
  width: 40px;
  height: 40px;
  transition: background-color 0.4s ease;
}
@media (min-width: 62.5em) {
  .featured-card-scroller__previous,
  .featured-card-scroller__next {
    display: inline-block;
  }
}
.featured-card-scroller__previous.swiper-button-disabled,
.featured-card-scroller__next.swiper-button-disabled {
  cursor: not-allowed;
}
.featured-card-scroller__previous .o-icon,
.featured-card-scroller__next .o-icon {
  width: 16px;
  height: 20px;
  transition: color 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .featured-card-scroller__previous:not(.swiper-button-disabled):hover,
  .featured-card-scroller__next:not(.swiper-button-disabled):hover {
    background-color: color-mix(in srgb, #BD8C3C 75%, white);
  }
}

.featured-card-scroller__previous {
  margin-right: 0;
}
.featured-card-scroller__previous .o-icon {
  transform: rotate(180deg);
}
.featured-card-scroller__previous:active .o-icon {
  transform: scale(0.9) rotate(180deg);
}

.featured-card-scroller__next {
  margin-right: 15px;
}
@media (min-width: 62.5em) {
  .featured-card-scroller__next {
    margin-right: 0;
  }
}
.featured-card-scroller__next:active .o-icon {
  transform: scale(0.9);
}

.featured-card-scroller__scroll::-webkit-scrollbar {
  display: none;
}
@media (max-width: 62.49em) {
  .featured-card-scroller__scroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    padding-left: 15px;
  }
}

.featured-card-scroller__list {
  display: flex;
  -webkit-overflow-scrolling: touch;
}

/*  ==========================================================================
    Feature Card Scroller - Items
    ========================================================================== */
.feature-card-item {
  background-color: #fff;
  color: #000;
}
.user-is-tabbing .feature-card-item a:focus {
  outline-color: #fff;
}

.feature-card-item__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-card-item__btn {
  width: 100%;
}

.feature-card-item {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #C9C9C9;
}

.feature-card-item__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  width: 100%;
  background-color: #fff;
}

.feature-card-item__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 0 0 15px;
}

.feature-card-item__media {
  overflow: hidden;
  position: relative;
  padding-bottom: 60%;
  height: 0;
}

.feature-card-item__image {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .feature-card-item:hover .feature-card-item__image {
    transform: scale(1.05);
  }
}

.feature-card-item__content {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  word-break: break-word;
}

.feature-card-item__description {
  margin-bottom: 30px;
  font-size: 1.125rem;
}
.feature-card-item__description p {
  margin-bottom: 0;
}

.feature-card-item__prefix {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (min-width: 62.5em) {
  .feature-card-item__prefix {
    font-size: 1.125rem;
  }
}

.feature-card-item__title {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: normal;
  transition: color 0.4s ease;
}
@media (min-width: 62.5em) {
  .feature-card-item__title {
    font-size: 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .feature-card-item:hover .feature-card-item__title {
    color: var(--theme-color-dark);
  }
}

@media (hover: hover) and (pointer: fine) {
  .feature-card-item:hover .feature-card-item__btn:after {
    background-color: #000;
    transform: scaleX(100%);
  }
}

/*  ==========================================================================
    Featured Posts
    ========================================================================== */
.featured-posts {
  position: relative;
  margin: var(--content-margin);
}

.featured-posts__inner {
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .featured-posts__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.featured-posts__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (min-width: 50em) {
  .featured-posts__title {
    font-size: 2rem;
  }
}

.featured-posts__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 72em) {
  .featured-posts__content {
    flex-direction: row;
    align-items: flex-start;
  }
}

/*  ==========================================================================
    Featured Post (Headline Post)
    ========================================================================== */
@media (min-width: 72em) {
  .featured-post {
    width: 50%;
    position: sticky;
    top: calc(30px + var(--global-header-height));
  }
}

.featured-post-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 58em) {
  .featured-post-item {
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 72em) {
  .featured-post-item {
    flex-direction: column;
    gap: 15px;
  }
}

.featured-post-item__media {
  overflow: hidden;
  width: 100%;
}
@media (min-width: 58em) {
  .featured-post-item__media {
    width: 50%;
  }
}
@media (min-width: 62.5em) {
  .featured-post-item__media {
    width: 100%;
  }
}

.featured-post-item__intrinsic-ratio {
  position: relative;
  height: 0;
  padding-bottom: 60%;
  overflow: hidden;
}

.featured-post-item__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .featured-post:hover .featured-post-item__image {
    transform: scale(1.05);
  }
}

.featured-post-item__content {
  width: 100%;
}
@media (min-width: 58em) {
  .featured-post-item__content {
    width: 45%;
  }
}
@media (min-width: 62.5em) {
  .featured-post-item__content {
    width: 100%;
  }
}

.featured-post-item__title {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
  transition: color 0.4s ease;
}
@media (min-width: 42.5em) {
  .featured-post-item__title {
    font-size: 1.625rem;
  }
}
@media (min-width: 50em) {
  .featured-post-item__title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .featured-post:hover .featured-post-item__title {
    color: #BD8C3C;
  }
}

.featured-post-item__post-type {
  color: #232323;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: uppercase;
}

.featured-post-item__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid #C9C9C9;
  font-weight: 700;
  font-size: 0.75rem;
  padding-top: 10px;
  padding-bottom: 15px;
}
@media (min-width: 42.5em) {
  .featured-post-item__footer {
    font-size: 0.875rem;
  }
}
@media (min-width: 50em) {
  .featured-post-item__footer {
    padding-bottom: 20px;
  }
}
@media (min-width: 58em) {
  .featured-post-item__footer {
    display: none;
  }
}
.featured-post-item__footer > * {
  flex: 1;
}

/*  ==========================================================================
    Featured Post List
    ========================================================================== */
.featured-posts__list {
  display: flex;
  flex-direction: column;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
}
.featured-posts__list::-webkit-scrollbar {
  display: none;
}
@media (min-width: 50em) {
  .featured-posts__list {
    flex-direction: row;
  }
}
@media (min-width: 72em) {
  .featured-posts__list {
    flex-direction: column;
    gap: 20px;
    width: 680px;
    flex-shrink: 0;
    padding-left: 0;
    margin: 0;
  }
}

/*  ==========================================================================
    Featured Posts Items
    ========================================================================== */
.featured-posts__item {
  width: 100%;
  flex-shrink: 0;
  padding-right: 15px;
}
.featured-posts__item .posts-item {
  padding-bottom: 0;
  background: none;
}
@media (min-width: 50em) {
  .featured-posts__item {
    width: 400px;
  }
}
@media (min-width: 72em) {
  .featured-posts__item {
    width: 100%;
  }
}
.featured-posts__item .post-item {
  height: 100%;
  border-bottom: none;
}
.featured-posts__item .post-item__titles {
  gap: 0;
}
.featured-posts__item .post-item__media {
  width: 100%;
  display: none;
}
@media (min-width: 50em) {
  .featured-posts__item .post-item__media {
    display: block;
  }
}
@media (min-width: 72em) {
  .featured-posts__item .post-item__media {
    width: 40%;
    flex-shrink: 0;
  }
}
.featured-posts__item .post-item__inner {
  flex-direction: column;
}
@media (min-width: 72em) {
  .featured-posts__item .post-item__inner {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
.featured-posts__item .post-item__info {
  width: 100%;
}
@media (min-width: 72em) {
  .featured-posts__item .post-item__info {
    width: 60%;
  }
}
.featured-posts__item .post-item__footer {
  border-top: 1px solid #C9C9C9;
  padding-top: 8px;
}
@media (min-width: 58em) {
  .featured-posts__item .post-item__footer {
    display: none;
  }
}

/*  ==========================================================================
    Podcast Embed
    ========================================================================== */
.podcast-embed {
  margin: var(--content-margin);
}

.podcast-embed__inner {
  width: 100%;
  max-width: 1040px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .podcast-embed__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.podcast-embed__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .podcast-embed__title {
    font-size: 2.625rem;
  }
}

.podcast-embed__media {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (min-width: 72em) {
  .podcast-embed__media {
    margin-top: 40px;
  }
}

@media (max-width: 49.99em) {
  .podcast-embed__audio {
    height: 100px;
  }
}

/*  ==========================================================================
	Season Header
	========================================================================== */
.season-header {
  position: relative;
  margin-top: -111px;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: var(--theme-color-dark);
  color: #fff;
}
@media (min-width: 50em) {
  .season-header {
    padding-top: 38px;
    padding-bottom: 40px;
  }
}
@media (min-width: 72em) {
  .season-header {
    margin-top: 0;
    padding-top: 30px;
  }
}

.season-header__inner {
  width: 100%;
  max-width: 1280px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 50em) {
  .season-header__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 72em) {
  .season-header__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }
}

.season-header__content {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  padding-right: 60px;
}
@media (min-width: 72em) {
  .season-header__content {
    margin: 0;
    padding: 0;
    gap: 40px;
  }
}

.season-header__titles {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 50em) {
  .season-header__titles {
    max-width: calc(100% - 220px);
  }
}
@media (min-width: 72em) {
  .season-header__titles {
    max-width: 100%;
  }
}

.season-header__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
  line-height: 0.8;
  font-size: 2.625rem;
}
@media (min-width: 50em) {
  .season-header__title {
    font-size: 4.25rem;
  }
}
@media (min-width: 72em) {
  .season-header__title {
    font-size: 5.625rem;
  }
}
@media (min-width: 80em) {
  .season-header__title {
    font-size: 6rem;
  }
}

.season-header__prefix,
.season-header__suffix {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  text-transform: uppercase;
  line-height: 0.8;
}
@media (min-width: 50em) {
  .season-header__prefix,
  .season-header__suffix {
    font-size: 1.75rem;
  }
}
@media (min-width: 62.5em) {
  .season-header__prefix,
  .season-header__suffix {
    font-size: 2.375rem;
  }
}
@media (min-width: 72em) {
  .season-header__prefix,
  .season-header__suffix {
    font-size: 3rem;
  }
}

@media (max-width: 71.99em) {
  .season-header__logo {
    visibility: hidden;
    width: 51px;
    height: 80px;
  }
}
.season-header__logo .o-icon {
  width: 105px;
  height: 171px;
}

/*  ==========================================================================
	Season Info
	========================================================================== */
.season-info {
  margin: 30px 0;
}
@media (min-width: 50em) {
  .season-info {
    margin: 40px 0;
  }
}
@media (min-width: 62.5em) {
  .season-info {
    margin: 80px 0;
  }
}

.season-info__inner {
  width: 100%;
  max-width: 1280px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 50em) {
  .season-info__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 50em) {
  .season-info__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }
}
@media (min-width: 62.5em) {
  .season-info__inner {
    gap: 80px;
  }
}

.season-info__body {
  width: 100%;
  max-width: 820px;
}
.season-info__body:only-child {
  margin: 0 auto;
}

.season-info__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 15px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 20px 6px rgba(0, 0, 0, 0.2588235294);
  z-index: 6;
}
@media (min-width: 30em) {
  .season-info__actions {
    flex-direction: row;
  }
  .season-info__actions > * {
    flex-basis: 100%;
  }
}
@media (min-width: 50em) {
  .season-info__actions {
    flex-direction: column;
    position: sticky;
    gap: 15px;
    top: 15px;
    bottom: unset;
    padding: 0;
    box-shadow: none;
    max-width: 300px;
  }
}
@media (min-width: 72em) {
  .season-info__actions {
    top: calc(var(--global-header-height) + 15px);
  }
}

/*  ==========================================================================
    Event Grid
    ========================================================================== */
.event-grid {
  position: relative;
  margin: var(--content-margin);
  overflow: hidden;
}

.event-grid__inner {
  width: 100%;
  max-width: 1280px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .event-grid__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.event-grid__header {
  display: flex;
  align-items: flex-end;
  position: relative;
  margin-bottom: 30px;
}
@media (min-width: 50em) {
  .event-grid__header {
    align-items: center;
  }
}

.event-grid__title {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .event-grid__title {
    font-size: 2rem;
  }
}
@media (min-width: 62.5em) {
  .event-grid__title {
    font-size: 2.625rem;
  }
}

.event-grid__list {
  display: grid;
  gap: 40px;
}
@media (min-width: 30em) {
  .event-grid__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 25px;
  }
}
@media (min-width: 50em) {
  .event-grid__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 62.5em) {
  .event-grid__list {
    gap: 40px 40px;
  }
}

.event-grid__item {
  display: flex;
  width: 100%;
  box-sizing: content-box;
}

/*  ==========================================================================
    Home Hero
    ========================================================================== */
.home-hero {
  background-color: black;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 62.5em) {
  .home-hero {
    width: 100%;
    max-width: 1360px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (min-width: 62.5em) and (min-width: 50em) {
  .home-hero {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.home-hero:after {
  content: "";
  position: absolute;
  background: linear-gradient(to top, #000, transparent);
  width: 100%;
  height: 60%;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.home-hero__inner {
  display: flex;
  justify-content: center;
}

.home-hero__body {
  width: 100%;
  max-width: 1360px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: absolute;
  bottom: 0;
  padding-bottom: 30px;
  width: 100%;
  height: 100%;
  z-index: 3;
}
@media (min-width: 50em) {
  .home-hero__body {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 50em) {
  .home-hero__body {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 80px 40px 40px 40px;
  }
}

.home-hero__titles {
  margin-bottom: 15px;
}

.home-hero__titles--hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.home-hero__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
}

.home-hero__prefix,
.home-hero__suffix {
  font-weight: 500;
  font-size: 1.125rem;
  text-transform: uppercase;
}

.home-hero__description {
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .home-hero__description {
    width: 90%;
  }
}

.home-hero__event-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}
@media (min-width: 32em) {
  .home-hero__event-details {
    width: auto;
  }
}
@media (min-width: 50em) {
  .home-hero__event-details {
    border-left: 1px solid #C9C9C9;
    padding-left: 30px;
    gap: 30px;
  }
}

.home-hero__btns {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}
@media (min-width: 50em) {
  .home-hero__btns {
    justify-content: flex-end;
  }
}

.home-hero__btn {
  width: 100%;
}
@media (min-width: 32em) {
  .home-hero__btn {
    width: auto;
  }
}

.home-hero__btn.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.home-hero__btn.btn-outline:hover {
  background: #fff;
  color: #000;
}

.home-hero_event-title {
  text-align: start;
}
@media (min-width: 50em) {
  .home-hero_event-title {
    text-align: end;
  }
}

.home-hero__dates {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  width: -moz-max-content;
  width: max-content;
}
@media (min-width: 30em) {
  .home-hero__dates {
    font-size: 1.125rem;
  }
}
@media (min-width: 42.5em) {
  .home-hero__dates {
    font-size: 1.5rem;
    text-align: end;
  }
}

.home-hero__media {
  position: relative;
  margin-bottom: 0;
}

.home-hero__intrinsic-ratio {
  position: relative;
  padding-bottom: 150%;
  height: 0;
  margin-bottom: 0;
}
@media (min-width: 42.5em) {
  .home-hero__intrinsic-ratio {
    padding-bottom: 66.6666666667%;
  }
}
@media (min-width: 72em) {
  .home-hero__intrinsic-ratio {
    padding-bottom: 55.5555555556%;
  }
}

.home-hero__image {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  z-index: 1;
}

.home-hero__pause {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  width: 44px;
  height: 44px;
  z-index: 3;
}
@media (min-width: 50em) {
  .home-hero__pause {
    top: 20px;
    right: 20px;
  }
}
.home-hero__pause .o-icon {
  fill: #fff;
  width: 30px;
  height: 30px;
}

/*  ==========================================================================
    Home Hero - Details left aligned
    ========================================================================== */
.home-hero--left-align .home-hero__inner {
  justify-content: flex-start;
}
.home-hero--left-align::after {
  content: none;
}
.home-hero--left-align .home-hero__body {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 42.5em) {
  .home-hero--left-align .home-hero__body {
    width: 75%;
  }
}
@media (min-width: 72em) {
  .home-hero--left-align .home-hero__body {
    justify-content: center;
    width: 60%;
  }
}
.home-hero--left-align .home-hero__body::after {
  content: "";
  position: absolute;
  background: linear-gradient(to top, #000, transparent);
  width: 100%;
  height: 99%;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (min-width: 42.5em) {
  .home-hero--left-align .home-hero__body::after {
    background: linear-gradient(to right, #000, transparent);
  }
}
.home-hero--left-align .home-hero__description {
  margin-bottom: 15px;
}
@media (min-width: 50em) {
  .home-hero--left-align .home-hero__description {
    width: 100%;
  }
}
.home-hero--left-align .home-hero__event-details {
  border-left: none;
  border-top: none;
  padding-left: 0;
  width: 100%;
}
@media (min-width: 50em) {
  .home-hero--left-align .home-hero__event-details {
    border-top: 1px solid #C9C9C9;
  }
}
.home-hero--left-align .home-hero__btns {
  justify-content: flex-start;
  padding-top: 15px;
}
@media (min-width: 42.5em) {
  .home-hero--left-align .home-hero__btns {
    padding-top: 30px;
  }
}
.home-hero--left-align .home-hero__btn {
  width: 100%;
}
@media (min-width: 42.5em) {
  .home-hero--left-align .home-hero__btn {
    width: auto;
  }
}

/*  ==========================================================================
    Home Hero - Video
    ========================================================================== */
.home-hero--video .video-container {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 270%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease 3s;
}
.home-hero--video .video-container iframe {
  width: 100%;
  height: 100%;
}
@media (min-width: 42.5em) {
  .home-hero--video .video-container {
    width: 150%;
  }
}
@media (min-width: 72em) {
  .home-hero--video .video-container {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}
.home-hero--video .video-container--loaded {
  opacity: 1;
}
.home-hero--video.header-video--loaded .video-container {
  opacity: 1;
}

/*  ==========================================================================
    Venue Header
    ========================================================================== */
.venue-header {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: transparent;
  padding: 15px;
}
@media (min-width: 50em) {
  .venue-header {
    width: 100%;
    max-width: 940px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 50em) and (min-width: 50em) {
  .venue-header {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.venue-header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.venue-header__breadcrumbs-list {
  display: flex;
  gap: 10px;
  font-size: 1rem;
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}
@media (min-width: 50em) {
  .venue-header__breadcrumbs-list {
    padding: 15px 0;
  }
}

.venue-header__breadcrumbs-list li:last-child .o-icon {
  display: none;
}

.venue-header__address {
  display: flex;
  align-items: center;
  gap: 5px;
}

.venue-header__media {
  position: relative;
  margin-bottom: 0;
  z-index: -1;
  width: 100%;
}

.venue-header__media-inner {
  position: relative;
  height: 100%;
}

.venue-header__intrinsic-ratio {
  position: relative;
  padding-bottom: 55.5555555556%;
  height: 0;
}

.venue-header__image {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  z-index: 1;
}

.venue-header__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  color: #000;
  width: 100%;
}

.venue-header__breadcrumb {
  position: relative;
  z-index: 1;
}

.venue-header__title {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 2.375rem;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (min-width: 50em) {
  .venue-header__title {
    font-size: 4.25rem;
  }
}

.venue-header__description {
  font-size: 1rem;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .venue-header__description {
    font-size: 1.375rem;
    max-width: 90%;
  }
}

/*  ==========================================================================
    venue Header - Image
    ========================================================================== */
.venue-header--image {
  background-color: transparent;
}
@media (min-width: 50em) {
  .venue-header--image {
    width: 100%;
    max-width: 1440px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 50em) and (min-width: 50em) {
  .venue-header--image {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.venue-header--image .venue-header__title {
  font-size: 1.5rem;
}
@media (min-width: 50em) {
  .venue-header--image .venue-header__title {
    font-size: 2.625rem;
  }
}
.venue-header--image .venue-header__content {
  padding: 20px 15px;
}
@media (min-width: 50em) {
  .venue-header--image .venue-header__content {
    align-items: center;
    padding-bottom: 40px;
    max-width: 75%;
    text-align: center;
    text-wrap: auto;
  }
}

/*  ==========================================================================
    Venue Scroller
    ========================================================================== */
.venue-scroller {
  position: relative;
  margin: var(--content-margin-small);
  overflow: hidden;
}

.venue-scroller__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 62.5em) {
  .venue-scroller__inner {
    width: 100%;
    max-width: 1440px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 62.5em) and (min-width: 50em) {
  .venue-scroller__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.venue-scroller__header {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 50em) {
  .venue-scroller__header {
    align-items: center;
  }
}

.venue-scroller__title {
  font-weight: 700;
  margin-bottom: 0;
}

.venue-scroller__actions {
  display: flex;
  gap: 0 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.venue-scroller__previous,
.venue-scroller__next {
  border: none;
  padding: 0;
  cursor: pointer;
  display: none;
  width: 40px;
  height: 40px;
  transition: background-color 0.4s ease;
  background-color: transparent;
}
@media (min-width: 62.5em) {
  .venue-scroller__previous,
  .venue-scroller__next {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.venue-scroller__previous.swiper-button-disabled,
.venue-scroller__next.swiper-button-disabled {
  cursor: not-allowed;
}
.venue-scroller__previous .o-icon,
.venue-scroller__next .o-icon {
  color: #000;
  scale: 1;
  transition: scale 0.4s ease;
}
.venue-scroller__previous:not(.swiper-button-disabled):hover .o-icon,
.venue-scroller__next:not(.swiper-button-disabled):hover .o-icon {
  scale: 1.1;
}

.venue-scroller__previous {
  margin-right: 0;
}
.venue-scroller__previous .o-icon {
  transform: rotate(180deg);
}
.venue-scroller__previous:active .o-icon {
  transform: scale(0.9) rotate(180deg);
}

.venue-scroller__next {
  margin-right: 15px;
}
@media (min-width: 62.5em) {
  .venue-scroller__next {
    margin-right: 0;
  }
}
.venue-scroller__next:active .o-icon {
  transform: scale(0.9);
}

.venue-scroller__scroll::-webkit-scrollbar {
  display: none;
}
@media (max-width: 62.49em) {
  .venue-scroller__scroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding-left: 20px;
  }
}

.venue-scroller__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 42.5em) {
  .venue-scroller__list {
    flex-direction: row;
    gap: 0;
  }
}

.venue-scroller__item {
  display: flex;
  flex-shrink: 0;
  width: calc(100% - 20px);
  box-sizing: content-box;
  padding-right: 20px;
}
@media (min-width: 42.5em) {
  .venue-scroller__item {
    width: 300px;
  }
}
@media (min-width: 62.5em) {
  .venue-scroller__item {
    width: calc(33.3% - 26px);
    padding-right: 40px;
  }
  .venue-scroller__item:last-child {
    padding-right: 0;
  }
}
.venue-scroller__item .venue-item {
  width: 100%;
}

/*  ==========================================================================
    Venue Item
    ========================================================================== */
.venue-item {
  display: flex;
  width: 100%;
}

.venue-item__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  width: 100%;
}

.venue-item__media {
  margin-bottom: 0;
}

.venue-item__intrinsic-ratio {
  position: relative;
  padding-bottom: 66.6666666667%;
  height: 0;
  overflow: hidden;
}

.venue-item__image {
  width: 100%;
  height: auto;
  position: absolute;
  right: 0;
  z-index: 3;
  transition: transform 0.3s ease-in-out;
}
.venue-item:hover .venue-item__image {
  transform: scale(1.05);
}

.venue-item__content {
  display: flex;
  flex-direction: column;
}

.venue-item__title {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .venue-item__title {
    font-size: 1.5rem;
  }
}

.venue-item__info .o-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease-in-out;
}
.venue-item:hover .venue-item__info .o-icon {
  transform: translateX(5px);
}

.venue-item__prefix,
.venue-item__suffix {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .venue-item__prefix,
  .venue-item__suffix {
    font-size: 1rem;
  }
}

.venue-item__description {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 0.875rem;
}
@media (min-width: 50em) {
  .venue-item__description {
    font-size: 1rem;
  }
}

.venue-item__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

/*  ==========================================================================
    Post Item
    ========================================================================== */
.post-item {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #C9C9C9;
}

.post-item__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  width: 100%;
}

.post-item__media {
  margin-bottom: 0;
}

.post-item__intrinsic-ratio {
  position: relative;
  height: 0;
  padding-bottom: 55.5555555556%;
  overflow: hidden;
}

.post-item__image {
  position: absolute;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .post-item:hover .post-item__image {
    transform: scale(1.05);
  }
}

.post-item__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.post-item__titles {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 50em) {
  .post-item__titles {
    gap: 10px;
  }
}

.post-item__post-type {
  color: #232323;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: uppercase;
}

.post-item__title {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0;
  text-wrap: pretty;
  transition: color 0.4s ease;
}
@media (min-width: 50em) {
  .post-item__title {
    font-size: 1.375rem;
  }
}
@media (min-width: 62.5em) {
  .post-item__title {
    font-size: 1.5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .post-item:hover .post-item__title {
    color: #BD8C3C;
  }
}

.post-item__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  font-weight: 700;
  font-size: 0.75rem;
  padding-bottom: 15px;
}
@media (min-width: 42.5em) {
  .post-item__footer {
    font-size: 0.875rem;
  }
}
@media (min-width: 50em) {
  .post-item__footer {
    padding-bottom: 20px;
  }
}
.post-item__footer > * {
  flex: 1;
}

.post-item__author {
  text-align: right;
  text-wrap: balance;
  margin-bottom: 0;
}

/*  ==========================================================================
	Blogs List
	========================================================================== */
.blogs__header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .blogs__header {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.blogs__title {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .blogs__title {
    font-size: 2.375rem;
  }
}

.blogs__body {
  background-color: #FBFBFB;
  margin: 20px 0 0;
  padding: 20px 0;
}
@media (min-width: 50em) {
  .blogs__body {
    margin: 40px 0 0;
    padding: 40px 0;
  }
}

.blogs__list {
  display: grid;
  gap: 40px;
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .blogs__list {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 30em) {
  .blogs__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 25px;
  }
}
@media (min-width: 50em) {
  .blogs__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 62.5em) {
  .blogs__list {
    gap: 40px 40px;
  }
}

.blogs__list-item {
  display: flex;
  width: 100%;
  box-sizing: content-box;
  border-bottom: 1px solid #C9C9C9;
}

.blog-item__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  width: 100%;
}

.blog-item__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blog-item__media {
  margin-bottom: 0;
}

.blog-item__title {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .blog-item__title {
    font-size: 1.5rem;
  }
}

.blog-item__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding-bottom: 15px;
}

.blogs__footer {
  display: flex;
  justify-content: center;
  padding: 40px 0;
  background-color: #FBFBFB;
}
.blogs__footer .blog__view-more {
  background-color: #fff;
  cursor: pointer;
  border-radius: 5px;
  padding: 8px;
  transition: background-color 0.4s ease;
}
.blogs__footer .blog__view-more:hover {
  background-color: #000;
  color: #fff;
}

/*  ==========================================================================
    Article List Header - Category Switcher
    ========================================================================== */
.category-switcher {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  transition: color 0.4s;
  flex-shrink: 0;
  text-align: right;
}
@media (min-width: 50em) {
  .category-switcher {
    font-size: 1.5rem;
    text-align: left;
  }
}

.category-switcher:before {
  position: fixed;
  content: "";
  background: rgba(0, 0, 0, 0.76);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
}
.v-popper--some-open .category-switcher:before {
  opacity: 1;
  visibility: visible;
  z-index: 8;
}

.v-popper__popper--shown .category-switcher__list-item {
  display: block;
}

.category-switcher__inner {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.category-switcher__toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  line-height: inherit;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 700;
  color: #000;
  transition: color 0.4s;
  text-align: right;
  display: none;
}
.category-switcher__toggle:first-child {
  display: inline-flex;
}
@media (min-width: 50em) {
  .category-switcher__toggle {
    text-align: left;
    padding-left: 30px;
    gap: 10px;
  }
}
.category-switcher__toggle .o-icon {
  width: 16px;
  height: 16px;
  transition: rotate 0.4s ease;
}
.v-popper--some-open .category-switcher__toggle {
  z-index: 20;
  color: #fff;
}
.v-popper--some-open .category-switcher__toggle .o-icon {
  rotate: 180deg;
}

.category-switcher__title,
.category-switcher__link {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  line-height: 1;
  position: relative;
  margin-bottom: 0;
}

.category-switcher__list {
  text-align: right;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  transform: none;
  list-style: none;
  padding: 15px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  display: none;
  margin-right: 25px;
}
@media (min-width: 50em) {
  .category-switcher__list:hover .category-switcher__link {
    color: #999;
  }
}
@media (max-width: 49.99em) {
  .category-switcher__list {
    border: none;
    margin: 0;
    gap: 15px;
  }
}

.category-switcher__list-item {
  order: 2;
  color: currentColor;
  transition: color 0.3s ease;
  display: none;
}
.v-popper--some-open .category-switcher__list-item {
  display: block;
}

.category-switcher__link {
  display: block;
  word-wrap: normal;
  transition: color 0.3s ease;
  color: #fff;
  padding: 5px;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1.75rem;
  font-weight: 300;
  width: 100%;
  text-align: center;
}
@media (min-width: 50em) {
  .category-switcher__link {
    text-align: right;
    font-size: 1.625rem;
  }
  .category-switcher__link:hover, .category-switcher__link:focus {
    color: #fff !important;
  }
}

.page-blog .v-popper--theme-dropdown {
  z-index: 20;
}
@media (max-width: 49.99em) {
  .page-blog .v-popper__popper {
    width: 100vw;
    position: fixed !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) !important;
  }
}
.page-blog .v-popper__popper .category-switcher__list {
  display: flex;
}

/*  ==========================================================================
    Bio Header
    ========================================================================== */
.bio-header {
  margin: var(--content-margin-small);
}
@media (max-width: 49.99em) {
  .bio-header {
    margin-top: 0;
  }
}

.bio-header__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .bio-header__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.bio-header__wrapper {
  background-color: #fff;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  padding: 15px;
}
@media (min-width: 50em) {
  .bio-header__wrapper {
    flex-direction: row;
    gap: 30px;
    padding: 30px;
  }
  .bio-header__wrapper .bio-header__sticky {
    width: 45%;
    max-width: 500px;
    position: sticky;
    top: 20px;
  }
}
@media (min-width: 62.5em) {
  .bio-header__wrapper {
    gap: 60px;
  }
}
@media (min-width: 72em) {
  .bio-header__wrapper .bio-header__sticky {
    top: calc(var(--global-header-height) + 30px);
  }
}

@media (max-width: 49.99em) {
  .bio-header__breadcrumbs {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 0;
  }
}
.bio-header__breadcrumbs .breadcrumbs {
  margin-top: 0;
}

.bio-header__sticky {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 50em) {
  .bio-header__sticky {
    flex-direction: column;
  }
}

.bio-header__meta {
  background-color: var(--theme-color);
  color: var(--theme-highlight-color);
  padding: 20px;
}
@media (min-width: 50em) {
  .bio-header__meta {
    background-color: transparent;
    padding: 0;
    color: #000;
  }
}

.bio-header__person {
  width: 100%;
  max-width: none;
  padding: 20px 0;
  margin-top: 0;
}
@media (min-width: 50em) {
  .bio-header__person {
    margin-top: 30px;
    padding: 0;
    max-width: 750px;
    width: 55%;
  }
}

.bio-header__name {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 50em) {
  .bio-header__name {
    font-size: 2.375rem;
  }
}

.bio-header__role {
  margin-bottom: 15px;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 500;
}
@media (min-width: 50em) {
  .bio-header__role {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}

.bio-header__position {
  padding-top: 5px;
  margin-bottom: 0;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1;
}
@media (min-width: 50em) {
  .bio-header__position {
    font-size: 1.125rem;
  }
}
@media (min-width: 62.5em) {
  .bio-header__position {
    font-size: 1.375rem;
  }
}

.bio-header__media {
  width: 100%;
}

.bio-header__intrinsic-ratio {
  position: relative;
  padding-bottom: 100%;
  height: 0;
}
@media (min-width: 50em) {
  .bio-header__intrinsic-ratio:after {
    content: "";
    position: absolute;
    left: -25px;
    bottom: -25px;
    background-color: var(--theme-highlight-color);
    clip-path: polygon(3% 0, 100% 0, 100% 97%, 0% 100%);
    width: 103%;
    height: 103%;
  }
}

.bio-header__image {
  position: absolute;
  right: 0;
  height: auto;
  width: 100%;
  z-index: 3;
}

.bio-header__content {
  width: 100%;
}
.bio-header__content p {
  line-height: 1.25rem;
}
@media (min-width: 50em) {
  .bio-header__content p {
    line-height: 1.5625rem;
  }
}

.bio-header__title {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: capitalize;
  margin-bottom: 10px;
}
@media (min-width: 50em) {
  .bio-header__title {
    font-size: 2.625rem;
  }
}

.bio-header__breadcrumbs--desktop {
  display: none;
}
@media (min-width: 50em) {
  .bio-header__breadcrumbs--desktop {
    display: block;
  }
}

.bio-header__breadcrumbs--mobile {
  display: block;
}
@media (min-width: 50em) {
  .bio-header__breadcrumbs--mobile {
    display: none;
  }
}

/*  ==========================================================================
    Page List
    ========================================================================== */
.page-list {
  font-family: "brandon-grotesque", sans-serif;
  position: relative;
  padding: var(--content-margin-small);
  overflow: hidden;
}
.page-list:last-child {
  margin-bottom: 0;
}

.page-list__header {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin: 0 0 30px;
}
@media (min-width: 62.5em) {
  .page-list__header {
    gap: 40px;
  }
}
.page-list__header:empty {
  display: none;
}

.page-list__title {
  margin-bottom: 0;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
}
@media (min-width: 50em) {
  .page-list__title {
    font-size: 2rem;
  }
}

.page-list__description {
  margin: 5px 0 0;
  font-size: 1rem;
}
@media (min-width: 50em) {
  .page-list__description {
    font-size: 1.25rem;
  }
}

.page-list__actions {
  display: flex;
  gap: 0 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.page-list__previous,
.page-list__next {
  border: none;
  padding: 0;
  cursor: pointer;
  display: none;
  width: 40px;
  height: 40px;
  transition: background-color 0.4s ease, color 0.4s ease;
  background-color: transparent;
}
@media (min-width: 62.5em) {
  .page-list__previous,
  .page-list__next {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.page-list__previous.swiper-button-disabled,
.page-list__next.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.page-list__previous .o-icon,
.page-list__next .o-icon {
  color: var(--text-color-light);
  width: 20px;
  height: 20px;
}
.page-list__previous:not(.swiper-button-disabled):hover .o-icon,
.page-list__next:not(.swiper-button-disabled):hover .o-icon {
  scale: 1.1;
}

.page-list__previous {
  margin-left: 0;
}
.page-list__previous .o-icon {
  rotate: -180deg;
  margin-left: -2px;
}

.page-list__next {
  margin-left: 15px;
}
.page-list__next .o-icon {
  margin-right: -2px;
}
@media (min-width: 62.5em) {
  .page-list__next {
    margin-left: 0;
  }
}

/*  ==========================================================================
    Page List - Grid
    ========================================================================== */
.page-list--grid {
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .page-list--grid {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.page-list--grid .page-list__content {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(1, minmax(220px, 1fr));
}
@media (min-width: 42.5em) {
  .page-list--grid .page-list__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (min-width: 62.5em) {
  .page-list--grid .page-list__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 49.99em) {
  .page-list--grid .page-list__item {
    display: flex;
    padding-right: 15px;
    flex-shrink: 0;
    box-sizing: content-box;
    position: relative;
  }
}
.page-list--grid .page-list__item {
  width: 100%;
  display: flex;
}

/*  ==========================================================================
    Page List - Scroller
    ========================================================================== */
.page-list--scroller .page-list__header {
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .page-list--scroller .page-list__header {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 62.5em) {
  .page-list--scroller .page-list__content {
    width: 100%;
    max-width: 1440px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 62.5em) and (min-width: 50em) {
  .page-list--scroller .page-list__content {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.page-list--scroller .page-list__scroll {
  padding-left: 15px;
}
@media (min-width: 50em) {
  .page-list--scroller .page-list__scroll {
    padding-left: 25px;
  }
}
@media (min-width: 62.5em) {
  .page-list--scroller .page-list__scroll {
    padding-left: 0;
  }
}
.page-list--scroller .page-list__scroll::-webkit-scrollbar {
  display: none;
}
@media (max-width: 62.49em) {
  .page-list--scroller .page-list__scroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
.page-list--scroller .page-list__items {
  display: flex;
  -webkit-overflow-scrolling: touch;
}
.page-list--scroller .page-list__item {
  display: flex;
  width: 320px;
  padding-right: 15px;
  flex-shrink: 0;
  box-sizing: content-box;
  position: relative;
}
@media (min-width: 62.5em) {
  .page-list--scroller .page-list__item {
    width: calc(33.33% - 23px);
    padding-right: 30px;
  }
  .page-list--scroller .page-list__item:last-child {
    padding-right: 0;
  }
}

/*  ==========================================================================
    Venue Grid Block
    ========================================================================== */
.venue-grid {
  position: relative;
  margin: 30px 0;
  overflow: hidden;
}
@media (min-width: 50em) {
  .venue-grid {
    margin: var(--content-margin-small);
  }
}

.venue-grid__inner {
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .venue-grid__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.venue-grid__list {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 32em) {
  .venue-grid__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 25px;
  }
}
@media (min-width: 50em) {
  .venue-grid__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 62.5em) {
  .venue-grid__list {
    gap: 40px 40px;
  }
}

.venue-grid__item {
  display: flex;
  width: 100%;
  box-sizing: content-box;
}

/*  ==========================================================================
	404 - Error Page
	========================================================================== */
.page-error:has(.error-404) .page-content {
  position: relative;
  background-image: url("https://images.cdn.beta.basker.net/nycitycenter/media/NCC-filigree-bg-tes.png");
  background-size: 300px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px;
}
.page-error:has(.error-404) .page-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}
@media (min-width: 50em) {
  .page-error:has(.error-404) .page-content {
    padding: 120px 60px;
  }
}
.page-error:has(.error-404) .error-404 {
  position: relative;
  z-index: 3;
}
.page-error:has(.error-404) .error-404__inner {
  background-color: #F7F5F2;
  padding: 15px;
}
@media (min-width: 50em) {
  .page-error:has(.error-404) .error-404__inner {
    padding: 30px;
  }
}
.page-error:has(.error-404) .error-404__title {
  margin-bottom: 10px;
}
@media (min-width: 80em) {
  .page-error:has(.error-404) .error-404__title {
    font-size: 2.875rem;
  }
}
.page-error:has(.error-404) .error-404__body {
  max-width: 480px;
  margin: 0;
}
@media (min-width: 50em) {
  .page-error:has(.error-404) .error-404__body {
    margin: 0 15px;
  }
}
.page-error:has(.error-404) .error-404__body p {
  margin: 0;
}
.page-error:has(.error-404) .s-prose p.error-404__description {
  border-bottom: 2px solid #BD8C3C;
  font-size: 1.125rem !important;
  padding-bottom: 15px;
}
@media (min-width: 50em) {
  .page-error:has(.error-404) .s-prose p.error-404__description {
    padding-bottom: 30px;
  }
}
.page-error:has(.error-404) .error-404__footer {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.page-error:has(.error-404) .error-404__footer .btn, .page-error:has(.error-404) .error-404__footer :where([data-component*=dialog] menu button), .page-error:has(.error-404) .error-404__footer .calendar-filters__view-results {
  padding: 15px;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 0;
  margin-top: 0;
}
@media (min-width: 50em) {
  .page-error:has(.error-404) .error-404__footer .btn, .page-error:has(.error-404) .error-404__footer :where([data-component*=dialog] menu button), .page-error:has(.error-404) .error-404__footer .calendar-filters__view-results {
    padding: 12px 24px;
  }
}
.page-error:has(.error-404) .error-404__footer .btn a, .page-error:has(.error-404) .error-404__footer :where([data-component*=dialog] menu button) a, .page-error:has(.error-404) .error-404__footer .calendar-filters__view-results a {
  font-weight: 500 !important;
}
.page-error:has(.error-404) .error-404__footer .btn a, .page-error:has(.error-404) .error-404__footer :where([data-component*=dialog] menu button) a, .page-error:has(.error-404) .error-404__footer .calendar-filters__view-results a {
  background: none !important;
  color: inherit !important;
}

.video-modal {
  --aspect-ratio: 1.7777777778;
  --padding: 40px;
  margin: auto;
  padding: 0;
  border: 0;
  background-color: transparent;
  max-width: none;
  max-height: none;
  overflow: visible;
}
@media only screen and (min-width: 64rem) {
  .video-modal {
    --padding: 150px;
  }
}
@media only screen and (min-width: 80rem) {
  .video-modal {
    --padding: 300px;
  }
}

.video-modal[open] {
  display: grid;
  place-items: center;
}

.video-modal::backdrop {
  will-change: backdrop-filter, background-color, overlay;
  backdrop-filter: blur(0);
  background-color: rgba(0, 0, 0, 0);
  transition: backdrop-filter 250ms ease, background-color 250ms ease;
}

.video-modal[open]::backdrop {
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.9);
}
@starting-style {
  .video-modal[open]::backdrop {
    backdrop-filter: blur(0);
    background-color: rgba(0, 0, 0, 0);
  }
}

.video-modal__loader svg {
  width: 24px;
  height: 24px;
  color: #fff;
  animation: video-modal-rotate 1000ms linear 0s infinite normal none;
}
@keyframes video-modal-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.video-modal__title {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.video-modal__close {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 10px;
  color: #fff;
  will-change: opacity, display;
  opacity: 0;
  transition: opacity 300ms ease-out, display 300ms ease-out allow-discrete;
  z-index: 4;
}
.video-modal--active .video-modal__close {
  display: flex;
  opacity: 0.5;
}
@starting-style {
  .video-modal--active .video-modal__close {
    opacity: 0;
  }
}
.video-modal--active .video-modal__close:hover {
  opacity: 1;
}

.video-modal__media {
  will-change: opacity, transform, display, overlay;
  opacity: 0;
  transform: scaleY(0.7);
  transition: opacity 300ms ease-out, transform 300ms ease-out;
  aspect-ratio: var(--aspect-ratio);
}
.video-modal--landscape .video-modal__media {
  width: min(100vw - var(--padding), (100vh - var(--padding)) * var(--aspect-ratio));
}
.video-modal--portrait .video-modal__media {
  height: min(100vh - var(--padding), (100vw - var(--padding)) / var(--aspect-ratio));
}
.video-modal--square .video-modal__media {
  width: min(100vw - var(--padding), 100vh - var(--padding));
}
.video-modal--active .video-modal__media {
  opacity: 1;
  transform: scaleY(1);
}

.video-modal__media iframe,
.video-modal__media video {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
}

/*  ==========================================================================
    Themes and Gradients
    ========================================================================== */
.theme-navy {
  --theme-color: #224986;
  --theme-body-text-color: #fff;
  --theme-body-text-color-inverse: #000;
  --theme-gradient-color: #dadada;
}
.theme-navy.feature-panel .feature-item {
  background-color: var(--theme-color);
  color: var(--theme-body-text-color);
}
.theme-navy.feature-panel .feature-item:hover .feature-item__cta {
  background-position: 0% 0%;
  filter: none;
}
.theme-navy.feature-panel .feature-item__cta {
  color: var(--theme-body-text-color-inverse);
  background-image: linear-gradient(to right, var(--theme-gradient-color) 0%, var(--theme-gradient-color) 5%, var(--theme-body-text-color) 50%, var(--theme-body-text-color) 100%);
  background-size: 200% 100%;
  background-position: 100% 0%;
}

.theme-cherry {
  --theme-color: #A23625;
  --theme-body-text-color: #fff;
  --theme-body-text-color-inverse: #000;
  --theme-gradient-color: #dadada;
}
.theme-cherry.feature-panel .feature-item {
  background-color: var(--theme-color);
  color: var(--theme-body-text-color);
}
.theme-cherry.feature-panel .feature-item:hover .feature-item__cta {
  background-position: 0% 0%;
  filter: none;
}
.theme-cherry.feature-panel .feature-item__cta {
  color: var(--theme-body-text-color-inverse);
  background-image: linear-gradient(to right, var(--theme-gradient-color) 0%, var(--theme-gradient-color) 5%, var(--theme-body-text-color) 50%, var(--theme-body-text-color) 100%);
  background-size: 200% 100%;
  background-position: 100% 0%;
}

.theme-parchment {
  --theme-color: #F7F5F2;
  --theme-body-text-color: #000;
  --theme-body-text-color-inverse: #fff;
  --theme-gradient-color: #333;
}
.theme-parchment.feature-panel .feature-item {
  background-color: var(--theme-color);
  color: var(--theme-body-text-color);
}
.theme-parchment.feature-panel .feature-item:hover .feature-item__cta {
  background-position: 0% 0%;
  filter: none;
}
.theme-parchment.feature-panel .feature-item__cta {
  color: var(--theme-body-text-color-inverse);
  background-image: linear-gradient(to right, var(--theme-gradient-color) 0%, var(--theme-gradient-color) 5%, var(--theme-body-text-color) 50%, var(--theme-body-text-color) 100%);
  background-size: 200% 100%;
  background-position: 100% 0%;
}

.theme-purple {
  --theme-color: #35235F;
  --theme-body-text-color: #fff;
  --theme-body-text-color-inverse: #000;
  --theme-gradient-color: #dadada;
}
.theme-purple.feature-panel .feature-item {
  background-color: var(--theme-color);
  color: var(--theme-body-text-color);
}
.theme-purple.feature-panel .feature-item:hover .feature-item__cta {
  background-position: 0% 0%;
  filter: none;
}
.theme-purple.feature-panel .feature-item__cta {
  color: var(--theme-body-text-color-inverse);
  background-image: linear-gradient(to right, var(--theme-gradient-color) 0%, var(--theme-gradient-color) 5%, var(--theme-body-text-color) 50%, var(--theme-body-text-color) 100%);
  background-size: 200% 100%;
  background-position: 100% 0%;
}

.theme-magenta {
  --theme-color: #9E005F;
  --theme-body-text-color: #fff;
  --theme-body-text-color-inverse: #000;
  --theme-gradient-color: #dadada;
}
.theme-magenta.feature-panel .feature-item {
  background-color: var(--theme-color);
  color: var(--theme-body-text-color);
}
.theme-magenta.feature-panel .feature-item:hover .feature-item__cta {
  background-position: 0% 0%;
  filter: none;
}
.theme-magenta.feature-panel .feature-item__cta {
  color: var(--theme-body-text-color-inverse);
  background-image: linear-gradient(to right, var(--theme-gradient-color) 0%, var(--theme-gradient-color) 5%, var(--theme-body-text-color) 50%, var(--theme-body-text-color) 100%);
  background-size: 200% 100%;
  background-position: 100% 0%;
}

.theme-sky {
  --theme-color: #118ACB;
  --theme-body-text-color: #fff;
  --theme-body-text-color-inverse: #000;
  --theme-gradient-color: #dadada;
}
.theme-sky.feature-panel .feature-item {
  background-color: var(--theme-color);
  color: var(--theme-body-text-color);
}
.theme-sky.feature-panel .feature-item:hover .feature-item__cta {
  background-position: 0% 0%;
  filter: none;
}
.theme-sky.feature-panel .feature-item__cta {
  color: var(--theme-body-text-color-inverse);
  background-image: linear-gradient(to right, var(--theme-gradient-color) 0%, var(--theme-gradient-color) 5%, var(--theme-body-text-color) 50%, var(--theme-body-text-color) 100%);
  background-size: 200% 100%;
  background-position: 100% 0%;
}

.theme-orange {
  --theme-color: #F57F36;
  --theme-body-text-color: #000;
  --theme-body-text-color-inverse: #fff;
  --theme-gradient-color: #333;
}
.theme-orange.feature-panel .feature-item {
  background-color: var(--theme-color);
  color: var(--theme-body-text-color);
}
.theme-orange.feature-panel .feature-item:hover .feature-item__cta {
  background-position: 0% 0%;
  filter: none;
}
.theme-orange.feature-panel .feature-item__cta {
  color: var(--theme-body-text-color-inverse);
  background-image: linear-gradient(to right, var(--theme-gradient-color) 0%, var(--theme-gradient-color) 5%, var(--theme-body-text-color) 50%, var(--theme-body-text-color) 100%);
  background-size: 200% 100%;
  background-position: 100% 0%;
}

.theme-teal {
  --theme-color: #00777E;
  --theme-body-text-color: #fff;
  --theme-body-text-color-inverse: #000;
  --theme-gradient-color: #dadada;
}
.theme-teal.feature-panel .feature-item {
  background-color: var(--theme-color);
  color: var(--theme-body-text-color);
}
.theme-teal.feature-panel .feature-item:hover .feature-item__cta {
  background-position: 0% 0%;
  filter: none;
}
.theme-teal.feature-panel .feature-item__cta {
  color: var(--theme-body-text-color-inverse);
  background-image: linear-gradient(to right, var(--theme-gradient-color) 0%, var(--theme-gradient-color) 5%, var(--theme-body-text-color) 50%, var(--theme-body-text-color) 100%);
  background-size: 200% 100%;
  background-position: 100% 0%;
}

.theme-green {
  --theme-color: #C7DA7A;
  --theme-body-text-color: #000;
  --theme-body-text-color-inverse: #fff;
  --theme-gradient-color: #333;
}
.theme-green.feature-panel .feature-item {
  background-color: var(--theme-color);
  color: var(--theme-body-text-color);
}
.theme-green.feature-panel .feature-item:hover .feature-item__cta {
  background-position: 0% 0%;
  filter: none;
}
.theme-green.feature-panel .feature-item__cta {
  color: var(--theme-body-text-color-inverse);
  background-image: linear-gradient(to right, var(--theme-gradient-color) 0%, var(--theme-gradient-color) 5%, var(--theme-body-text-color) 50%, var(--theme-body-text-color) 100%);
  background-size: 200% 100%;
  background-position: 100% 0%;
}

.theme-gold {
  --theme-color: #BD8C3C;
  --theme-body-text-color: #000;
  --theme-body-text-color-inverse: #fff;
  --theme-gradient-color: #333;
}
.theme-gold.feature-panel .feature-item {
  background-color: var(--theme-color);
  color: var(--theme-body-text-color);
}
.theme-gold.feature-panel .feature-item:hover .feature-item__cta {
  background-position: 0% 0%;
  filter: none;
}
.theme-gold.feature-panel .feature-item__cta {
  color: var(--theme-body-text-color-inverse);
  background-image: linear-gradient(to right, var(--theme-gradient-color) 0%, var(--theme-gradient-color) 5%, var(--theme-body-text-color) 50%, var(--theme-body-text-color) 100%);
  background-size: 200% 100%;
  background-position: 100% 0%;
}

/*  ==========================================================================
    Theme Colours
    ========================================================================== */
/* ==========================================================================
   Widgets
   ========================================================================== */
/*  ==========================================================================
	Calendar List
	========================================================================== */
.calendar__list {
  order: 2;
  width: 100%;
}
@media (min-width: 62.5em) {
  .calendar__list {
    order: 1;
    flex-grow: 1;
    flex-shrink: 1;
    width: auto;
  }
}

.calendar-list {
  position: relative;
}
.calendar-list__group {
  margin-bottom: 40px;
}
.calendar-list__group--year:first-child .calendar-list__year, .calendar-list__group--year:first-child div:first-of-type .calendar-list__month {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.calendar-list__year {
  display: inline-block;
  position: relative;
  line-height: 1.2;
  background: linear-gradient(180deg, var(--theme-color) 0, var(--theme-color));
  background-position: 0 100%;
  background-size: 100% 50%;
  background-repeat: no-repeat;
  text-decoration: none;
  padding: 0 5px 5px;
  font-weight: 700;
  font-size: var(--global-header-size-2);
  font-family: museo-sans, sans-serif;
  margin: 0 auto 5px;
}
.calendar-list__month {
  font-weight: 700;
  margin-bottom: 15px;
}
@media (min-width: 62.5em) {
  .calendar-list__groups {
    padding-top: 30px;
  }
  .calendar-list__group {
    margin-bottom: 60px;
  }
}

/*  ==========================================================================
	Calendar List - Performance
	========================================================================== */
.calendar-performance {
  display: flex;
  background-color: #fff;
  margin-bottom: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.5s ease;
}
.calendar-performance--focused {
  background-color: #aaa;
  transform: scale(1.1);
  transition: background-color 0s, transform 0s;
}
@media (min-width: 50em) {
  .calendar-performance {
    border-radius: 8px;
    margin-bottom: 10px;
  }
  .calendar-performance:hover, .calendar-performance:focus {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.01);
    z-index: 3;
  }
}
@media (min-width: 62.5em) {
  .calendar-performance {
    border-radius: 15px;
  }
}

.calendar-performance__date-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #231F20;
  color: #fff;
  width: 50px;
  flex-shrink: 0;
  padding: 10px 0;
}
@media (min-width: 50em) {
  .calendar-performance__date-holder {
    width: 70px;
  }
}
@media (min-width: 62.5em) {
  .calendar-performance__date-holder {
    width: 100px;
  }
}

.calendar-performance__day,
.calendar-performance__month {
  display: block;
  text-transform: uppercase;
  font-size: var(--global-body-size-2);
}
@media (min-width: 62.5em) {
  .calendar-performance__day,
  .calendar-performance__month {
    font-size: var(--global-body-size-4);
  }
}

.calendar-performance__date {
  display: block;
  font-weight: bold;
  line-height: 1;
  font-size: var(--global-header-size-5);
}
@media (min-width: 62.5em) {
  .calendar-performance__date {
    font-size: var(--global-header-size-8);
  }
}

.calendar-performance__details {
  padding: 20px 15px;
  align-self: center;
  margin-right: auto;
  flex-grow: 1;
}
@media (min-width: 62.5em) {
  .calendar-performance__details {
    padding: 15px 30px;
  }
}

.calendar-performance__title {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1.2;
}

.calendar-performance__prefix,
.calendar-performance__suffix {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: var(--global-body-size-1);
}
@media (min-width: 50em) {
  .calendar-performance__prefix,
  .calendar-performance__suffix {
    font-size: var(--global-body-size-2);
  }
}

.calendar-performance__prefix {
  margin-bottom: 2px;
}

.calendar-performance__suffix {
  margin-top: 2px;
  margin-bottom: 10px;
}

.calendar-performance__meta {
  display: block;
  font-size: var(--global-body-size-2);
}
@media (min-width: 62.5em) {
  .calendar-performance__meta {
    margin-top: 10px;
  }
}
@media (min-width: 72em) {
  .calendar-performance__meta {
    font-size: var(--global-body-size-4);
  }
}

.calendar-performance__time {
  font-weight: bold;
}

.calendar-performance__tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
@media (min-width: 32em) {
  .calendar-performance__tags {
    margin-top: 15px;
  }
}

.calendar-performance__tag {
  border: 1px solid #231F20;
  font-weight: bold;
  padding: 3px 8px;
  font-size: var(--global-body-size-1);
}
@media (min-width: 62.5em) {
  .calendar-performance__tag {
    font-size: var(--global-body-size-2);
  }
}

.calendar-performance__media {
  display: none;
  flex-shrink: 0;
}
@media (min-width: 32em) {
  .calendar-performance__media {
    display: block;
    width: 150px;
  }
}
@media (min-width: 72em) {
  .calendar-performance__media {
    width: 200px;
  }
}

.calendar-performance__intrinsic-ratio {
  position: relative;
  padding-bottom: 83.3333333333%;
  height: 0;
  overflow: hidden;
}

.calendar-performance__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ==========================================================================
Calendar Popup
========================================================================== */
.calendar-popup {
  width: 100%;
  max-width: 1280px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  margin: auto;
  padding: 0;
  width: 100%;
  background-color: transparent;
}
@media (min-width: 50em) {
  .calendar-popup {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 49.99em) {
  .calendar-popup {
    height: 100%;
    max-width: 100%;
    max-height: 100%;
  }
}
@media (min-width: 90em) {
  .calendar-popup {
    overflow: visible;
  }
}

.calendar-popup__inner {
  background-color: #F7F5F2;
  position: relative;
  padding: 30px;
}
@media (max-width: 49.99em) {
  .calendar-popup__inner {
    overflow-y: auto;
    height: 100%;
    padding: 15px;
  }
}

.calendar-popup__item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  gap: 30px;
}
@media (min-width: 50em) {
  .calendar-popup__item {
    flex-direction: row-reverse;
    gap: 0;
    min-height: 360px;
  }
}

.calendar-popup-performance {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
@media (min-width: 50em) {
  .calendar-popup-performance {
    width: 45%;
  }
}

.calendar-popup-performance__title {
  font-size: 1.75rem;
  text-transform: uppercase;
}
@media (min-width: 50em) {
  .calendar-popup-performance__title {
    font-size: 3rem;
  }
}

.calendar-popup-performance__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calendar-popup-performance__description {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
}

.calendar-popup-performance__repertory {
  display: block;
  font-style: italic;
}

.calendar-popup-performance__meta {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.125rem;
  font-weight: 500;
  padding-bottom: 15px;
}
@media (max-width: 49.99em) {
  .calendar-popup-performance__meta {
    display: flex;
    flex-direction: column;
  }
}

.calendar-popup-performance__date {
  font-size: 1.125rem;
  font-weight: 500;
}

.calendar-popup-performance__venue {
  font-weight: 400;
}
.calendar-popup-performance__venue strong {
  font-weight: 500;
}

.calendar-popup-performance__prefix,
.calendar-popup-performance__suffix {
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.calendar-popup-performance__genres {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px 15px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
}
@media (min-width: 50em) {
  .calendar-popup-performance__genres {
    display: none;
  }
}

.calendar-popup-performance__time {
  text-transform: lowercase;
}

.calendar-popup-performance__footer {
  display: block;
}
@media (min-width: 50em) {
  .calendar-popup-performance__footer {
    display: none;
  }
}

.calendar-popup__footer {
  display: none;
  gap: 15px;
  justify-content: space-between;
  margin-top: 15px;
}
@media (min-width: 50em) {
  .calendar-popup__footer {
    display: flex;
  }
}
.calendar-popup__footer .btn, .calendar-popup__footer :where([data-component*=dialog] menu button), .calendar-popup__footer .calendar-filters__view-results {
  width: 50%;
  text-align: center;
}
@media (min-width: 32em) {
  .calendar-popup__footer .btn, .calendar-popup__footer :where([data-component*=dialog] menu button), .calendar-popup__footer .calendar-filters__view-results {
    width: 170px;
  }
}

.calendar-popup-performance__footer--cta {
  display: flex;
  gap: 15px;
}
.calendar-popup-performance__footer--cta .btn, .calendar-popup-performance__footer--cta :where([data-component*=dialog] menu button), .calendar-popup-performance__footer--cta .calendar-filters__view-results {
  padding: 12px 24px;
  width: 50%;
  text-align: center;
}
@media (min-width: 32em) {
  .calendar-popup-performance__footer--cta .btn, .calendar-popup-performance__footer--cta :where([data-component*=dialog] menu button), .calendar-popup-performance__footer--cta .calendar-filters__view-results {
    width: 170px;
  }
}

.calendar-popup__footer--genre-badge {
  display: none;
}
@media (min-width: 50em) {
  .calendar-popup__footer--genre-badge {
    display: flex;
  }
}

.calendar-popup__close {
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 10px;
  padding: 5px;
  margin: 0;
  border: 0;
  color: #000;
  border-radius: 5px;
  z-index: 4;
}
@media (min-width: 50em) {
  .calendar-popup__close {
    color: #fff;
    background-color: transparent;
  }
}
@media (min-width: 50em) and (hover: hover) and (pointer: fine) {
  .calendar-popup__close:hover {
    color: #BD8C3C;
  }
}
@media (min-width: 90em) {
  .calendar-popup__close {
    right: -60px;
  }
}
@media (max-width: 89.99em) {
  .calendar-popup__close .calendar-popup__close-icon {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 89.99em) {
  .calendar-popup__close svg path {
    fill: #000;
  }
}

.calendar-popup-item {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  padding: 15px;
}
@media (min-width: 50em) {
  .calendar-popup-item {
    flex-direction: row;
  }
  .calendar-popup-item > * {
    width: 50%;
  }
}
@media (min-width: 62.5em) {
  .calendar-popup-item {
    padding: 40px;
    gap: 40px;
  }
}

.calendar-popup__item__image {
  height: 100%;
}

.calendar-popup-item__body {
  display: flex;
  flex-direction: column;
}

.calendar-popup-item__title {
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .calendar-popup-item__title {
    font-size: 2rem;
  }
}

.calendar-popup-item__prefix,
.calendar-popup-item__suffix {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}
@media (min-width: 50em) {
  .calendar-popup-item__prefix,
  .calendar-popup-item__suffix {
    font-size: 1.25rem;
  }
}
@media (min-width: 62.5em) {
  .calendar-popup-item__prefix,
  .calendar-popup-item__suffix {
    font-size: 1.375rem;
  }
}

.calendar-popup-item__prefix {
  margin-bottom: -5px;
}

.calendar-popup-item__suffix {
  margin-top: -3px;
}

.calendar-popup-item__date {
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 1rem;
}
@media (min-width: 50em) {
  .calendar-popup-item__date {
    font-size: 1.125rem;
  }
}

.calendar-popup-item__venue {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .calendar-popup-item__venue {
    font-size: 1.125rem;
  }
}

.calendar-popup-item__footer {
  margin-top: 20px;
}
.calendar-popup-item__footer .calendar-info {
  flex-wrap: wrap;
}
@media (min-width: 50em) {
  .calendar-popup-item__footer {
    order: 1;
    margin-bottom: 30px;
  }
}

.calendar-popup-item__description {
  margin-top: 20px;
  padding-bottom: 60px;
  font-size: 1rem;
}
.calendar-popup-item__description p:last-child {
  margin-bottom: 0;
}
@media (min-width: 50em) {
  .calendar-popup-item__description {
    font-size: 1.125rem;
    padding-bottom: 0;
    max-height: 250px;
    overflow-y: auto;
  }
}

.calendar-popup-item__favourites {
  background: none;
  border: none;
  width: -moz-min-content;
  width: min-content;
  position: absolute;
  right: 10px;
  top: 20px;
  z-index: 10;
}

.calendar-popup-item__media {
  width: 100%;
  margin-bottom: 0;
  position: relative;
}
@media (min-width: 50em) {
  .calendar-popup-item__media {
    width: 50%;
    padding-top: 15px;
  }
}

.calendar-popup-item__intrinsic-ratio {
  position: relative;
  padding-bottom: 66.6666666667%;
  height: 0;
}
@media (min-width: 50em) {
  .calendar-popup-item__intrinsic-ratio {
    padding-bottom: 70%;
  }
}

.calendar-popup-item__image {
  width: 100%;
  height: auto;
  position: absolute;
  right: 0;
  z-index: 3;
}

.calendar-popup-item__actions {
  display: flex;
  justify-content: end;
  gap: 15px;
  position: sticky;
  bottom: 0;
  width: 100%;
  order: 2;
  margin: -15px 0;
  padding: 15px;
  padding-right: 0;
  background-color: #fff;
}
@media (max-width: 49.99em) {
  .calendar-popup-item__actions {
    position: fixed;
    right: 0;
    margin: 0;
    padding: 15px;
  }
  .calendar-popup-item__actions > .btn, .calendar-popup-item__actions > :where([data-component*=dialog] menu button), .calendar-popup-item__actions > .calendar-filters__view-results {
    flex-basis: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.calendar-popup__footer--cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.calendar-popup__footer--genres {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 0;
}

.calendar-popup__footer--genre-badge {
  border: 1px solid #C9C9C9;
  border-radius: 18px;
  padding: 7px 10px;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: #fff;
  line-height: 1;
  flex-shrink: 0;
}

.calendar-scroller__list {
  display: flex;
}

.calendar-event {
  min-width: 350px;
  padding: 20px 15px;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
/* ==========================================================================
   Utilities: Visibility
   ========================================================================== */
/**
 * JS helpers
 */
.no-js .u-visible-js, .supports-js .u-hidden-js {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.supports-js .u-hidden-js {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/**
 * Hide from browsers, but not screenreaders
 */
.visually-hidden, .u-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/**
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
[hidden], .u-hidden {
  display: none !important;
  visibility: hidden;
}

/**
 * Hide visually and from screenreaders, but maintain layout
 */
.u-invisible {
  visibility: hidden;
}

/**
 * Image Replacement
 */
.u-ir {
  display: block;
  text-indent: -999999px;
  overflow: hidden;
}

/*  ==========================================================================
	Dialog
	========================================================================== */
[data-component*=dialog] * {
  box-sizing: border-box;
  outline-color: var(--theme-color);
}

:where([data-component*=dialog]) {
  width: 100%;
  max-width: 650px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  border: none;
  border-radius: 15px;
}
@media (min-width: 50em) {
  :where([data-component*=dialog]) {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 50em) {
  :where([data-component*=dialog]) {
    padding: 30px;
  }
}
:where([data-component*=dialog])::backdrop {
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(30px) brightness(50%) contrast(120%);
}

:where([data-component=no-dialog]:not([hidden])) {
  display: block;
  inset-block-start: 30px;
  inset-inline-start: 50%;
  position: fixed;
  z-index: 999;
  transform: translateX(-50%);
  box-shadow: 0 0 1000px 1000px rgba(0, 0, 0, 0.5);
}

:where([data-component*=dialog] menu) {
  display: flex !important;
  gap: 15px;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

:where([data-component*=dialog] [data-ref=fieldset]) {
  border: none;
  margin: unset !important;
  padding: unset !important;
}

:where([data-component*=dialog] [data-ref=message]) {
  font-size: var(--global-body-text-big);
  line-height: 1.5;
  margin-block-end: 20px;
}

:where([data-component*=dialog] [data-ref=template]:not(:empty)) {
  margin-block-end: 20px;
  width: 100%;
}

/* hack for Firefox */
@-moz-document url-prefix() {
  [data-component=no-dialog]:not([hidden]) {
    inset-inline-start: 0;
    transform: none;
  }
}
/* added to `body` when browser do not support `<dialog>` */
.dialog-open {
  background-color: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* ==========================================================================
   Utilities: Layout
   ========================================================================== */
.u-constrained {
  width: 100%;
  max-width: 1640px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 50em) {
  .u-constrained {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.u-fullwidth {
  display: block;
  width: 100%;
}

.u-inset {
  padding-top: 16px;
  padding-bottom: 16px;
}

.u-padded {
  padding: 16px;
}

.u-ratio {
  position: relative;
  height: 0;
  /*  Maintain layout, based on 4:3 aspect-ratio */
  padding-bottom: 75%;
}

.u-ratio--5-3 {
  /*  Maintain layout, based on 5:3 aspect-ratio */
  padding-bottom: 60%;
}

.u-ratio--16-9 {
  /*  Maintain layout, based on 5:3 aspect-ratio */
  padding-bottom: 56.25%;
}

.u-ratio--square {
  /*  Maintain layout, based on square aspect-ratio */
  padding-bottom: 100%;
}

.u-button-reset, .accessibility-panel__info, .accessible-item__seats {
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
}

/* ==========================================================================
   Utilities: Tones
   ========================================================================== */
.u-tone-primary {
  color: #BD8C3C;
}

.u-tone-bg-tint {
  color: contrasting(#F0F0F0, , #000);
  background-color: #F0F0F0;
  border-color: currentColor;
}

.u-tone-bg-primary {
  color: contrasting(#BD8C3C, , #000);
  background-color: #BD8C3C;
  border-color: currentColor;
  color: #fff;
}

.u-tone-bg-dark {
  color: contrasting(#231F20, , #000);
  background-color: #231F20;
  border-color: currentColor;
  color: #fff;
}

/* ==========================================================================
   Utilities: Text
   ========================================================================== */
.u-font-scale-display-1 {
  font-size: 1rem;
}

.u-font-scale-display-2 {
  font-size: 1.125rem;
}

.u-font-scale-display-3 {
  font-size: 1.25rem;
}

.u-font-scale-display-4 {
  font-size: 1.375rem;
}

.u-font-scale-display-5 {
  font-size: 1.5rem;
}

.u-font-scale-display-6 {
  font-size: 1.625rem;
}

.u-font-scale-display-7 {
  font-size: 1.75rem;
}

.u-font-scale-display-8 {
  font-size: 2rem;
}

.u-font-scale-display-9 {
  font-size: 2.375rem;
}

.u-font-scale-display-10 {
  font-size: 2.625rem;
}

.u-font-scale-display-11 {
  font-size: 3rem;
}

.u-font-scale-display-12 {
  font-size: 3.5rem;
}

.u-font-scale-display-13 {
  font-size: 3.75rem;
}

.u-font-scale-display-14 {
  font-size: 4.25rem;
}

.u-font-scale-display-15 {
  font-size: 5.625rem;
}

.u-font-scale-display-16 {
  font-size: 6rem;
}

.u-font-scale-body-1 {
  font-size: 0.5rem;
}

.u-font-scale-body-2 {
  font-size: 0.625rem;
}

.u-font-scale-body-3 {
  font-size: 0.75rem;
}

.u-font-scale-body-4 {
  font-size: 0.875rem;
}

.u-font-scale-body-5 {
  font-size: 1rem;
}

.u-font-scale-body-6 {
  font-size: 1.125rem;
}

.u-font-scale-body-7 {
  font-size: 1.25rem;
}

.u-font-scale-body-8 {
  font-size: 1.375rem;
}

.u-font-scale-body-9 {
  font-size: 1.5rem;
}

.u-font-scale-body-10 {
  font-size: 1.625rem;
}

.u-font-scale-body-11 {
  font-size: 1.75rem;
}

.u-font-scale-body-12 {
  font-size: 2rem;
}

.u-font-scale-caption-1 {
  font-size: 0.6875rem;
}

.u-font-scale-caption-2 {
  font-size: 0.75rem;
}

.u-font-scale-caption-3 {
  font-size: 0.875rem;
}

.u-font-scale-caption-4 {
  font-size: 1rem;
}

.u-font-scale-monospace-1 {
  font-size: 0.875rem;
}

.u-font-scale-monospace-2 {
  font-size: 1rem;
}

.u-block-link {
  display: block;
  height: 100%;
}

.u-list-unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   Print (inlined for performance)
   ========================================================================== */
/* ==========================================================================
   Print
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important; /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a, a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links for images, or javascript/internal links
   */
  a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group; /* h5bp.com/t */
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}
/* ------------------------------------*\
    #ANNOTATIONS
\*------------------------------------ */
/**
 * Annotated elements styles
 * 1) Annotation styles that appear inside the iframe
 * 2) For elements in the DOM that have an annotation, we want to
 * provide styles that help the user understand that annotations are available.
 * We do this with some cursor helpers and a
 */
.pl-has-annotation {
  cursor: help !important;
  outline: 1px dotted #808080;
  outline-offset: -4px;
  transition: box-shadow 0.2s ease;
}
.pl-has-annotation a,
.pl-has-annotation input {
  cursor: help !important;
}
.pl-has-annotation:hover {
  box-shadow: 0 0 3px #808080;
}
.pl-has-annotation.active {
  box-shadow: inset 0 0 6px #4d4d4d;
  outline: 1px dotted #808080;
  outline-offset: -1px;
}

/*# sourceMappingURL=style.css.map */