/************************\
 * Visit Page CSS Rules *
\************************/
@import url("/resource/stylesheet/responsive.css");

@layer visit {

    #where {
        h2 {
            margin-bottom: 0;
        }
    }

    #google-cookie-notice {
        font-style: italic;
    }

    #embedded-maps {
        display: flex;

        div {
            display: flex;
            flex-direction: column;

            width: 50%;

            &:not(:last-of-type) {
                margin-right: var(--large-spacing);
            }

            p {
                display: block;
                padding: 0;
                margin: 0;

                font-weight: bold;
            }
        }
    }

    .embedded-map {
        font-size: 1rem;
        display: block;

        margin-top: var(--medium-spacing);
        aspect-ratio: 8/9;

        border-radius: var(--image-border-radius);
        border: none;
    }
}