/*============== Header & Footer ==============*/

header#site-header.site-header,
footer#site-footer.site-footer {
    display: none;
}

.she-header-yes>.e-con-inner,
.she-header-yes .hfe-menu-item,
.she-header-yes img.hfe-site-logo-img,
.she-header-yes .hfe-nav-menu-icon svg {
    transition: .4s;
}

.she-header-yes ul.sub-menu {
    transition: background-color .4s;
}

nav.hfe-dropdown,
nav.hfe-dropdown .menu-item a.hfe-menu-item {
    transition: 0.4s ease-in-out;
}

@media (min-width: 992px) {
    header nav li {
        transition: .2s;
    }

    header nav:has(li:hover) li:not(:hover) {
        filter: blur(2px);
        transform: scale(0.97);
    }
}

@media (max-width: 1025px) {
    .she-header-yes.she-header-transparent-yes:has(nav.menu-is-active) {
        background-color: var(--e-global-color-60f900f) !important;
    }
}

/*============== Password saved posts ==============*/

body:has(.wc-password-card) {
    background-color: white !important;
}

body:has(.wc-password-card) header,
body:has(.wc-password-card) footer {
    display: none !important;
}

body:has(.wc-password-card) main#content .page-content {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wc-password-card {
    color: #333333;
    font-family: 'Montserrat';
}

.wc-password-card .wc-password-branding {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.wc-password-card .wc-password-branding .wc-password-favicon {
    max-width: 100px;
}

.wc-password-card .wc-password-branding .wc-password-wordmark {
    font-size: 3rem;
    font-family: 'Parisienne';
}

.wc-password-card .wc-password-intro {
    margin: 0px;
}

.wc-password-card .wc-password-input {
    outline: none;
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #333333;
}

.wc-password-card .wc-password-submit {
    width: 100%;
    color: white;
    margin: 5px 0;
    border-color: #4C0044;
    background-color: #4C0044;
}

.wc-password-card .wc-password-submit:hover,
.wc-password-card .wc-password-submit:active {
    outline: none;
    background-color: #4C0044;
}

.wc-password-card .wc-password-error {
    color: #ed3d3d;
    padding: 10px;
    margin-top: 10px;
    text-align: center;
    font-size: .9rem;
    font-family: 'Montserrat';
    border-radius: 5px;
    border: 1px solid #ed3d3d;
}

.wc-password-card .wc-password-separator {
    width: 100%;
    margin-top: 25px;
}

.wc-password-card .wc-password-separator span {
    height: 1px;
    display: block;
    border-bottom: 1px solid #33333314;
}

.wc-password-card .wc-password-brand-button {
    display: block;
    width: 100%;
    color: #333333;
    padding: 10px 0;
    font-size: 1.2rem;
    text-align: center;
    text-decoration: none;
    font-family: 'Parisienne';
}

/*============== Gallery styling ==============*/
.gallery-item {
    transition: .2s;
}

.gallery .gallery-item img {
    height: 450px;
    object-fit: cover;
}

@media screen and (min-width: 1025px) {

    .gallery .gallery-item:hover {
        transform: scale(1.025);
    }

    .gallery:has(.gallery-item:hover) .gallery-item:not(:hover) {
        filter: brightness(0.6) blur(5px);
    }
}

@media (max-width: 768px) {

    .gallery .gallery-item img {
        max-height: 350px;
        object-fit: cover;
    }

}