.location-map {
  height: 390px;
  width: 100%;
  min-width: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid #d8dfd6;
  border-radius: 18px;
  background: #e9eee5;
  color: #16352f;
  font-family: inherit;
}
.location-map .map-status {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  padding: 2rem;
  margin: 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
}
.location-map .map-pin {
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #285e4b;
  color: #fff;
  box-shadow: 0 2px 5px #16352f30;
  font-family: inherit;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
}
.location-map .map-pin--recommended {background: #bf5d46;}
.location-map .map-pin:focus-visible,
.location-map .map-pin.is-active {outline: 3px solid #16352f; outline-offset: 3px;}
.location-map .leaflet-control-zoom {
  border: 1px solid #c8d0c6;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 2px 6px #16352f14;
}
.location-map .leaflet-control-zoom a {
  width: 38px;
  height: 38px;
  line-height: 38px;
  background: #fffefb;
  color: #16352f;
}
.location-map .leaflet-control-zoom a:focus-visible,
.location-map .map-popup a:focus-visible {outline: 3px solid #bf5d46; outline-offset: -3px;}
.location-map .leaflet-control-attribution {
  max-width: calc(100% - 16px);
  padding: 2px 6px;
  color: #16352f;
  background: #fffefbeF;
  font-size: 11px;
}
.location-map .leaflet-control-attribution a {color: #285e4b;}
.location-map .leaflet-popup-content-wrapper {border-radius: 12px; background: #fffefb; color: #16352f;}
.location-map .leaflet-popup-content {margin: 17px 22px 17px 17px; font: inherit; line-height: 1.45;}
.location-map .map-popup {font-size: 14px;}
.location-map .map-popup strong {display: block; font-size: 16px; line-height: 1.3;}
.location-map .map-popup p {margin: .4rem 0 .8rem;}
.location-map .map-popup-links {display: flex; flex-wrap: wrap; gap: .5rem 1rem;}
.location-map .map-popup a {color: #285e4b; font-weight: 650; text-decoration: underline; text-underline-offset: 3px;}
.location-map .leaflet-popup-close-button {color: #16352f;}
@media (max-width: 650px) {
  .location-map {height: 320px; border-radius: 12px;}
}
@media (prefers-reduced-motion: reduce) {
  .location-map * {scroll-behavior: auto;}
}
