/*
Theme Name: circafestival Festival
Theme URI: https://www.3n.design
Description: This is a custom theme for circafestival designed and developed by 3n Design.
Author: 3n Design
Author URI: https://www.3n.design
Version: 1.0
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0. 	CSS Reset
	1. 	Variables
	2.	Typography
	3. 	Layout Base
	4. 	UI Elements
	5. 	Site Header
	6. 	Menu Modal
	7. 	Page Header
	8.  Grid Model
    9.  Carousel Model
	10.	Templates
	11. Entry Content
	12. Blocks
	13. Site Pagination
	14. Site Footer
    15. Transitions
	15. Accessibility

-------------------------------------------------------------- */

/* --------------------------------------------------------------
= 0. CSS Reset
-------------------------------------------------------------- */

html,
body {
	border: none;
	margin: 0;
	padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
	border: none;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	padding: 0;
	text-align: inherit;
}

blockquote::before,
blockquote::after {
	content: "";
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul, menu {
	list-style: none;
}
figure {
    margin: 0 !important;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}
* {
	-webkit-tap-highlight-color: transparent !important;
}
button,
input,
textarea {
	-webkit-appearance: none;
            appearance: none;
}

/* --------------------------------------------------------------
= 1. Variables
-------------------------------------------------------------- */

:root {
	--cf--color--primary: #000000;
	--cf--color--secondary: #bb3e03;
	--cf--color--tertiary: #ee9b00; 
	--cf--color--background: #fbfbf5;
    --cf--color--footer: #403737;
    --cf--font--catamaran: 'Catamaran', sans-serif;
    --cf--font--averia: 'Averia Serif Libre', cursive;
    --cf--banner-height: 41px;
	--cf--gutter: 10px;
	--cf--margin: 10px;
	--cf--section--gap: 60px;
	--cf--block--gap: 1.5em;
}
@media ( min-width: 768px ) {
    :root {
        --cf--gutter: 20px;
    }
}
@media ( min-width: 1024px ) {
    :root {
        --cf--gutter: 30px;
        --cf--section--gap: 80px;
    }
}
@media ( min-width: 1280px ) {
}

/* --------------------------------------------------------------
= 2. Typography
-------------------------------------------------------------- */

html {
    background-color: var(--cf--color--background);
}
body {
    background-color: var(--cf--color--background);
    font-family: 'Martel Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
b, strong {
	font-weight: 800;
}
i, em {
	font-style: italic;
}
h3, h4, h5, h6, label {
	font-weight: 800;
}
sup {
    font-size: 0.5em;
}

/* --------------------------------------------------------------
= 3. Layout Base
-------------------------------------------------------------- */

main {
	padding-top: var(--cf--banner-height);
}
main.not-found {
    min-height: 50vh;
}
.inner {
	margin: 0 auto;
	max-width: 1680px;
	padding-left: var(--cf--gutter);
    padding-right: var(--cf--gutter);
	position: relative;
}
.pad {
    padding: 0 var(--cf--margin);
}
body.menu--active {
	overflow: hidden;
}
@media all and (min-width: 768px) {
    .flex {
        display: flex;
    }
}
@media all and (min-width: 1280px) {
    main {
        min-height: calc(100vh - 500px);
    }
}

/* --------------------------------------------------------------
= 4. UI Elements
-------------------------------------------------------------- */

svg { 
    display: block;
    overflow: visible 
}
.trns { transition: all 300ms ease }

/* Logo ------------------------------------------------------ */

.logo .trns.red { fill: var(--cf--color--secondary) }
.logo .trns.orange { fill: var(--cf--color--tertiary) }
a:hover .logo .trns.red  { fill: var(--cf--color--tertiary) }
a:hover .logo .trns.orange { fill: var(--cf--color--secondary) }

/* Icon ------------------------------------------------------ */

.icon .trns.red { fill: var(--cf--color--secondary) }
.icon .trns.orange { fill: var(--cf--color--tertiary) }
a:hover .icon .trns.red  { fill: var(--cf--color--tertiary) }
a:hover .icon .trns.orange { fill: var(--cf--color--secondary) }

/* Arrows ---------------------------------------------------- */

.arrow .trns.black { fill: var(--cf--color--primary) }
.arrow .trns.white { fill: #ffffff }
a:hover .arrow .trns.black,
button:hover .arrow .trns.black { fill: var(--cf--color--secondary) }
div:hover > .arrow .trns.white { fill: var(--cf--color--primary) }

/* One Logo -------------------------------------------------- */

.one-logo .white { fill: #ffffff }

/* Hamburger ------------------------------------------------- */

#hamburger {
    background: transparent;
    border: none;
    display: block;
	height: 40px;
    position: relative;
    width: 20px;
	-webkit-appearance: none;
            appearance: none;
}
#hamburger > span {
    height: 20px;
	position: absolute;
        top: 10px;
        left: 0;
    width: 20px;
}
#hamburger > span:before,
#hamburger > span:after {
	content: '';
}
#hamburger > span:before,
#hamburger > span:after,
#hamburger > span span {
	background-color: var(--cf--color--primary);
	display: block;
	height: 2px;
	position: absolute;
		right: 0;
	width: 20px;
	transition: all 300ms ease;
}
#hamburger > span:hover:before,
#hamburger > span:hover:after,
#hamburger > span:hover span {
	background-color: var(--cf--color--secondary);
}
#hamburger > span:focus:before,
#hamburger > span:focus:after,
#hamburger > span:focus span {
	background-color: var(--cf--color--primary);
}
#hamburger > span:before {
	top: 2px;
}
#hamburger > span span {
	top: 9px;
}
#hamburger > span:after {
	top: 16px;
}
.menu--active #hamburger > span:before {
	transform: rotate(-45deg);
}
.menu--active #hamburger > span:after {
	transform: rotate(45deg);
}
.menu--active #hamburger > span:before,
.menu--active #hamburger > span:after {
    top: 9px;
	background-color: var(--cf--color--primary);
}
.menu--active #hamburger > span span,
.menu--active #hamburger > span:hover span {
	background-color: transparent;
}
.menu--active #hamburger > span:hover:before,
.menu--active #hamburger > span:hover:after {
	background-color: var(--cf--color--secondary);
}
.menu--active #hamburger > span:focus:before,
.menu--active #hamburger > span:focus:after {
	background-color: var(--cf--color--primary);
}

/* Magnifying Glass ------------------------------------------ */

#magnifying-glass {
    background: transparent;
    border: none;
    display: block;
	height: 40px;
    position: relative;
    width: 20px;
	-webkit-appearance: none;
            appearance: none;
}
#magnifying-glass > span {
    height: 20px;
	position: absolute;
        top: 10px;
        left: 0;
    width: 20px;
}
#magnifying-glass span:before {
	border: 2px solid var(--cf--color--primary);
    border-radius: 8px;
    content: '';
    height: 16px;
    position: absolute;
        top: 0;
        left: 0;
	width: 16px;
    transition: all 100ms ease;
}
#magnifying-glass span:after {
	background-color: var(--cf--color--primary);
    content: '';
    height: 8px;
	position: absolute;
        top: 12px;
        left: 16px;
    transform: rotate(-45deg);
	width: 2px;
    transition: all 100ms ease;
}
#magnifying-glass:hover span:before,
#magnifying-glass:focus span:before {
	background-color: transparent;
	border-color: var(--cf--color--secondary);
}
#magnifying-glass:hover span:after,
#magnifying-glass:focus span:after {
	background-color: var(--cf--color--secondary);
}
.search--active #magnifying-glass > span:before {
    border: none;
    border-radius: 0;
	transform: rotate(45deg);
}
.search--active #magnifying-glass > span:before,
.search--active #magnifying-glass > span:after {
    top: 9px;
	background-color: var(--cf--color--primary);
    display: block;
	height: 2px;
	position: absolute;
		left: 0;
	width: 20px;
}
.search--active #magnifying-glass > span:hover:before,
.search--active #magnifying-glass > span:hover:after {
	background-color: var(--cf--color--secondary);
}

/* Button ---------------------------------------------------- */

a.btn,
.btn-container button {
    background-color: var(--cf--color--secondary);
    border: none;
    border-radius: 25px;
    color: #fff !important;
    display: block;
    font-size: 18px;
    font-weight: 900;
    height: 50px;
    letter-spacing: 0.02em;
    line-height: 50px;
    max-width: 350px;
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: all 300ms ease !important;
    width: 100%;
}
a.btn:hover,
.btn-container button:hover {
    background-color: var(--cf--color--tertiary);
    color: var(--cf--color--primary) !important;
}
@media ( min-width: 768px ) {
    a.btn,
    .btn-container button {
        border-radius: 30px;
        height: 60px;
        line-height: 60px;
    }
}

/* --------------------------------------------------------------
= 5. Site Header
-------------------------------------------------------------- */

#site-header {
    background-color: var(--cf--color--background);
}
#site-header .inner {
    padding-top: 20px;
}
#site-header--wrapper {
    border-bottom: 1px solid var(--cf--color--primary);
    padding-bottom: 20px;
}
#site-title {
    width: 251px;
}
#site-title svg {
    height: 80px;
    width: auto;
}
#site-credit {
    color: var(--cf--color--secondary);
    /* font-family: var(--cf--font--averia); */
    font-size: 14px;
    font-weight: 800;
    line-height: 10px;
    padding-top: 10px;
    white-space: nowrap;
}
@media all and (min-width: 768px) {
    #site-header--wrapper {
        display: flex;
    }
    #site-title {
        width: 314px;
    }
    #site-title svg {
        height: 100px;
    }
    #site-credit {
        font-size: 16px;
        line-height: 12px;
        padding-top: 88px;
        padding-left: 20px;
    }
}
@media all and (min-width: 1024px) {
    #site-credit {
        font-size: 18px;
        line-height: 14px;
        padding-top: 86px;
    }
}
@media all and (min-width: 1280px) {
    #site-credit {
        font-size: 20px;
        line-height: 16px;
        padding-top: 84px;
    }
}

/* --------------------------------------------------------------
= 6. Menu Modal
-------------------------------------------------------------- */

#site-banner {
    background-color: var(--cf--color--background);
    position: absolute;
    width: 100%;
    z-index: 2000;
}
.banner-sticky #site-banner {
    position: fixed;
        top: 0;
        left: 0;
}
#site-banner--wrapper {
    border-bottom: 1px solid var(--cf--color--primary);
    display: flex;
}
#site-menu--wrapper {
    width: calc(100% - 60px);
}
#site-icon {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 300ms ease;
}
.banner-sticky #site-icon {
    max-width: 50px;
    opacity: 1;
}
#site-icon a {
    display: block;
    padding: 10px 20px 10px 0;
}
#site-icon svg {
    height: 20px;
    width: auto;
}
#site-controls {
    display: flex;
    width: 60px;
}
#site-menu--open,
#site-search--open {
    margin-left: 10px;
}
#site-menu,
#search-form,
.search--active #site-icon,
.search--active #site-menu {
    display: none;
}
.search--active #search-form  {
    display: flex;
}
#search-form {
    width: 100%;
}
#search-form .search-field {
    background-color: transparent;
    border: none;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    width: calc(100% - 20px);
}
#search-form .search-field:focus {
    outline: 0;
}
#search-form .search-submit {
    background-color: transparent;
    height: 40px;
    line-height: 40px;
    width: 20px;
}
#search-form .search-submit svg {
    height: auto;
    width: 100%;
}
#site-menu--mobile {
    background-color: var(--cf--color--background);
    display: none;
    font-family: var(--cf--font--catamaran);
    font-weight: 900;
    letter-spacing: 0.02em;
    height: calc(100vh - var(--cf--banner-height));
}
#site-menu--mobile ul {
    padding: 10px 0;
    text-align: right;
}
#site-menu--mobile ul li {
    padding: 0 var(--cf--margin);
}
#site-menu--mobile ul li a {
    color: var(--cf--color--primary);
    font-size: 17px;
    line-height: 40px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 300ms ease;
}
#site-menu--mobile ul li a:hover,
#site-menu--mobile ul li.current-menu-item a {
    color: var(--cf--color--secondary);
}
@media all and (min-width: 768px) {
    #site-menu--wrapper {
        display: flex;
        width: calc(100% - 40px);
    }
    #site-menu {
        display: block;
        font-family: var(--cf--font--catamaran);
        font-weight: 900;
        letter-spacing: 0.02em;
        width: calc(100% - 60px);
    }
    #site-menu menu {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    #site-menu menu li {
        display: inline-block;
        padding-right: 20px;
    }
    #site-menu menu li a {
        color: var(--cf--color--primary);
        font-size: 17px;
        line-height: 40px;
        text-decoration: none;
        text-transform: uppercase;
        transition: color 300ms ease;
    }
    #site-menu menu li a:hover,
    #site-menu menu li.current-menu-item a {
        color: var(--cf--color--secondary);
    }
    #site-controls {
        width: 40px;
    }
    #site-menu--open {
        display: none;
    }
    #site-search--open {
        margin-left: 20px;
    }
}

/* --------------------------------------------------------------
= 7. Page Header
-------------------------------------------------------------- */

#page-header,
#spotlight-header {
    padding-top: clamp(3.75rem, 3.3333rem + 2.0833vw, 5rem);
    padding-bottom: clamp(3.75rem, 3.3333rem + 2.0833vw, 5rem);
}
.page-title {
    font-size: clamp(2.25rem, 2rem + 1.25vw, 3rem);
    font-weight: 800;
    line-height: 1.125em;
    text-transform: uppercase;
}
.single .page-title {
    text-transform: none;
}
.page-title > span {
    color: var(--cf--color--secondary);
    text-transform: none;
}
.page-title.has-text-align-center {
	text-align: center;
}
.download-link a {
    color: var(--cf--color--primary);
    display: block;
    font-family: var(--cf--font--catamaran);
    font-size: 1.25em;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
    transition: color 300ms ease;
}
.download-link a:hover {
    color: var(--cf--color--secondary);
}
.download-link .arrow {
    display: inline-block;
    height: 15px;
    margin-left: 5px;
    width: 12px;
}
@media all and (min-width: 768px) {
    .flex .page-title {
        flex: 1;
    }
    .download-link {
        margin-top: clamp(1rem, 2rem + 1.25vw, 1.3125em)
    }
}

/* Event Header ---------------------------------------------- */

#event-header {
    margin-bottom: calc(40px - 0.25em);
	padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
}
#event-header:after {
    background-color: var(--cf--color--primary);
    content: '';
    display: block;
    height: 1px;
    position: absolute;
        bottom: -1px;
        right: var(--cf--margin);
        left: var(--cf--margin);
}
#event-header figure {
    position: relative;
}
#event-header figure img {
    display: block;
    height: auto;
    width: 100%;
}
#event-header figure figcaption {
    color: #fff;
    font-size: 0.75rem;
    line-height: 1.5em;
    position: absolute;
        left: 10px;
        bottom: calc(10px - 0.25em);
}
#event-header .entry-title {
    /* font-family: var(--cf--font--averia); */
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.25em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
#event-header .entry-date {
    color: var(--cf--color--secondary);
    font-size: 1.5em;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.25em;
}
#event-header .entry-type {
    color: var(--cf--color--secondary);
    font-family: var(--cf--font--catamaran);
    font-weight: 900;
    letter-spacing: 0.02em;
}
#event-header .entry-type {
    text-transform: uppercase;
}
#event-header .entry-type a {
    color: var(--cf--color--secondary);
    transition: color 300ms ease;
}
#event-header .entry-type a:hover {
    color: var(--cf--color--primary);
}
#event-header .event--details,
#event-header .btn-container {
    margin-top: 1.5em;
}
@media all and (min-width: 1024px) {
    #event-header {
        display: flex;
        gap: 20px;
    }
    #event-header figure {
        overflow: hidden;
        position: relative;
        width: calc(2/3 * 100%);
    }
    /* #event-header figure img {
        height: 100%;
        position: absolute;
            top: 0;
            left: 50%;
        transform: translateX(-50%);
        width: auto;
    } */
    #event-header .detail-wrapper {
        position: relative;
        width: calc(1/3 * 100%);
    }
    #event-header .entry-title {
        font-size: 1.5rem;
        margin-top: -0.05em;
        margin-bottom: 0.25em;
    }
    #event-header .entry-date {
        font-size: 1.25em;
    }
    #event-header .event--details {
        position: absolute;
            bottom: 0;
            left: 0;
        width: 100%;
    }
    #event-header .event--details .entry-venue {
        margin-bottom: -0.4em;
    }
}
@media all and (min-width: 1280px) {
    #event-header {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    #event-header figure img {
        height: 100%;
        object-fit: cover;
        object-position: center;
        position: relative;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
        transform: none;
        width: 100%;
    }
    #event-header .entry-title {
        font-size: 2rem;
        margin-bottom: 0.5em;
    }
    #event-header .event--details {
        font-size: 1.125em;
    }
}
@media all and (min-width: 1600px) {
    #event-header .entry-title {
        font-size: 3rem;
    }
    #event-header .entry-date {
        font-size: 2em;
    }
}
/* --------------------------------------------------------------
= 8. Grid Model
-------------------------------------------------------------- */

.grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 0;
}
.grid:after {
	display: block;
	content: '';
	flex: 999 999 auto;
}
@media all and (min-width: 768px) {
	.grid .card {
		width: 50%;
	}
}
@media all and (min-width: 1024px) {
	.grid .card {
		width: calc(1/3 * 100%);
	}
}
@media all and (min-width: 1280px) {
	.grid .card {
		width: 25%;
	}
    .grid.lrg .card {
		width: calc(1/3 * 100%);
	}
}

/* Grid: Cell ------------------------------------------------ */

.card {
    margin-bottom: var(--cf--section--gap);
}
.card a {
    text-decoration: none;
}
.card.cf_events a {
    color: var(--cf--color--primary);
}
.card.cf_exhibitions a {
    color: #fff;
}
.card a figure {
    overflow: hidden; 
}
.card a figure img {
    aspect-ratio: 8 / 5;
    display: block;
    height: auto;  
    object-fit: cover;
    object-position: center;
    width: 100%;
    transition: transform 500ms ease;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
.card a:hover figure img {
    transform: scale(1.05);
}
.card a .detail-wrapper {
    padding: calc(40px - 0.5em) 20px;
}
.card.cf_events a figure,
.card.cf_events a .detail-wrapper {
    background-color: var(--cf--color--tertiary);
}
.card.cf_exhibitions a figure,
.card.cf_exhibitions a .detail-wrapper {
    background-color: var(--cf--color--secondary);
}
.card a .entry-type {
    font-family: var(--cf--font--catamaran);
    font-weight: 900;
    letter-spacing: 0.02em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
}
.card a .entry-title {
    /* font-family: var(--cf--font--averia); */
    font-size: 1.5em;
    font-weight: 800;
    line-height: 1.5em; /* was 0.25em */
    min-height: 4.5em;
    /* overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; */
}
.card a .entry-date {
    font-size: 1.125em;
    font-weight: 700;
    line-height: 1.25em;
    margin-top: 1.25em;
}
@media all and (min-width: 1024px) {
    .grid.lrg .card a .entry-title {
        font-size: 1.5em;   
    }
    .grid.lrg .card a .entry-date {
        font-size: 1.25em;    
    }
}
@media all and (min-width: 1280px) {
    .grid.lrg .card a .entry-title {
        font-size: 2em;   
    }
    .grid.lrg .card a .entry-date {
        font-size: 1.5em;    
    }
}

/* Grid: List ------------------------------------------------ */

.row {
    margin-bottom: -1px;
    width: 100%;
}
.row:after,
.row:first-child:before {
    background-color: var(--cf--color--primary);
    content: '';
    display: block;
    height: 1px;
    width: 100%;
}
body:not(.home) .row:last-child:after {
    display: none;
}
.row a {
    color: var(--cf--color--primary);
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
    text-decoration: none;
    width: 100%;
    transition: color 300ms ease;
}
.row a:hover {
    color: var(--cf--color--secondary);
}
.row a .entry-type {
    color: var(--cf--color--secondary);
    font-family: var(--cf--font--catamaran);
    font-size: 1.125em;
    font-weight: 900;
    letter-spacing: 0.02em;
    margin-bottom: 0.25em;
    text-transform: uppercase;
}
.row a .entry-title {
    font-size: 1.5em;
    font-weight: 800;
    line-height: 1.5em;
}
.row a .entry-date,
.row a .entry-venue {
    font-weight: 700;
    line-height: 1.25em;
}
.row a .entry-date {
    margin-top: 0.5em;
}
.row a .entry-venue {
    display: none
}
@media all and (min-width: 768px) {
    .row a {
        display: flex;
    }
    .row .title-wrapper {
        padding-right: var(--cf--margin);
        width: calc(2/3 * 100%)
    }
    .row .detail-wrapper {
        padding-left: var(--cf--margin);
        position: relative;
        width: calc(1/3 * 100%)
    }
    .row a .entry-date,
    .row a .entry-venue {
        text-align: right;
    }
    .row a .entry-date {
        margin-top: 0;
    }
    .row a .entry-venue {
        display: block;
        position: absolute;
            bottom: 0;
            right: 0;
    }
}
@media all and (min-width: 1024px) {
    .row:first-child:before {
        display: none;
    }
}

/* --------------------------------------------------------------
= 9. Carousel Model
-------------------------------------------------------------- */

#carousel {
    height: calc(100vh - 262px);
	padding-top: 20px;
    padding-bottom: 40px;
    position: relative;
}
#exhibition-carousel {
    margin-bottom: calc(40px - 0.25em);
    padding-bottom: 40px;
    position: relative;
}
#carousel:after,
#exhibition-carousel:after {
    background-color: var(--cf--color--primary);
    content: '';
    display: block;
    height: 1px;
    position: absolute;
        bottom: -1px;
        right: var(--cf--margin);
        left: var(--cf--margin);
}
.slider {
	display: block;
	list-style: none;
    height: 100%;
	margin: 0;
	position: relative;
	width: 100%;
}
.slider figure {
    position: relative;
}
.slider figure figcaption {
    color: #fff;
	font-size: 0.75rem;
    line-height: 1.5em;
    padding: 0 10px 3px;
	position: absolute;
        bottom: 0;
        left: 0;
    z-index: 100;
}
#exhibition-carousel .slider {
    height: 0;
    padding-bottom: 56.25%;
}
.slide--nav_tabs {
	line-height: 10px;
	margin: 0;
	position: absolute;
		bottom: 15px;
		right: 0;
	width: 100%;
	z-index: 200;
	text-align: center;
}
.slide--nav_tabs li {
	background-color: #fff;
    border: 1px solid var(--cf--color--primary);
	border-radius: 5px;
	display: inline-block;
	height: 10px;
	margin: 0 3px;
	overflow: hidden;
	position: relative;
	width: 10px;
}
.slide--nav_tabs li.slide--nav_here {
	background-color: var(--cf--color--primary);
}
.slide--nav_tabs li a {
	position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	text-indent: -9999px;
}
.slide--nav_nav {
	display: none;
}
@media all and (min-width: 768px) {
	#exhibition-carousel .slide--nav_nav {
		display: block;
		height: 16px;
		position: absolute;
			bottom: 12px;
		width: 20px;
		z-index: 300;
	}
	#exhibition-carousel .slide--nav_nav.prev {
		left: 10px;
	}
	#exhibition-carousel .slide--nav_nav.next {
		right: 10px;
	}
    #exhibition-carousel .slide--nav_nav svg {
        height: 16px;
        width: 20px;
    }
}
@media all and (min-width: 1024px) {
    #carousel {
        max-height: 600px;
        padding-top: 40px;
    }
}
@media all and (min-width: 1280px) {
    #carousel {
        height: clamp(38.0625rem, 2.6625rem + 44.25vw, 49.125rem);
        max-height: 100vh;
    }
}

/* Carousel: Slide ------------------------------------------- */

.slide {
    height: 100%;
	position: absolute;
		top: 0;
		left: 0;
    width: 100%;
}
#exhibition-carousel .slide {
    height: 0;
    padding-bottom: 56.25%;
} 
.slide a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.slide.cf_events {
    background-color: var(--cf--color--tertiary);
}
.slide.cf_exhibitions {
    background-color: var(--cf--color--secondary);
}
.slide.cf_events a {
    color: var(--cf--color--primary);
}
.slide.cf_exhibitions a {
    color: #fff;
}
.slide figure {
	height: 0;
    overflow: hidden;
	padding-bottom: 66.57%;
    position: relative;
	width: 100%;
}
#exhibition-carousel .slide figure {
    height: 100%;
    padding-bottom: 0;
    position: absolute;
        top: 0;
        left: 0;
    width: 100%;
}
#carousel .slide figure img {
    display: block;
    height: 100%;
    position: absolute;
        top: 0;
        left: 50%;
    transform: translateX(-50%);
    width: auto;
    transition: all 500ms ease;
}
#carousel .slide:hover figure img {
    left: 50%;
    transform: translateX(-50%) scale(1.025);
}
#exhibition-carousel .slide figure img {
    clear: both;
    display: block;
    height: auto;
    margin: 0 auto;
    max-height: 100%;
    max-width: 100%;
    position: relative;
    width: auto;
    z-index: 100;
    transition: transform 500ms ease;
}
.slide a .detail-wrapper {
    flex: 1;
    padding: 20px;
    position: relative;
}
.slide .entry-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.25em;
    margin-bottom: 0.25em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.slide .entry-date {
    font-size: 1.25em;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.25em;
}
.slide .entry-type,
.slide .opening-title {
    font-family: var(--cf--font--catamaran);
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.slide .slide--footer {
    position: absolute;
        bottom: calc(20px - 0.25em);
        left: 20px;
}
.slide .entry-venue,
.slide .exhibition-opening {
    display: none;
}
@media all and (min-width: 768px) {
    .slide .entry-title {
        font-size: 2.25rem;
        overflow: visible;
        text-overflow: inherit;
        white-space: normal;
    }
    .slide .entry-date {
        font-size: 1.5em;
    }
    .slide .entry-venue {
        display: block;
    }
}
@media all and (min-width: 1024px) {
    .slide a {
        flex-direction: row;
    }
    .slide figure {
        height: 100%;
        overflow: hidden;
        padding-bottom: 0;
        width: calc(2/3 * 100% - 7px);
    }
    .slide .detail-wrapper {
        width: calc(1/3 * 100% + 7px);
    }
    .slide.cf_exhibitions .detail-wrapper {
        order: 1;
    }
    .slide.cf_exhibitions figure {
        order: 2;
    }
    .slide .exhibition-opening {
        display: block;
        margin-bottom: 1em;
    }
    .slide.cf_events .entry-title {
        font-size: 1.5rem;
        margin-bottom: 0.25em;
    }
    .slide .entry-date {
        font-size: 1.25em;
    } 
    .slide.cf_exhibitions .entry-date {
        font-size: 1.5em;
    } 
}
@media all and (min-width: 1280px) {
    .slide .entry-title,
    .slide.cf_events .entry-title {
        font-size: 2.25rem;
        margin-bottom: 0.5em;
    }
    .slide .entry-date {
        font-size: 1.75em;
    } 
    .slide a .detail-wrapper {
        padding: calc(40px - 0.25em) 20px;
    }
    .slide .slide--footer {
        font-size: 1.125em;
    }
}
@media all and (min-width: 1600px) {
    .slide .entry-title,
    .slide.cf_events .entry-title {
        font-size: 3rem;
        margin-bottom: 0.5em;
    }
}

/* --------------------------------------------------------------
= 10. Templates
-------------------------------------------------------------- */

/* Homepage v2 ----------------------------------------------- */

#hero {
    padding-top: 20px;
    padding-bottom: 40px;
    position: relative;
}
#hero .slider-container {
    aspect-ratio: 3 / 2;
    position: relative;
}
#hero .slider figure {
    height: 100%;
    padding-bottom: 0;
    width: 100% !important;
}
#hero .slider img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
#hero .about-the-festival {
    margin-bottom: 2.5em;
    position: relative;
}
#hero .hero--title {
    font-size: 2.25em;
    font-weight: 700;
    line-height: 1.5em;
}
#hero .hero--date-range {
    font-weight: 900;
    line-height: 1.5em;
}
#hero .hero--date-range {
    font-size: 1.5em;
}
#hero .hero--content {
    line-height: 1.5em;
    margin: 1.25em 0 1.5em;
}
#hero .slide--nav_tabs {
    bottom: -25px;
}
#upcoming {
    margin-bottom: var(--cf--section--gap);
}
#mailchimp-form {
    padding-top: clamp(3.75rem, 3.3333rem + 2.0833vw, 5rem);
    padding-bottom: clamp(3.75rem, 3.3333rem + 2.0833vw, 5rem);
    position: relative;
}
#hero:after,
#mailchimp-form:after {
    background-color: var(--cf--color--primary);
    content: '';
    display: block;
    height: 1px;
    position: absolute;
    bottom: -1px;
    right: var(--cf--margin);
    left: var(--cf--margin);
}
h2.form-title {
    font-size: clamp(1.125em, 0.8382rem + 2.9412vw, 1.5em);
    line-height: 1.5em;
    margin-bottom: 0.5em;
}
.mc_merge_var {
    display: flex;
    flex-direction: column-reverse;
}
.mc_merge_var,
.mc_signup_submit,
#mc_message {
    padding-left: var(--cf--margin) !important;
    padding-right: var(--cf--margin) !important;
}
#mc-indicates-required,
#mc_display_rewards {
    display: none;
}
#mc_message {
    margin-bottom: 0.5em;
    width: 100%;
}
.mc_merge_var label {
    margin-top: 0.5em;
    margin-bottom: 0;
    text-transform: uppercase;
}
.mc_merge_var label span {
    color: var(--cf--color--secondary);
}
.mc_merge_var input[type="text"],
.mc_merge_var input[type="email"] {
    border: 1px solid var(--cf--color--primary);
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    width: 100%;
}
.mc_merge_var input[type="text"]:focus,
.mc_merge_var input[type="email"]:focus {
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	outline: none;
}
.mc_signup_submit #mc_signup_submit {
    margin-top: 0;
    padding: 0 !important;
    width: 100% !important;
}
.mc_signup_submit input.mc_signup_submit_button[type="submit"] {
    background-color: var(--cf--color--secondary);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-family: var(--cf--font--catamaran);
    font-size: 18px;
    font-weight: 900;
    height: 50px;
    letter-spacing: 0.02em;
    line-height: 50px;
    text-transform: uppercase;
    transition: all 300ms ease;
    width: 100%;
}
.mc_signup_submit input.mc_signup_submit_button[type="submit"]:hover {
    background-color: var(--cf--color--tertiary);
    color: var(--cf--color--primary);
}
.mc_signup_submit form.sent .wpcf7-response-output {
    border-color: var(--cf--color--tertiary);
    border-radius: 5px;
    margin: 2em 0 1em;
    padding: 0.2em 0.5em 0.1em;
}
.mc_signup_submit_button {
    margin-top: 0!important;
    padding: 0!important;
}
.mc-indicates-required {
    display: none;
}
@media ( min-width: 768px ) {
    #hero {
        padding-top: 40px;
    }
    #hero .hero--content {
        font-size: 1.5em;
    }
    .mc_form_inside {
        display: flex;
        flex-wrap: wrap;
    }
    .mc_merge_var,
    .mc_signup_submit {
        width: 50%;
    }
    .mc_merge_var input[type="text"],
    .mc_merge_var input[type="email"] {
        height: 60px;
    }
    .mc_merge_var input[type="text"],
    .mc_merge_var input[type="email"] {
        font-size: 18px;
    }
    .mc_signup_submit input.mc_signup_submit_button[type="submit"] {
        border-radius: 30px;
        height: 60px;
        line-height: 60px;
        width: 100%;
    }
}
@media ( min-width: 1024px ) {
    #hero {
        display: flex;
    }
    #hero .about-the-festival {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        margin-bottom: 0;
        width: calc(1/3 * 100%);    
    }
    #hero .slider-container {
        width: calc(2/3 * 100%);   
    }
    #hero .hero--title {
        font-size: 1.5em;
    }
    #hero .hero--date-range,
    #hero .hero--content {
        font-size: 1em;
    }
    #hero .hero--content {
        flex: 1;
        margin: 0 0 0.75em;
        position: relative;
    }
    #hero .hero--content p {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .mc_merge_var,
    .mc_signup_submit {
        width: 25%;
    }
} 
@media ( min-width: 1280px ) {
    #hero .hero--title {
        font-size: 2.25em;
    }
    #hero .hero--date-range,
    #hero .hero--content {
        font-size: 1.5em;
    }
    #hero .hero--content {
        margin-top: 2.5em;
    }
}

/* Volunteer ------------------------------------------------- */

#volunteer-form {
    padding-top: clamp(3.75rem, 3.3333rem + 2.0833vw, 5rem);
    padding-bottom: clamp(3.75rem, 3.3333rem + 2.0833vw, 5rem);
    position: relative;
}
#volunteer-form:after {
    background-color: var(--cf--color--primary);
    content: '';
    display: block;
    height: 1px;
    position: absolute;
    bottom: -1px;
    right: var(--cf--margin);
    left: var(--cf--margin);
}
#volunteer-form .volunteer-announcement {
    line-height: 1.5em;
    margin-bottom: 1.25em;
}
#volunteer-form .volunteer-button .btn {
    max-width: 100% !important;
    width: 100% !important;
}
@media ( min-width: 768px ) {
    #volunteer-form .volunteer-button {
        width: 50%;
    }
}
@media ( min-width: 1024px ) {
    #volunteer-form .volunteer-announcement {
        margin-bottom: 0;
    }
    #volunteer-form .volunteer-layout {
        display: flex;
    }
    #volunteer-form .volunteer-announcement {
        width: calc(2/3 * 100%);
    }
    #volunteer-form .volunteer-button {
        width: calc(1/3 * 100%);
    }
}
@media ( min-width: 1280px ) {
    #volunteer-form .volunteer-announcement {
        font-size: 1.25em;
        width: 75%;
    }
    #volunteer-form .volunteer-button {
        width: 25%;
    }
}

/* Sponsors -------------------------------------------------- */

.sponsor--section {
    border-bottom: 1px solid var(--cf--color--primary);
    padding-top: 40px;
    padding-bottom: var(--cf--block--gap);
}
.sponsor--section:first-child {
    border-top: 1px solid var(--cf--color--primary);
}
.section--logos {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.section--logos .logo-container {
    margin-bottom: var(--cf--block--gap);
    width: 50%;
}
.section--logos .logo-container img {
    display: block;
    height: auto;
    max-height: 100px;
    max-width: 100%;
    margin: 0 auto;
    width: auto;
}
@media all and (min-width: 768px) {
    .section--logos.logos--m .logo-container {
        width: 25%;
    }
    .section--logos.logos--s .logo-container {
        width: calc(1/6 * 100%);
    }
}
@media all and (min-width: 1280px) {
    .section--logos.logos--m .logo-container {
        width: calc(1/6 * 100%);
    }
    .section--logos.logos--s .logo-container {
        width: calc(1/8 * 100%);
    }
}

/* Partners -------------------------------------------------- */

ul.partners {
    list-style: none !important;
    padding-left: var(--cf--margin) !important;
}
ul.partners .partner--item {
    border-bottom: 1px solid var(--cf--color--primary);
    padding-top: 40px;
    padding-bottom: 0.25em;
}
ul.partners .partner--item:first-child {
    border-top: 1px solid var(--cf--color--primary);
}
ul.partners .partner--item .partner--logo {
    display: block;
    height: auto;
    margin: 0 auto calc(40px - 0.25em);
    max-height: 100px;
    max-width: 100%;
    width: auto;
    transition: transform 500ms ease;
}
ul.partners .partner--item a:hover .partner--logo {
    transform: scale(1.05);
}
ul.partners .partner--item a {
    text-decoration: none;
}
@media ( min-width: 768px ) {
    ul.partners .partner--item .partner--logo {
        max-height: 100px;
        max-width: 450px;
    }
}

/* Events ---------------------------------------------------- */

.event-section {
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
    position: relative;
}
.event-section:before {
    background-color: var(--cf--color--primary);
    content: '';
    display: block;
    height: 1px;
    position: absolute;
        top: 0;
        right: var(--cf--margin);
        left: var(--cf--margin);
}
.title-container,
.explore-container {
    position: relative;
    width: 100%;
}
.title-container {
    display: flex;
}
.explore-container {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
}
.explore--active .explore-container {
    max-height: 1000px;
}
.filter--clear {
    line-height: 1em;
    height: 1em;
    padding-right: var(--cf--margin);
}
.explore-section--type,
.explore-section--location {
    width: calc(1/2 * 100%);
}
.explore-section--type,
.explore-section--location,
.explore-section--calendar {
    margin-bottom: 20px;
}
h4.section-title {
    font-family: var(--cf--font--catamaran);
    font-size: 1.125em;
    font-weight: 900;
    line-height: 1em;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    text-transform: uppercase;
}
h4.section-title.explore--toggle {
    color: var(--cf--color--secondary);
    flex: 1;
    cursor: pointer;
    transition: color 300ms ease; 
    -webkit-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
h4.section-title.explore--toggle:hover {
    color: var(--cf--color--primary);
}
h4.section-title.explore--toggle span {
    display: inline-block;
    height: 12px;
    position: relative;
    width: 24px;
    transition: transform 300ms ease;
}
.explore--active h4.section-title.explore--toggle span {
    transform: rotate(180deg);
}
h4.section-title.explore--toggle span:before,
h4.section-title.explore--toggle span:after {
    background-color: var(--cf--color--secondary);
    content: '';
    display: block;
    height: 2px;
    position: absolute;
        top: 5px;
    width: 9px;
}
h4.section-title.explore--toggle:hover span:before,
h4.section-title.explore--toggle:hover span:after {
    background-color: var(--cf--color--primary);
}
h4.section-title.explore--toggle span:before  {
    transform: rotate(-45deg);    left: 10px;
}
h4.section-title.explore--toggle span:after {
    transform: rotate(45deg);
    left: 5px;
}
@media ( min-width: 768px ) {
    .explore-section--type,
    .explore-section--location,
    .explore-section--calendar {
        width: calc(1/3 * 100%);
    }
    .events-section--large,
    .events-section--list {
        display: flex;
        flex-wrap: wrap;
    }
    .events-section--large .card {
        width: calc(1/3 * 100%);
    }
}
@media ( min-width: 1024px ) {
    .title-container {
        width: calc(1/4 * 100%);
    }
    .events-section--large,
    .events-section--list,
    .explore-container {
        width: calc(3/4 * 100%);
    }
    .events-section--list {
        margin-top: -20px;
    }
}

/* Events: Explore ------------------------------------------- */

#explore a,
#explore button {
    background-color: transparent;
    border: none;
    color: var(--cf--color--secondary);
    text-decoration: none;
    transition: color 300ms ease;
}
#explore a:hover,
#explore button:hover,
#explore button.mixitup-control-active {
    color: var(--cf--color--primary);
}
#explore ul {
    line-height: 1.5em;
}
.calendar {
    display: flex;
    flex-wrap: wrap;
}
.calendar li {
    width: calc(1/7 * 100%);
}
.calendar li.calendar--spacer {
    width: calc(6/7 * 100%);
}
.calendar li.calendar--header {
    font-weight: 800;
}

/* Press ----------------------------------------------------- */

.press-item {
    border-bottom: 1px solid var(--cf--color--primary);
    padding-top: 40px;
    padding-bottom: calc(40px - 0.25em);
}
.press-item:first-child {
    border-top: 1px solid var(--cf--color--primary);
}
.press-item a {
    display: block;
    text-decoration: none !important;
}
.press-item a .press-item--thumbnail {
    margin-bottom: 1.5em !important;
    overflow: hidden; 
}
.press-item a .press-item--thumbnail img {
    display: block;
    height: auto;
    width: 100%;
    transition: transform 500ms ease;
}
.press-item a:hover .press-item--thumbnail img {
    transform: scale(1.05);
}
.press-item--label,
.press-item--title {
    margin-bottom: 1em !important;
}
.press-item--label {
    font-family: var(--cf--font--catamaran);
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.press-item--title {
    /* font-family: var(--cf--font--averia); */
    font-size: 1.25em !important;
    font-weight: 800;
    line-height: 1.25em;
    text-transform: none !important;
}
.press-item--date {
    font-weight: 800;
}
@media ( min-width: 768px ) {
    .press-item a {
        display: flex;
        gap: 20px;
    }
    .press-item a .press-item--thumbnail {
        margin-bottom: 0 !important;
        width: calc(1/3 * 100%);
    }
    .press-item a .press-item--details {
        position: relative;
        width: calc(2/3 * 100%);
    }
    .press-item--label,
    .press-item--date {
        font-size: 1.125em;
    }
    .press-item--label {
        margin-top: -0.25em;
    }
}
@media ( min-width: 1280px ) {
    .press-item a .press-item--thumbnail {
        width: 25%;
    }
    .press-item a .press-item--details {
        width: 75%;
    }
}
@media ( min-width: 1280px ) {
    .press-item--date {
        position: absolute;
            left: 0;
            bottom: -0.25em;
    }
}

/* --------------------------------------------------------------
= 11. Entry Content
-------------------------------------------------------------- */

.entry-content {
	line-height: 1.5em;
    margin-bottom: var(--cf--section--gap);
}
.entry-content a {
	color: var(--cf--color--primary);
	text-decoration: underline;
	transition: color 300ms ease;
}
.entry-content a:hover {
	color: var(--cf--color--secondary);
}
.entry-content p,
.entry-content ul,
.entry-content dl,
.entry-content ol,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin-bottom: var(--cf--block--gap);
}
.entry-content h3,
.entry-content h4,
.entry-content h5 {
    text-transform: uppercase;
    font-weight: 800;
}
.entry-content > *:last-child {
    margin-bottom: 0;
}
.entry-content ul {
	list-style: disc outside;
	padding-left: var(--cf--block--gap);
}
.entry-content ul ul {
	list-style: circle outside;
	margin-bottom: 0;
	padding-left: var(--cf--block--gap);
}
.entry-content .has-text-align-center {
	text-align: center;
}
.entry-content iframe {
    display: block;
}
@media ( min-width: 768px ) {
	.entry-content,
    .entry-content h3,
    .entry-content h4,
    .entry-content h5 {
		font-size: 1.125em;
	}
	.entry-content .has-small-font-size {
		font-size: 1rem;
		line-height: 1.5em;
	}
}

/* --------------------------------------------------------------
= 12. Blocks
-------------------------------------------------------------- */

.entry-content > * {
    max-width: 840px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 var(--cf--margin);
}
.entry-content > figure:first-child,
.entry-content .entry-details + figure:nth-child(2) {
    padding-top: 0.5em !important;
}
.entry-content .alignfull {
    max-width: calc(100% + var(--cf--gutter) * 2);
}
@media ( min-width: 768px ) {
    .entry-content > * {
        max-width: 75%;
    }
    .entry-content > .alignwide,
    .entry-content > .alignleft,
    .entry-content > .alignright {
        max-width: 100%;
    }
    .entry-content > .aligncenter {
        max-width: 50%;
    }
    .entry-content.x-wide > * {
        max-width: 100%;
    }
}
@media ( min-width: 1024px ) {
    .entry-content > * {
        max-width: calc(2/3 * 100%);
    }
    .entry-content > .aligncenter > * {
        max-width: calc(1/3 * 100%);
    }
    .entry-content.x-wide > * {
        max-width: 75%;
    }
}
@media ( min-width: 1280px ) {
    .entry-content > * {
        max-width: 50%;
    }
    .entry-content > .aligncenter > * {
        max-width: calc(1/3 * 100%);
    }
    .entry-content > .alignleft,
    .entry-content > .alignright {
        max-width: 75%;
    }
    .entry-content > .alignleft {
        margin-right: 25% !important;
    }
    .entry-content > .alignright {
        margin-left: 25% !important;
    }
}

/* Block: Image  --------------------------------------------- */

.entry-content img {
	display: block;
	height: auto;
	max-width: 100%;
}
.entry-content .wp-block-image {
    margin-bottom: var(--cf--block--gap) !important;
}
.entry-content .wp-block-image figcaption {
	font-size: 0.75rem;
    line-height: 1.5em;
	padding: 0.25em 0 0;
}
@media ( min-width: 768px ) {
    .entry-content .wp-block-image figcaption {
        font-size: 1rem;
    }	
}
@media ( min-width: 1024px ) {
	.alignright figcaption {
		text-align: right;
	}
}

/* Block: Button --------------------------------------------- */

.wp-block-button {
    margin-bottom: var(--cf--block--gap);
}

/* Block: Columns -------------------------------------------- */

.entry-content > .wp-block-columns {
    margin-bottom: 0 !important;
    padding-right: 0;
    padding-left: 0;
}
.entry-content > .wp-block-columns > .wp-block-column {
    padding: 0 var(--cf--margin);
}

/* Block: Embed ---------------------------------------------- */

.wp-block-embed,
.wp-block-video {
    margin-bottom: var(--cf--block--gap) !important;
}
.wp-block-video audio,
.wp-block-video video,
.wp-block-embed iframe {
	width: 100%;
}
.wp-block-embed .wp-block-embed__wrapper {
	height: 0;
	padding-bottom: 56.25%;
	position: relative;
}
.wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper {
	padding-bottom: 75%; /* 4:3 */
}
.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
	padding-bottom: 56.25%; /* 16:9 */
}
.wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper {
	padding-bottom:  41.5625%; /* 21:9 */
}
.wp-block-embed .wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media ( min-width: 768px ) {
	.wp-block-embed,
	.wp-block-video {
		width: 75%;
	}
}
@media ( min-width: 1024px ) {
	.wp-block-embed,
	.wp-block-video {
		width: calc(2/3 * 100%);
	}
}
@media ( min-width: 1280px ) {
	.wp-block-embed,
	.wp-block-video {
		width: 50%;
	}
}

/* Block: Seporator ------------------------------------------ */

hr.wp-block-separator {
	border-top: 1px solid var(--cf--color--primary);
    border-bottom: 0;
    max-width: 820px;
	margin-bottom: var(--cf--block--gap);
    width: calc(100% - var(--cf--margin) * 2);
}
@media ( min-width: 768px ) {
	hr.wp-block-separator {
		width: calc(75% - var(--cf--margin) * 2);
	}
}
@media ( min-width: 1024px ) {
	hr.wp-block-separator {
		width: calc((2/3 * 100%) - var(--cf--margin) * 2);
	}
}
@media ( min-width: 1280px ) {
	hr.wp-block-separator {
		width: calc(50% - var(--cf--margin) * 2);
	}
}

/* Block: Blockquote ----------------------------------------- */

.wp-block-quote {
    margin-bottom: var(--cf--block--gap);
	padding-top: 1.5em;
    padding-bottom: 1.5em;
    position: relative;
}
.wp-block-quote:before,
.wp-block-quote:after {
    background-color: var(--cf--color--primary);
    content: '';
    display: block;
    height: 1px;
    position: absolute;
        right: var(--cf--margin);
        left: var(--cf--margin);
}
.wp-block-quote:after {
    bottom: 0;
}
.wp-block-quote:before {
    top: 0;
}
.wp-block-quote p {
    font-family: var(--cf--font--averia);
    font-size: clamp(1.5rem, 0.8382rem + 2.9412vw, 2.25rem);
    font-weight: 700;
	line-height: 1.125em;
}
.wp-block-quote p:only-child,
.wp-block-quote p:nth-last-child(2) {
	margin-bottom: 0;
}
.wp-block-quote cite {
	font-size: 0.85em;
}

/* Block: Contact Form 7 ------------------------------------- */

.wpcf7 label {
    text-transform: uppercase;
}
.wpcf7 label span,
.wpcf7 .wpcf7-not-valid-tip {
    color: var(--cf--color--secondary);
}
.wpcf7 .wpcf7-not-valid-tip {
    font-weight: 800;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"] {
    border: 1px solid var(--cf--color--primary);
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    width: 100%;
}
.wpcf7 textarea {
    border: 1px solid var(--cf--color--primary);
    font-size: 16px;
    line-height: 1.5em;
    height: 180px;
    padding: 10px;
    width: 100%;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	outline: none;
}
.wpcf7 input[type="submit"] {
    background-color: var(--cf--color--secondary);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-family: var(--cf--font--catamaran);
    font-size: 18px;
    font-weight: 900;
    height: 50px;
    letter-spacing: 0.02em;
    line-height: 50px;
    text-transform: uppercase;
    transition: all 300ms ease;
    width: 100%;
}
.wpcf7 input[type="submit"]:hover {
    background-color: var(--cf--color--tertiary);
    color: var(--cf--color--primary);
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--cf--color--tertiary);
    border-radius: 5px;
    margin: 2em 0 1em;
    padding: 0.2em 0.5em 0.1em;
}
@media ( min-width: 768px ) {
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"] {
        height: 60px;
    }
    .wpcf7 textarea {
        height: 220px;
    }
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 textarea {
        font-size: 18px;
    }
    .wpcf7 input[type="submit"] {
        border-radius: 30px;
        height: 60px;
        line-height: 60px;
        width: calc(50% - 10px);
    }
}

/* Block: Entry Meta ----------------------------------------- */

.entry-meta {
    margin-bottom: calc(40px - 0.25em);
    padding-bottom: 1px !important;
    position: relative;
}
.entry-meta:after {
    background-color: var(--cf--color--primary);
    content: '';
    display: block;
    height: 1px;
    position: absolute;
        right: var(--cf--margin);
        left: var(--cf--margin);
        bottom: -1px;
}
.entry-meta .entry-meta--title {
    color: var(--cf--color--secondary);
    font-family: var(--cf--font--catamaran);
    font-size: 1.125em;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.entry-meta div .btn-container {
    margin-bottom: var(--cf--block--gap);
}
@media ( min-width: 768px ) {
    .entry-meta {
        display: flex;
        gap: 20px;
    }
    .entry-meta > div {
        width: 50%;
    }
	.entry-meta .entry-meta--title {
		font-size: 1rem;
	}
}

/* Block: Related -------------------------------------------- */

.related {
    margin-bottom: calc(40px - 0.25em);
    padding-bottom: 1px !important;
    position: relative;
}
/* .related:before */
.related:after {
    background-color: var(--cf--color--primary);
    content: '';
    display: block;
    height: 1px;
    position: relative;
    width: 100%;
}
.related .related--title {
    color: var(--cf--color--secondary);
    font-family: var(--cf--font--catamaran);
    font-size: 1.125em;
    font-weight: 900;
    letter-spacing: 0.02em;
    margin-top: calc(40px - 0.25em);
    text-transform: uppercase;
}
.related h6 {
    /* font-family: var(--cf--font--averia); */
    font-size: 1.125em;
    font-weight: 800;
    margin-bottom: 0 !important;
}
.related article {
    margin-bottom: 1.5em;
}
@media ( min-width: 768px ) {
	.related .related--title {
		font-size: 1em;
	}
    .related h6 {
        font-size: 1.25em;
    }
}

/* --------------------------------------------------------------
= 13. Site Pagination
-------------------------------------------------------------- */

.nav-links {
    display: flex;
    font-family: var(--cf--font--catamaran);
    font-weight: 900;
    letter-spacing: 0.02em;
    margin: 0 auto;
	max-width: 1600px;
	padding: 0 var(--cf--gutter) var(--cf--section--gap);
	position: relative;
    text-transform: uppercase;
}
.site-pagination .nav {
	font-weight: 300;
	line-height: 1em;
	min-height: 1em;
}
.nav-links .nav-previous,
.nav-links .nav-next {
    font-size: 1.25em;
    line-height: 1em;
	min-height: 1em;
    padding: 0 var(--cf--margin);
	width: 50%;
}
.nav-links .nav-next {
	text-align: right;
}
.nav-links .nav-next:only-child {
    width: 100%;
}
.nav-links a {
	color: var(--cf--color--primary);
	text-decoration: none;
	transition: color 300ms ease;
}
.nav-links a svg {
    display: inline;
    height: 16px;
    width: 20px;
    vertical-align: top;
}
.nav-links a:hover {
	color: var(--cf--color--secondary);
}

/* --------------------------------------------------------------
= 14. Site Footer
-------------------------------------------------------------- */

#site-footer { color: #fff }
#site-footer .inner { display: flex }
#site-footer--about { background-color: var(--cf--color--footer) }
#site-footer--support { background-color: var(--cf--color--primary) }
#site-footer--copyright { background-color: var(--cf--color--secondary) }

#site-footer--about .inner {
    padding-top: 40px;
    flex-wrap: wrap;
}
#site-footer--about h6 {
    font-family: var(--cf--font--catamaran);
    font-weight: 900;
    margin-bottom: 1.5em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
#site-footer--about svg,
#site-footer--about p,
#site-footer--about ul {
    margin-bottom: 40px;
}
#site-footer--about a {
    color: #fff;
    text-decoration: none;
    transition: color 300ms ease
}
#site-footer--about a:hover {
    color: var(--cf--color--tertiary)
}
#presenter-logo,
#footer-menu,
#social-menu {
    width: 50%;
}
#about-circa {
    width: 100%;
}
#presenter-logo svg {
    display: block;
    height: auto;
    max-width: 200px;
    width: 100%;
}
#site-footer--support .inner {
    align-items: center;
    padding-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
#site-footer--support .inner .logo {
    margin-bottom: 20px;
    width: 50%;
}
#site-footer--support .inner .logo img {
    display: block;
    height: auto;
    max-height: 60px;
    max-width: 100%;
    margin: 0 auto;
    width: auto;
}
#copyright {
    font-size: 0.875em;
    line-height: 40px;
    width: calc(100% - 32px);
}
#back-to-top {
    width: 32px;
}
#back-to-top svg {
    height: 16px;
    margin: 12px 0;
    width: auto;
}
@media all and (min-width: 768px) {
    #about-circa {
        width: 50%;
    }
    #site-footer--support .inner .logo {
        width: 25%;
    }
}
@media all and (min-width: 1024px) {
    #site-footer--about .inner {
        flex-wrap: nowrap;
    }
    #presenter-logo,
    #about-circa,
    #footer-menu,
    #social-menu {
        width: 25%;
    }
    #site-footer--about img,
    #site-footer--about p {
        padding-right: 10px;
    }
    #site-footer--support .inner .logo {
        width: calc(1/6 * 100%);
    }
}
@media all and (min-width: 1280px) {
    #site-footer--support .inner .logo {
        width: calc(1/8 * 100%);
    }
}

/* --------------------------------------------------------------
= 15. Transitions
-------------------------------------------------------------- */

.pace {
	-webkit-pointer-events: none;
	        pointer-events: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
}
.pace-inactive {
	display: none;
}
.pace .pace-progress {
	background: var(--cf--color--tertiary);
	position: fixed;
	z-index: 2000;
	top: 0;
	right: 100%;
	width: 100%;
	height: 2px;
}
#site-header {
	opacity: 0;
	-webkit-transition: all 200ms ease;
            transition: all 200ms ease;
}
#site-banner {
    opacity: 0;
	-webkit-transition: all 400ms ease;
            transition: all 400ms ease;
}
main,
nav,
#site-footer {
	opacity: 0;
	-webkit-transition: opacity 600ms ease;
            transition: opacity 600ms ease;
}
.pace-done #site-header,
.pace-done #site-banner,
.pace-done main,
.pace-done nav,
.pace-done #site-footer {
	opacity: 1;
}

/* --------------------------------------------------------------
= 16. Accessibility
-------------------------------------------------------------- */

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 800;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}
#primary[tabindex="-1"]:focus {
	outline: 0;
}
#contact::before {
  content: '';
  display: block;
  height: 61px;
  margin-top: -61px;
  visibility: hidden;
}
.grecaptcha-badge {
    display: none;
}

/* --------------------------------------------------------------
= 17. Thank You Banner
-------------------------------------------------------------- */

.banner-container {
    padding-top: 20px;
}
.thank-you-banner {
    background-color: var(--cf--color--secondary);
    color: #fff;
    font-size: 1.125em;
    line-height: 1.5em;
    padding: 15px 20px 12px;
}
.thank-you-banner p {
    text-align: center;
}
.thank-you-banner a {
    color: #fff;
}
.thank-you-banner a:hover {
    text-decoration: none;
}
@media all and (min-width: 1024px) {
    .banner-container {
        padding-top: 40px;
    }
    .thank-you-banner {
        font-size: 1.25em;
    }
}