/* Global Elements */
:root{
	--announcement-height: 40px;
	--header-height: 80px;
	--copyright-height: 68px;
}

html body {
	font-size: var(--theme-font-size-body);
}

.xlarge {
	font-size: 24px;
}

.large {
	font-size: 20px;
}

.small {
	font-size: 16px;
}

.xsmall {
	font-size: 14px;
}

/* Admin Bar */
#wpadminbar {
	height: auto
}

#wpadminbar:not(:hover) {
	opacity: 0;
	max-height: 10px;
	overflow: hidden
}

#wpadminbar:hover {
	opacity: 1
}

/* Announcement */
.admin-bar .announcement{
	top: 0;
}
.announcement {
	position: sticky;
	top: 0;
	padding: 8px 0;
	overflow: hidden;
	background: #e22255;
	height: var(--announcement-height);
	z-index: 9999;
}

.announcement .wrap,
.announcement .message {
	display: flex;
}

.announcement .message {
	flex-shrink: 0;
}

.announcement .message > * {
	margin: 0 16px;
	color: #ffffff;
}

/* .site-header */
.admin-bar .site-header {
	top: calc( var(--announcement-height) );
}

.site-header {
	position: sticky;
	top: var(--announcement-height);
	background: #339;
	z-index: 9999;
}

.site-header .ast-container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: var(--header-height);
	align-content: center;
	position: relative;
	gap: 32px;
}

.site-header .ast-container .column,
.site-header .ast-container .column .nav-links{
	display: flex;
	align-items: center;
	gap: 20px;
}

.site-header .ast-container .column .nav-links{
	gap: 12px;
}

.site-header .site-logo-img a{
	display: flex;
	min-height: 32px;
	align-items: center;
	justify-content: center;
	align-content: center;
}

.site-header .custom-logo-link img{
	width:100%;
	max-width: 400px;
}

.site-header .language-switcher{
	list-style: none;
}

.site-header .language-switcher ul{
	list-style: none;
	display: flex;
	margin: 0;
}

.site-header .apply ul{
	list-style: none;
	margin: 0;
}

.site-header .apply a{
	background: var(--theme-button-background-color);
	background-color: var(--theme-button-background-color);
	border-radius: 9999px;
	color: var(--theme-button-color);
	cursor: pointer;
	font-size: var(--theme-button-font-size);
	font-weight: var(--theme-button-font-weight);
	line-height: 1.2;
	padding: 0.5em 0.875em;
	text-align: center;
	text-decoration: none!important;
	text-transform: var(--theme-button-text-transform);
	transition: all .2s ease-in-out;
	white-space: nowrap;
}

.site-header .ast-search-box.header-cover{
	background: #339;
}

.site-header .ast-search-box.header-cover .ast-search-wrapper .search-form{
	width: 100%;
}

.site-header .ast-search-box.header-cover .search-field{
	font-size: 1.4em;
}

.site-header .ast-search-box.header-cover .icon-close{
	display: flex;
}

.site-header .astra-search-shortcode{
	padding: 0;
}

.site-header .icon-search svg{
	fill: #fff;
}

header .menu{
	cursor: pointer;
}

header.active .menu .open-icon{
	display: none;
}

header:not(.active) .menu .close-icon{
	display: none;
}

/* Site Menu */
.admin-bar .site-menu{
	top: calc( var(--announcement-height) + var(--header-height) );
}

.site-menu:not(.active){
	display:none;
}

.site-menu{
	position: fixed;
	top: 0;
	top: calc( var(--announcement-height) + var(--header-height) );
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: calc( 100vh - var(--announcement-height) - var(--header-height) );
	z-index: 10000;
	background: #339;
	display: flex;
	flex-direction: column;
}

.site-menu .menu-links .ast-container{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 40px;
	padding-bottom: 40px;
}

.site-menu .menu-links{
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.site-menu .menu-links ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-menu .menu-links a{
	color: #ffffff;
	font-size: 44px;
}

.site-menu .menu-links a[href="#"],
.site-footer .menu-links a[href="#"]{
	cursor: default;
	outline: 0;
	display: inline-flex;
}

.site-menu .menu-links ul .menu-item{
	display: inline-flex;
	flex-direction: column;
	gap: 12px;
}

.site-menu .menu-links ul.sub-menu:not(.active){
	display: none;
}

.site-menu .menu-links ul.sub-menu{
	margin-bottom: 20px;
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
}

.site-menu .menu-links ul.sub-menu a{
	font-size: 24px;
	display: inline-flex;
	flex-direction: column;
}

/* Footer */
.site-footer .menu-links{
	padding: 80px 0;
}

.site-footer > div{
	padding: 0;
}

.site-footer .menu-links .ast-container{
	display: flex;
	gap: 120px;
}

.site-footer .menu-links .column:first-child{
	display: flex;
	flex-direction: column;
	max-width: 360px;
	gap: 40px;
}

.site-footer .menu-links .column:last-child{
	flex:1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 80px;
}

.site-footer .column > *{
	
}

.site-footer .column ul{
	list-style: none;
	margin: 0;
}

.site-footer .column ul li{

}

.site-footer .menu-item-has-children > a{
	text-transform: uppercase;
	font-weight: bold;
}

.site-footer .column:last-child a{
	color: #000;
	font-size: 16px;
}


/* Copyright */
.copyright{
	height: var(--copyright-height);
	background: #ffffff;
}

.copyright .ast-container{
	display: flex;
	align-items: center;
	justify-content: space-between;
	align-content: center;
	height: 100%;
}

.copyright .ast-footer-copyright{
	font-size: 14px;
}

.copyright .ast-footer-social-wrap,
.copyright .ast-footer-social-wrap .footer-social-inner-wrap{
	display: flex;
	align-items: center;
	align-content: center;
}

.copyright .ast-footer-social-wrap .footer-social-inner-wrap{
	gap: 4px;
}

.copyright .ast-footer-social-wrap a{
	height: 28px;
	width: 28px;
	margin: 0;
}

.copyright .ast-footer-social-wrap a svg{
	fill: #e22255;
}

/* Funders & Sponsors */
.funders-and-sponsors{
	background: #333399;
	padding: 80px 0;
}

.funders-and-sponsors h2 {
		color: #fff;
}

.funders-and-sponsors .align-right {
		text-align: right;
}

.funders-and-sponsors .ast-container:first-child {
		margin-bottom: 60px;
		gap: 20px;
}

.funders-and-sponsors .ast-container{
	display: grid;
	gap: 60px;
}

.funders-and-sponsors .tier-name{
	border-top: 1px solid #fff;
	padding-top: 8px;
}

.funders-and-sponsors .sponsor-tier{
	font-weight: bold;
	color: #fff;
	display: flex;
	flex-direction: column;
	width: 100%;
	justify-content: space-between;
}

.funders-and-sponsors .tier-entities{
	display: flex;
	width: 100%;
	position: relative;
	height: 0;
	padding-bottom: 100%;
}

.funders-and-sponsors .tier-entities .logo-wrap{
	width: 100%;
	height: 0;
	padding-bottom: 100%;
}

.funders-and-sponsors .tier-entities .logo{
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	opacity: 0;
}

.funders-and-sponsors .tier-entities img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/**********
Page: Artist's Profile
**********/

/* Artist's Bio */
.page-artist-gallery .artist-bio {
	gap: 120px;
}

.page-artist-gallery .entry-content .toaf-artist-location dd.toaf-artist-city {
	margin-bottom: 36px;
}

.page-artist-gallery .entry-content .toaf-artist-location, .page-artist-gallery .entry-content .toaf-artist-bio {
	margin-bottom: 0;
}

.page-artist-gallery .entry-content .toaf-artist-info {
	gap: 32px;
}

.page-artist-gallery .entry-content .toaf-artist-social-media {
	gap: 8px;
	margin: 0;
}

.page-artist-gallery .entry-content .toaf-artist-photo img {
	aspect-ratio: 580/680;
	object-fit: cover;
	max-width: none;
	width: 100%;
	position: sticky;
	top: 0;
}

/**********
Page: Artist's Artwork
**********/


/**********
Page: Programming Schedule
**********/
.page-programming-schedule .divider{
	padding:0 6px;
}

.page-programming-schedule .hero-section {
	margin-left: calc( -50vw + 50%);
	margin-right: calc( -50vw + 50%);
	max-width: 100vw;
	width: 100vw;
	display: flex;
	max-height: 600px;
	overflow: hidden;
	position: relative;
	padding: 80px 0;
}

.page-programming-schedule .hero-section .ast-container{
	gap: 40px;
}

.page-programming-schedule .hero-section .column {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 12px;
	justify-content: center;
}

.page-programming-schedule .hero-section .column:last-child {
	height: inherit;
	display: flex;
}

.page-programming-schedule .hero-section .dates-and-location{
	flex-direction: column;
	display: flex;
}

.page-programming-schedule .hero-section .description {
	margin-top: 20px;
}

.page-programming-schedule .hero-section .description p{
	margin-bottom: 0;
}

.page-programming-schedule .hero-section .image {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: flex-end;
	margin: 0 0 -130px 0;
	width: 100%;
}

.page-programming-schedule .hero-section .image img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom;
	max-width: none;
}

.page-programming-schedule .entry-content{
	padding: 80px 0;
}

.page-programming-schedule .important-links{
	display: flex;
	margin-bottom: 40px;
	gap: 12px;
}

.page-programming-schedule .list-of-programs{
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.page-programming-schedule .accordion{
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	margin: -1px 0;
}

.admin-bar.page-programming-schedule .accordion-heading{
	top: calc( var(--header-height) + var(--announcement-height) );
}

.page-programming-schedule .accordion-heading{
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	cursor: pointer;
	background: #fff;
	position: sticky;
	top: calc(var(--header-height) + var(--announcement-height));
	padding: 20px 0;
}

.page-programming-schedule .accordion-heading h2{
	margin: 0;
}

.page-programming-schedule .accordion-heading svg{
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
}

.page-programming-schedule .list-of-programs:not(.active){
	display: none;
}

.page-programming-schedule .list-of-programs{
	margin: 12px 0 32px;
}

.page-programming-schedule .program {
	display: flex;
	gap: 32px;
}

.page-programming-schedule .program .column{
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.page-programming-schedule .program a,
.page-programming-schedule .program .image {
	height: 100%;
}

.page-programming-schedule .program .image {
	max-width: 340px;
	min-width: 340px;
	width: 100%;
}

.page-programming-schedule .program .image img {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}

.page-programming-schedule .program .title a{
	color: inherit;
}

.page-programming-schedule .program .time-and-location {
	display: flex;
}

.page-programming-schedule .program .duration {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.page-programming-schedule .program .duration .date-time {
	display: flex;
	flex-direction: column;
}

.page-programming-schedule .program .artist p{
	margin-bottom: 0;
}

@media screen and (max-width: 921px){
	.page-programming-schedule .hero-section{
		padding: 40px 0;
		max-height: none;
	}
	.page-programming-schedule .hero-section .image{
		margin-bottom: -38%;
		padding: 40px 0 0;
	}
	.site-footer .menu-links{
		padding:60px 0;
	}
	.site-footer .menu-links .ast-container{
		flex-direction:column;
		gap: 60px;
	}
	.site-footer .menu-links .column:last-child{
		gap: 40px;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 782px){
	html{
		margin-top: 0 !important;
	}
}

@media screen and (max-width: 781px){
	.page-artist-gallery .artist-bio {
		gap: 0;
		margin-bottom: 40px;
	}
}

@media (max-width: 768px){
	:root{
		--copyright-height: 74px;
	}
	.site-header .language-switcher,
	.site-header .apply{
		display: none;
	}
	
	.ast-header-break-point .custom-logo-link img{
		max-width: inherit;
	}
	
	.site-menu .menu-links .ast-container{
		gap: 8px;
	}
	
	.site-menu .menu-links a{
		font-size: 32px;
	}
	
	.site-menu .menu-links ul.sub-menu a{
		font-size: 18px;
		display: inline-flex;
		flex-direction: column;
	}
	
	.page-programming-schedule .program {
		flex-direction: column;
	}

	.page-programming-schedule .program .image {
		max-width: 100%;
	}
	.copyright .ast-container{
		flex-direction: column;
		gap: 4px;
		display: flex;
		justify-content: center;
	}
	.copyright .ast-container .column:first-child{
		order:2;
	}

	.funders-and-sponsors .ast-container{
		flex-direction: column;
		grid-template-columns: 1fr 1fr !important;
		gap: 60px;
	}

	.page-programming-schedule .accordion-heading svg{
		width:32px;
		height:32px;
	}
}

@media (max-width: 600px){
	.page-programming-schedule .important-links{
		flex-direction: column;
	}
}