/* New CSS 2025 */

.upcoming-events-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fullscreen-homepage-hangartable .media-about {
    opacity: .5;
}

.upcoming-events-section .subtitle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
}

.upcoming-events-section .event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 40px;
    margin: 60px 0 100px;
    text-align: left;
}

.upcoming-events-section.--table .event-list {
    margin: 60px 0;
}

.upcoming-events-section .event-list__subtitle {
    font-weight: 600;
    font-size: 20px;
}

.upcoming-events-section .event-list__subtitle:not(:first-child) {
    margin-top: 20px;
}

.upcoming-events-section .event-list__subtitle.--past {
    opacity: .5;
}

.upcoming-events-section .event-list__title {
    font-size: 30px;
    font-size: clamp(1.875rem, 1.7308rem + 0.6154vw, 2.5rem);
}

.upcoming-events-section .event-list__info {
    display: flex;
    flex-direction: row;
    gap: 5px;
    font-size: clamp(1rem, 0.9107rem + 0.381vw, 1.625rem);
}

.upcoming-events-section .event-list__location:before {
    content: "• ";
}

.upcoming-events-section .event-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.upcoming-events-section .event-list ul li a {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 20px 0;
    gap: 5px;
    transition: opacity .2s ease-in-out;
}

.upcoming-events-section .event-list ul li a:after {
    content: "\ea6c";
    font-family: 'remixicon' !important;
    position: absolute;
    font-size: 30px;
    font-size: clamp(1.375rem, 1.2163rem + 0.6769vw, 2.0625rem);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: #EAE9E1;
}

.upcoming-events-section .event-list ul li:not(.ui-state-active) a {
    opacity: .5;
}

.upcoming-events-section:not(.--table) .event-list ul li:not(:last-child,.event-list__subtitle) {
    border-bottom: 1px solid #EAE9E1;
}

.upcoming-events-section.--table .event-list ul li:nth-child(n+4):not(:last-child,.event-list__subtitle) {
    border-bottom: 1px solid #EAE9E1;
}

#single-container-main .gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#single-container-main .gallery img {
    display: block;
    width: 100%;
}

.footer-nav {
    display: grid;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    grid-template-columns: repeat(3, 1fr);
    padding: 20px 0 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 14px;
    opacity: .7;
}

.footer-nav__menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.footer-nav__subtitle {
    font-size: 14px;
}

@media only screen and (min-width: 992px) {
    #single-container-main .--sticky {
        position: sticky;
        top: 60px;
    }
    .upcoming-events-section {
        background: none !important;
    }
}

@media only screen and (max-width: 992px) {
    section.content-section {
        padding: 60px 20px;
    }
}

@media only screen and (max-width: 900px) {
    .hide-mobile {
        display: none !important;
    }
    .footer-nav {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 576px) {
    section.content-section {
        padding: 40px 20px;
    }
}