/* The reserved map area keeps the consent change from moving nearby content. */
.location-map {
    width: 100%;
    margin: 1.5rem 0 0;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
}
.location-map__stage {
    position: relative;
    height: 380px;
    background: #f1f3f5;
}
.location-map__frame {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    border: 0;
    background: #e9eef2;
}
.location-map__placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1.25rem;
    text-align: center;
    color: var(--color-text);
    font-size: .9rem;
    line-height: 1.5;
}
.location-map__placeholder[hidden],
.location-map__load[hidden] { display: none; }
.location-map__pin { flex-shrink: 0; }
.location-map__company { font-size: 1.1rem; }
.location-map__placeholder p { max-width: 28rem; margin: 0; }
.location-map__load {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: .65rem 1.25rem;
    border: 1px solid #1a2a44;
    border-radius: var(--radius-md);
    background: #1a2a44;
    color: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}
.location-map__load:hover { background: #293d5d; }
.location-map__load:focus-visible { outline: 3px solid var(--color-text); outline-offset: 3px; }
.location-map__status { min-height: 1.5em; font-size: .8rem; }
.location-map__placeholder noscript { max-width: 28rem; font-size: .8rem; }
.location-map__caption {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .75rem 1.25rem;
    padding: 1.1rem 1.25rem;
    font-size: .9rem;
    line-height: 1.6;
}
.location-map__caption a {
    text-decoration: underline;
    text-underline-offset: .18em;
}
@media (max-width: 767px) {
    .location-map__stage { height: 300px; }
    .location-map__placeholder { padding: 1rem; gap: .4rem; font-size: .85rem; }
    .location-map__caption { padding: 1rem; }
}
