:root {
  --color-blue: #0d5da8;
  --color-blue-dark: #163f7b;
  --color-blue-deep: #0a4f94;
  --color-blue-text: #163f7b;
  --color-bg: #ececed;
  --color-surface: #ffffff;
  --color-text: #29406f;
  --color-muted: #7f879a;
  --color-border: rgba(28, 63, 123, 0.18);
  --color-focus: #8fd7ff;
  --shadow-card: 0 16px 40px rgba(18, 40, 82, 0.08);
  --radius-card: 6px;
  --radius-pill: 999px;
  --transition-fast: 180ms ease;
  --utility-bar-height: 51.8px;
  --site-header-height: 84px;
  --site-header-height-mobile: 84px;
  --header-sticky-transition: 320ms cubic-bezier(0.22, 1, 0.36, 1);
  --bs-body-font-size: 1.08rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.45;
}

body.has-open-menu {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
  font-weight: 700;
  color: var(--color-blue);
}
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-links {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  pointer-events: none;
}

.skip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  background: #10265f;
  color: #fff;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-220%);
  pointer-events: none;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.skip-links:focus-within .skip-link {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.skip-link:focus,
.skip-link:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px #0a1b48,
    0 0 0 6px #bfe8ff;
  transform: translateY(0);
}

.page-shell {
  width: min(1830px, calc(100% - 72px));
  margin: 0 auto;
}

.anchor-placeholder {
  position: relative;
  top: -120px;
  display: block;
  visibility: hidden;
}

.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  padding: 0.2rem 1.45rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition:
    color var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn-lg {
  min-height: 50px;
  padding: 0.55rem 2rem;
  font-size: 1.23rem;
  font-weight: 700;
}

.btn-primary,
.button--solid {
  background: var(--color-blue-text);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--color-blue-text);
}

.btn-primary-outline,
.button--outline {
  border-color: rgba(13, 93, 168, 0.55);
  color: var(--color-blue);
  background: transparent;
}

.btn-light-outline,
.button--outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  background: transparent;
}

.btn:focus-visible,
.button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--color-focus);
}

.btn-primary-outline:focus-visible,
.button--outline:focus-visible {
  border-color: rgba(13, 93, 168, 0.75);
}

.btn-light-outline:focus-visible,
.button--outline-light:focus-visible {
  border-color: rgba(255, 255, 255, 0.9);
}

.site-header {
  position: absolute;
  top: var(--utility-bar-height);
  left: 0;
  right: 0;
  z-index: 62;
}

.utility-bar {
  position: relative;
  z-index: 61;
  background: #e8e8e8;
  border-bottom: 1px solid rgba(20, 60, 118, 0.08);
}

.utility-bar__inner {
  display: flex;
  justify-content: flex-end;
}

.utility-bar__actions {
  display: flex;
  align-items: center;
  gap: 1.85rem;
  min-height: 51px;
  padding-right: 302px;
}

.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-blue-text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.utility-link > .btn,
.utility-link > .button {
  pointer-events: none;
  background: var(--color-blue-text);
}
.utility-link > .btn:hover {
  background: var(--color-blue);
}

.utility-link svg,
.search-form button svg,
.site-footer__contact svg,
.social-links svg,
.mobile-header-actions__button svg,
.hero__control-button svg,
.section-arrow svg,
.event-card__meta svg,
.partner-card__icon svg,
.about-center__icon {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.search-form {
  display: inline-flex;
  align-items: center;
  width: 268px;
  min-height: 28px;
  border-radius: var(--radius-pill);
  background: #fff;
  overflow: hidden;
  transition: box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.search-form input {
  flex: 1;
  min-width: 0;
  padding: 0;
  margin: 0 1rem;
  border: 0;
  background: transparent;
  color: var(--color-blue-text);
  font-size: 0.78rem;
  font-weight: 600;
}

.search-form input::placeholder {
  color: rgba(22, 63, 123, 0.75);
  text-transform: uppercase;
}

.search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-height: 28px;
  color: var(--color-blue);
  transition: color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.site-search {
  position: absolute;
  top: calc(-1 * var(--utility-bar-height));
  left: 0;
  right: 0;
  z-index: 62;
  pointer-events: none;
}

.site-search__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: var(--utility-bar-height);
  pointer-events: none;
}

.site-search__form {
  margin: 0;
  pointer-events: auto;
}

.site-header__main {
  position: relative;
  background: transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: none;
  overflow: visible;
  transition:
    background-color var(--header-sticky-transition),
    border-color var(--header-sticky-transition),
    box-shadow var(--header-sticky-transition),
    backdrop-filter var(--header-sticky-transition),
    -webkit-backdrop-filter var(--header-sticky-transition);
}

.site-header__main::before {
  display: none;
}

.site-header__main::after {
  display: none;
}

.site-header__row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--site-header-height);
}

.site-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  max-width: 356px;
}

.site-logo__image {
  width: 100%;
  height: auto;
  max-width: 306px;
  filter: brightness(0) invert(1);
  transition: filter var(--header-sticky-transition);
}

.site-footer__logo img {
  width: 100%;
  height: auto;
}

.site-nav {
  margin-left: auto;
}

.site-nav__panel {
  display: flex;
  align-items: center;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__item {
  position: relative;
}

.site-nav__item--has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 156px;
  height: 24px;
  transform: translateX(-50%);
  display: none;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color var(--transition-fast), opacity var(--transition-fast), box-shadow var(--transition-fast);
}

.site-nav__toggle-main {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.site-nav__mobile-prefix,
.site-nav__icon {
  display: none;
}

.site-nav__item--mobile-only,
.site-nav__cta {
  display: none;
}

.utility-bar .btn,
.utility-bar .button {
  min-height: 27px;
  padding: 0.25rem 1.2rem;
  font-size: 0.76rem;
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
}

.site-header.is-sticky .site-header__main {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: rgba(20, 60, 118, 0.12);
  box-shadow: 0 10px 24px rgba(8, 36, 74, 0.08);
}

.site-header.is-sticky .site-logo__image {
  filter: none;
}

.site-header.is-sticky .site-nav__link,
.site-header.is-sticky .mobile-header-actions__button {
  color: var(--color-blue-text);
}

.site-header.is-sticky .site-nav__submenu {
  box-shadow: 0 18px 32px rgba(12, 39, 81, 0.12);
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 23px);
  left: 50%;
  z-index: 80;
  min-width: 248px;
  padding: 1.45rem 1.55rem 1.5rem;
  border-radius: 0;
  background: #e6e8eb;
  box-shadow: 0 16px 30px rgba(12, 39, 81, 0.16);
  transform: translate(-50%, 6px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast),
    visibility var(--transition-fast);
}

.site-nav__submenu::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #e6e8eb;
  transform: translateX(-50%) rotate(45deg);
}

.site-nav__submenu ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__submenu a {
  color: var(--color-blue);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.site-nav__submenu .site-nav__item {
  position: relative;
}

.site-nav__submenu .site-nav__item--has-submenu > .site-nav__link {
  display: inline-flex;
  align-items: center;
  width: 100%;
}

.site-nav__submenu--nested {
  top: -1rem;
  left: calc(100% + 1rem);
  min-width: 220px;
  padding: 1.15rem 1.3rem;
  transform: translate(6px, 0);
}

.site-nav__submenu--nested::before {
  top: 1.15rem;
  left: -7px;
  transform: rotate(45deg);
}

.site-nav__item--has-submenu.is-open > .site-nav__submenu,
.site-nav__item--has-submenu:focus-within > .site-nav__submenu {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.site-nav__submenu .site-nav__item--has-submenu.is-open > .site-nav__submenu,
.site-nav__submenu .site-nav__item--has-submenu:focus-within > .site-nav__submenu {
  transform: translate(0, 0);
}

.site-nav__item--has-submenu.is-open::after,
.site-nav__item--has-submenu:hover::after,
.site-nav__item--has-submenu:focus-within::after {
  display: block;
}

.mobile-header-actions {
  display: none;
}

.hero {
  position: relative;
  background: #0b345f;
}

.hero.vh-75 .hero-swiper {
  position: relative;
  height: clamp(560px, 43vw, 660px);
  overflow: hidden;
}

.hero.vh-50 .hero-swiper {
  position: relative;
  height: clamp(480px, 36vw, 560px);
  overflow: hidden;
}

.hero.vh-40 .hero-swiper {
  position: relative;
  height: clamp(400px, 30vw, 480px);
  overflow: hidden;
}

.hero-swiper .swiper-wrapper,
.hero-swiper .tns-outer,
.hero-swiper .tns-ovh,
.hero-swiper .tns-inner,
.hero-swiper .tns-gallery,
.hero-swiper .tns-gallery > .tns-item,
.hero-slide {
  height: 100%;
}

.hero-slide {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-swiper .swiper-wrapper > .swiper-slide {
  position: absolute !important;
  inset: 0;
  left: 0 !important;
  z-index: 0;
  display: block;
  opacity: 0 !important;
  visibility: hidden;
  transform: none !important;
  pointer-events: none;
}

.hero-swiper .swiper-wrapper > .swiper-slide.swiper-slide-active {
  z-index: 1;
  opacity: 1 !important;
  visibility: visible;
  pointer-events: auto;
}

.hero-swiper .swiper-wrapper > .tns-slide-cloned {
  display: none !important;
}

.hero-slide__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding-bottom: 98px;
  pointer-events: none;
}

.hero-slide__content > .page-shell {
  display: flex;
}

.hero-slide__content.caption-left > .page-shell {
  justify-content: flex-start;
}

.hero-slide__content.caption-center > .page-shell {
  justify-content: center;
}

.hero-slide__content.caption-right > .page-shell {
  justify-content: flex-end;
}

.hero-slide__content-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 560px;
  color: #fff;
  text-shadow: 0 8px 26px rgba(6, 24, 54, 0.32);
  pointer-events: auto;
}

.hero-slide__content.caption-center .hero-slide__content-inner {
  align-items: center;
  text-align: center;
}

.hero-slide__content.caption-right .hero-slide__content-inner {
  align-items: flex-end;
  text-align: right;
}

.hero-slide__eyebrow {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-slide__title {
  margin: 0;
  font-size: clamp(2.4rem, 3.8vw, 4.35rem);
  font-weight: 800;
  line-height: 0.96;
  color: #fff;
}

.hero-slide__description {
  max-width: 520px;
  margin: 1rem 0 1.45rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.hero-slide__button {
  min-height: 40px;
  padding-inline: 1.25rem;
  font-size: 0.78rem;
}

.hero-slide__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide__media::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 200px;
  background: linear-gradient(180deg,rgba(27, 112, 181, 0.88) 0%, rgba(0, 0, 0, 0) 73%);
  pointer-events: none;
  z-index: 1;
}

.hero-slide__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide__media img,
.hero-video-frame {
  width: 100%;
  height: 100%;
}

.hero-slide__media img {
  object-fit: cover;
  object-position: center center;
}

.hero-slide__media--video {
  background: #0b345f url("../images/slider/slide-2.webp") center center / cover no-repeat;
}

.hero-video-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.7778vh;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero__controls {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  z-index: 4;
  pointer-events: none;
}

.hero__controls-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero__nav,
.hero__video-controls,
.hero__pagination {
  pointer-events: auto;
}

.hero__nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__video-controls {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__video-controls[hidden] {
  display: none;
}

.hero__pagination-wrap {
  margin-left: auto;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(12, 34, 69, 0.08);
}

.hero__control-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.98);
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.hero__control-button:focus-visible {
  outline: none;
  border-radius: 999px;
  box-shadow: 0 0 0 3px var(--color-focus);
}

.hero__control-button--nav svg {
  width: 1.2rem;
  height: 1.2rem;
}

.hero__control-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  transition: opacity var(--transition-fast);
}

.hero__control-icon--play,
.hero__control-icon--muted {
  opacity: 0;
}

.hero__control-button--audio[aria-pressed="true"] .hero__control-icon--volume,
.hero__control-button--video-play[aria-pressed="true"] .hero__control-icon--pause {
  opacity: 0;
}

.hero__control-button--audio[aria-pressed="true"] .hero__control-icon--muted,
.hero__control-button--video-play[aria-pressed="true"] .hero__control-icon--play {
  opacity: 1;
}

.hero__pagination {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero__pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  margin: 0;
  padding: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  appearance: none;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 1px rgba(10, 33, 69, 0.18);
  cursor: pointer;
  line-height: 1;
  opacity: 1;
  transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.hero__pagination .swiper-pagination-bullet-active {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.98);
}

.section {
  padding: 5.1rem 0;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-heading__group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.section-heading h2,
.partners h2,
.sponsors h2,
.support h2 {
  margin: 0;
  color: var(--color-blue);
  font-size: clamp(2.1rem, 2.9vw, 4.2rem);
  font-weight: 700;
  line-height: 0.95;
}

.section-heading__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.section-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: var(--color-blue-text);
  transition: color var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.highlights {
  overflow: hidden;
}

.highlights .section-heading .btn,
.highlights .section-heading .button {
  min-height: 27px;
  padding-inline: 1.9rem;
  font-size: 0.75rem;
  margin-top: 5px;
}

.highlights-shell .tns-outer {
  position: relative;
}

.highlights-shell .tns-controls {
  position: absolute;
  top: -4.50rem;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0;
  z-index: 2;
}

.highlights-shell .tns-controls button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  appearance: none;
  background: transparent;
  color: var(--color-blue-text);
  box-shadow: none;
  line-height: 1;
}

.highlights-shell .tns-controls button:hover,
.highlights-shell .tns-controls button:focus-visible {
  background: transparent;
  color: var(--color-blue-text);
}

.highlights-shell .tns-controls button:focus-visible,
.sponsors__controls .section-arrow:focus-visible {
  outline: none;
  border-radius: 999px;
  box-shadow: 0 0 0 3px var(--color-focus);
}

.highlights-shell .tns-controls button:disabled {
  opacity: 0.32;
}

.highlights-shell .tns-controls button svg {
  width: 2.15rem;
  height: 2.15rem;
  flex: 0 0 1.95rem;
}

.highlights-shell .tns-item {
  display: inline-flex;
}

.highlight-slide {
  display: flex;
  height: 100%;
}

.event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border-radius: var(--radius-card);
  background: var(--color-surface);
  overflow: hidden;
}

.event-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 240ms ease;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.event-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.05rem 1.25rem 1.15rem;
}
.highlight-slide .event-card__body {
  min-height: 192px;
}

.event-card h3 {
  margin: 0;
  color: #29406f;
  font-size: clamp(1.05rem, 1.45vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #6d707f;
  font-size: 0.84rem;
  font-weight: 500;
  justify-content: space-between;
}

.event-card__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.event-card__meta time {
  color: inherit;
  font: inherit;
  font-style: normal;
  white-space: nowrap;
}

.event-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
  margin-top: 15px;
}

.event-card__cta {
  min-width: 122px;
  min-height: 30px;
  padding-inline: 0.95rem;
  font-size: 0.74rem;
  font-weight: 500;
}

.event-card__price {
  margin: 0;
  color: var(--color-blue);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
}

.event-card__price--placeholder {
  visibility: hidden;
  min-width: 3rem;
}

.feature-grid {
  padding-top: 0.2rem;
}

.feature-grid__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.feature-card {
  position: relative;
  min-height: 500px;
  background: #16244f;
  overflow: hidden;
  transition: box-shadow 240ms ease;
}

.feature-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: filter 240ms ease;
}

.feature-card--classical .feature-card__image {
  object-position: 62% center;
}

.feature-card--comedy .feature-card__image {
  object-position: center center;
}

.feature-card__overlay {
  position: absolute;
  inset: 0;
  background:linear-gradient(90deg, rgba(55, 75, 136, 0.8) 0%, rgba(36, 61, 130, 0.46) 48%, rgba(36, 61, 130, 0.18) 100%), url("../images/cat-overlay.png") center/cover no-repeat;
  transition: opacity 240ms ease;
  opacity: 0.8;
}

.feature-card__content {
  position: absolute;
  left: 12.5%;
  top: 31%;
  z-index: 1;
  max-width: 360px;
  color: #fff;
}

.feature-card__title {
  margin: 0 0 0.8rem;
  color: #fff;
  font-size: clamp(1.7rem, 1.25vw, 2.45rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.feature-card__description {
  max-width: 320px;
  margin: 0 0 2.0rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.8;
}

.feature-card .btn-light-outline,
.feature-card .button--outline-light {
  min-height: 33px;
  padding: 0.35rem 1.55rem;
  letter-spacing: 0.015em;
}

.feature-card--classical .feature-card__content {
  max-width: 320px;
}

.feature-card--classical .feature-card__title {
  max-width: 210px;
}

.feature-card--classical .feature-card__description {
  max-width: 300px;
}

.feature-card--comedy .feature-card__content {
  max-width: 370px;
}

.feature-card--comedy .feature-card__title {
  max-width: 250px;
}

.support {
  position: relative;
  padding: 5.35rem 0 5.55rem;
  background: #182b69 url("../images/give-bg-q90.webp") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.support::before,
.support::after {
  display: none;
}

.support__content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding-left: 7.75rem;
}

.support__content h2 {
  color: #fff;
  max-width: 640px;
  font-size: clamp(2.15rem, 3vw, 3.95rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.support__description {
  max-width: 640px;
  margin: 1.45rem 0 2rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.93);
}

.support__content .btn-light-outline,
.support__content .button--outline-light {
  min-height: 36px;
  padding: 0.4rem 1.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.015em;
}

.support-collage {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  padding-right: 5.25rem;
}

.support-collage img {
  width: min(100%, 660px);
  height: auto;
  border-radius: 6px;
  object-fit: contain;
  transition: box-shadow 240ms ease, filter 240ms ease;
}

.partners h2 {
  margin-bottom: 2rem;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 2rem;
}

.partner-card a {
  display: block;
  transition: color 240ms ease;
}

.partner-card__media {
  overflow: hidden;
  border-radius: 4px;
}

.partner-card img {
  width: 100%;
  height: 286px;
  object-fit: cover;
  transition: box-shadow 240ms ease, filter 240ms ease, transform 240ms ease;
  transform-origin: center center;
}

.partner-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  min-height: 68px;
  padding: 0 1.15rem 0.15rem 1.15rem;
  border-bottom: 1px solid rgba(28, 63, 123, 0.16);
}

.partner-card h3 {
  margin: 0;
  color: var(--color-blue);
  font-size: clamp(1.08rem, 1.3vw, 1.55rem);
  font-weight: 800;
  line-height: 1.08;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.partner-card__icon {
  color: var(--color-blue-text);
  flex: 0 0 auto;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.partner-card__icon svg {
  width: 1.85rem;
  height: 1.85rem;
}

.about-center {
  background: #f8f8f8;
}

.about-center > .page-shell {
  max-width: 1285px;
}

.about-center__content {
  --about-rail-gap: 1.85rem;
  position: relative;
  max-width: 45rem;
  padding-left: var(--about-rail-gap);
}

.about-center__content::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: rgba(28, 63, 123, 0.12);
}

.about-center__accordion {
  display: grid;
  gap: 2.85rem;
}

.about-center__item {
  position: relative;
}

.about-center__item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--about-rail-gap) * -1);
  width: 3px;
  border-radius: 999px;
  background: rgba(28, 63, 123, 0.34);
  opacity: 0;
  transition: opacity var(--transition-fast), background-color var(--transition-fast);
}

.about-center__item.is-open::before {
  opacity: 1;
}

.about-center__item-heading {
  margin: 0;
}

.about-center__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  max-width: 100%;
  color: var(--color-blue);
  text-align: left;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.about-center__trigger > span:first-child {
  font-size: clamp(16px, 28px, 32px);
  font-weight: 700;
  line-height: 1.14;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.about-center__trigger-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transform: translateY(0.06em);
}

.about-center__icon {
  width: 1.45rem;
  height: 1.45rem;
  transition: color var(--transition-fast), opacity var(--transition-fast), transform var(--transition-fast);
}

.about-center__trigger[aria-expanded="true"] .about-center__icon {
  transform: rotate(90deg);
}

.about-center__panel {
  padding: 0.8rem 0 0.2rem;
  overflow: hidden;
}

.about-center__copy {
  margin: 0;
  line-height: 1.62;
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 240ms ease, transform 240ms ease;
}

.about-center__item.is-open .about-center__copy {
  opacity: 1;
  transform: translateY(0);
}

.about-center__image-wrap {
  display: flex;
  justify-content: flex-end;
  padding-left: 1.4rem;
}

.about-center__image {
  width: min(100%, 506px);
  height: auto;
  margin-left: auto;
  border-radius: 4px;
}

.sponsors {
  padding: 3.45rem 0 3.95rem;
  background: var(--color-blue-deep);
  color: #fff;
}

.section-heading--sponsors {
  justify-content: center;
  margin-bottom: 1.6rem;
}

.section-heading--sponsors h2 {
  color: #fff;
  font-size: clamp(3rem, 3.8vw, 4rem);
  line-height: 1;
  text-align: center;
}

.section-heading--sponsors .section-heading__actions {
  display: none;
}

.sponsors__carousel-shell {
  position: relative;
  max-width: 910px;
  margin: 0 auto;
  padding: 0;
}

.sponsors__controls {
  position: absolute;
  top: 50%;
  left: -8%;
  right: -8%;
  z-index: 2;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.sponsors__controls .section-arrow {
  width: 60px;
  height: 60px;
  color: #7fd7ff;
  pointer-events: auto;
}

.sponsors__controls .section-arrow svg {
  width: 2.4rem;
  height: 2.4rem;
}

.sponsors-slider {
  width: 100%;
}

.sponsors__carousel-shell .tns-outer {
  width: min(100%, 1068px);
  margin: 0 auto;
}

.sponsor-slide {
  display: flex;
  justify-content: center;
  padding: 0;
}

.sponsor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  background: rgba(255, 255, 255, 0.045);
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  transition: background-color 240ms ease, box-shadow 240ms ease;
}

.sponsor-card img {
  width: min(100%, 223px);
  max-width: 223px;
  max-height: none;
  object-fit: contain;
  opacity: 0.96;
  filter: brightness(0.98) saturate(0.99);
  transition: opacity 240ms ease, filter 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .utility-link:hover {
    color: var(--color-blue);
  }

  .utility-link:hover > .btn-primary,
  .utility-link:hover > .button--solid {
    background: var(--color-blue-deep);
    border-color: var(--color-blue-deep);
  }

  .search-form button:hover {
    color: var(--color-blue-deep);
    background: rgba(13, 93, 168, 0.06);
  }

  .site-nav__link:hover {
    color: #b9e6ff;
    opacity: 1;
  }

  .site-header.is-sticky .site-nav__link:hover {
    color: var(--color-blue);
  }

  .site-nav__submenu a:hover {
    color: var(--color-blue-deep);
    opacity: 1;
  }

  .site-footer__links a:hover {
    color: var(--color-blue);
    opacity: 1;
  }

  .btn-primary:hover,
  .button--solid:hover {
    background: var(--color-blue-deep);
    border-color: var(--color-blue-deep);
  }

  .btn-primary-outline:hover,
  .button--outline:hover {
    background: rgba(13, 93, 168, 0.08);
    border-color: rgba(13, 93, 168, 0.85);
  }

  .btn-light-outline:hover,
  .button--outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.92);
  }

  .section-arrow:hover {
    color: var(--color-blue);
  }

  .sponsors__controls .section-arrow:hover {
    color: #9be1ff;
  }

  .event-card:hover .event-card__image {
    filter: saturate(1.03);
  }

  .feature-card:hover .feature-card__image {
    filter: saturate(1.04) brightness(1.02);
  }

  .feature-card:hover .feature-card__overlay {
    opacity: 0.94;
  }

  .support-collage:hover img {
    filter: saturate(1.03);
  }

  .partner-card a:hover {
    color: var(--color-blue);
  }

  .partner-card a:hover img {
    transform: scale(1.02);
    filter: saturate(1.03);
  }

  .partner-card a:hover h3 {
    color: var(--color-blue-deep);
  }

  .partner-card a:hover .partner-card__icon {
    color: var(--color-blue-deep);
    opacity: 1;
  }

  .about-center__item:hover::before {
    opacity: 0.72;
    background: rgba(28, 63, 123, 0.48);
  }

  .about-center__trigger:hover {
    color: var(--color-blue-deep);
  }

  .about-center__trigger:hover > span:first-child {
    color: var(--color-blue-deep);
  }

  .about-center__trigger:hover .about-center__icon {
    color: var(--color-blue-deep);
    opacity: 1;
  }

  .sponsor-card:hover img {
    opacity: 1;
    filter: brightness(1.04) saturate(1.02);
  }

  .sponsor-card:hover {
    background: rgba(255, 255, 255, 0.08);
  }
}

.site-footer__logo:focus-visible,
.site-footer__links a:focus-visible,
.social-links a:focus-visible,
.subscribe-form .btn:focus-visible,
.subscribe-form .button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(143, 215, 255, 0.9);
}

.site-footer__logo:focus-visible {
  opacity: 0.96;
}

.site-footer__links a:focus-visible {
  color: var(--color-blue-deep);
  box-shadow:
    0 0 0 3px rgba(143, 215, 255, 0.55),
    inset 0 -2px 0 rgba(13, 93, 168, 0.9);
  border-radius: 3px;
}

.site-footer .subscribe-form:focus-within {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.32),
    0 0 0 3px rgba(143, 215, 255, 0.65);
}

.subscribe-form input:focus-visible {
  outline: none;
}

.social-links a:focus-visible {
  color: var(--color-blue-deep);
  background: rgba(13, 93, 168, 0.08);
}

.site-footer {
  padding: 72px 0 20px;
  background: var(--color-bg);
  border-top: 1px solid #bcbcbc;
}

.site-footer__top {
  align-items: start;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.68fr) minmax(0, 0.68fr) minmax(0, 1.18fr);
  gap: 2.8rem;
  padding-bottom: 2.15rem;
  border-bottom: 1px solid rgba(28, 63, 123, 0.14);
}

.site-footer-column {
  min-width: 0;
}

.site-footer-column > * {
  min-width: 0;
}

.site-footer__logo {
  display: inline-flex;
  max-width: 332px;
  border-radius: 6px;
  transition: box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.site-footer__contact,
.site-footer__links ul,
.social-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__contact {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.9rem;
}

.site-footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #31426c;
  font-size: 0.91rem;
  font-weight: 500;
  line-height: 1.45;
}

.site-footer__contact svg {
  width: 0.92rem;
  height: 0.92rem;
  flex: 0 0 auto;
}

.site-footer h2 {
  margin: 0 0 0.95rem;
  color: #253d73;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.site-footer__links ul {
  display: grid;
  gap: 0.75rem;
}

.site-footer__links a,
.site-footer__subscribe-copy {
  color: #29406f;
  font-size: 0.95rem;
}

.site-footer__subscribe {
  min-width: 0;
}

.site-footer__links a {
  font-weight: 500;
  transition: color var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.site-footer__subscribe-copy {
  max-width: 31rem;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.subscribe-form {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0.22rem;
  border-radius: var(--radius-pill);
  background: #b3b5b9;
  overflow: hidden;
  transition: box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.subscribe-form input {
  flex: 1;
  width: 100%;
  min-width: 0;
  padding: 0 1.2rem;
  border: 0;
  background: transparent;
  color: #414141;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.subscribe-form input::placeholder {
  color: #414141;
}

.subscribe-form .btn,
.subscribe-form .button {
  flex: 0 1 auto;
  min-width: 0;
  min-height: 38px;
  padding: 0.35rem 1.7rem;
  font-size: 0.76rem;
  letter-spacing: 0.015em;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.55rem;
}

.site-footer__copyright {
  margin: 0;
  color: #31426c;
  font-size: 0.94rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--color-blue);
  border-radius: 999px;
  transition: color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}

.social-links svg {
  width: 1.15rem;
  height: 1.15rem;
}

.tns-outer [data-action] {
  display: none;
}

@media (max-width: 1399.98px) {
  .site-nav__list {
    gap: 2rem;
  }

  .support__content {
    padding-left: 3rem;
  }

  .support-collage {
    padding-right: 2rem;
  }

  .about-center__content {
    max-width: none;
    --about-rail-gap: 1.6rem;
    margin-left: 0.75rem;
    padding-left: var(--about-rail-gap);
    padding-right: 0.75rem;
  }

  .about-center__image-wrap {
    padding-left: 0.5rem;
    padding-right: 0.75rem;
  }

  .about-center__image {
    width: min(100%, 470px);
    height: 580px;
  }

  .site-footer__top {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.68fr) minmax(0, 0.68fr) minmax(0, 1.18fr);
  }
}

@media (max-width: 991.98px) {
  .page-shell {
    width: min(100%, calc(100% - 40px));
  }

  .site-header {
    position: fixed;
    top: 0;
  }

  .site-header__row {
    min-height: var(--site-header-height-mobile);
  }

  .site-logo__image {
    max-width: 230px;
  }

  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }

  .mobile-header-actions__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #fff;
  }

  .mobile-header-actions__button .icon-menu-close {
    display: none;
  }

  .mobile-header-actions__button.is-open .icon-menu-open {
    display: none;
  }

  .mobile-header-actions__button.is-open .icon-menu-close {
    display: block;
  }

  .utility-bar__actions {
    padding-right: 0;
  }

  .site-search {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 58;
    background: rgba(235, 235, 235, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
    pointer-events: auto;
  }

  .site-search.is-open {
    display: block;
  }

  .site-search__inner {
    display: block;
    min-height: 0;
    pointer-events: auto;
  }

  .site-search__form {
    width: 100%;
    margin: 0.8rem 0 1rem;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 57;
    width: 100vw;
    background: #eff0f1;
    color: var(--color-blue);
    border-top: 1px solid rgba(15, 95, 168, 0.08);
    box-shadow: 0 18px 32px rgba(10, 34, 70, 0.18);
    transform: translate(-50%, 8px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      opacity var(--transition-fast),
      transform var(--transition-fast),
      visibility var(--transition-fast);
  }

  .site-nav.is-open {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .site-nav__panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(100%, calc(100% - 40px));
    margin: 0 auto;
    padding: 1.55rem 0 1.05rem;
  }

  .site-nav__list {
    display: grid;
    width: 100%;
    gap: 1.95rem;
  }

  .site-nav__item--has-submenu::after {
    display: none !important;
  }

  .site-nav__link,
  .site-nav__calendar-link {
    display: inline-flex;
    align-items: center;
    gap: 0;
    min-height: 0;
    padding-left: 2rem;
    color: var(--color-blue);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav__link--submenu {
    width: 100%;
    justify-content: flex-start;
    padding-left: 0;
    text-align: left;
  }

  .site-nav__toggle-main {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding-left: 2rem;
  }

  .site-nav__mobile-prefix {
    display: none;
  }

  .site-nav__mobile-prefix--toggle,
  .site-nav__mobile-prefix--toggle .site-nav__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.05rem;
    height: 1.05rem;
    fill: currentColor;
    flex: 0 0 auto;
  }

  .site-nav__mobile-prefix--toggle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .site-nav__mobile-prefix svg {
    width: 100%;
    height: 100%;
    transition: transform 0.24s ease;
    transform-origin: center;
  }

  .site-nav__item--has-submenu.is-open .site-nav__icon {
    transform: rotate(180deg);
  }

  .site-nav__item--has-submenu {
    display: block;
  }

  .site-header.is-sticky .site-nav__submenu,
  .site-nav__submenu {
    position: static;
    inset: auto;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    min-width: 0;
    padding: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    display: none;
    margin-top: 0.8rem;
  }

  .site-header.is-sticky .site-nav__submenu::before,
  .site-nav__submenu::before {
    display: none !important;
  }

  .site-nav__item--has-submenu.is-open > .site-nav__submenu {
    display: block;
  }

  .site-nav__submenu ul {
    gap: 0.7rem;
    margin: 0 0 0 4.2rem;
  }

  .site-nav__submenu .site-nav__item--has-submenu > .site-nav__link {
    padding-left: 0;
  }

  .site-nav__submenu .site-nav__item--has-submenu > .site-nav__link .site-nav__toggle-main {
    padding-left: 1.35rem;
  }

  .site-nav__submenu .site-nav__item--has-submenu > .site-nav__link .site-nav__mobile-prefix--toggle {
    width: 0.95rem;
    height: 0.95rem;
  }

  .site-nav__submenu .site-nav__submenu {
    margin-top: 0.45rem;
  }

  .site-nav__submenu .site-nav__submenu ul {
    margin-left: 1.35rem;
  }

  .site-nav__submenu a {
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--color-blue-text);
  }

  .site-nav__item--mobile-only {
    display: block;
  }

  .site-nav__calendar-link {
    margin-left: 0;
  }

  .site-nav__cta {
    display: inline-flex;
    margin: 1.55rem 0 0.85rem 2.9rem;
  }

  .utility-bar__actions--mobile-nav {
    display: grid;
    align-self: stretch;
    justify-items: start;
    width: 100%;
    gap: 1.6rem;
    min-height: 0;
    margin-top: 0.1rem;
    padding: 1.6rem 0 0 2rem;
  }

  .utility-bar__actions--mobile-nav .utility-link {
    gap: 0;
    color: var(--color-blue);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
  }

  .utility-bar__actions--mobile-nav .utility-link svg {
    display: none;
  }

  .utility-bar__actions--mobile-nav .utility-link > .btn,
  .utility-bar__actions--mobile-nav .utility-link > .button {
    min-height: 35px;
    padding: 0.42rem 1.18rem;
    font-size: 0.88rem;
  }

  .site-header__main {
    background: transparent;
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
  }

  .hero-swiper {
    height: auto;
  }

  .hero.vh-75 .hero-swiper {
    height: 592px;
  }

  .hero.vh-50 .hero-swiper {
    height: 520px;
  }

  .hero.vh-40 .hero-swiper {
    height: 460px;
  }

  .hero-slide__content {
    padding-bottom: 82px;
  }

  .hero-slide__title {
    font-size: clamp(2rem, 4.3vw, 3.2rem);
  }

  .hero-slide__description {
    max-width: 460px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero-slide__media img {
    object-position: 39% center;
  }

  .hero__controls {
    bottom: 14px;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading {
    margin-bottom: 1.5rem;
  }

  .highlights-shell .tns-controls {
    position: static;
    justify-content: flex-end;
    margin-top: 1.1rem;
  }
  .highlights-shell .tns-inner {
    padding-right: 10%;
  }

  .section-heading h2,
  .partners h2,
  .sponsors h2 {
    font-size: 3rem;
  }

  .sponsors__carousel-shell {
    padding: 0 3.9rem;
  }

  .sponsors__controls .section-arrow {
    width: 48px;
    height: 48px;
  }

  .sponsors__controls .section-arrow svg {
    width: 2rem;
    height: 2rem;
  }

  .sponsors-slider {
    width: 100%;
  }

  .section-arrow {
    width: 44px;
    height: 44px;
  }

  .event-card h3 {
    font-size: 1.45rem;
  }

  .event-card__body {
    min-height: 196px;
    padding: 1rem 1.05rem 1.05rem;
  }

  .event-card__meta {
    font-size: 0.8rem;
  }

  .feature-grid__layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    min-height: 340px;
  }

  .feature-card__image {
    object-position: center;
  }

  .feature-card__content {
    left: 7%;
    top: auto;
    bottom: 10%;
    max-width: 290px;
  }

  .feature-card__title {
    font-size: 2rem;
  }

  .feature-card__description {
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .support {
    padding: 4.5rem 0;
  }

  .support__content {
    max-width: none;
    padding-left: 0;
  }

  .support__description {
    font-size: 1.05rem;
  }

  .support-collage {
    padding-right: 0;
  }

  .partners__grid,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .partner-card img {
    height: 260px;
  }

  .partner-card__footer {
    min-height: 74px;
    padding-inline: 0.75rem;
  }

  .about-center__content {
    margin-left: 0;
    --about-rail-gap: 1rem;
    padding-left: var(--about-rail-gap);
    padding-right: 0;
  }

  .about-center__accordion {
    gap: 1.25rem;
  }

  .about-center__trigger {
    gap: 0.75rem;
  }

  .about-center__trigger > span:first-child {
    font-size: 1.45rem;
  }

  .about-center__panel {
    max-width: none;
    padding-top: 0.55rem;
  }

  .about-center__copy {
    font-size: 0.98rem;
  }

  .about-center__image-wrap {
    padding: 0;
  }

  .about-center__image {
    width: 100%;
    height: 430px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__logo {
    max-width: 360px;
  }

  .hero-slide__title,
  .section-heading h2,
  .partners h2,
  .support h2,
  .support__content h2,
  .feature-card__title,
  .about-center__trigger > span:first-child {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .highlights .section-heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin-bottom: 1.15rem;
    padding-right: 5.2rem;
  }

  .highlights .section-heading__group {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
  }

  .highlights .section-heading h2 {
    line-height: 0.98;
    white-space: nowrap;
  }

  .highlights .section-heading .btn,
  .highlights .section-heading .button {
    flex: 0 0 auto;
    min-height: 32px;
    padding-inline: 1.15rem;
    font-size: 0.7rem;
  }

  .highlights-shell {
    margin-right: -20px;
  }

  .highlights-shell .tns-inner {
    padding-right: 10%;
  }

  .site-header {
    position: relative;
    top: 0;
    left: auto;
    right: auto;
  }

  .site-header.is-sticky {
    position: relative;
    top: 0;
    left: auto;
    right: auto;
  }

  .site-header__main {
    background: var(--color-blue);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 0;
    box-shadow: none;
  }

  .site-header.is-sticky .site-header__main {
    background: var(--color-blue);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
  }

  .site-header__row {
    min-height: 80px;
  }

  .site-logo {
    max-width: 286px;
  }

  .site-logo__image,
  .site-header.is-sticky .site-logo__image {
    max-width: 225px;
    filter: brightness(0) invert(1);
  }

  .mobile-header-actions {
    gap: 0.2rem;
  }

  .mobile-header-actions__button,
  .site-header.is-sticky .mobile-header-actions__button {
    width: 42px;
    height: 42px;
    color: #fff;
  }

  .mobile-header-actions__button svg {
    width: 1.65rem;
    height: 1.65rem;
  }

  .site-nav__panel {
    width: min(100%, calc(100% - 40px));
  }

  .site-nav__cta {
    margin-bottom: 0.55rem;
  }

  .highlights-shell .tns-controls {
    position: absolute;
    top: -3.35rem;
    right: 0;
    gap: 0.1rem;
    margin-top: 0;
    z-index: 3;
  }

  .hero.vh-75 .hero-swiper,
  .hero.vh-50 .hero-swiper,
  .hero.vh-40 .hero-swiper {
    height: calc(80vh - 97px);
  }

  .site-footer__logo {
    max-width: 290px;
  }

  .hero-slide__media::after {
    display:none;
  }

  .hero-slide__media img {
    object-position: 38% center;
  }

  .hero-slide__content {
    padding-bottom: 72px;
  }

  .hero-slide__content-inner {
    max-width: 320px;
  }

  .hero-slide__eyebrow {
    margin-bottom: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .hero-slide__title {
    font-size: 1.7rem;
  }

  .hero-slide__description {
    margin: 0.75rem 0 1rem;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .hero__control-button {
    width: 32px;
    height: 32px;
  }

  .hero__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }

  .section-heading {
    align-items: flex-end;
    gap: 0.9rem;
  }

  .section-heading__group {
    gap: 0.85rem;
  }

  .section-heading h2,
  .partners h2,
  .support h2,
  .sponsors h2 {
    font-size: 2.25rem;
  }

  .sponsors__carousel-shell {
    padding: 0 3rem;
  }

  .sponsors__controls {
    top: -3.1rem;
    left: auto;
    right: 0;
    width: auto;
    gap: 0.2rem;
    justify-content: flex-end;
    transform: none;
    pointer-events: auto;
  }

  .sponsors__controls .section-arrow {
    width: 38px;
    height: 38px;
    pointer-events: auto;
  }

  .sponsors__controls .section-arrow svg {
    width: 1rem;
    height: 1rem;
  }

  .sponsors-slider {
    width: 100%;
  }

  .btn,
  .button {
    min-height: 40px;
    padding-inline: 1.15rem;
    font-size: 0.82rem;
  }

  .section-arrow {
    width: 38px;
    height: 38px;
  }

  .highlights-shell .tns-controls {
    gap: 0.1rem;
  }

  .highlights-shell .tns-controls button {
    width: 34px;
    min-width: 34px;
    min-height: 34px;
  }

  .highlights-shell .tns-controls button svg {
    width: 1.42rem;
    height: 1.42rem;
    flex-basis: 1.42rem;
  }


  .event-card__body {
    min-height: 0;
    gap: 0.8rem;
    padding: 1rem 1rem 1rem;
  }
  .highlight-slide .event-card__body {
    min-height: 158px !important;
  }

  .event-card h3 {
    font-size: 1.05rem;
    line-height: 1.12;
    min-height: 0;
  }

  .event-card__meta {
    gap: 0.45rem 0.8rem;
    font-size: 0.68rem;
  }

  .event-card__footer {
    flex-wrap: nowrap;
    gap: 0.7rem;
  }

  .event-card__cta {
    min-width: 112px;
    min-height: 28px;
    padding-inline: 0.88rem;
    font-size: 0.75rem;
  }

  .event-card__price {
    font-size: 0.72rem;
  }

  .feature-card {
    min-height: 278px;
  }

  .feature-card__content {
    left: 8.2%;
    right: auto;
    top: 15.5%;
    bottom: auto;
    max-width: 245px;
  }

  .feature-card__title {
    margin-bottom: 0.42rem;
    font-size: 1.85rem;
    line-height: 0.94;
  }

  .feature-card__description {
    max-width: 225px;
    margin-bottom: 0.9rem;
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .feature-card .btn-light-outline,
  .feature-card .button--outline-light {
    min-height: 30px;
    padding: 0.32rem 1.1rem;
    font-size: 0.68rem;
    letter-spacing: 0;
  }

  .feature-card--classical .feature-card__image {
    object-position: 68% center;
  }

  .feature-card--classical .feature-card__title {
    max-width: 175px;
  }

  .feature-card--classical .feature-card__description {
    max-width: 214px;
  }

  .feature-card--comedy .feature-card__image {
    object-position: 63% center;
  }

  .feature-card--comedy .feature-card__title {
    max-width: 190px;
  }

  .support {
    padding: 3.75rem 0;
  }

  .support::before {
    width: 520px;
    height: 520px;
    left: -280px;
  }

  .support::after {
    width: 760px;
    height: 760px;
    left: -420px;
  }

  .support__content h2 {
    font-size: 2.25rem;
  }

  .support__description {
    margin: 1.2rem 0 1.7rem;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .support-collage {
    gap: 0.9rem;
  }

  .partner-card img {
    height: 200px;
  }

  .partner-card h3 {
    font-size: 1rem;
  }

  .about-center__content {
    --about-rail-gap: 0.85rem;
    padding-left: var(--about-rail-gap);
  }

  .about-center__content::before {
    width: 1px;
  }

  .about-center__accordion {
    gap: 1rem;
  }

  .about-center__item::before {
    width: 2px;
  }

  .about-center__trigger {
    gap: 0.6rem;
  }

  .about-center__trigger > span:first-child {
    font-size: 1.05rem;
  }

  .about-center__icon {
    width: 1rem;
    height: 1rem;
  }

  .about-center__panel {
    padding-top: 0.45rem;
  }

  .about-center__copy {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .about-center__image {
    height: 350px;
  }

  .sponsors {
    padding: 3rem 0 3.5rem;
  }

  .section-heading--sponsors {
    margin-bottom: 1.15rem;
  }

  .sponsors__carousel-shell {
    padding: 0;
  }

  .sponsor-card {
    min-height: auto;
  }

  .sponsor-card img {
    width: min(100%, 195px);
  }

  .site-footer {
    padding: 2.4rem 0 2rem;
  }

  .site-footer__top {
    gap: 2.2rem;
  }

  .site-footer__contact li,
  .site-footer__links a,
  .site-footer__subscribe-copy {
    font-size: 0.95rem;
  }

  .subscribe-form {
    gap: 0.5rem;
    padding: 0.28rem;
  }

  .subscribe-form input {
    padding-left: 0.85rem;
  }

  .subscribe-form .btn,
  .subscribe-form .button {
    padding-inline: 1.2rem;
    font-size: 0.72rem;
  }

  .site-footer__bottom {
    align-items: center;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .hero-slide__title,
  .section-heading h2,
  .partners h2,
  .support h2,
  .support__content h2,
  .feature-card__title,
  .about-center__trigger > span:first-child {
    font-size: 1.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
.dev-div {
  font-size: 12px;
  padding-top: 10px;
}
.main_body header, body.no-slider header{
  position: unset !important;
  background-color: #163f7b !important;
}
main{
  min-height: 500px;
}
.container-fluid{
  width: min(1830px, calc(100% - 72px));
  margin: 0 auto;
  padding-inline: 0;
}
@media (max-width: 991.98px) {
  .container-fluid {
    width: min(100%, calc(100% - 40px));
  }
}

.listing-filter-box {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) minmax(210px, 1fr) minmax(220px, 1.15fr) minmax(210px, 1fr) minmax(150px, 0.48fr);
  align-items: center;
  gap: 15px;
  width: 100%;
  margin: 0 0 20px;
  padding: 12px 15px;
  border-radius: 4px;
  background: #9fa1a3;
}

.listing-filter-box .filter-box-col {
  min-width: 0;
}

.listing-filter-box .form-control {
  width: 100%;
  min-height: 50px;
  padding: 0 58px 0 25px;
  border: 1px solid rgba(22, 63, 123, 0.16);
  border-radius: 999px;
  background-color: #fff;
  color: #263a5f;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: none;
}
.listing-filter-box input.form-control{
  padding-right: 20px;
}

.listing-filter-box .form-control::placeholder {
  color: #263a5f;
  opacity: 1;
}

.listing-filter-box select.form-control {
  appearance: none;
  -webkit-appearance: none;
}
.listing-filter-box .custom-select{
  position: relative;
}
.listing-filter-box .custom-select::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  right: 25px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  border-right: 2px solid #263a5f;
  border-bottom: 2px solid #263a5f;
  pointer-events: none;
}

.listing-filter-box input[type="date"].form-control {
  color-scheme: light;
}

.listing-filter-box input[type="date"].form-control::-webkit-calendar-picker-indicator {
  width: 22px;
  height: 22px;
  opacity: 1;
  filter: invert(18%) sepia(59%) saturate(1394%) hue-rotate(189deg) brightness(91%) contrast(93%);
  cursor: pointer;
}

.listing-filter-box .btn {
  width: 100%;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  background: #075aa3;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.listing-filter-box .btn:hover,
.listing-filter-box .btn:focus {
  background: #064d8c;
  color: #fff;
}

@media (max-width: 1199.98px) {
  .listing-filter-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .listing-filter-box {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .listing-filter-box .form-control,
  .listing-filter-box .btn {
    min-height: 54px;
    font-size: 14px;
  }
}
.nav-tabs {
  border-color: var(--color-blue)
}
.nav-link {
  font-weight: 500;
  color: #656a76;
  border-color: var(--color-blue);
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  isolation: isolate;
  border-color: var(--color-blue);
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  background-color: var(--color-bg);
  border-color: var(--color-blue) var(--color-blue) var(--color-bg);
  color: var(--color-blue-dark);
}

body.page-show-details-full-width[class*="show-detail-"] {
  background: #fff;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-banner-bg img,
body.page-show-details-full-width[class*="show-detail-"] .slider-main-img img {
  width: 100%;
  height: min(41vw, 520px);
  object-fit: cover;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-banner-info {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 60px 0 40px 0;
  background: #e8e8e8;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-banner-info-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 340px);
  gap: 34px;
  background: transparent;
  color: var(--color-blue-dark);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-banner-info-title h1,
body.page-show-details-full-width[class*="show-detail-"] .psd-banner-info-title h2,
body.page-show-details-full-width[class*="show-detail-"] .psd-banner-info-title h3,
body.page-show-details-full-width[class*="show-detail-"] .psd-banner-info-title h4 {
  color: var(--color-blue-dark);
}

body.page-show-details-full-width[class*="show-detail-"] .psd-banner-info-title h1 {
  max-width: 950px;
  margin: 0 0 18px;
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-bit-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-bm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid #dce6f2;
  background: #fff;
  border-radius: 58px;
  color: #5d6c82;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-icon--box {
  width: 20px;
  height: 20px;
  opacity: 0.65;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-bit-meta-cat {
  background: #1359b5;
  border-color: #1359b5;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-banner-info-title > .psd-bit-meta-cat {
  margin-bottom: 16px;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-banner-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  align-self: center;
  width: 100%;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-banner-cta .psd-banner-btn {
  width: 100%;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-banner-btn-buy:empty {
  display: none;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-banner-btn .btn {
  width: 100%;
  min-height: 58px;
  margin: 0 !important;
  padding: 0 26px;
  border-radius: 58px;
  box-shadow: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-banner-btn .btn[aria-disabled="true"] {
  opacity: 0.68;
  cursor: not-allowed;
  pointer-events: none;
}
body.page-show-details-full-width[class*="show-detail-"] .psd-tickets-list {
  padding: 60px 0;
  margin: 0;
  background: var(--color-blue);
}


body.page-show-details-full-width[class*="show-detail-"] .psd-events-table {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.page-show-details-full-width[class*="show-detail-"] .tickets-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 0 14px;
  border-bottom: 0;
}

body.page-show-details-full-width[class*="show-detail-"] .tickets-heading h2,
body.page-show-details-full-width[class*="show-detail-"] .psd-video-gallery h2,
body.page-show-details-full-width[class*="show-detail-"] .psd-image-gallery h2,
body.page-show-details-full-width[class*="show-detail-"] .psd-programbook h2,
body.page-show-details-full-width[class*="show-detail-"] .psd-artists h2,
body.page-show-details-full-width[class*="show-detail-"] .psd-sponsors h2,
body.page-show-details-full-width[class*="show-detail-"] .show-detail-related #youMayAlsoLikeHeading,
body.page-show-details-full-width[class*="show-detail-"] .show-detail-faq > h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #1c5fb4;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.page-show-details-full-width[class*="show-detail-"] .tickets-heading h2 .psd-icon--box,
body.page-show-details-full-width[class*="show-detail-"] .psd-video-gallery h2 .psd-icon--box,
body.page-show-details-full-width[class*="show-detail-"] .psd-image-gallery h2 .psd-icon--box,
body.page-show-details-full-width[class*="show-detail-"] .psd-programbook h2 .psd-icon--box,
body.page-show-details-full-width[class*="show-detail-"] .psd-artists h2 .psd-icon--box,
body.page-show-details-full-width[class*="show-detail-"] .psd-sponsors h2 .psd-icon--box,
body.page-show-details-full-width[class*="show-detail-"] .show-detail-related h2 .psd-icon--box,
body.page-show-details-full-width[class*="show-detail-"] .show-detail-faq > h2 .psd-icon--box {
  color: currentColor;
}

body.page-show-details-full-width[class*="show-detail-"] .member-lounge-msg {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-events-table__head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px 24px 10px;
  background: #fff;
  border: 1px solid #dce6f2;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page-show-details-full-width[class*="show-detail-"] .eventsULBuyTickets {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce6f2;
  border-radius: 0 0 10px 10px;
}

body.page-show-details-full-width[class*="show-detail-"] .eventsULBuyTickets li {
  margin: 0;
  border-top: 1px solid rgba(13, 93, 168, 0.08);
}

body.page-show-details-full-width[class*="show-detail-"] .eventsULBuyTickets .tikitm {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 24px;
  background: transparent;
  color: var(--color-blue-dark);
  transition: background var(--transition-fast), color var(--transition-fast);
}

body.page-show-details-full-width[class*="show-detail-"] .eventsULBuyTickets .tikitm:hover {
  background: rgba(13, 93, 168, 0.04);
}

body.page-show-details-full-width[class*="show-detail-"] .psd-event-date,
body.page-show-details-full-width[class*="show-detail-"] .psd-event-time {
  font-weight: 700;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-event-action {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--color-blue);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-asl-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 0.92rem;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-tabs {
  position: static;
  z-index: auto;
  margin: 0;
  padding: 0;
  background-color: #e8e8e8;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-tabs-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 0;
  background: transparent;
  border-bottom: 1px solid #dde7f3;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-tabs-mobile {
  display: none;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-tabs-mobile__toggle {
  width: 100%;
  min-height: 48px;
  padding: 10px 16px;
  border: 1px solid #dce6f2;
  border-radius: 10px;
  background: #fff;
  color: var(--color-blue-dark);
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-transform: uppercase;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-tabs-mobile__toggle::after {
  margin-left: auto;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-tabs-mobile__toggle span {
  flex: 1 1 auto;
  text-align: left;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-tabs-mobile__menu {
  width: 100%;
  min-width: 100%;
  padding: 8px;
  border: 1px solid #dce6f2;
  border-radius: 10px;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-tabs-mobile__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #6c7b90;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-tabs-mobile__item.active,
body.page-show-details-full-width[class*="show-detail-"] .psd-tabs-mobile__item:hover,
body.page-show-details-full-width[class*="show-detail-"] .psd-tabs-mobile__item:focus {
  background: #f2f7fd;
  color: #1c5fb4;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-tabs .scrollbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: #6c7b90;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-tabs .scrollbtn .psd-icon--box {
  width: 18px;
  height: 18px;
  color: currentColor;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-tabs .scrollbtn.active,
body.page-show-details-full-width[class*="show-detail-"] .psd-tabs .scrollbtn:hover {
  color: #1c5fb4;
  border-bottom-color: var(--color-blue);
}

body.page-show-details-full-width[class*="show-detail-"] .show-content-info {
  padding: 60px 0;
  background-color: #fff;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-body.is-collapsed .text-nrml {
  position: relative;
  overflow: hidden;
  max-height: 320px;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-body.is-collapsed .text-nrml::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 96px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.95) 72%);
}

body.page-show-details-full-width[class*="show-detail-"] .psd-readmore {
  margin-top: 16px;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-readmore .btn {
  border-radius: 8px;
}

body.page-show-details-full-width[class*="show-detail-"] .show-status-spot {
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid #dce8f5;
  background: #f6f9fd;
  color: var(--color-blue-text);
  border-radius: 10px;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-video-gallery,
body.page-show-details-full-width[class*="show-detail-"] .psd-image-gallery,
body.page-show-details-full-width[class*="show-detail-"] .psd-artists,
body.page-show-details-full-width[class*="show-detail-"] .show-detail-related {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-video-gallery h2,
body.page-show-details-full-width[class*="show-detail-"] .psd-image-gallery h2,
body.page-show-details-full-width[class*="show-detail-"] .psd-artists h2,
body.page-show-details-full-width[class*="show-detail-"] .psd-programbook h2,
body.page-show-details-full-width[class*="show-detail-"] .psd-sponsors h2,
body.page-show-details-full-width[class*="show-detail-"] .show-detail-related #youMayAlsoLikeHeading,
body.page-show-details-full-width[class*="show-detail-"] .show-detail-faq > h2 {
  margin-bottom: 18px;
}

body.page-show-details-full-width[class*="show-detail-"] .show-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

body.page-show-details-full-width[class*="show-detail-"] .show-gallery-grid--video {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

body.page-show-details-full-width[class*="show-detail-"] .show-gallery-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe8f2;
  border-radius: 12px;
  color: var(--color-blue-dark);
  box-shadow: 0 12px 28px rgba(8, 28, 62, 0.05);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

body.page-show-details-full-width[class*="show-detail-"] .show-gallery-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(18, 40, 82, 0.09);
  border-color: rgba(13, 93, 168, 0.2);
}

body.page-show-details-full-width[class*="show-detail-"] .show-gallery-card__media {
  position: relative;
}

body.page-show-details-full-width[class*="show-detail-"] .show-gallery-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

body.page-show-details-full-width[class*="show-detail-"] .show-gallery-card__image--empty {
  background: linear-gradient(135deg, #0a4f94, #29406f);
}

body.page-show-details-full-width[class*="show-detail-"] .show-gallery-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.94);
  color: #1359b5;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 25px rgba(8, 28, 62, 0.18);
}

body.page-show-details-full-width[class*="show-detail-"] .show-gallery-card__play .psd-icon {
  width: 24px;
  height: 24px;
}

body.page-show-details-full-width[class*="show-detail-"] .show-gallery-card__body,
body.page-show-details-full-width[class*="show-detail-"] .psd-artist-content,
body.page-show-details-full-width[class*="show-detail-"] .show-content-wrap {
  padding: 14px 18px 16px;
}

body.page-show-details-full-width[class*="show-detail-"] .show-gallery-card__body h3,
body.page-show-details-full-width[class*="show-detail-"] .psd-artist-content h4,
body.page-show-details-full-width[class*="show-detail-"] .show-title {
  margin: 0 0 6px;
  color: var(--color-blue-dark);
  font-size: 1rem;
  line-height: 1.35;
}

body.page-show-details-full-width[class*="show-detail-"] .show-gallery-card__body span,
body.page-show-details-full-width[class*="show-detail-"] .psd-artist-content span,
body.page-show-details-full-width[class*="show-detail-"] .psd-artist-content .psd-artist-credits,
body.page-show-details-full-width[class*="show-detail-"] .show-time {
  color: var(--color-muted);
  font-size: .9rem;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-image-gallery .show-gallery-card {
  border-radius: 10px;
  box-shadow: none;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-image-gallery .show-gallery-card__image {
  aspect-ratio: 1 / 1.04;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-image-gallery .show-gallery-card__body {
  display: none;
}

.psd-gallery-wrap {
  padding: 20px 0;
}

.psd-gallery-wrap .psd-gallery-page__shell {
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
}

.psd-gallery-wrap .psd-gallery-page__header {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.psd-gallery-wrap .psd-gallery-page__header h2 {
  margin: 0;
  color: #112c29;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.psd-gallery-wrap .psd-gallery-page__content {
  display: grid;
  gap: 28px;
}

.psd-gallery-wrap .psd-gallery-archive__section {
  display: grid;
  gap: 18px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  margin-bottom: 28px;
}

.psd-gallery-wrap .psd-gallery-archive__intro {
  display: grid;
  gap: 10px;
}

.psd-gallery-wrap .psd-gallery-archive__intro h3 {
  margin: 0;
  color: #112c29;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.1;
}

.psd-gallery-wrap .psd-gallery-archive__intro-copy {
  display: grid;
  gap: 8px;
  color: #35534f;
}

.psd-gallery-wrap .psd-gallery-archive__intro-copy p:last-child {
  margin-bottom: 0;
}

.psd-gallery-wrap .psd-gallery-archive--top-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.psd-gallery-wrap .show-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.psd-gallery-wrap .show-gallery-grid--detail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.psd-gallery-wrap .psd-gallery-archive__section--split {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .8fr);
  align-items: center;
  gap: 28px;
}

.psd-gallery-wrap .psd-gallery-archive__section--intro-after .psd-gallery-archive__intro {
  order: 2;
}

.psd-gallery-wrap .psd-gallery-archive__section--intro-after .show-gallery-grid {
  order: 1;
}

.psd-gallery-wrap .psd-gallery-archive--right-left .psd-gallery-archive__section--split {
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.45fr);
}

.psd-gallery-wrap .psd-gallery-archive--left-right-animation .show-gallery-grid--left-right-animation {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.psd-gallery-wrap .psd-gallery-archive--right-left .show-gallery-grid--right-left {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.psd-gallery-wrap .psd-gallery-archive--left-right-mutilple .show-gallery-grid--left-right-mutilple {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.psd-gallery-wrap .psd-gallery-archive--bottom-top .show-gallery-grid--bottom-top {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.psd-gallery-wrap .psd-gallery-archive--top-bottom .show-gallery-grid--top-bottom {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.psd-gallery-wrap .psd-gallery-archive--top-bottom-grid .psd-gallery-archive__section {
  height: 100%;
}

.psd-gallery-wrap .psd-gallery-archive--top-bottom-grid .show-gallery-grid--top-bottom-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.psd-gallery-wrap .psd-gallery-archive--top-bottom-grid .psd-gallery-archive__section--intro-after .show-gallery-grid {
  order: 0;
}

.psd-gallery-wrap .psd-gallery-archive--top-bottom-grid .psd-gallery-archive__section--intro-after .psd-gallery-archive__intro {
  order: 0;
}

.psd-gallery-wrap .psd-gallery-archive--top-bottom-grid .psd-gallery-archive__intro {
  gap: 12px;
}

.psd-gallery-wrap .psd-gallery-archive--left-right-animation .show-gallery-card__image,
.psd-gallery-wrap .psd-gallery-archive--left-right-mutilple .show-gallery-card__image {
  aspect-ratio: 1 / 1;
}

.psd-gallery-wrap .psd-gallery-archive--right-left .show-gallery-card__image,
.psd-gallery-wrap .psd-gallery-archive--bottom-top .show-gallery-card__image,
.psd-gallery-wrap .psd-gallery-archive--top-bottom .show-gallery-card__image,
.psd-gallery-wrap .psd-gallery-archive--top-bottom-grid .show-gallery-card__image {
  aspect-ratio: 4 / 3;
}

.psd-gallery-wrap .show-gallery-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe8f2;
  border-radius: 14px;
  color: #112c29;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(8, 28, 62, 0.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.psd-gallery-wrap a.show-gallery-card:hover,
.psd-gallery-wrap .show-gallery-card__media-link:hover {
  text-decoration: none;
}

.psd-gallery-wrap .show-gallery-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(18, 40, 82, 0.09);
  border-color: rgba(13, 93, 168, 0.2);
  color: #112c29;
}

.psd-gallery-wrap .show-gallery-card__media,
.psd-gallery-wrap .show-gallery-card__media-link {
  display: block;
  position: relative;
}

.psd-gallery-wrap .show-gallery-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
}

.psd-gallery-wrap .show-gallery-card__body {
  display: none;
  padding: 16px 18px 18px;
}

.psd-gallery-wrap .show-gallery-grid--detail .show-gallery-card__body {
  display: grid;
  gap: 8px;
}

.psd-gallery-wrap .show-gallery-card__body h3 {
  margin: 0;
  color: #112c29;
  font-size: 1rem;
  line-height: 1.35;
}

.psd-gallery-wrap .show-gallery-card__description,
.psd-gallery-wrap .show-gallery-card__credit {
  color: #35534f;
  font-size: .95rem;
  line-height: 1.5;
}

.psd-gallery-wrap .show-gallery-card__description p:last-child,
.psd-gallery-wrap .show-gallery-card__credit p:last-child {
  margin-bottom: 0;
}

.psd-gallery-wrap .show-gallery-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.psd-gallery-wrap .show-gallery-card__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1e4c47;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}

.psd-gallery-wrap .show-gallery-card__actions a:hover {
  background: #112c29;
}

.psd-gallery-wrap .show-footer {
  margin-top: 28px;
}

.psd-gallery-wrap .pagination {
  gap: 8px;
  flex-wrap: wrap;
}

.psd-gallery-wrap .pagination .page-item .page-link {
  border: 0;
  border-radius: 999px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #112c29;
  box-shadow: 0 8px 18px rgba(17, 44, 41, 0.08);
}

.psd-gallery-wrap .pagination .page-item.active .page-link,
.psd-gallery-wrap .pagination .page-item[class*="active-"].active .page-link {
  background: #1e4c47;
  color: #fff;
}

.psd-gallery-wrap .loadmore {
  display: flex;
  justify-content: center;
}

.psd-gallery-wrap .loadmore .btn,
.psd-gallery-wrap .btn-success {
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: #1e4c47;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.psd-gallery-wrap .loadmore .btn:hover,
.psd-gallery-wrap .btn-success:hover {
  background: #112c29;
}

.psd-video-wrap {
  padding: 20px 0;
}

.psd-video-wrap .psd-gallery-page__shell {
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
}

.psd-video-wrap .psd-gallery-page__header {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.psd-video-wrap .psd-gallery-page__header h2 {
  margin: 0;
  color: #112c29;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.psd-video-wrap .psd-gallery-page__content {
  display: grid;
  gap: 28px;
}

.psd-video-wrap .psd-video-archive__section {
  display: grid;
  gap: 18px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  margin-bottom: 28px;
}

.psd-video-wrap .psd-video-archive__intro {
  display: grid;
  gap: 10px;
}

.psd-video-wrap .psd-video-archive__intro h3 {
  margin: 0;
  color: #112c29;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.1;
}

.psd-video-wrap .psd-video-archive__intro-copy {
  display: grid;
  gap: 8px;
  color: #35534f;
}

.psd-video-wrap .psd-video-archive__intro-copy p:last-child {
  margin-bottom: 0;
}

.psd-video-wrap .psd-video-archive__section--split {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .8fr);
  align-items: center;
  gap: 28px;
}

.psd-video-wrap .psd-video-archive__section--intro-after .psd-video-archive__intro {
  order: 2;
}

.psd-video-wrap .psd-video-archive__section--intro-after .show-gallery-grid {
  order: 1;
}

.psd-video-wrap .psd-video-archive--video_gallery_layout_2 .psd-video-archive__section--split {
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.45fr);
}

.psd-video-wrap .show-gallery-grid--video-archive {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.psd-video-wrap .show-gallery-grid--video_gallery_layout_2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.psd-video-wrap .show-gallery-grid--video_gallery_layout_3,
.psd-video-wrap .show-gallery-grid--video_gallery_layout_4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.psd-video-wrap .show-gallery-grid--video_gallery_layout_5,
.psd-video-wrap .show-gallery-grid--video_gallery_layout_6 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.psd-video-wrap .show-gallery-grid--video_gallery_layout_7 {
  grid-template-columns: 1fr;
  gap: 12px;
}

.psd-video-wrap .show-gallery-card--video {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe8f2;
  border-radius: 14px;
  color: #112c29;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(8, 28, 62, 0.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.psd-video-wrap .show-gallery-card--video:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(18, 40, 82, 0.09);
  border-color: rgba(13, 93, 168, 0.2);
  color: #112c29;
  text-decoration: none;
}

.psd-video-wrap .show-gallery-card--video .show-gallery-card__media {
  position: relative;
}

.psd-video-wrap .show-gallery-card--video .show-gallery-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.psd-video-wrap .show-gallery-card--video-link {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 18px 22px;
}

.psd-video-wrap .show-gallery-card--video-link .show-gallery-card__body {
  flex: 1;
  padding: 0;
}

.psd-video-wrap .show-gallery-card--video-link::after {
  content: "\e742";
  font-family: "font-icons";
  font-size: 1rem;
  color: #1359b5;
}

.psd-video-wrap .show-gallery-card--video .show-gallery-card__body {
  display: grid;
  gap: 6px;
  padding: 14px 18px 16px;
}

.psd-video-wrap .show-gallery-card--video .show-gallery-card__body h3 {
  margin: 0;
  color: #112c29;
  font-size: 1rem;
  line-height: 1.35;
}

.psd-video-wrap .show-gallery-card--video .show-gallery-card__body span {
  color: #6d7e8a;
  font-size: .9rem;
}

.psd-video-wrap .show-gallery-card--video .show-gallery-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.94);
  color: #1359b5;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 25px rgba(8, 28, 62, 0.18);
}

.psd-video-wrap .show-gallery-card--video .show-gallery-card__play .psd-icon {
  width: 24px;
  height: 24px;
}

.psd-video-wrap .show-gallery-card--video .show-gallery-card__image--empty {
  background: linear-gradient(135deg, #0a4f94, #29406f);
}

.psd-video-wrap .show-footer {
  margin-top: 28px;
}

.psd-video-wrap .pagination {
  gap: 8px;
  flex-wrap: wrap;
}

.psd-video-wrap .pagination .page-item .page-link {
  border: 0;
  border-radius: 999px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #112c29;
  box-shadow: 0 8px 18px rgba(17, 44, 41, 0.08);
}

.psd-video-wrap .pagination .page-item.active .page-link,
.psd-video-wrap .pagination .page-item[class*="active-"].active .page-link {
  background: #1e4c47;
  color: #fff;
}

.psd-video-wrap .loadmore {
  display: flex;
  justify-content: center;
}

.psd-video-wrap .loadmore .btn,
.psd-video-wrap .btn-success {
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: #1e4c47;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.psd-video-wrap .loadmore .btn:hover,
.psd-video-wrap .btn-success:hover {
  background: #112c29;
}

.psd-audio-wrap {
  padding: 20px 0;
}

.psd-audio-wrap .psd-gallery-page__shell {
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
}

.psd-audio-wrap .psd-gallery-page__header {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.psd-audio-wrap .psd-gallery-page__header h2 {
  margin: 0;
  color: #112c29;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.psd-audio-wrap .psd-gallery-page__content {
  display: grid;
  gap: 28px;
}

.psd-audio-wrap .psd-audio-archive {
  display: grid;
  gap: 28px;
}

.psd-audio-wrap .psd-audio-archive--audio_gallery_layout_5 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.psd-audio-wrap .psd-audio-archive--audio_gallery_layout_8 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.psd-audio-wrap .psd-audio-archive__section {
  display: grid;
  gap: 18px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 28px;
}

.psd-audio-wrap .psd-audio-archive__section--split {
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.35fr);
  align-items: center;
  gap: 28px;
}

.psd-audio-wrap .psd-audio-archive__section--intro-after .psd-audio-archive__intro {
  order: 2;
}

.psd-audio-wrap .psd-audio-archive__section--intro-after .psd-audio-archive__playlist {
  order: 1;
}

.psd-audio-wrap .psd-audio-archive__section--thumb {
  grid-template-columns: 180px minmax(220px, .95fr) minmax(0, 1.1fr);
  align-items: center;
}

.psd-audio-wrap .psd-audio-archive__section--card {
  height: 100%;
}

.psd-audio-wrap .psd-audio-archive__section--dark {
  background: #112c29;
  color: #fff;
}

.psd-audio-wrap .psd-audio-archive__section--dark .psd-audio-archive__intro h3,
.psd-audio-wrap .psd-audio-archive__section--dark .psd-audio-track__title h4 {
  color: #fff;
}

.psd-audio-wrap .psd-audio-archive__section--dark .psd-audio-archive__intro-copy {
  color: rgba(255, 255, 255, 0.84);
}

.psd-audio-wrap .psd-audio-archive__intro {
  display: grid;
  gap: 10px;
}

.psd-audio-wrap .psd-audio-archive__intro h3 {
  margin: 0;
  color: #112c29;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.1;
}

.psd-audio-wrap .psd-audio-archive__intro-copy {
  display: grid;
  gap: 8px;
  color: #35534f;
}

.psd-audio-wrap .psd-audio-archive__intro-copy p:last-child {
  margin-bottom: 0;
}

.psd-audio-wrap .psd-audio-archive__media {
  align-self: start;
}

.psd-audio-wrap .psd-audio-archive__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(8, 28, 62, 0.14);
}

.psd-audio-wrap .psd-audio-archive__playlist {
  display: grid;
  gap: 16px;
}

.psd-audio-wrap .psd-audio-archive__playlist--compact {
  gap: 14px;
}

.psd-audio-wrap .psd-audio-archive__playlist--stacked {
  gap: 18px;
}

.psd-audio-wrap .psd-audio-track {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #dfe8f2;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(8, 28, 62, 0.05);
}

.psd-audio-wrap .psd-audio-track--inline {
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.psd-audio-wrap .psd-audio-track--reverse {
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
}

.psd-audio-wrap .psd-audio-track--reverse .psd-audio-track__title {
  order: 1;
}

.psd-audio-wrap .psd-audio-track--reverse .psd-audio-track__player {
  order: 2;
}

.psd-audio-wrap .psd-audio-track__title h4 {
  margin: 0;
  color: #112c29;
  font-size: 1rem;
  line-height: 1.35;
}

.psd-audio-wrap .psd-audio-track__player {
  min-width: 0;
}

.psd-audio-wrap .psd-audio-track__player audio {
  width: 100%;
}

.psd-audio-wrap .psd-audio-archive--audio_gallery_layout_5 .psd-audio-archive__section:nth-child(3n + 1) {
  background: rgba(255, 255, 255, 0.72);
}

.psd-audio-wrap .psd-audio-archive--audio_gallery_layout_5 .psd-audio-archive__section:nth-child(3n + 2) {
  background: #0f5b8d;
  color: #fff;
}

.psd-audio-wrap .psd-audio-archive--audio_gallery_layout_5 .psd-audio-archive__section:nth-child(3n + 2) .psd-audio-archive__intro h3,
.psd-audio-wrap .psd-audio-archive--audio_gallery_layout_5 .psd-audio-archive__section:nth-child(3n + 2) .psd-audio-track__title h4 {
  color: #ffd765;
}

.psd-audio-wrap .psd-audio-archive--audio_gallery_layout_5 .psd-audio-archive__section:nth-child(3n + 2) .psd-audio-archive__intro-copy {
  color: rgba(255, 255, 255, 0.84);
}

.psd-audio-wrap .psd-audio-archive--audio_gallery_layout_5 .psd-audio-archive__section:nth-child(3n + 3) {
  background: #112c29;
  color: #fff;
}

.psd-audio-wrap .psd-audio-archive--audio_gallery_layout_5 .psd-audio-archive__section:nth-child(3n + 3) .psd-audio-archive__intro h3,
.psd-audio-wrap .psd-audio-archive--audio_gallery_layout_5 .psd-audio-archive__section:nth-child(3n + 3) .psd-audio-track__title h4 {
  color: #b5c7d6;
}

.psd-audio-wrap .psd-audio-archive--audio_gallery_layout_5 .psd-audio-archive__section:nth-child(3n + 3) .psd-audio-archive__intro-copy {
  color: rgba(255, 255, 255, 0.84);
}

.psd-audio-wrap .psd-audio-archive--audio_gallery_layout_5 .psd-audio-archive__section:nth-child(3n + 2) .psd-audio-track,
.psd-audio-wrap .psd-audio-archive--audio_gallery_layout_5 .psd-audio-archive__section:nth-child(3n + 3) .psd-audio-track,
.psd-audio-wrap .psd-audio-archive__section--dark .psd-audio-track {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.psd-audio-wrap .psd-audio-archive--audio_gallery_layout_8 .psd-audio-archive__section {
  padding: 20px;
}

.psd-audio-wrap .show-footer {
  margin-top: 28px;
}

.psd-audio-wrap .pagination {
  gap: 8px;
  flex-wrap: wrap;
}

.psd-audio-wrap .pagination .page-item .page-link {
  border: 0;
  border-radius: 999px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #112c29;
  box-shadow: 0 8px 18px rgba(17, 44, 41, 0.08);
}

.psd-audio-wrap .pagination .page-item.active .page-link,
.psd-audio-wrap .pagination .page-item[class*="active-"].active .page-link {
  background: #1e4c47;
  color: #fff;
}

.psd-audio-wrap .loadmore {
  display: flex;
  justify-content: center;
}

.psd-audio-wrap .loadmore .btn,
.psd-audio-wrap .btn-success {
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: #1e4c47;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.psd-audio-wrap .loadmore .btn:hover,
.psd-audio-wrap .btn-success:hover {
  background: #112c29;
}

@media (max-width: 1199.98px) {
  .psd-gallery-wrap .psd-gallery-page__shell {
    width: calc(100% - 36px);
  }

  .psd-gallery-wrap .psd-gallery-archive--top-bottom-grid {
    grid-template-columns: 1fr;
  }

  .psd-gallery-wrap .show-gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .psd-gallery-wrap .psd-gallery-archive--left-right-mutilple .show-gallery-grid--left-right-mutilple,
  .psd-gallery-wrap .psd-gallery-archive--bottom-top .show-gallery-grid--bottom-top,
  .psd-gallery-wrap .psd-gallery-archive--top-bottom .show-gallery-grid--top-bottom {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .psd-video-wrap .psd-gallery-page__shell {
    width: calc(100% - 36px);
  }

  .psd-video-wrap .show-gallery-grid--video_gallery_layout_3,
  .psd-video-wrap .show-gallery-grid--video_gallery_layout_4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .psd-audio-wrap .psd-gallery-page__shell {
    width: calc(100% - 36px);
  }

  .psd-audio-wrap .psd-audio-archive--audio_gallery_layout_5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .psd-audio-wrap .psd-audio-archive--audio_gallery_layout_8 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .psd-audio-wrap .psd-audio-archive__section--thumb {
    grid-template-columns: 160px minmax(220px, .9fr) minmax(0, 1fr);
  }
}

@media (max-width: 991.98px) {
  .psd-gallery-wrap .psd-gallery-archive__section--split,
  .psd-gallery-wrap .psd-gallery-archive--right-left .psd-gallery-archive__section--split {
    grid-template-columns: 1fr;
  }

  .psd-gallery-wrap .psd-gallery-archive__section--intro-after .psd-gallery-archive__intro,
  .psd-gallery-wrap .psd-gallery-archive__section--intro-after .show-gallery-grid {
    order: 0;
  }

  .psd-gallery-wrap .show-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .psd-gallery-wrap .show-gallery-grid--detail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .psd-gallery-wrap .psd-gallery-archive--left-right-mutilple .show-gallery-grid--left-right-mutilple,
  .psd-gallery-wrap .psd-gallery-archive--bottom-top .show-gallery-grid--bottom-top,
  .psd-gallery-wrap .psd-gallery-archive--top-bottom .show-gallery-grid--top-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .psd-video-wrap .psd-video-archive__section--split,
  .psd-video-wrap .psd-video-archive--video_gallery_layout_2 .psd-video-archive__section--split {
    grid-template-columns: 1fr;
  }

  .psd-video-wrap .psd-video-archive__section--intro-after .psd-video-archive__intro,
  .psd-video-wrap .psd-video-archive__section--intro-after .show-gallery-grid {
    order: 0;
  }

  .psd-video-wrap .show-gallery-grid--video-archive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .psd-video-wrap .show-gallery-grid--video_gallery_layout_7 {
    grid-template-columns: 1fr;
  }

  .psd-audio-wrap .psd-audio-archive--audio_gallery_layout_5,
  .psd-audio-wrap .psd-audio-archive--audio_gallery_layout_8 {
    grid-template-columns: 1fr;
  }

  .psd-audio-wrap .psd-audio-archive__section--split,
  .psd-audio-wrap .psd-audio-archive__section--thumb {
    grid-template-columns: 1fr;
  }

  .psd-audio-wrap .psd-audio-archive__section--intro-after .psd-audio-archive__intro,
  .psd-audio-wrap .psd-audio-archive__section--intro-after .psd-audio-archive__playlist {
    order: 0;
  }
}

@media (max-width: 767.98px) {
  .psd-gallery-wrap .psd-gallery-page__shell {
    width: calc(100% - 24px);
  }

  .psd-gallery-wrap .psd-gallery-archive__section {
    padding: 20px;
    border-radius: 22px;
  }

  .psd-gallery-wrap .show-gallery-grid,
  .psd-gallery-wrap .show-gallery-grid--detail {
    grid-template-columns: 1fr;
  }

  .psd-video-wrap .psd-gallery-page__shell {
    width: calc(100% - 24px);
  }

  .psd-video-wrap .psd-video-archive__section {
    padding: 20px;
    border-radius: 22px;
  }

  .psd-video-wrap .show-gallery-grid--video-archive,
  .psd-video-wrap .show-gallery-grid--video_gallery_layout_2,
  .psd-video-wrap .show-gallery-grid--video_gallery_layout_3,
  .psd-video-wrap .show-gallery-grid--video_gallery_layout_4,
  .psd-video-wrap .show-gallery-grid--video_gallery_layout_5,
  .psd-video-wrap .show-gallery-grid--video_gallery_layout_6,
  .psd-video-wrap .show-gallery-grid--video_gallery_layout_7 {
    grid-template-columns: 1fr;
  }

  .psd-audio-wrap .psd-gallery-page__shell {
    width: calc(100% - 24px);
  }

  .psd-audio-wrap .psd-audio-archive__section {
    padding: 20px;
    border-radius: 22px;
  }

  .psd-audio-wrap .psd-audio-track--inline,
  .psd-audio-wrap .psd-audio-track--reverse {
    grid-template-columns: 1fr;
  }
}

body.page-show-details-full-width[class*="show-detail-"] .psd-quotes-programbook {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

body.page-show-details-full-width[class*="show-detail-"] .quote-item .quote {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

body.page-show-details-full-width[class*="show-detail-"] .quote-item .desc {
  color: var(--color-blue-dark);
  font-size: 18px;
  line-height: 1.55;
  padding-top: 60px;
}

body.page-show-details-full-width[class*="show-detail-"] .flipbook-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

body.page-show-details-full-width[class*="show-detail-"] .flipbook-controls button,
body.page-show-details-full-width[class*="show-detail-"] .flipbook-controls a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  background: #fff;
  border: 1px solid #dce6f2;
  border-radius: 999px;
  color: var(--color-blue-dark);
}

body.page-show-details-full-width[class*="show-detail-"] .psd-faqs-sponsors {
  display: flex;
  gap: 40px;
}
body.page-show-details-full-width[class*="show-detail-"] .psd-faqs-sponsors .psd-faqs {
  width: 60%;
}
body.page-show-details-full-width[class*="show-detail-"] .psd-faqs-sponsors .psd-sponsors {
  width: 40%;
}

body.page-show-details-full-width[class*="show-detail-"] .show-detail-faq + .show-detail-faq {
  margin-top: 18px;
}

body.page-show-details-full-width[class*="show-detail-"] .show-detail-sponsors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

body.page-show-details-full-width[class*="show-detail-"] .detail-sponsor-item {
  display: grid;
  place-items: center;
  min-height: 102px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e1eaf4;
  border-radius: 10px;
  text-align: center;
}

body.page-show-details-full-width[class*="show-detail-"] .detail-sponsor-item img {
  max-height: 56px;
  object-fit: contain;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-artists-list > div,
body.page-show-details-full-width[class*="show-detail-"] .show-listing-grid > div {
  margin-bottom: 18px;
}

body.page-show-details-full-width[class*="show-detail-"] .psd-artist-item,
body.page-show-details-full-width[class*="show-detail-"] .show-item {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 12px 26px rgba(8, 28, 62, 0.05);
}

body.page-show-details-full-width[class*="show-detail-"] .psd-artist-thumb img,
body.page-show-details-full-width[class*="show-detail-"] .show-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body.page-show-details-full-width[class*="show-detail-"] .show-detail-related.py-5 {
  padding: 60px 0;
  background: var(--color-blue);
}
body.page-show-details-full-width[class*="show-detail-"] .show-detail-related__heading h2,
body.page-show-details-full-width[class*="show-detail-"] .show-detail-related.py-5 #youMayAlsoLikeHeading {
  color: #fff;
}
body.page-show-details-full-width[class*="show-detail-"] .show-detail-related__carousel .tns-controls button,
body.page-show-details-full-width[class*="show-detail-"] .show-detail-related__carousel .tns-controls button:hover,
body.page-show-details-full-width[class*="show-detail-"] .show-detail-related__carousel .tns-controls button:focus-visible {
  color: #fff;
}
body.page-show-details-full-width[class*="show-detail-"] .show-detail-related__carousel .tns-outer {
  display: flex;
  flex-direction: column;
}
body.page-show-details-full-width[class*="show-detail-"] .show-detail-related__carousel .tns-controls {
  position: static;
  order: -1;
  justify-content: flex-start;
  margin: 0 0 1rem;
}

body.page-show-details-full-width[class*="show-detail-"] .show-detail-related__carousel .tns-item {
  display: inline-flex;
}

body.page-show-details-full-width[class*="show-detail-"] .show-detail-related__slide {
  display: flex;
  height: 100%;
}

body.page-show-details-full-width[class*="show-detail-"] .show-detail-related__slide .event-card {
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  body.page-show-details-full-width[class*="show-detail-"] .show-detail-related__slide,
  body.page-show-details-full-width[class*="show-detail-"] .show-detail-related__slide .event-card {
    width: 100%;
  }
}

body.page-show-details-full-width[class*="show-detail-"] .psd-video-gallery {
  padding: 60px 0;
  margin: 0;
}
body.page-show-details-full-width[class*="show-detail-"] .psd-image-gallery {
  padding: 0 0 60px 0;
  margin: 0;
}
body.page-show-details-full-width[class*="show-detail-"] .psd-artists {
  padding: 60px 0;
  margin: 0;
  background: #e8e8e8;
}
body.page-show-details-full-width[class*="show-detail-"] .accordion-sponsors-section{
  padding: 60px 0;
  margin: 0;
  background: #fff;
}
body.page-show-details-full-width[class*="show-detail-"] .psd-quotes-programbook {
  padding: 60px 0;
  margin: 0;
  background: #e8e8e8;
}

body.has-open-lightbox {
  overflow: hidden;
}

.site-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.site-lightbox.is-active {
  display: block;
}

.site-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 22, 40, 0.92);
  backdrop-filter: blur(8px);
}

.site-lightbox__dialog {
  position: relative;
  width: min(1400px, calc(100vw - 32px));
  height: min(92vh, calc(100vh - 32px));
  margin: 16px auto;
  padding: 52px 16px 16px;
}

.site-lightbox__stage-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 18px;
  background: linear-gradient(180deg, rgba(12, 23, 44, 0.96) 0%, rgba(9, 17, 33, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.site-lightbox__panel {
  position: relative;
  height: 100%;
  min-width: 0;
}

.site-lightbox__stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.24);
}

.site-lightbox__image,
.site-lightbox__frame {
  display: block;
  max-width: 100%;
  max-height: 100%;
  background: transparent;
  border: 0;
}

.site-lightbox__image {
  width: auto;
  height: auto;
  object-fit: contain;
  margin: auto;
}

.site-lightbox__frame {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}

.site-lightbox__meta {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 16px;
  max-width: min(520px, calc(100% - 64px));
  background: linear-gradient(180deg, rgba(10, 20, 37, 0.76) 0%, rgba(10, 20, 37, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.site-lightbox__counter {
  flex: 0 0 auto;
  min-width: 70px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(18, 103, 185, 0.22);
  border: 1px solid rgba(82, 158, 255, 0.28);
  color: rgba(255, 255, 255, 0.88);
  font-size: .88rem;
  font-weight: 700;
  text-align: center;
}

.site-lightbox__toolbar .site-lightbox__counter:empty {
  display: none;
}

.site-lightbox__caption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  color: #fff;
}

.site-lightbox__caption strong {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

.site-lightbox__caption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: .92rem;
  line-height: 1.5;
}

.site-lightbox:not(.has-caption) .site-lightbox__meta {
  display: none;
}

.site-lightbox__close,
.site-lightbox__nav {
  position: absolute;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(5, 15, 30, 0.72);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.site-lightbox__close:hover,
.site-lightbox__nav:hover {
  background: rgba(18, 103, 185, 0.92);
}

.site-lightbox__toolbar {
  position: absolute;
  top: 0;
  right: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 0 12px;
}

.site-lightbox__close {
  top: 0;
  right: 0;
  font-size: 1.8rem;
  line-height: 1;
}

.site-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  line-height: 1;
}

.site-lightbox__nav--prev {
  left: 24px;
}

.site-lightbox__nav--next {
  right: 24px;
}

@media (max-width: 1199.98px) {
  body.page-show-details-full-width[class*="show-detail-"] .psd-shell,
  body.page-show-details-full-width[class*="show-detail-"] .psd-shell--wide {
    width: calc(100% - 36px);
  }

  body.page-show-details-full-width[class*="show-detail-"] .show-gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.page-show-details-full-width[class*="show-detail-"] .show-gallery-grid--video {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  body.page-show-details-full-width[class*="show-detail-"] .psd-banner-info-inner,
  body.page-show-details-full-width[class*="show-detail-"] .psd-quotes-programbook {
    grid-template-columns: 1fr;
  }

  body.page-show-details-full-width[class*="show-detail-"] .psd-faqs-sponsors,
  body.page-show-details-full-width[class*="show-detail-"] .quotes-programbook-inner {
    flex-direction: column;
    gap: 24px;
  }

  body.page-show-details-full-width[class*="show-detail-"] .psd-faqs-sponsors .psd-faqs,
  body.page-show-details-full-width[class*="show-detail-"] .psd-faqs-sponsors .psd-sponsors,
  body.page-show-details-full-width[class*="show-detail-"] .quotes-programbook-inner .psd-programbook,
  body.page-show-details-full-width[class*="show-detail-"] .quotes-programbook-inner .psd-quotes {
    width: 100%;
    min-width: 0;
  }

  body.page-show-details-full-width[class*="show-detail-"] .tickets-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  body.page-show-details-full-width[class*="show-detail-"] .show-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  body.page-show-details-full-width[class*="show-detail-"] {
    overflow-x: hidden;
  }

  body.page-show-details-full-width[class*="show-detail-"] .psd-banner-bg img,
  body.page-show-details-full-width[class*="show-detail-"] .slider-main-img img {
    height: 42vh;
  }

  body.page-show-details-full-width[class*="show-detail-"] .psd-shell,
  body.page-show-details-full-width[class*="show-detail-"] .psd-shell--wide {
    width: calc(100% - 24px);
  }

  body.page-show-details-full-width[class*="show-detail-"] .psd-banner-info {
    padding: 30px 0 0 0;
  }

  body.page-show-details-full-width[class*="show-detail-"] .psd-banner-info-inner {
    gap: 20px;
    padding: 22px 0 14px;
  }

  body.page-show-details-full-width[class*="show-detail-"] .show-gallery-grid,
  body.page-show-details-full-width[class*="show-detail-"] .show-gallery-grid--video,
  body.page-show-details-full-width[class*="show-detail-"] .eventsULBuyTickets .tikitm {
    grid-template-columns: 1fr;
  }

  body.page-show-details-full-width[class*="show-detail-"] .quotes-programbook-inner .psd-programbook,
  body.page-show-details-full-width[class*="show-detail-"] .quotes-programbook-inner .psd-quotes {
    padding: 22px 20px 20px;
  }

  body.page-show-details-full-width[class*="show-detail-"] .psd-section,
  body.page-show-details-full-width[class*="show-detail-"] .show-content-info,
  body.page-show-details-full-width[class*="show-detail-"] .accordion-sponsors-section,
  body.page-show-details-full-width[class*="show-detail-"] .psd-quotes-programbook,
  body.page-show-details-full-width[class*="show-detail-"] .show-detail-related.py-5,
  body.page-show-details-full-width[class*="show-detail-"] .psd-faqs-sponsors,
  body.page-show-details-full-width[class*="show-detail-"] .quotes-programbook-inner,
  body.page-show-details-full-width[class*="show-detail-"] .container-fluid.psd-shell,
  body.page-show-details-full-width[class*="show-detail-"] .container-fluid.psd-shell.psd-shell--wide {
    max-width: 100%;
    min-width: 0;
  }

  body.page-show-details-full-width[class*="show-detail-"] .tickets-heading {
    align-items: flex-start;
    padding: 18px 18px 14px;
  }

  body.page-show-details-full-width[class*="show-detail-"] .psd-tabs-inner {
    display: none;
  }

  body.page-show-details-full-width[class*="show-detail-"] .psd-tabs-mobile {
    display: block;
    padding-bottom: 10px;
  }

  body.page-show-details-full-width[class*="show-detail-"] .psd-events-table__head {
    display: none;
  }

  body.page-show-details-full-width[class*="show-detail-"] .eventsULBuyTickets .tikitm {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  body.page-show-details-full-width[class*="show-detail-"] .psd-event-field-label.visually-hidden,
  body.page-show-details-full-width[class*="show-detail-"] .psd-event-action-label.visually-hidden {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    display: block;
    color: var(--color-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: normal;
  }

  body.page-show-details-full-width[class*="show-detail-"] .psd-event-date,
  body.page-show-details-full-width[class*="show-detail-"] .psd-event-time {
    display: block;
  }

  body.page-show-details-full-width[class*="show-detail-"] .psd-event-action-label.visually-hidden {
    margin-top: 2px;
  }

  body.page-show-details-full-width[class*="show-detail-"] .psd-event-action {
    justify-content: center;
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(13, 93, 168, 0.16);
    border-radius: 10px;
    background: #f4f8fd;
  }

  .site-lightbox__dialog {
    width: calc(100% - 20px);
    height: min(88vh, calc(100vh - 20px));
    margin: 10px auto;
    padding: 44px 12px 12px;
  }

  .site-lightbox__stage-wrap {
    padding: 12px;
    border-radius: 16px;
  }

  .site-lightbox__meta {
    right: 20px;
    bottom: 20px;
    left: 20px;
    max-width: none;
  }

  .site-lightbox__nav {
    width: 42px;
    height: 42px;
  }

  .site-lightbox__nav--prev {
    left: 8px;
  }

  .site-lightbox__nav--next {
    right: 8px;
  }
}
#flipbook{
    width:100%;
    max-width:100%;
    height:100%;
}

.fpage{
    background:white;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.fpage img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.flipbook-controls{
    margin-top:40px;
    display:flex;
    gap:10px;
    justify-content: center;
}

.flipbook-controls button, .flipbook-controls a{
    padding:5px 10px;
    font-size:13px;
    border:none;
    background:#fff;
    color:#000 !important;
    cursor:pointer;
    border-radius:2px;
}

.flipbook-controls button:hover, .flipbook-controls a:hover{
    background:#d8b568;
}
.parent-container{
    width: 100%;
    max-width: 100%;
}
#flipbook{
    transition: transform 0.3s ease;
    transform-origin: top center;
    will-change: transform;
    max-width: 100%;
}

.parent-container{
    overflow: hidden;
    position: relative;
    cursor: default;
    touch-action: auto;
}

@media (max-width: 767.98px) {
  .parent-container,
  #flipbook,
  #flipbook .stf__parent,
  #flipbook .stf__block,
  #flipbook .stf__wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }

  #flipbook .stf__parent,
  #flipbook .stf__block,
  #flipbook .stf__wrapper {
    left: 0 !important;
    margin-left: 0 !important;
  }
}

.quotes-programbook-inner{
  display: flex;
  gap: 40px;
}
.quotes-programbook-inner .psd-programbook {
  width: 60%;
  padding: 28px 30px 24px;
  background: #fff;
  border: 1px solid #e1eaf4;
  border-radius: 5px;
}
.quotes-programbook-inner .psd-quotes {
  width: 40%;
  padding: 28px 30px 24px;
  background: #fff;
  border: 1px solid #e1eaf4;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quotes-programbook-inner .psd-quotes-carousel {
  position: relative;
}

.quotes-programbook-inner .psd-quotes-carousel .quote {
  position: relative;
  padding-top: 64px;
  padding-left: 8px;
}

.quotes-programbook-inner .psd-quotes-carousel .quote::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 0;
  color: #1c5fb4;
  font-size: 5.5rem;
  line-height: 0.85;
  font-weight: 700;
  opacity: 0.38;
  pointer-events: none;
}

.quotes-programbook-inner .psd-quotes-carousel .tns-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.quotes-programbook-inner .psd-quotes-carousel .tns-outer [data-action] {
  display: block;
}

.quotes-programbook-inner .psd-quotes-carousel .tns-nav button {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cbd8e8;
  opacity: 1;
  box-shadow: none;
  font-size: 0;
}

.quotes-programbook-inner .psd-quotes-carousel .tns-nav .tns-nav-active {
  background: #1c5fb4;
}
.psd-quotes .tns-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.psd-quotes .tns-nav button {
  width: 10px;
  height: 10px;
  background: #aeaeae;
  border-radius: 50%;
}

body.page-artist-details-v2 .artist-detail-page {
  padding: 0 0 72px;
  background:
    radial-gradient(circle at top left, rgba(13, 93, 168, 0.12), transparent 34%),
    linear-gradient(180deg, #eef4fa 0%, #e7edf5 100%);
}

body.page-artist-details-v2 .artist-detail-page__hero {
  padding: 56px 0 0;
}

body.page-artist-details-v2 .artist-detail-page__panel,
body.page-artist-details-v2 .artist-detail-page__section {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(22, 63, 123, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(20, 43, 84, 0.08);
}

body.page-artist-details-v2 .artist-detail-page__panel {
  position: relative;
  overflow: hidden;
  padding: 36px;
}

body.page-artist-details-v2 .artist-detail-page__panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #0d5da8 0%, #5ca8df 48%, #163f7b 100%);
}

body.page-artist-details-v2 .artist-detail-page__intro {
  row-gap: 28px;
}

body.page-artist-details-v2 .artist-detail-page__media {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

body.page-artist-details-v2 .artist-detail-page__portrait {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #dbe6f2;
}

body.page-artist-details-v2 .artist-detail-page__credits {
  margin-top: 0 !important;
  text-align: left;
}

body.page-artist-details-v2 .artist-credit-details {
  padding: 18px 18px 16px;
  border: 1px solid rgba(13, 93, 168, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(244, 248, 252, 0.92), rgba(255, 255, 255, 0.98));
  box-shadow: 0 10px 24px rgba(18, 40, 82, 0.06);
}

body.page-artist-details-v2 .artist-credit-details + .artist-credit-details {
  margin-top: 14px;
}

body.page-artist-details-v2 .artist-credit-details h4,
body.page-artist-details-v2 .artist-credit-details h5,
body.page-artist-details-v2 .artist-credit-details h6 {
  margin: 0;
}

body.page-artist-details-v2 .artist-credit-details h4 {
  color: #163f7b;
  font-size: 1rem;
}

body.page-artist-details-v2 .artist-credit-details h5 {
  margin-top: 6px;
  color: #0d5da8;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.page-artist-details-v2 .artist-credit-details h6 {
  margin-top: 10px;
  color: #44546f;
  font-size: 0.92rem;
  line-height: 1.55;
}

body.page-artist-details-v2 .artist-detail-page__header {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(22, 63, 123, 0.12);
}

body.page-artist-details-v2 .artist-detail-page__header h1 {
  margin-bottom: 12px !important;
  color: #163f7b;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.05;
}

body.page-artist-details-v2 .artist-detail-page__designation {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(13, 93, 168, 0.08);
  color: #0d5da8;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body.page-artist-details-v2 .artist-detail-page__bio {
  padding-bottom: 0 !important;
  color: #41506a;
  font-size: 1.02rem;
  line-height: 1.82;
}

body.page-artist-details-v2 .artist-detail-page__bio > :last-child,
body.page-artist-details-v2 .artist-detail-page__bio p:last-child {
  margin-bottom: 0;
}

body.page-artist-details-v2 .artist-detail-page__bio h1,
body.page-artist-details-v2 .artist-detail-page__bio h2,
body.page-artist-details-v2 .artist-detail-page__bio h3,
body.page-artist-details-v2 .artist-detail-page__bio h4 {
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  color: #163f7b;
}

body.page-artist-details-v2 .artist-detail-page__bio ul,
body.page-artist-details-v2 .artist-detail-page__bio ol {
  padding-left: 1.25rem;
}

body.page-artist-details-v2 .artist-detail-page__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

body.page-artist-details-v2 .artist-detail-page__social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #163f7b;
  color: #fff;
  box-shadow: 0 12px 24px rgba(22, 63, 123, 0.2);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

body.page-artist-details-v2 .artist-detail-page__social .social-icon:hover {
  background: #0d5da8;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(13, 93, 168, 0.24);
}

body.page-artist-details-v2 .artist-detail-page__section-wrap {
  margin-top: 40px;
}

body.page-artist-details-v2 .artist-detail-page__section {
  width: 100%;
  padding: 28px;
}

body.page-artist-details-v2 .artist-detail-page__section-heading {
  margin-bottom: 20px;
}

body.page-artist-details-v2 .artist-detail-page__section-heading h3 {
  margin-bottom: 0;
  color: #163f7b;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

body.page-artist-details-v2 .artist-detail-page__show-card {
  width: 100%;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #f7fafd;
  border: 1px solid rgba(13, 93, 168, 0.12);
  box-shadow: 0 18px 42px rgba(16, 42, 81, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

body.page-artist-details-v2 .artist-detail-page__show-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(16, 42, 81, 0.12);
}

body.page-artist-details-v2 .artist-detail-page__show-media {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

body.page-artist-details-v2 .artist-detail-page__show-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 240ms ease;
}

body.page-artist-details-v2 .artist-detail-page__show-card:hover .artist-detail-page__show-media img {
  transform: scale(1.03);
}

body.page-artist-details-v2 .artist-detail-page__show-card .item-cols:last-child {
  padding: 0 22px 22px;
}

body.page-artist-details-v2 .artist-detail-page__show-card .entry-title h3 {
  margin-bottom: 0;
  font-size: 1.24rem;
  line-height: 1.35;
}

body.page-artist-details-v2 .artist-detail-page__show-card .entry-title a {
  color: #163f7b;
}

body.page-artist-details-v2 .artist-detail-page__show-card .show_like_btn {
  min-height: 42px;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #163f7b, #0d5da8);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 14px 26px rgba(22, 63, 123, 0.22);
}

body.page-artist-details-v2 .artist-detail-page__show-card .show_like_btn:hover {
  background: linear-gradient(135deg, #0d5da8, #3f83c9);
}

body.page-artist-details-v2 .artist-detail-page__section--gallery {
  display: flex;
  flex-direction: column;
  height: 100%;
}

body.page-artist-details-v2 .artist-detail-page__gallery-grid {
  gap: 18px;
}

body.page-artist-details-v2 .artist-detail-page__gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #dbe6f2;
  box-shadow: 0 16px 34px rgba(18, 40, 82, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

body.page-artist-details-v2 .artist-detail-page__gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(18, 40, 82, 0.14);
}

body.page-artist-details-v2 .artist-detail-page__gallery-item .show-gallery-card,
body.page-artist-details-v2 .artist-detail-page__video-card .show-gallery-card {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: 18px;
}

body.page-artist-details-v2 .artist-detail-page__video-card {
  overflow: hidden;
  border-radius: 18px;
}

body.page-artist-details-v2 .artist-detail-page__video-card .bg-overlay {
  border-radius: 18px;
}

@media (max-width: 991.98px) {
  body.page-artist-details-v2 .artist-detail-page {
    padding-bottom: 56px;
  }

  body.page-artist-details-v2 .artist-detail-page__hero {
    padding-top: 34px;
  }

  body.page-artist-details-v2 .artist-detail-page__panel,
  body.page-artist-details-v2 .artist-detail-page__section {
    border-radius: 20px;
  }

  body.page-artist-details-v2 .artist-detail-page__panel {
    padding: 24px;
  }

  body.page-artist-details-v2 .artist-detail-page__portrait {
    max-width: 380px;
    margin: 0 auto;
  }

  body.page-artist-details-v2 .artist-detail-page__credits {
    max-width: 380px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 767.98px) {
  body.page-artist-details-v2 .artist-detail-page__panel,
  body.page-artist-details-v2 .artist-detail-page__section {
    padding: 20px;
  }

  body.page-artist-details-v2 .artist-detail-page__header {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  body.page-artist-details-v2 .artist-detail-page__header h1 {
    font-size: 2rem;
  }

  body.page-artist-details-v2 .artist-detail-page__bio {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  body.page-artist-details-v2 .artist-detail-page__section-wrap {
    margin-top: 28px;
  }

  body.page-artist-details-v2 .artist-detail-page__gallery-item .show-gallery-card,
  body.page-artist-details-v2 .artist-detail-page__video-card .show-gallery-card {
    min-height: 200px;
  }
}
