section.location {
    padding: 0 var(--margin-x-mobile) var(--margin-y-mobile) var(--margin-x-mobile);
    font-family: VestasSansStandard !important;
}

section.location.with-background {
    padding: var(--margin-y-mobile) var(--margin-x-mobile);
    font-family: VestasSansStandard !important;
}

section.location.transparent {
    font-family: VestasSansStandard !important;
}

section.location > div > * {
    grid-column: 3/11;
}

section.location > div > iframe {
    height: 200px;
    width: 100%;
    grid-column: 2/12;
    margin-top: 24px;
    border: 1px solid black;
    font-family: VestasSansStandard !important;
}

@media screen and (min-width: 700px) {
    section.location {
        padding-bottom: var(--margin-y-desktop);
    }
    
    section.location.with-background {
        padding: var(--margin-y-desktop) var(--margin-x-desktop);
    }
    
    section.location > div {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
    }
    
    section.location > div > iframe {
        margin-top: 64px;
        height: 500px;
    }
}

@media screen and (min-width: 1500px) {
    section.location > div {
        max-width: var(--max-width);
        margin: 0 auto;
    }
}

