/* CSS FOR ACCESS SEGMENT -------------------------------------------------------------------------------------------------------- */

/* contains all content for map portion of location map */
.location-container {
    margin: auto;
    width: 100vw;
    height: auto;
    padding: 100px 40px 0;
    gap: 5%;
    max-width: 1200px;
    position: relative;
    z-index: 1;
    justify-self: left;
}

/* contains all content for map portion of location map */

/* centers location title */
.location-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    padding-top: 0;
    padding-bottom: 20px;
    gap: min(calc(1.5 * 1440px / 100), 1.5vw);
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    justify-self: center;
}

.location-content h3 {
    font-weight: 100;
    color: #144738;
}

.location-content.notice {
    padding: 30px 0 !important;
}

/* formats map */
.location-map {
    border: 0;
    width: 100%;
    max-width: 1200px;
    max-height: 500px;
    margin-bottom: 50px;
    height: 65vh;
    display: flex;
    justify-self: center;
    align-self: center;
    align-items: center;
    margin: auto;
}
/* 
.location-container h2,
.location-container h3 {
    font-weight: 400;
    font-size: var(--desktop-title-size);
    letter-spacing: min(calc(0.4 * 1440px / 100), 0.4vw);
    color: rgba(20, 71, 56, 0.8) !important;
} */

.address {
    color: #000000;
    font-weight: 400;
    text-align: center;
    line-height: 160%;
    font-size: var(--desktop-paragraph-size);
    padding-bottom: 10px;
}

.access-link{
    color: var(--wp--preset--color--sm-accent);
}

/* Only display on frontpage, hidden on access page */
.location-content .frontpage_visible{
    display: none;
}

/* Only on frontpage */
.home .frontpage_visible{
    display: flex;
}


@media (max-width: 767px) {
    .location-container,
    .washi-bg {
        display: flex;
        flex-direction: column;
        gap: 0px;
        width: calc(100% - 15px);
        padding: 50px 8px 0px;
    }

    .location-content {
        padding: 10vw 4vw;
    }

}