.location-map {
    display:flex;
    flex-direction: row;
    margin-bottom: 1rem;
    justify-content: center;
}

.location-term {
    font-weight: bold;
    font-size: 1.25em;
}

.location-info {
    font-style: italic;
    font-size: 1em;
    padding: 5px;
    margin-left: -2px;
}

iframe {
    border-radius: 5px;
    max-width: 100%;
    height: auto;
}

article {
    border: 2px solid var(--icon-secondary);
    border-radius: 5px;
    background-color: var(--bg-secondary);
}

/* dl {
    margin-top: 5rem;
} */

/* Small screens */
@media only screen and (max-width: 600px) {
    .location-map {
        flex-direction: column;
    }

    article {
        margin: 1rem 0;
    }
}

/* Large screens */
@media only screen and (min-width: 600px) {
    article {
        margin: 0 1rem;
        max-width: 40%;
    }
}