.n-full-bleed{
    width: 100vw;
    margin-left: calc(50% - 50vw);
}
.n-mobile{
    display: none;
}
.wp-gr.wpac{
    max-width: 1200px !important;
    margin: 0 auto !important;
}
.n-max-text{
    max-width: 70ch;
}
.n-max-title{
    max-width: 40ch;
}
.n-shadow {
  box-shadow: 0 1px 1px rgba(0,0,0,0.11), 
              0 2px 2px rgba(0,0,0,0.11), 
              0 4px 4px rgba(0,0,0,0.11), 
              0 6px 8px rgba(0,0,0,0.11),
              0 8px 16px rgba(0,0,0,0.11);
}

/* Contact Form */
.wpcf7-form {
    width: 100%;
    color:var(--wp--preset--color--n-brown);
    font-family: var(--wp--preset--font-family--n-outfit);
}
.wpcf7-form label{
    font-size: var(--wp--preset--font-size--small);

}
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select{
    width: 100%;
    padding: 12px 8px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--wp--preset--color--n-accent);
    margin-bottom: 16px;
}
.wpcf7-form textarea {
    border: 1px solid var(--wp--preset--color--n-accent);
    border-radius: 4px;
}
.wpcf7-form input:focus-visible,
.wpcf7-form textarea:focus-visible{
    outline: 1px solid var(--wp--preset--color--n-accent);
    background: var(--wp--preset--color--n-white);
    border-radius: 4px;
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder{
    color:var(--wp--preset--color--n-brown);
    opacity: .6;
}
.wpcf7-form input[type="submit"] {
    border: 1px solid var(--wp--preset--color--n-accent);
    color:var(--wp--preset--color--n-brown);
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    transition: background ease-in-out .3s, color ease-in-out .3s;
    border-radius: 4px;
}
@media (hover:hover){
    .wpcf7-form input[type="submit"]:hover{
        background: var(--wp--preset--color--n-accent);
        color: var(--wp--preset--color--n-white)
    }
}
.bck{
    position: relative;
}
.bck::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--wp--preset--color--n-lightest-brown);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    z-index: -1;
}
.n-location-list-picture{
    aspect-ratio: 1/1.17;
}
.n-location-list-picture > img{
    height: 100%;
}
@media screen and (max-width: 650px){
    .n-mobile-full-bleed{
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }
    .n-desktop{
        display: none;
    }
    .n-mobile{
        display: initial;
    }
    .n-flex{
        display: flex;
        flex-direction: column;
    }
    .n-mobile-pt-0{
        padding-top: 0 !important;
    }
    .n-column-reverse{
        flex-direction: column-reverse;
    }
    .n-footer-nid-left > p,
    .n-footer-nid-right > p{
        text-align: center;
    }
    .n-footer-nid-center  p{
        flex: 1 1 100%;
        text-align: center;
    }
}