.location-map {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 15, .16);
  border-radius: var(--radius);
  background: var(--sage);
  box-shadow: var(--shadow);
}

.location-map-large {
  min-height: 680px;
}

.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #e1e4dc;
}

.location-map iframe:focus-visible {
  outline: 4px solid #17170f;
  outline-offset: -4px;
}

.location-map-badge {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  display: flex;
  max-width: min(360px, calc(100% - 44px));
  flex-direction: column;
  padding: 16px 19px;
  border: 1px solid rgba(23, 23, 15, .14);
  border-radius: 15px;
  background: rgba(246, 244, 239, .97);
  box-shadow: 0 16px 42px rgba(23, 23, 15, .2);
  color: #17170f;
  pointer-events: none;
}

.location-map-badge span {
  margin-bottom: 4px;
  color: #596252;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.location-map-badge strong {
  font-size: 15px;
  line-height: 1.35;
}

.location-map-badge small {
  color: #4b4e46;
  font-size: 12px;
  line-height: 1.45;
}

.map-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 720px) {
  .location-map,
  .location-map-large {
    min-height: 500px;
  }

  .location-map-badge {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .map-action-row .btn {
    width: 100%;
  }
}
