/* =========================================================
   Marshall Artists Series Theme
   main.css
   ========================================================= */

/* =========================================================
   01. Variables
   ========================================================= */

:root {
    /* Colors */
    --color-black: #1A1818;
    --color-purple: #BD197B;
    --color-orange: #F8971D;
    --color-blue: #0065A4;
    --color-green: #007129;
    --color-white: #FFFFFF;
    --color-light: #F7F7F7;
    --color-gray: #666666;

    /* Typography */
    --font-main: 'Montserrat', sans-serif;

    --body-size: 1rem;
    --small-size: .875rem;
    --line-height: 1.7;

    --h1-size: clamp(2.6rem, 5vw, 3.5rem);
    --h2-size: clamp(2rem, 4vw, 2.75rem);
    --h3-size: clamp(1.5rem, 3vw, 2rem);
    --h4-size: 1.375rem;
    --h5-size: 1.125rem;
    --h6-size: 1rem;

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-black: 900;

    /* Layout */
    --container-main: 1280px;
    --header-height: 136px;
    --section-padding: 90px;
    --border-radius: 4px;
    --transition: .25s ease;

    /* Buttons */
    --button-bg: var(--color-blue);
    --button-hover-bg: var(--color-green);
    --button-text: #fff;
    --button-radius: 0;
    --button-padding-y: .9rem;
    --button-padding-x: 2.25rem;
    --button-transition: .35s ease;

    /* Hero Slider */
    --hero-height-desktop: 680px;
    --hero-height-tablet: 520px;
    --hero-height-mobile: 420px;
    --hero-overlay-default: .30;
    --hero-arrow-size: 64px;
    --hero-arrow-size-mobile: 46px;
    --hero-content-width: 640px;
    --hero-transition: 900ms;
}

/* =========================================================
   02. Base / Reset
   ========================================================= */

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;

    font-family: var(--font-main);
    font-size: var(--body-size);
    line-height: var(--line-height);
    color: var(--color-black);
    font-weight: var(--fw-regular);

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

section {
    position: relative;
    padding: 5rem 0;
}

.container {
    max-width: var(--container-main);
}

/* Optional sticky-footer structure if your markup uses it */
.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content,
main.content {
    flex: 1;
}

/* =========================================================
   03. Typography
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 .8em;
    line-height: 1.2;
    color: var(--color-black);
    font-weight: var(--fw-bold);
}

h1 {
    font-size: var(--h1-size);
    font-weight: var(--fw-black);
    text-transform: uppercase;
}

h2 {
    font-size: var(--h2-size);
    font-weight: var(--fw-bold);
}

h3 {
    font-size: var(--h3-size);
}

h4 {
    font-size: var(--h4-size);
}

h5 {
    font-size: var(--h5-size);
}

h6 {
    font-size: var(--h6-size);
}

p {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.75;
}

a {
    color: var(--color-blue);
    text-decoration: none;
    transition: color var(--transition), background-color var(--transition), border-color var(--transition);
}

a:hover {
    color: var(--color-green);
}

ul,
ol {
    margin: 0 0 1.5rem 1.4rem;
    padding: 0;
}

li {
    margin-bottom: .5rem;
    line-height: 1.7;
}

strong {
    font-weight: var(--fw-bold);
}

em {
    font-style: italic;
}

/* =========================================================
   04. Buttons
   ========================================================= */

.btn,
.btn-theme {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto;
    min-width: 220px;
    padding: var(--button-padding-y) var(--button-padding-x);

    background: var(--button-bg);
    color: var(--button-text);

    border: none;
    border-radius: var(--button-radius);

    font-size: 1rem;
    font-weight: var(--fw-bold);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-decoration: none;

    box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
    transition: all var(--button-transition);
}

.btn:hover,
.btn-theme:hover,
.btn:focus,
.btn-theme:focus {
    background: var(--button-hover-bg);
    color: #fff;
    transform: translateY(-2px);
}

.btn:active,
.btn-theme:active {
    transform: translateY(0);
}

/* =========================================================
   05. Header
   ========================================================= */

.site-header {
    position: relative;
    z-index: 100;
    background: #fff;
    box-shadow: 0 5px 0 var(--color-black);
    overflow-x: clip;
    padding: 0;
}

.site-header-inner {
    max-width: var(--container-main);
    min-height: var(--header-height);
    display: flex;
    align-items: stretch;
    position: relative;
}

.header-left {
    width: 36%;
    display: flex;
    align-items: center;
    padding: 28px 0;
}

.site-logo img {
    max-width: 330px;
    width: 100%;
    height: auto;
}

.header-right {
    width: 64%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-top {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.header-phone {
    margin-right: 18px;
    color: #000;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.header-phone:hover {
    color: #f4c430;
}

.ticket-btn {
    margin-right: 26px;
    padding: 15px 27px;
    background: #8D1A7B;
    color: #fff;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
}

.ticket-btn:hover {
    background: var(--color-black);
    color: #fff;
}

.header-blue-bar {
    min-height: 64px;
    padding: 0 32px;
    background: var(--color-blue);
    display: flex;
    align-items: center;
    gap: 34px;
    position: relative;
}

.header-blue-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 50vw;
    height: 100%;
    background: var(--color-blue);
}

.header-blue-bar a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
	position: relative !important;
	z-index: 2;
	padding-bottom: 8px !important;
	border-bottom: 3px solid transparent !important;
	text-decoration: none;
	transition: border-color var(--transition);
}

/*.header-blue-bar a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: #ffffff;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.25s ease;
}*/

.header-blue-bar a:hover,
.header-blue-bar a:focus {
	border-bottom-color: #ffffff !important;
}

.header-blue-bar a span {
    display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 2px solid #fff;
	border-radius: 50%;
	flex: 0 0 30px;
}

.header-blue-bar a span img {
	display: block;
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.header-blue-bar a:first-child span {
	border: 0 !important;
	border-radius: 0 !important;
	width: 30px !important;
	height: 30px !important;
	flex: 0 0 30px !important;
}

.header-blue-bar a:first-child span img {
	width: 52px !important;
	height: 52px !important;
	max-width: none !important;
	object-fit: contain;
	transform: translateY(-1px);
}

.main-nav {
    padding: 0 0 24px;
}

.main-menu {
    gap: 60px;
}

.main-menu .menu-item a {
	position: relative;
	display: inline-block;
    color: var(--color-black);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .01em;
    text-transform: uppercase;
    text-decoration: none;
	padding-bottom: 8px;
}

.main-menu .menu-item a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	background: #30A441;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.25s ease;
}

.main-menu .menu-item a:hover {
    color: var(--color-green);
}

.main-menu .menu-item a:hover::after,
.main-menu .menu-item a:focus::after,
.main-menu .menu-item.current-menu-item a::after,
.main-menu .menu-item.current_page_item a::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 0;
    color: var(--color-black);
    font-size: 28px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* =========================================================
   06. Footer
   ========================================================= */

.site-footer {
    background: #fff;
    padding: 90px 0 70px;
}

.site-footer .container {
	max-width: 1280px;
}

.footer-contact {
    max-width: 460px;
    color: var(--color-black);
    font-size: 14px;
    line-height: 1.45;
}

.footer-contact strong {
    display: inline-block;
    margin-bottom: 0.25rem;
    font-weight: var(--fw-bold);
}

.footer-contact br + br {
	display: block;
	content: "";
	margin-top: 0.75rem;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--color-blue);
}

.footer-social {
    margin-top: 42px;
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #309D37 !important;
	border: 2px solid #309D37;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
	text-decoration: none;
    transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.footer-social a:hover,
.footer-social a:focus {
    background: #ffffff !important;
	border-color: #309D37;
    color: #309D37;
	transform: translateY(-2px);
}

.footer-social a i {
	color: inherit;
}

.footer-copyright {
    margin-top: 24px;
    color: var(--color-gray);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo-row {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.footer-logo-row a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.footer-logo-row--main img {
	width: 330px;
	max-width: 100%;
	height: auto;
}

.footer-logo-row--partners {
	gap: 2.5rem;
}

.footer-logo-row--partners img {
	display: block;
	width: auto;
	height: auto;
	object-fit: contain;
}

.footer-logo-row--partners img:nth-child(1) {
	width: 220px;
	max-width: 100%;
}

.footer-logo-row--partners img:nth-child(2) {
	width: 230px;
	max-width: 100%;
}

.footer-logo-row--college {
	margin-top: -5rem !important;
	z-index: 2;
}

.footer-logo-row--college img {
	width: 300px;
	max-width: 100%;
	height: auto;
}

@media (max-width: 991px) {
	.footer-contact {
		max-width: 460px;
		margin: 0 auto;
		text-align: center;
	}
}

@media (max-width: 991px) {
	.footer-logos {
		margin-top: 3rem;
		gap: 1.75rem;
	}
	
	.footer-logo--main img {
		width: 300px;
	}
	
	.footer-logo-row--partners {
		gap: 2rem;
	}
	
	.footer-logo-row--college img {
		width: 290px;
	}
}

@media (max-width: 575px) {
	.footer-logo-row--partners {
		flex-direction: column;
		gap: 1.25rem;
	}
	
	.footer-logo-row--main img,
	.footer-logo-row--college img {
		width: 260px;
	}
	
	.footer-logo-row--partners img {
		height: auto;
		max-width: 220px;
	}
}

/* =========================================================
   07. Back To Top
   ========================================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 50px;
    height: 50px;

    background: var(--color-blue);
    color: var(--color-white);

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid var(--color-blue);
    border-radius: 0;

    font-size: 1.25rem;
    text-decoration: none;

    z-index: 999;

    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.back-to-top:hover {
     background: var(--color-green);
    border-color: var(--color-green);
    color: var(--color-white);

    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}    

/* =========================================================
   08. Subpage Hero
   ========================================================= */

.subpage-hero {
    min-height: 235px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}

.subpage-hero h1 {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    text-transform: uppercase;
}

.subpage-hero-img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subpage-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, .45);
}

.subpage-hero .container {
    position: relative;
    z-index: 3;
}

/* =========================================================
   09. Hero Slider
   ========================================================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: var(--hero-height-desktop);
    padding: 0;
    background: #000;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.page-loaded .hero-slider {
    opacity: 1;
}

.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.heroSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-slide-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 5s ease;
}

.swiper-slide-active .hero-slide-image {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-slide-container {
    position: relative;
    z-index: 3;
    height: 100%;
}

/* Hero content */
.hero-content {
    height: 100%;
    max-width: var(--hero-content-width);
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: var(--fw-black);
    line-height: .95;
    text-transform: uppercase;
    text-shadow: 0 8px 28px rgba(0, 0, 0, .35);
}

.hero-content p {
    margin-bottom: 2rem;
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.45rem);
    line-height: 1.5;
    text-shadow: 0 5px 20px rgba(0, 0, 0, .35);
}

/* Horizontal alignment */
.hero-content.left {
    margin-right: auto;
    text-align: left;
    align-items: flex-start;
}

.hero-content.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    align-items: center;
}

.hero-content.right {
    margin-left: auto;
    text-align: right;
    align-items: flex-end;
}

/* Vertical alignment */
.hero-content.top {
    justify-content: flex-start;
    padding-top: 90px;
}

.hero-content.middle {
    justify-content: center;
}

.hero-content.bottom {
    justify-content: flex-end;
    padding-bottom: 90px;
}

/* Navigation arrows */
.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    z-index: 10;

    width: var(--hero-arrow-size);
    height: var(--hero-arrow-size);

    transform: translateY(-50%);

    color: #fff;
    font-size: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: color var(--transition), background-color var(--transition);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

.hero-prev:hover,
.hero-next:hover {
    color: var(--color-orange);
}

/* Pagination */
.heroSwiper .swiper-pagination {
    bottom: 24px;
    z-index: 12;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: .55;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: var(--color-orange);
    opacity: 1;
}

/* SLIDE LINKS */
.hero-slide-link {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.hero-slide-link:hover,
.hero-slide-link:focus {
	color: inherit;
	text-decoration: none;
}

.hero-slide-link .hero-slide-image,
.hero-slide-link .hero-slide-overlay {
	pointer-events: none;
}

/* MOBILE HERO IMAGE */

.hero-mobile-image {
	display: none;
}

.hero-mobile-image img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 767px) {
	.hero-slider .heroSwiper {
		display: none !important;
	}
	
	.hero-mobile-image {
		display: block;
	}
}

/* =========================================================
   10. Responsive
   ========================================================= */

@media (max-width: 1199px) {
    .main-menu {
        gap: 38px;
    }

    .site-logo img {
        max-width: 290px;
    }

    .header-blue-bar {
        gap: 20px;
        padding: 0 24px;
    }
}

@media (max-width: 991px) {
    section {
        padding: 4rem 0;
    }

    .site-header-inner {
        display: block;
        min-height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .header-left,
    .header-right {
        width: 100%;
    }

    .header-left {
        padding: 0 0 18px;
        justify-content: center;
    }

    .header-top {
        height: auto;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
        margin-bottom: 18px;
    }

    .header-phone,
    .ticket-btn {
        margin-right: 0;
    }

    .header-blue-bar {
        width: 100%;
        min-height: auto;
        padding: 16px 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-blue-bar::after {
        display: none;
    }

    .main-nav {
        padding: 0;
    }

    .navbar-collapse {
        margin-top: 18px;
    }

    .main-menu {
        gap: 0;
        align-items: stretch;
        text-align: center;
    }

    .main-menu .menu-item a {
        display: block;
        padding: 14px 0;
        border-top: 1px solid #eee;
    }

    .site-footer {
        padding: 60px 0;
        text-align: center;
    }

    .footer-contact {
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }
	
    .footer-logos {
        margin-top: 60px;
        align-items: center;
    }

    .hero-slider {
        height: var(--hero-height-tablet);
    }

    .hero-content.top {
        padding-top: 70px;
    }

    .hero-content.bottom {
        padding-bottom: 70px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: clamp(2.25rem, 12vw, 3rem);
    }

    section {
        padding: 3.5rem 0;
    }

    .hero-slider {
        height: var(--hero-height-mobile);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(2.5rem, 13vw, 4rem);
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content.top {
        padding-top: 50px;
    }

    .hero-content.bottom {
        padding-bottom: 50px;
    }

    .hero-prev,
    .hero-next {
        width: var(--hero-arrow-size-mobile);
        height: var(--hero-arrow-size-mobile);
        font-size: 30px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    .btn,
    .btn-theme {
        min-width: auto;
        padding: .85rem 1.5rem;
        font-size: .9rem;
    }

    .back-to-top {
        right: 18px;
        bottom: 18px;
        width: 44px;
        height: 44px;
    }
}


/*====================================
SINGLE EVENT
====================================*/

.single-event-detail {
    padding: 3rem 0 5rem;
    background: #fff;
}

.single-event-season {
    margin: 0 auto 3rem;
	color: #1a1818;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
}

.single-event-poster img {
    width: 100%;
    height: auto;
}

.single-event-ticket {
    margin: 1.75rem auto 0.75rem;
    display: table;
    min-width: auto;
    padding: .85rem 1.75rem;
    font-size: .8rem;
	font-weight: 900;
    border: 2px solid var(--color-green);
    background: #fff;
    color: var(--color-green);
    box-shadow: none;
    border-radius: 999px;
}

.single-event-ticket:hover {
    background: var(--color-green);
    color: #fff;
}

.single-event-ticket--disabled {
	pointer-events: none;
	cursor: default;
	background: var(--color-green);
	color: #ffffff;
	border-color: var(--color-green);
}

.single-event-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    margin-bottom: .75rem;
}

.single-event-rule {
    width: 100%;
    height: 2px;
    background: var(--color-purple);
    margin-bottom: 1.25rem;
}

.single-event-meta {
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: .95rem;
}

.single-event-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
    margin: 1rem 0 1.75rem;
}

.single-event-categories a {
    display: inline-flex;
	align-items: center;
	justify-content: center;
    background: var(--color-purple);
    color: #fff;
    padding: 0.6rem 1.5rem;
    font-size: .85rem;
    font-weight: 800;
	line-height: 1;
    text-transform: uppercase;
    letter-spacing: .05em;
	text-decoration: none;
	box-sizing: border-box;
	min-height: 38px;
}

.single-event-categories a:hover,
.single-event-categories a:focus {
    background: var(--color-green);
    color: #fff;
	text-decoration: none;
}

/* Specific category colors */
.single-event-category--education-and-enrichment {
	background: var(--color-purple) !important;
	color: #fff !important;
}

.single-event-category--free-event {
	background: #ffffff !important;
	border: 2px solid var(--color-green) !important;
	color: var(--color-green) !important;
}

/*.single-event-category--free-event:hover,
.single-event-category--free-event:focus {
	background: var(--color-green) !important;
	border-color: var(--color-green) !important;
	color: #ffffff !important;
} */

.single-event-body {
    font-size: .95rem;
    line-height: 1.65;
}

.single-event-extra-media {
    margin-top: 0.75rem;
}

.event-extra-item {
    display:flex;
    align-items:center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.event-extra-item img {
    flex-shrink:0;
    width:95px;
    height:95px;

    object-fit:cover;
}

.event-extra-item.has-text.is-logo img {
	width: 150px;
	height: auto;
	max-height: 100px;
	border-radius: 0;
	object-fit: contain;
}

.event-extra-item.logo-only.is-logo img {
	width: auto;
	max-width: 240px;
	height: auto;
	max-height: 120px;
	border-radius: 0;
	object-fit: contain;
}

.event-extra-item.has-text.is-logo {
	align-items: center;
}

.event-extra-text {
    margin-top: 1rem;
}

.event-extra-kicker {
    font-style: italic;
    font-size: 1rem;
}

.event-extra-name {
    font-size: 1.25rem;
    font-weight: 500;
}

.event-extra-description {
    font-size: .95rem;
}

.event-extra-item.has-text{
    display:flex;
    align-items:center;
    gap:1rem;
    margin-bottom:1.75rem;
}

.event-extra-item.logo-only{
    display:flex;
    justify-content:center;
    align-items:center;
    margin: 0;
}

.event-extra-item.logo-only img{
    width:auto;
    max-width:240px;
    height:auto;
    border-radius:0;
    object-fit:contain;
}

.event-extra-item.has-text img{
    width:125px;
    height:125px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
}

.single-event .event-extra-item.logo-only.is-logo img {
	display: block;
	width: auto;
	max-width: 425px;
	max-height: 156px;
	height: auto;
	margin: 0 auto;
}

.single-event-media .single-event-extra-media .event-extra-item--book {
	width: 400px !important;
	max-width: 400px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.single-event-media .single-event-extra-media .event-extra-item--book img {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	margin: 0 auto !important;
}

.single-event-page .event-extra-item.logo-only.is-logo.event-extra-item--book img {
	max-height: none !important;
}


@media (max-width: 991px) {
    .single-event-content {
        margin-top: 2rem;
    }
}

/*======================================
=  EVENT BACK BUTTON
======================================*/

.event-back-nav{
    padding:2rem 0 0;
}

.btn-back-events{
    display:inline-flex;
    align-items:center;
    gap:.65rem;

    font-size:.95rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;

    color:var(--color-blue);
    text-decoration:none;

    transition:.25s ease;
}

.btn-back-events i{
    transition:.25s ease;
}

.btn-back-events:hover{
    color:var(--color-green);
}

.btn-back-events:hover i{
    transform:translateX(-6px);
}

/*=====================================
=            EVENT BRAND BAND          =
=====================================*/

.event-brand-band{

    /*background:#8E1B7A; /* Marshall purple */
	background: #1a1818 !important;

    padding:2.5rem 0;

    text-align:center;

}

.event-brand-band h2{

    margin:0;

    color:#fff;

    font-size: clamp(2.25rem, 4.5vw, 3.75rem);

    font-weight:500;

    line-height:1.2;

    letter-spacing:.01em;

}

/*=====================================
=           EVENT ARCHIVE
=====================================*/

.events-season{

    padding:3rem 0 1.5rem;

    text-align:center;

}

.events-season-title{

    margin:0;

    font-size:clamp(2.25rem,4vw,3.75rem);

    font-weight:300;

    color:var(--color-blue);

}

.events-filter-bar{
	display: none;
    padding:0 0 3rem;

}

.events-filters{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:1rem;

    flex-wrap:wrap;

}

.events-filters a{

    padding:.6rem 1.5rem;

    border:2px solid var(--color-blue);

    color:var(--color-blue);

    text-decoration:none;

    text-transform:uppercase;

    font-size:.8rem;

    font-weight:700;

    letter-spacing:.08em;

    transition:.3s ease;

}

.events-filters a:hover,
.events-filters a.active{

    background:var(--color-blue);

    color:#fff;

}

/*=====================================
=          EVENT CARD
=====================================*/

.event-card {

    position:relative;

    margin-bottom:3rem;

}

.event-card-link{

    display:block;

    text-decoration:none;

    color:inherit;

}

.event-card-image{

    position:relative;

    overflow:hidden;
	aspect-ratio: 1 / 1;
	background: #eee;

}

.event-card-img,
.event-card-image img {

    display:block;

    width:100%;

    height:100%;
	
	object-fit: cover;

    transition:.45s ease;

}

.event-card:hover .event-card-img,
.event-card:hover .event-card-image img {

    transform:scale(1.05);

}

/*=====================================
=          EVENTS TICKETS PAGE
=====================================*/

.events-season {
	padding: 3rem 0 2rem;
	text-align: center;
	background: #fff;
}

.events-season-title {
	margin: 0;
	color: #1a1818;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0;
}

.events-grid-section {
	padding: 0 0 4rem;
	background: #fff;
}

/*=====================================
=          HOME EVENT CARD
=====================================*/

.home-event-card {
	margin-bottom: 0;
}

.home-event-card-content {
	padding-top: 1rem;
}

.home-event-title {
	margin: 0;
	color: #1a1818;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.1;
	text-transform: uppercase;
}

.home-event-rule {
	display: block;
	width: 100%;
	height: 3px;
	margin: 0.55rem 0 0.65rem;
	background: var(--color-green);
}

.home-events-grid .event-card:nth-child(4n + 1) .home-event-rule {
    background: var(--color-green);
}

.home-events-grid .event-card:nth-child(4n + 2) .home-event-rule {
    background: #F4C430;
}

.home-events-grid .event-card:nth-child(4n + 3) .home-event-rule {
    background: var(--color-purple);
}

.home-events-grid .event-card:nth-child(4n + 4) .home-event-rule {
    background: var(--color-blue);
}

.home-event-date {
	margin: 0;
	color: #1a1818;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	line-height: 1.3;
	text-transform: uppercase;
}

/*=====================================
=          HOME EVENTS GRID
=====================================*/

.home-events-section {
    padding: 4rem 0;
    background: #fff;
}

.home-events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
	max-width: 1180px;
	margin: 0 auto;
}

.home-event-card {
    margin-bottom: 0;
}

.home-event-card-content {
    padding-top: 1rem;
}

.home-event-title {
    margin: 0;
    color: #1a1818;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.1;
	min-height: 2.6em;
    text-transform: uppercase;
}

.home-event-rule {
    display: block;
    width: 100%;
    height: 3px;
    margin: 0.55rem 0 0.65rem;
    background: var(--color-green);
}

.home-event-date {
    margin: 0;
    color: #1a1818;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
}

.home-events-footer {
    margin-top: 2.5rem;
    text-align: center;
}

.home-events-button {
    display: inline-block;
    margin: 0 auto;
	padding: 0.85rem 2rem;
	
	font-family: inherit;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	
	border: 2px solid var(--color-green);
	color: var(--color-green);
	background: #fff;
	border-radius: 999px;
	text-decoration: none;
}

.home-events-button:hover,
.home-events-button:focus {
	background: var(--color-green);
	color: #fff;
}

/* == RESPONSIVE ==*/

@media (max-width: 1199px) {
    .home-events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .home-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .home-events-section {
        padding: 3rem 0;
    }

    .home-events-grid {
        grid-template-columns: 1fr;
    }
}

/* ARCHIVE EVENTS PAGE */

.events-grid-section {
	padding: 2rem 0 4rem;
	background: #fff;
}

.events-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem 2rem;
	max-width: 1180px;
	margin: 0 auto;
}

.event-card-content {
	padding-top: 1rem;
}

.event-card-title {
	margin: 0;
	color: #1a1818;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.1;
	min-height: 2.6em;
	text-transform: uppercase;
}

.event-card-rule {
	display: block;
	width: 100%;
	height: 3px;
	margin: 0.55rem 0 0.65rem;
	background: var(--color-green);
}

.event-card--green .event-card-rule {
	background: var(--color-green);
}

.event-card--yellow .event-card-rule {
	background: #f4c430;
}

.event-card--purple .event-card-rule {
	background: var(--color-purple);
}

.event-card--blue .event-card-rule {
	background: var(--color-blue);
}

@media (max-width: 1199px) {
	.events-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 991px) {
	.events-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.events-grid {
		grid-template-columns: 1fr;
	}
}

/** ANIMATION FOR LINES ON EVENT CARDS **/

.event-card-rule,
.home-event-rule {
	display: block;
	width: 100%;
	height: 3px;
	margin: 0.55rem 0 0.65rem;
	position: relative;
	overflow: hidden;
	background: transparent !important;
}

.event-card-rule::after,
.home-event-rule::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.55s ease;
}

/* Animate once the grid is in view */
.events-grid-section.lines-in-view .event-card-rule::after,
.home-events-section.lines-in-view .home-event-rule::after {
	transform: scaleX(1);
}

/* Staggered Timing for the lines under the Events Grids */
.events-grid .event-card:nth-child(1) .event-card-rule::after,
.home-events-grid .event-card:nth-child(1) .home-event-rule::after {
	transition-delay: 0.05s;
}

.events-grid .event-card:nth-child(2) .event-card-rule::after,
.home-events-grid .event-card:nth-child(2) .home-event-rule::after {
	transition-delay: 0.12s;
}

.events-grid .event-card:nth-child(3) .event-card-rule::after,
.home-events-grid .event-card:nth-child(3) .home-event-rule::after {
	transition-delay: 0.19s;
}

.events-grid .event-card:nth-child(4) .event-card-rule::after,
.home-events-grid .event-card:nth-child(4) .home-event-rule::after {
	transition-delay: 0.26s;
}

.event-card--green .event-card-rule::after,
.home-events-grid .event-card:nth-child(4n + 1) .home-event-rule::after {
	background: var(--color-green);
}

.event-card--yellow .event-card-rule::after,
.home-events-grid .event-card:nth-child(4n + 2) .home-event-rule::after {
	background: #F4C430;
}

.event-card--purple .event-card-rule::after,
.home-events-grid .event-card:nth-child(4n + 3) .home-event-rule::after {
	background: var(--color-purple);
}

.event-card--blue .event-card-rule::after,
.home-events-grid .event-card:nth-child(4n + 4) .home-event-rule::after {
	background: var(--color-blue);
}

@media (prefers-reduced-motion: reduce) {
	.event-card-rule::after,
	.home-event-rule::after {
		transition: none;
		transform: scaleX(1);
	}
}

@media (max-width: 767px) {
	.event-card-rule::after,
	.home-event-rule::after {
		transform: scaleX(1) !important;
	}
}

/*===========================================
=          SMALL BOX UNDER HEADER ON HOMEPAGE
=============================================*/

.home-title-bar {
    background-color: #1a1818 !important;
    padding: 18px 20px;
	border-bottom: 5px solid #ffffff;
    text-align: center;
}

.home-title-bar h2 {
    margin: 0;
    color: #ffffff !important;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/*=====================================
=          HOME QUOTE SECTION
=====================================*/

.home-quote-section {
	position: relative;
	padding: 5rem 0;
	background-image: url("/wp-content/uploads/2026/06/sub-header-1.png") !important;
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	/*background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-color: transparent !important;*/
	color: #ffffff;
	overflow: hidden;
}

.home-quote-section__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.42) !important;
	z-index: 1;
}

.home-quote-section .container {
	position: relative;
	z-index: 2;
}

.home-quote-section__content {
	max-width: 1180px;
	margin: 0 auto;
	text-align: center;
}

blockquote.home-quote {
	position: relative !important;
	max-width: 1280px !important;
	margin: 0 auto !important;
	padding: 0 3rem !important;
	border: 0 !important;
	color: #ffffff !important;
	font-family: 'Montserrat', sans-serif !important;
	text-align: center !important;
}

.home-quote__text {
	position: relative !important;
	z-index: 3 !important;
	max-width: 1220px !important;
	margin: 0 auto !important;
}

.home-quote__text p {
	margin: 0 0 1.25rem !important;
	color: #ffffff !important;
	font-family: 'Montserrat', sans-serif !important;
	font-size: clamp(1.15rem, 1.45vw, 1.55rem) !important;
	font-weight: 400 !important;
	line-height: 1.42 !important;
}

.home-quote__text p:last-of-type {
	margin-bottom: 0 !important;
}

.home-quote__text cite {
	display: block !important;
	margin-top: 1.35rem !important;
	color: #ffffff !important;
	font-family: 'Montserrat', sans-serif !important;
	font-size: clamp(0.95rem, 1.1vw, 1.15rem) !important;
	font-style: normal !important;
	font-weight: 800 !important;
	line-height: 1.35 !important;
}

.home-quote__text cite strong {
	font-weight: 800 !important;
}

.home-quote-author {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.35rem;
}

.home-quote-author__image {
	display: block;
	width: 80px;
	height: 80px;
	/*border: 2px solid #ffffff;*/
	border-radius: 50%;
	object-fit: cover;
	flex: 0 0 80px;
}

.home-quote-author cite {
	display: block !important;
	margin-top: 0 !important;
	text-align: left;
}

/*blockquote.home-quote span.home-quote__mark {
	position: absolute !important;
	color: #F4C430 !important;
	font-family: 'Montserrat', sans-serif !important;
	font-size: clamp(4.25rem, 6.5vw, 6.5rem) !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	z-index: 2 !important;
	pointer-events: none;
}

blockquote.home-quote span.home-quote__mark--open {
	top: -1rem !important;
	left: 0.25rem !important;
	right: auto !important;
	bottom: auto !important;
}

blockquote.home-quote span.home-quote__mark--close {
	top: auto !important;
	left: auto !important;
	right: 0.75rem !important;
	bottom: 3rem !important;
}*/

.home-quote__quote {
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.15rem, 1.45vw, 1.55rem);
	font-weight: 400;
	line-height: 1.42;
}

.home-quote__quote p {
	display: inline;
	margin: 0;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

.home-quote__quote p + p {
	display: block;
	margin-top: 1.5rem;
}

/* == RESPONSIVE == */
@media (max-width: 767px) {
	.home-quote-section {
		padding: 4rem 0;
		background-position: center center !important;
	}

	blockquote.home-quote {
		max-width: 100% !important;
		padding: 0 2rem !important;
	}
	
	.home-quote__text {
		max-width: 100% !important;
	}

	.home-quote__text p {
		font-size: 0.95rem !important;
		line-height: 1.45 !important;
		margin-bottom: 1.4rem !important;
	}
	
	.home-quote__text cite {
		margin-top: 1.5rem !important;
		font-size: 0.95rem !important;
		line-height: 1.35 !important;
	}

	blockquote.home-quote span.home-quote__mark {
		font-size: 3.5rem !important;
	}

	blockquote.home-quote span.home-quote__mark--open {
		top: -0.75rem !important;
		left: 0.25rem !important;
	}

	blockquote.home-quote span.home-quote__mark--close {
		right: 0.25rem !important;
		bottom: 3.25rem !important;
	}
}

@media (max-width: 575px) {
	.home-quote-section {
		padding: 3.5rem 0;
	}
	
	.home-quote-author {
		flex-direction: column;
		gap: 0.6rem;
	}
	
	.home-quote-author cite {
		text-align: center;
	}
	
	blockquote.home-quote {
		padding: 0 1.75rem !important;
	}

	blockquote.home-quote span.home-quote__mark--open {
		left: 0.15rem !important;
	}

	blockquote.home-quote span.home-quote__mark--close {
		right: 0.15rem !important;
		bottom: 3.5rem !important;
	}
}

/*=====================================
=          HOME PARTNERS SECTION
=====================================*/

.home-partners-section {
    padding: 2.5rem 0;
    background: #ffffff;
    text-align: center;
}

.home-partners-title {
    margin: 0 0 2rem;
    color: #1a1818;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-partners-grid {
    display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.5rem 4rem;
	max-width: 1280px;
	margin: 0 auto;
}

.home-partner-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 400px;
	height: 150px;
	text-decoration: none;
}

/*.home-partner-logo:nth-child(1) {
    grid-column: 1 / span 2;
}

.home-partner-logo:nth-child(2) {
    grid-column: 3 / span 2;
}

.home-partner-logo:nth-child(3) {
    grid-column: 5 / span 2;
}

.home-partner-logo:nth-child(4) {
    grid-column: 2 / span 2;
}

.home-partner-logo:nth-child(5) {
    grid-column: 4 / span 2;
}*/

.home-partner-logo__img {
    display: block;
    max-width: 275px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.25s ease;
}

/* Herald-Dispatch */
.home-partner-logo:nth-child(1) .home-partner-logo__img {
	max-width: 390px;
	max-height: 145px;
}

/* iHeart Radio */
.home-partner-logo:nth-child(2) .home-partner-logo__img {
	max-width: 390px;
	max-height: 155px;
}

/* Kindred */
.home-partner-logo:nth-child(3) .home-partner-logo__img {
	max-width: 390px;
	max-height: 155px;
}

/* Marshall */
.home-partner-logo:nth-child(4) .home-partner-logo__img {
	max-width: 240px;
	max-height: 185px;
}

/* MU School of Theatre & Dance */
.home-partner-logo:nth-child(5) .home-partner-logo__img {
	max-width: 335px;
	max-height: 190px;
}

/* Village Caregiving */
.home-partner-logo:nth-child(6) .home-partner-logo__img {
	max-width: 400px;
	max-height: 165px;
}

/* WSAZ */
.home-partner-logo:nth-child(7) .home-partner-logo__img {
	max-width: 315px;
	max-height: 150px;
}

.home-partner-logo__img--color {
    position: absolute;
    opacity: 0;
}

.home-partner-logo:hover .home-partner-logo__img--color,
.home-partner-logo:focus .home-partner-logo__img--color,
.home-partner-logo:focus-within .home-partner-logo__img--color {
    opacity: 1;
}

.home-partner-logo:hover .home-partner-logo__img--bw,
.home-partner-logo:focus .home-partner-logo__img--bw,
.home-partner-logo:focus-within .home-partner-logo__img--bw {
    opacity: 0;
}

/* == RESPONSIVE == */
@media (max-width: 991px) {
	.home-partners-grid {
		grid-template-columns: repeat(2, 1fr);
		max-width: 600px;
		gap: 2rem;
	}
	
	.home-partner-logo,
	.home-partner-logo:nth-child(1),
	.home-partner-logo:nth-child(2),
	.home-partner-logo:nth-child(3),
	.home-partner-logo:nth-child(4),
	.home-partner-logo:nth-child(5),
	.home-partner-logo:nth-child(6){
		grid-column: auto;
	}
}

@media (max-width: 575px) {
	.home-partners-section {
		padding: 2.5rem 0;
	}
	
	.home-partners-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.home-partner-logo {
		width: 220px;
		height: 80px;
	}
	
	.home-partner-logo__img {
		max-width: 200px;
		max-height: 70px;
	}
}

/*=====================================
=          HOME TICKETING INFO
=====================================*/
.home-ticketing-info .container {
	max-width: 1200px;
	background: #000000 !important;
}

.home-ticketing-info {
	padding: 4rem 0;
	background: #000000 !important;
	color: #ffffff;
	text-align: center;
}

.home-ticketing-info__content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.home-ticketing-info h2 {
	margin: 0 0 0.25rem;
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.home-ticketing-info__text {
	max-width: 1200px;
	color: #ffffff;
	margin: 0 auto;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.35;
}

.home-ticketing-info__text p {
	margin: 0 0 1.25rem;
	font-size: 20px;
}

.home-ticketing-info__text p:last-child {
	margin-bottom: 0;
}

.home-ticketing-info-button-wrap {
	margin: 1.75rem 0 0;
	text-align: center;
}

.home-ticketing-info-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	height: 48px;
	padding: 0 2rem;
	border: 2px solid #fff;
	border-radius: 999px;
	color: #fff;
	background: transparent;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
}

.home-ticketing-info-button:hover,
.home-ticketing-info-button:focus {
	background: var(--color-green) !important;
	color: #fff !important;
	border-color: var(--color-green) !important;
	text-decoration: none;
}

/*=====================================
=          ABOUT PAGE
=====================================*/

.about-text-section {
	padding: 4rem 0;
	background: #fff;
}

.about-section-heading {
	margin: 0 0 2rem;
	color: #1a1818;
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
}

.about-text-content {
	max-width: 1200px;
	margin: 0 auto;
	color: #1a1818;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.2rem;
	line-height: 1.55;
}

.about-text-content p {
	margin: 0 0 1.75rem;
}

.about-text-content p:last-child {
	margin-bottom: 0;
}

.about-staff-section {
	padding: 3rem 0 5rem;
	background: #fff;
	text-align: center;
}

.about-staff-inner {
	max-width: 900px;
	margin: 0 auto;
	border-top: 3px solid #f4c430;
	padding-top: 3rem;
}

.about-staff-heading {
	margin-bottom: 2.5rem;
	color: #1a1818;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.about-staff-member {
	margin-bottom: 1.75rem;
}

.about-staff-member h3 {
	margin: 0 0 0.15rem;
	color: #1a1818;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.2;
}

.about-staff-title {
	margin: 0;
	color: #1a1818;
	font-size: 1.1rem;
	line-height: 1.35;
}

.about-staff-email {
	display: inline-block;
	color: var(--color-green);
	font-size: 1.1rem;
	line-height: 1.35;
	text-decoration: none;
}

.about-staff-email:hover,
.about-staff-email:focus {
	text-decoration: underline;
}

.about-brand-band {
	background: #1a1818 !important;
	padding: 3rem 0;
	text-align: center;
}

.about-brand-band-text {
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(2.25rem, 4vw, 3.25rem);
	font-weight: 300;
	line-height: 1.22;
	letter-spacing: 0.01em;
	text-transform: none;
}

.text-content-heading {
	margin: 0 0 2.5rem;
	color: #1a1818;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
}

.text-content-block .content-area {
	max-width: 1200px;
	margin: 0 auto;
	font-size: 20px;
	line-height: 1.55;
}

.about-highlight-sentence {
	max-width: 1200px;
	margin: 2.5rem auto;
	padding: 0.85rem 1.5rem;
	background: #ffffff;
	border: 3px solid var(--color-green);
	color: var(--color-green);
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1rem, 1.4vw, 1.25rem);
	font-weight: 800;
	line-height: 1.35;
	text-align: center;
}

/*=====================================
=          STUDENTS PAGE
=====================================*/

.page-students .text-content-block {
	padding: 3rem 0 2rem;
}

.page-students .text-content-block:first-of-type {
	padding-bottom: 2.5rem;
}

.page-students .text-content-heading {
	max-width: 950px;
	margin: 0 auto 2rem;
	color: #1a1818;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
	text-transform: uppercase;
}

.page-students .text-content-block .content-area {
	max-width: 1200px;
	margin: 0 auto;
	color: #1a1818;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.25rem, 1.7vw, 1.65rem);
	font-weight: 400;
	line-height: 1.35;
}

.page-students .content-area p {
	margin: 0 0 1.5rem;
}

.page-students .content-area ul {
	margin: -0.75rem 0 1.75rem;
	padding-left: 1.5rem;
}

.page-students .content-area li {
	margin-bottom: 0.35rem;
}

/* Box Office block */
.page-students .text-content-block:nth-of-type(2) {
	padding: 2.5rem 0 4rem;
	text-align: center;
}

.page-students .text-content-block:nth-of-type(2)::before {
	content: "";
	display: block;
	width: min(760px, 80%);
	height: 3px;
	margin: 0 auto 3rem;
	background: var(--color-blue);
}

.page-students .text-content-block:nth-of-type(2) .text-content-heading {
	margin-bottom: 1.5rem;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.page-students .text-content-block:nth-of-type(2) .content-area {
	max-width: 900px;
	text-align: center;
}

.page-students .text-content-block:nth-of-type(2) .content-area p {
	margin-bottom: 1rem;
}

/* Bottom blue band */
.page-students .about-brand-band {
	padding: 4rem 0;
	background: var(--color-blue);
}

.page-students .about-brand-band-text {
	max-width: 1200px;
	margin: 0 auto;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: .01em;
	text-align: center;
}

/*=====================================
=          SUBPAGE IMAGE ROW
=====================================*/

.image-row-section {
	padding: 0 0 3rem;
	background: #fff;
}

.image-row-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.image-row-item img {
	display: block;
	width: 100%;
	height: 360px;
	object-fit: cover;
}

@media (max-width: 767px) {
	.image-row-grid {
		grid-template-columns: 1fr;
	}
	
	.image-row-item img {
		height: auto;
	}
}

/*=====================================
=          DONATION BUTTON
=====================================*/

.donation-button-wrap {
	margin: 2.5rem 0 0;
	text-align: center;
	line-height: 1;
}

.donation-button-wrap .donation-button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 285px;
	height: 58px;
	padding: 0 2.5rem !important;
	border: 3px solid var(--color-green) !important;
	border-radius: 999px;
	background: #fff !important;
	color: var(--color-green) !important;
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1 !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none !important;
	box-shadow: none !important;
}

.donation-button-wrap .donation-button:hover,
.donation-button-wrap .donation-button:focus {
	background: var(--color-green) !important;
	color: #fff !important;
}

.donation-button-wrap .donation-button {
	position: relative;
	top: -1px;
}


/*=====================================
=          FAQ LIST
=====================================*/

.faq-list-section {
	padding: 3.5rem 0 4.5rem;
	background: #fff;
}

.faq-list-heading {
	margin: 0 0 2.5rem;
	color: #1a1818;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
}

.faq-list {
	max-width: 1120px;
	margin: 0 auto;
}

.faq-list-item {
	border-bottom: 2px solid var(--color-green);
}

.faq-list-question {
	width: 100%;
	padding: 1.35rem 0;
	border: 0;
	background: transparent;
	color: #1a1818;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.25;
	text-align: left;
	text-transform: uppercase;
	cursor: pointer;
}

.faq-list-question:hover,
.faq-list-question:focus {
	color: var(--color-green);
	outline: none;
}

.faq-list-icon {
	flex: 0 0 auto;
	color: var(--color-green);
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1;
}

.faq-list-answer {
	padding: 0 0 1.5rem;
	color: #1a1818;
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}

.faq-list-answer p {
	margin: 0 0 1.25rem;
}

.faq-list-answer p:last-child {
	margin-bottom: 0;
}

.faq-list-answer strong {
	font-weight: 600;
}

@media (max-width: 767px) {
	.faq-list-section {
		padding: 2.25rem 0 3.5rem;
	}
	
	.faq-list-heading {
		font-size: clamp(1.5rem, 7vw, 2rem);
	}
	
	.faq-list-question {
		padding: 1.15rem 0;
		font-size: 1rem;
	}
	
	.faq-list-answer {
		padding-bottom: 1.3rem;
		font-size: 0.95rem;
	}
}

/* Hide mobile-only menu items from desktop nav */
.main-menu .mobile-only-menu-item {
	display: none !important;
}

/* Show them inside the mobile/hamburger menu */
@media (max-width: 991px) {
	.main-menu .mobile-only-menu-item {
		display: block !important;
	}
}

/* Mobile Title Break */
@media (max-width: 575px) {
	.mobile-title-break {
		display: block;
	}
	
	.home-title-bar h2 {
		line-height: 1.15;
	}
}

/* Hide Blue Header on Mobile */
@media (max-width: 991px) {
	.header-blue-bar {
		display: none !important;
	}
}

/* Move Hamburger Next to Tickets Button Mobile */
.ticket-btn-mobile {
	display: none;
}

@media (max-width: 991px) {
	.header-blue-bar {
		display: none !important;
	}
	
	.header-top > .ticket-btn {
		display: none !important;
	}
	
	.ticket-btn-mobile {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	
	.main-nav {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 1.5rem;
		margin-top: 1.25rem;
	}
	
	.main-nav .navbar-toggler {
		margin: 0 !important;
		padding: 0;
		border: 0;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	
	.main-nav .navbar-toggler:focus {
		box-shadow: none;
	}
	
	#navbarCollapse {
		flex-basis: 100%;
		width: 100%;
		margin-top: 1.25rem;
	}
}

/*.header-blue-bar a:hover {
	outline: 3px solid red !important;
}*/