﻿/* =========================================
   FONT FACE
========================================= */

@font-face {
    font-family: "Citron";
    src: url("/fonts/RGCironClassic-Extrabold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}


/* =========================================
   BASE VARIABLES
========================================= */

:root {
    /* Fonts */
    --font-primary: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-secondary: "Citron", sans-serif;
    /* Layout */
    --container-width: 1320px;
    --section-padding: 5rem;
    /* Brand colors */
    --default-black: #000000;
    --default-cream: #eee5d8;
    --default-brown: #8f6638;
    --default-paper: #f7f2ea;
    --default-paper-dark: #EDE4D8;
    --default-gold: #EDB52A;
    --sso-pink: #ED145B;
    --sso-plum: #330025;
    --sso-white: #ffffff;
    --sso-peach: #F8A692;
    --bh-maroon: #3E0000;
    --bh-red: #AD1015;
    --bh-dark-orange: #C73422;
    --bh-coral: #ED523E;
    --bh-coral-on-cream: #B33E2F;
    /* Text / backgrounds */
    --text-color: var(--default-black);
    --text-muted: var(--default-brown);
    --bg-body: var(--sso-paper);
    /* Links */
    --link-color: var(--bh-coral);
    --link-hover: var(--bh-maroon);
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    /* Font weights */
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-heavy: 800;
    /*
    Fluid type scale
    Desktop values match the design.
    Mobile values scale down slightly.
  */
    /* Display / Ciron Classic */
    --text-ciron-classic: clamp(2.75rem, 2rem + 3vw, 4rem); /* 44px → 64px */
    --text-ciron-classic-m: clamp(2rem, 1.5rem + 2vw, 2.5rem); /* 32px → 40px */
    /* Headings */
    --text-heading-xxl: clamp(2.75rem, 2rem + 3vw, 4rem); /* 44px → 64px */
    --text-heading-xl: clamp(2rem, 1.5rem + 2vw, 2.5rem); /* 32px → 40px */
    --text-heading-l: clamp(1.625rem, 1.25rem + 1.5vw, 2rem); /* 26px → 32px */
    --text-heading-m: clamp(1.25rem, 1rem + 1vw, 1.5rem); /* 20px → 24px */
    --text-heading-s: clamp(1.125rem, 1rem + 0.5vw, 1.25rem); /* 18px → 20px */
    --text-heading-xs: clamp(1rem, 0.9rem + 0.4vw, 1.125rem); /* 16px → 18px */
    /* Body */
    --text-body-large: clamp(1.125rem, 1rem + 0.5vw, 1.25rem); /* 18px → 20px */
    --text-body: clamp(0.875rem, 0.85rem + 0.15vw, 1rem); /* 14px → 16px  Updated font size so it's smaller*/
    --text-body-small: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem); /* 12px → 14px */
    /* Caption / footnote */
    --text-caption: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem); /* 12px → 14px */
    /* Links / buttons */
    --text-link: var(--text-body);
    --text-link-arrow: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); /* 16px → 18px */
    /* Line heights */
    --line-height-ciron-classic: 1.1;
    --line-height-heading-xl: 1.2; /* 40px / 48px */
    --line-height-heading-l: 1.0625; /* 32px / 34px */
    --line-height-heading-m: 1.1; /* 24px / 32px */
    --line-height-heading-s: 1.1; /* 20px / 28px */
    --line-height-heading-xs: 1.1; /* 18px / 24px */

    --line-height-body-large: 1.5; /* 20px / 30px */
    --line-height-body: normal; /* 18px / 28px */
    --line-height-body-small: 1.5; /* 16px / 24px */
    --line-height-caption: 1.43; /* 14px / 20px */

    --line-height-tight: 1.2;
    --line-height-base: var(--line-height-body);
    --line-height-loose: 1.7;
    /* Semantic type tokens */
    --text-display: var(--text-ciron-classic);
    --text-display-sm: var(--text-ciron-classic-m);
    --text-hero: var(--text-ciron-classic);
    --text-subline: var(--text-heading-xl);
    --text-menu: var(--text-body);
    --text-button: var(--text-link-arrow);
    /* Bootstrap token mapping */
    --bs-body-font-family: var(--font-primary);
    --bs-body-font-size: var(--text-body);
    --bs-body-line-height: var(--line-height-body);
    --bs-body-color: var(--text-color);
    --bs-body-bg: var(--bg-body);
    --bs-link-color: var(--link-color);
    --bs-link-hover-color: var(--link-hover);
}


/* =========================================
   GLOBAL BASE
========================================= */

body {
    font-family: var(--font-primary);
    font-size: var(--text-body);
    line-height: var(--line-height-body);
    font-weight: var(--weight-regular);
    color: var(--text-color);
    background: var(--bg-body);
}

.syos-seats :is(text, tspan),
svg#venue :is(text, tspan) {
    font-family: var(--font-primary) !important;
}

.syos-seats :is(text, tspan) {
    font-weight: var(--weight-bold) !important;
}

.GeneralContentPage {
    background-color: var(--default-paper);
}


/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: var(--weight-bold);
    margin-top: 0;
    margin-bottom: var(--space-sm);
    color: inherit;
}

h1,
.heading-xl,
.text-heading-xl {
    font-size: var(--text-heading-xl);
    line-height: var(--line-height-heading-xl);
    font-weight: var(--weight-bold);
}

h2,
.heading-l,
.text-heading-l {
    font-size: var(--text-heading-l);
    line-height: var(--line-height-heading-l);
    font-weight: var(--weight-bold);
}

h3,
.heading-m,
.text-heading-m {
    font-size: var(--text-heading-m);
    line-height: var(--line-height-heading-m);
    font-weight: var(--weight-bold);
}

h4,
.heading-s,
.text-heading-s {
    font-size: var(--text-heading-s);
    line-height: var(--line-height-heading-s);
    font-weight: var(--weight-bold);
}

h5,
h6,
.heading-xs,
.text-heading-xs {
    font-size: var(--text-heading-xs);
    line-height: var(--line-height-heading-xs);
    font-weight: var(--weight-bold);
}

p,
.body,
.text-body {
    font-size: var(--text-body);
    line-height: var(--line-height-body);
    font-weight: var(--weight-regular);
    margin-top: 0;
    margin-bottom: var(--space-md);
}

.body-large,
.text-body-large {
    font-size: var(--text-body-large);
    line-height: var(--line-height-body-large);
}

.body-small,
.text-body-small {
    font-size: var(--text-body-small);
    line-height: var(--line-height-body-small);
}

.caption,
.footnote,
.text-caption,
small {
    font-size: var(--text-caption);
    line-height: var(--line-height-caption);
}

small {
    color: var(--text-muted);
}

.eyebrow {
    color: var(--default-brown);
    font-size: var(--text-body-small);
    line-height: var(--line-height-body-small);
    font-weight: var(--weight-semibold);
}


/* =========================================
   DISPLAY TYPE
========================================= */

.ciron-classic,
.text-ciron-classic,
.display-xl {
    font-family: var(--font-secondary);
    font-size: var(--text-ciron-classic);
    line-height: var(--line-height-ciron-classic);
    font-weight: var(--weight-heavy);
}

.ciron-classic-m,
.text-ciron-classic-m,
.display-m {
    font-family: var(--font-secondary);
    font-size: var(--text-ciron-classic-m);
    line-height: var(--line-height-heading-xl);
    font-weight: var(--weight-heavy);
}

.secondary-font {
    font-family: var(--font-secondary);
}


/* =========================================
   LINKS
========================================= */

a {
    color: var(--link-color);
    text-decoration: underline;
    text-underline-offset: 0.15em;
    font-weight: var(--weight-medium);
}

a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

.link-arrow,
.text-link-arrow {
    font-size: var(--text-link-arrow);
    line-height: var(--line-height-body-small);
    font-weight: var(--weight-semibold);
    text-decoration: none;
}

.link-arrow::after {
    content: " →";
}


/* =========================================
   BLOCKS
========================================= */

.block-title {
    font-size: var(--text-heading-l);
    line-height: var(--line-height-heading-l);
    font-weight: var(--weight-bold);
    padding-bottom: 1.25rem;
    font-family: var(--font-secondary);
}
/*Blocks*/


.umb-block-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.membership-reservation-margin {
    margin-block: 3rem;
}

.umb-block-list .umb-block-list {
    gap: .5rem;
}


@media (max-width: 991.98px) {
    .umb-block-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .membership-reservation-margin {
        margin-block: 1.5rem;
    }

    .umb-block-list .umb-block-list {
        gap: .10rem;
    }
}

.bh-background {
    background-color: var(--bh-coral);
}

.sso-background {
    background-color: var(--sso-plum);
}

.sso-background .container-arrow, .bh-background .container-arrow {
    border-color: white;
}

.bh-background .fa-arrow-right, .bh-background .fa-arrow-right, .bh-background .fa-arrow-left, .sso-background .fa-arrow-left, .sso-background .fa-arrow-right {
    color: white;
}

.ratio-3x2 {
    --bs-aspect-ratio: 66.66667%;
    aspect-ratio: 3 / 2;
}


/* -------------------------------------------------- 
    Default styling when colorPalette is not selected 
    -------------------------------------------------- */

.cta-additional-link{
    font-size: var(--text-body-small);
}

.call-to-action .cta-text-panel {
    background-color: var(--color-white);
    color: var(--default-black);
}

.call-to-action .cta-text-panel a:not(.btn) {
    color: var(--bh-coral);
}

.call-to-action .cta-text-panel a:not(.btn):hover, .call-to-action .cta-text-panel a:not(.btn):focus {
    color: var(--default-black);
}

.call-to-action .cta-text-panel--overlay {
    background-color: transparent;
    color: var(--sso-white);
}

.call-to-action .cta-text-panel--overlay a:not(.btn) {
color: var(--sso-white);
}

.call-to-action .cta-text-panel--overlay a:not(.btn):hover, .call-to-action .cta-text-panel--overlay a:not(.btn):focus {
    color: var(--default-gold);
}

/* -------------------------------------------------- 
    Benaroya Hall branding 
-------------------------------------------------- */

.call-to-action.cta-brand-bh .eyebrow {
    color: var(--default-gold)
}

.call-to-action.cta-brand-bh .cta-text-panel {
    background-color: var(--default-black);
    color: var(--color-white);
}

@media (max-width: 991.98px) {
    .umb-block-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .umb-block-list .umb-block-list {
        gap: .10rem;
    }
}


@media (max-width: 991.98px) {
    .umb-block-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .umb-block-list .umb-block-list {
        gap: .10rem;
    }
}


/* -------------------------------------------------- 
    Default styling when colorPalette is not selected 
    -------------------------------------------------- */

.cta-additional-link{
    font-size: var(--text-body-small);
}

.call-to-action .cta-text-panel {
    background-color: var(--color-white);
    color: var(--default-black);
}

.call-to-action .cta-text-panel a:not(.btn) {
    color: var(--bh-coral);
}

.call-to-action .cta-text-panel a:not(.btn):hover, .call-to-action .cta-text-panel a:not(.btn):focus {
    color: var(--default-black);
}

.call-to-action .cta-text-panel--overlay {
    background-color: transparent;
    color: var(--sso-white);
}

.call-to-action .cta-text-panel--overlay a:not(.btn) {
color: var(--sso-white);
}

.call-to-action .cta-text-panel--overlay a:not(.btn):hover, .call-to-action .cta-text-panel--overlay a:not(.btn):focus {
    color: var(--default-gold);
}

/* -------------------------------------------------- 
    Benaroya Hall branding 
-------------------------------------------------- */

.call-to-action.cta-brand-bh .eyebrow {
    color: var(--default-gold)
}

.call-to-action.cta-brand-bh .cta-text-panel {
    background-color: var(--default-black);
    color: var(--color-white);
}

.call-to-action.cta-brand-bh .cta-text-panel a:not(.btn) {
    color: var(--color-white);
}

.call-to-action.cta-brand-bh .cta-text-panel a:not(.btn):hover, .call-to-action.cta-brand-bh .cta-text-panel a:not(.btn):focus {
    color: var(--default-gold);
}

.call-to-action.cta-brand-bh .cta-text-panel--overlay {
    background-color: transparent;
    color: var(--sso-white);
}

.call-to-action.cta-brand-bh .cta-text-panel--overlay a:not(.btn) {
    color: var(--sso-white);
}

.call-to-action.cta-brand-bh .cta-text-panel--overlay a:not(.btn):hover, .call-to-action.cta-brand-bh .cta-text-panel--overlay a:not(.btn):focus {
    color: var(--bh-coral);
}
/* -------------------------------------------------- 
    Seattle Symphony branding 
-------------------------------------------------- */
.call-to-action.cta-brand-sso .eyebrow {
    color: var(--sso-peach)
}

.call-to-action.cta-brand-sso .cta-text-panel {
    background-color: var(--sso-plum);
    color: var(--sso-white);
}

.call-to-action.cta-brand-sso .cta-text-panel a:not(.btn) {
    color: var(--color-white);
}

.call-to-action.cta-brand-sso .cta-text-panel a:not(.btn):hover, .call-to-action.cta-brand-sso .cta-text-panel a:not(.btn):focus {
    color: var(--sso-pink);
}

.call-to-action.cta-brand-sso .cta-text-panel--overlay {
    background-color: transparent;
    color: var(--sso-white);
}

.call-to-action.cta-brand-sso .cta-text-panel--overlay a:not(.btn) {
    color: var(--sso-white);
}

.call-to-action.cta-brand-sso .cta-text-panel--overlay a:not(.btn):hover, .call-to-action.cta-brand-sso .cta-text-panel--overlay a:not(.btn):focus {
    color: var(--sso-pink);
}

/* =========================================
   CARD IMAGE GRID (ROW)
========================================= */


.card-row-image a {
    text-decoration: none;
}

.package-list-page,
.package-list-page :is(h1, h2, h3, h4, h5, h6, p, li, a, span, strong, em, button) {
    font-family: var(--font-primary) !important;
}

.package-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.package-card-date {
    color: var(--default-brown);
    font-weight: var(--weight-bold);
}

.card-row-image .package-card-title-link,
.card-row-image .package-card-title-link:hover,
.card-row-image .package-card-title-link:focus {
    color: #000;
    text-decoration: none;
}

.sso-background .block-title, .sso-background .description {
    color: white;
}

.bh-background .block-title, .bh-background .description {
    color: white;
}

/* =========================================
   CARD CAROUSEL
========================================= */


/* =========================================
   MIXED MEDIA CAROUSEL
========================================= */
.card.mixed-media {
    background: transparent;
    background-color: transparent;
}


/* =========================================
   CARD ROW CAST (PEOPLE)
========================================= */
.card-row-cast button {
    color: inherit;
}

.card-row-cast .card-body p {
    color: inherit;
}


/* =========================================
   BLOCK ACCORDION
========================================= */

.accordion-item {
    border-bottom-color: #B79F83;
    border-top-color: #B79F83;
}

.accordion-button {
    background-color: var(--default-paper);
    font-weight: 700;
}

.accordion-button-text {
    font-weight: 700;
}

.accordion-flush .accordion-item:last-child {
    border-bottom: 1px solid #B79F83;
}

.block-accordion.accordion-flush > .accordion-item:first-of-type {
    border-top: 1px solid #B79F83;
}

.accordion-body {
    background-color: var(--default-cream);
}

.accordion-button:not(.collapsed) {
    color: unset;
    background-color: var(--default-paper);
}

.block-accordion .accordion-button:focus {
    box-shadow: none;
}

.block-accordion .accordion-button:focus-visible {
    outline: 2px solid var(--default-brown);
    outline-offset: -2px;
}

/* =========================================
   Gallery
========================================= */

.gallery-expand-icon {
    z-index: 10;
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
    line-height: 1;
    pointer-events: none;
}

.gallery-expand-icon i {
    display: block;
    color: #fff;
}

.gallery .card-body {
    background-color: transparent;
}


/* =========================================
   Divider
========================================= */

.divider {
    border: 0;
    border-top: 2px solid var(--default-brown);
    height: 0;
    opacity: 1;
}

/* =========================================
   Quote
========================================= */

.quote-decoration {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.quote-icon {
    line-height: 1;
    font-weight: 600;
    font-size: smaller;
}

.quote-bar {
    width: 8px;
    flex-grow: 1;
    min-height: 4rem;
    background-color: var(--color-black);
}

.quote-content {
    min-width: 0;
}

.quote-body {
    font-family: var(--font-secondary);
}

/* =========================================
   Call-Out Box
========================================= */
.callout-box {
    border-radius: var(--border-radius);
    background-color: var(--default-paper-dark);
}

/* =========================================
   My Account
========================================= */

.my-account-page,
.my-account-page :is(div, h1, h2, h3, h4, h5, h6, p, li, a, span, small, strong, em, label, input, select, option, textarea, button) {
    font-family: var(--font-primary) !important;
}

.my-account-page :is(h1, .font-size-800) {
    font-size: var(--text-heading-xl) !important;
    line-height: var(--line-height-heading-xl);
}

.my-account-page :is(h2, .font-size-600) {
    font-size: var(--text-heading-l) !important;
    line-height: var(--line-height-heading-l);
}

.my-account-page :is(h3, .font-size-500) {
    font-size: var(--text-heading-m) !important;
    line-height: var(--line-height-heading-m);
}

.my-account-page :is(h4, h5, h6, .font-size-400) {
    font-size: var(--text-heading-s) !important;
    line-height: var(--line-height-heading-s);
}

.my-account-page .text-uppercase {
    letter-spacing: normal;
    text-transform: none !important;
}

.my-account-page :is(hr, .divider) {
    border: 0;
    border-top: 1px solid rgba(143, 102, 56, .32);
    opacity: 1;
}

.my-account-page #myaccount-navigation {
    border: 0 !important;
    position: relative;
}

.my-account-page .account-content-row .account-side-nav {
    padding-top: 0 !important;
}

.my-account-page :is(.account-callout, .bg-pink-color) {
    background-color: var(--color-white, #fff) !important;
    border: 0;
    border-radius: var(--border-radius);
}

.my-account-page .account-callout:not(.container) {
    padding: var(--space-md);
}


.my-account-page .btn:not(.btn-close):not(.account-logout):not(.btn-default-secondary),
.my-account-page button:not(.btn-close):not(.account-logout):not(.btn-default-secondary) {
    background: var(--default-gold);
    border-color: var(--default-gold);
    color: var(--default-black);
}

.my-account-page .btn:not(.btn-close):not(.account-logout):not(.btn-default-secondary):hover,
.my-account-page button:not(.btn-close):not(.account-logout):not(.btn-default-secondary):hover {
    background: #F3E8CC;
    border-color: #F3E8CC;
    color: var(--default-black);
}

.my-account-page .button-as-link:not(.btn-close) {
    align-items: center;
    background: var(--default-gold);
    border: 1px solid var(--default-gold);
    border-radius: 4px;
    color: var(--default-black);
    display: inline-flex;
    font-size: var(--text-button);
    font-weight: var(--weight-semibold);
    justify-content: center;
    padding: .75rem 1.25rem;
    text-decoration: none;
}

.my-account-page .button-as-link:not(.btn-close):hover {
    background: #F3E8CC;
    border-color: #F3E8CC;
}

.account-side-nav {
    display: flex;
    flex-direction: column;
    min-height: 70vh;
}

.account-nav-groups {
    background-color: var(--default-paper-dark);
    border: 1px solid var(--default-brown);
    border-radius: var(--border-radius, 4px);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding: var(--space-md);
}

.account-nav-group {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.account-nav-heading {
    border-radius: var(--border-radius, 4px);
    color: var(--default-black);
    display: block;
    font-size: var(--text-heading-xs);
    font-weight: var(--weight-bold);
    line-height: var(--line-height-heading-xs);
    padding: .65rem .75rem;
    text-decoration: none;
    transition: background-color .2s ease, box-shadow .2s ease;
}

.account-nav-heading:hover,
.account-nav-heading:focus-visible {
    background-color: rgba(143, 102, 56, .28);
    color: var(--default-black);
    text-decoration: none;
}

.account-nav-heading[aria-current="page"] {
    background-color: var(--default-paper-dark);
    color: var(--default-black);
}

.account-logout {
    margin-top: 2.25rem;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .my-account-page #myaccount-navigation {
        padding-right: .75rem !important;
        width: 33.333333%;
    }

    .my-account-page .account-content-row > .col-md-9 {
        padding-left: .75rem !important;
        width: 66.666667%;
    }

    .my-account-page > .row:not(.account-content-row) > .col-md-9.offset-md-3 {
        margin-left: 33.333333%;
        padding-left: .75rem !important;
        width: 66.666667%;
    }

    .account-nav-groups {
        padding: .75rem;
    }
}

.my-account-page .account-welcome {
    font-size: var(--text-body) !important;
    line-height: var(--line-height-body);
    margin-bottom: var(--space-md);
}

.membership-benefits-page-header {
    margin-bottom: 0;
}

.membership-benefit-list {
    display: grid;
    gap: var(--space-md);
}

.my-account-page .membership-benefits-group > h2:first-child {
    margin-bottom: var(--space-xs) !important;
}

.membership-benefit-group-name {
    margin-bottom: var(--space-lg);
}

.membership-benefit-card {
    background-color: var(--default-paper);
    border: 1px solid rgba(143, 102, 56, .32);
    border-radius: var(--border-radius, 4px);
    padding: 1.25rem;
}

.membership-benefit-title,
.my-account-page .membership-benefit-title :is(h2, h3, h4, h5, h6, p) {
    font-size: var(--text-heading-m) !important;
    font-weight: var(--weight-bold);
    line-height: var(--line-height-heading-m);
}

.membership-benefit-title,
.membership-benefit-title > :last-child,
.membership-benefit-description > :last-child,
.membership-benefit-availability {
    margin-bottom: 0;
}

.membership-benefit-description {
    margin-top: var(--space-sm);
}

.membership-benefit-availability {
    border-top: 1px solid rgba(143, 102, 56, .32);
    color: var(--bh-coral-on-cream);
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
}

@media (min-width: 768px) {
    .membership-benefits-page-header {
        margin-bottom: var(--space-lg);
    }

    .membership-benefit-card {
        padding: 1.5rem;
    }
}

.my-account-page .account-mobile-select {
    appearance: none;
    background-color: var(--color-white, #fff);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23330025'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-position: right .75rem center;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    border: 1px solid rgba(143, 102, 56, .45);
    border-radius: var(--border-radius, 4px);
    color: var(--default-black);
    color-scheme: light;
    font-size: var(--text-body-large);
    font-weight: var(--weight-bold);
    line-height: normal;
    margin: 1.25rem 0;
    min-height: 3rem;
    padding: .65rem 2.75rem .65rem .875rem;
    width: 100%;
}

.my-account-page .account-mobile-select:focus,
.my-account-page .account-mobile-select:focus-visible {
    border-color: rgba(143, 102, 56, .45);
    box-shadow: none;
    outline: none;
}

.my-account-page .account-mobile-select option {
    background-color: var(--default-paper);
    color: var(--default-black);
    font-size: var(--text-body);
    font-weight: var(--weight-regular);
    padding: .65rem .875rem;
}

.my-account-page .account-mobile-select option:checked,
.my-account-page .account-mobile-select option:focus,
.my-account-page .account-mobile-select option:hover {
    background: var(--default-paper-dark) linear-gradient(0deg, var(--default-paper-dark) 0%, var(--default-paper-dark) 100%);
    color: var(--default-black);
}

.account-modal,
.account-modal :is(div, h1, h2, h3, h4, h5, h6, p, li, a, span, small, strong, em, label, input, select, option, textarea, button) {
    font-family: var(--font-primary) !important;
}

.account-modal .modal-title {
    font-size: var(--text-heading-l) !important;
    font-weight: var(--weight-bold);
    line-height: var(--line-height-heading-l);
    text-transform: none !important;
}

.account-modal .text-uppercase {
    letter-spacing: normal;
    text-transform: none !important;
}

.account-modal :is(.modal-header, .modal-footer) {
    border-color: rgba(143, 102, 56, .32);
}

.account-modal .modal-header {
    border-bottom: 0;
    padding-bottom: var(--space-lg) !important;
}

.account-modal .modal-body .form-group {
    margin-bottom: 1.5rem;
}

.account-modal .btn-default {
    background: var(--default-gold);
    border-color: var(--default-gold);
    color: var(--default-black);
}

.account-modal .btn-default:hover {
    background: #F3E8CC;
    border-color: #F3E8CC;
    color: var(--default-black);
}

.account-modal .btn-default-secondary {
    background: var(--color-white, #fff);
    border: 2px solid var(--default-gold);
    color: var(--default-black);
}

.account-modal .btn-default-secondary:hover {
    background: #F3E8CC;
    border-color: var(--default-gold);
    color: var(--default-black);
}

/* =========================================
   Titles
========================================= */

.rte-title {
    font-size: var(--text-heading-xl);
    font-family: var(--font-secondary);
}

.rte-subtitle {
    font-size: var(--text-heading-l);
    line-height: var(--line-height-heading-l);
    font-weight: var(--weight-bold);
    padding-bottom: 1.25rem;
    font-family: var(--font-secondary);
}

/* =========================================
   Jumbotron
========================================= */

.jumbotron {
    aspect-ratio: 2560 / 670;
    max-height: 420px;
    width: 100%;
}

@media (max-width: 576px) {
    .jumbotron {
        aspect-ratio: 3/2;
        max-height: 300px;
        width: 100%;
    }
}

.input-group-text {
    cursor: pointer;
    background-color: var(--default-gold);
}

.input-group-text:hover {
    background-color: #F3E8CC;
}

/* =========================================
   List Container
========================================= */

.list-container li {
    break-inside: avoid;
    line-height: 1.15;
}

.list-container li + li {
    margin-top: var(--space-md);
}

.list-container__list {
    column-count: 1;
    column-gap: 0;
}

@media (min-width: 768px) {
    .list-container__list--2,
    .list-container__list--3,
    .list-container__list--4 {
        column-count: 2;
        column-gap: 1.5rem;
    }
}

@media (min-width: 992px) {
    .list-container__list--3,
    .list-container__list--4 {
        column-count: 3;
    }
}

@media (min-width: 1200px) {
    .list-container__list--4 {
        column-count: 4;
    }
}

/* =========================================
   PDP Photos & Media Block
========================================= */

.pdp-media-gallery {
    background: var(--pdp-paper, #f4eee5);
}

.pdp-media-gallery h2 {
    color: #8f5b2e;
    font-size: var(--text-body-small);
    font-weight: 800;
    letter-spacing: .04em;
    margin: 0 0 .75rem;
    text-transform: uppercase;
}

.pdp-media-gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr);
}

.pdp-media-gallery-grid--gallery-only {
    grid-template-columns: minmax(0, 1fr);
}

.pdp-photo-gallery,
.pdp-media-gallery-aside {
    min-width: 0;
}

.pdp-photo-gallery {
    align-self: start;
    position: relative;
}

.pdp-photo-gallery-slider,
.pdp-photo-gallery-slider .slick-list,
.pdp-photo-gallery-slider .slick-track,
.pdp-photo-gallery-slider .slick-slide,
.pdp-photo-gallery-slider .slick-slide > div {
    height: 100%;
}

.pdp-photo-gallery-slider figure {
    margin: 0;
}

.pdp-photo-gallery-slider img {
    aspect-ratio: 4 / 3;
    border-radius: var(--border-radius);
    display: block;
    object-fit: cover;
    width: 100%;
}

.pdp-photo-gallery-slider figcaption,
.pdp-media-gallery-caption {
    color: var(--pdp-ink, #050505);
    font-size: .65rem;
    font-style: italic;
    line-height: 1.3;
    margin: .45rem 0 0;
}

.pdp-media-gallery-aside > .pdp-media-gallery-caption {
    margin-top: -.55rem;
}

.pdp-photo-gallery-arrows {
    bottom: 2.1rem;
    display: flex;
    gap: .45rem;
    position: absolute;
    right: 1rem;
    z-index: 3;
}

.pdp-photo-gallery-arrows button {
    align-items: center;
    background: rgba(0, 0, 0, .25);
    border: 1px solid #fff;
    color: #fff;
    display: inline-flex;
    height: 1.8rem;
    justify-content: center;
    padding: 0;
    transition: background-color .2s ease;
    width: 1.8rem;
}

.pdp-photo-gallery-arrows button:hover,
.pdp-photo-gallery-arrows button:focus-visible {
    background: rgba(0, 0, 0, .7);
}

.pdp-media-gallery-aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pdp-media-gallery-upper,
.pdp-media-gallery-lower {
    border-radius: var(--border-radius);
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.pdp-media-gallery-upper > *,
.pdp-media-gallery-lower > * {
    margin-block: 0;
}

.pdp-media-gallery-upper iframe {
    border: 0;
    display: block;
    width: 100%;
}

.pdp-media-gallery-lower img,
.pdp-media-gallery-lower iframe {
    aspect-ratio: 16 / 7;
    border: 0;
    border-radius: var(--border-radius);
    display: block;
    object-fit: cover;
    width: 100%;
}

@media (min-width: 992px) {
    .pdp-media-gallery-aside {
        align-self: stretch;
        height: 100%;
        min-height: 0;
    }

    .pdp-media-gallery-aside--split .pdp-media-gallery-upper {
        flex: 0 0 152px;
        height: 152px;
    }

    .pdp-media-gallery-aside--split .pdp-media-gallery-upper iframe {
        height: 152px !important;
    }

    .pdp-media-gallery-aside--split .pdp-media-gallery-lower,
    .pdp-media-gallery-aside--youtube-only .pdp-media-gallery-lower {
        flex: 1 1 0;
        min-height: 0;
    }

    .pdp-media-gallery-aside--split .pdp-media-gallery-lower > :only-child,
    .pdp-media-gallery-aside--split .pdp-media-gallery-lower iframe,
    .pdp-media-gallery-aside--youtube-only .pdp-media-gallery-lower > :only-child,
    .pdp-media-gallery-aside--youtube-only .pdp-media-gallery-lower iframe {
        aspect-ratio: auto;
        height: 100%;
        margin: 0;
    }
}

/* =========================================
   Support the Symphony Block
========================================= */

.pdp-support-symphony {
    background-color: #310025;
    background-position: center 42%;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    isolation: isolate;
    overflow: hidden;
    padding-block: 3rem;
    position: relative;
}

.pdp-support-symphony::after {
    background-image:
        linear-gradient(to right, #310025 0%, rgba(49, 0, 37, .75) 12%, rgba(49, 0, 37, .75) 88%, #310025 100%),
        url("/img/support-the-symphony-bg.png");
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: 100% 100%, cover;
    content: "";
    height: 100%;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 0;
}

@media (min-width: 1200px) {
    .pdp-support-symphony::after {
        background-size: 100% 100%, 88% auto;
    }
}

.pdp-support-symphony-inner {
    align-items: center;
    display: flex;
    min-height: 315px;
    position: relative;
    z-index: 1;
}

.pdp-support-symphony-copy {
    width: 50%;
}

.pdp-support-symphony-copy h2 {
    color: #ffd7cc;
    font-size: clamp(2rem, 3.1vw, 2.55rem);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.05;
    margin: 0 0 .85rem;
}

.pdp-support-symphony-copy p {
    color: #fff;
    font-size: .95rem;
    line-height: 1.3;
    margin: 0;
    white-space: pre-line;
}

.pdp-support-symphony .pdp-support-symphony-button {
    margin-top: 2rem;
}

@media (max-width: 991.98px) {
    .pdp-media-gallery-grid {
        gap: 1rem;
        grid-template-columns: 1fr;
    }

    .pdp-support-symphony {
        padding-block: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .pdp-support-symphony-copy {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .pdp-support-symphony {
        background-position: 62% center;
    }

    .pdp-support-symphony-inner {
        min-height: 350px;
    }
}

/* =========================================
   Plan Your Visit Block
========================================= */

.pdp-plan-visit-container {
    background: var(--pdp-paper, #f4eee5);
    padding-bottom: 4rem;
    padding-top: 3.5rem;
}

.pdp-plan-visit-inner {
    align-items: center;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 165px minmax(0, 1fr);
}

.pdp-plan-visit h2 {
    color: var(--pdp-ink, #050505);
    font-size: var(--text-heading-xs);
    font-weight: 800;
    line-height: var(--line-height-heading-xs);
    margin: 0;
}

.pdp-plan-visit-items {
    align-items: center;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
    justify-items: center;
}

.pdp-plan-visit-item {
    align-items: center;
    color: var(--pdp-ink, #050505);
    display: grid;
    gap: .8rem;
    grid-template-columns: 2.75rem minmax(0, 1fr);
    min-width: 0;
    text-decoration: none;
}

a.pdp-plan-visit-item {
    cursor: pointer;
    transition: transform .2s ease;
}

a.pdp-plan-visit-item:hover,
a.pdp-plan-visit-item:focus-visible {
    color: var(--pdp-ink, #050505);
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    a.pdp-plan-visit-item {
        transition: none;
    }

    a.pdp-plan-visit-item:hover,
    a.pdp-plan-visit-item:focus-visible {
        transform: none;
    }
}

.pdp-plan-visit-item img {
    display: block;
    height: 2.75rem;
    object-fit: contain;
    width: 2.75rem;
}

.pdp-plan-visit-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.pdp-plan-visit-copy strong {
    color: #f04e3d;
    font-size: var(--text-body-small);
    font-weight: var(--weight-heavy);
    line-height: 1.2;
}

.pdp-plan-visit-copy > span {
    color: var(--pdp-ink, #050505);
    font-size: var(--text-body-small);
    font-weight: 600;
    line-height: 1.25;
    margin-top: .15rem;
}

/* =========================================
   Sponsor List Block
========================================= */

.pdp-sponsors-container {
    background: var(--pdp-paper, #f4eee5);
    padding-bottom: 4.5rem;
}

.pdp-sponsors {
    padding-top: 3rem;
}

.pdp-sponsors h2 {
    color: #8f5b2e;
    font-size: var(--text-body-small);
    font-weight: 800;
    letter-spacing: .04em;
    margin: 0;
    text-transform: uppercase;
}

.pdp-sponsor-grid {
    align-items: center;
    display: grid;
    gap: 1.5rem 2rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 2.25rem;
}

.pdp-sponsor-item {
    min-width: 0;
}

.pdp-sponsor-item > a {
    align-items: center;
    display: flex;
    height: 8.5rem;
    justify-content: center;
}

.pdp-sponsor-item img {
    display: block;
    height: 100%;
    max-height: 8.5rem;
    max-width: min(100%, 17rem);
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.pdp-sponsor-description,
.pdp-sponsor-name {
    color: var(--pdp-ink, #050505);
    font-size: .78rem;
    line-height: 1.45;
    margin: 0;
}

.pdp-sponsor-description > :first-child {
    margin-top: 0;
}

.pdp-sponsor-description > :last-child {
    margin-bottom: 0;
}

.pdp-sponsor-item > a + .pdp-sponsor-description {
    margin-top: 1rem;
}

.pdp-sponsor-text {
    color: var(--pdp-ink, #050505);
}

.pdp-sponsor-grid + .pdp-sponsor-text {
    margin-top: 1.5rem;
}

.pdp-sponsor-text > :first-child {
    margin-top: 0;
}

.pdp-sponsor-text > :last-child {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .pdp-plan-visit-inner {
        align-items: start;
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    .pdp-plan-visit-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: start;
    }

    .pdp-sponsor-grid {
        gap: .75rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pdp-sponsor-item > a {
        height: 6.25rem;
    }

    .pdp-sponsor-item img {
        max-height: 6.25rem;
    }
}

@media (max-width: 575.98px) {
    .pdp-plan-visit-container {
        padding-bottom: 2rem;
        padding-top: 2rem;
    }

    .pdp-plan-visit-items {
        gap: 1.5rem;
    }

    .pdp-sponsors-container {
        padding-bottom: 2rem;
    }

    .pdp-sponsors {
        padding-top: 2rem;
    }
}


/* =========================================
   Modal
========================================= */

.modal-content {
    border: 0;
    border-radius: var(--border-radius);
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.28);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    color: black;
    background: var(--default-paper);
    background-color: var(--default-paper);
}

.modal-title {
    font-size: var(--text-heading-l);
    line-height: var(--line-height-heading-l);
    font-weight: var(--weight-bold);
    font-family: var(--font-secondary);
}
