.location-map {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #d9dcda;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 720px;
  border: 0;
  filter: saturate(.78) contrast(1.04);
}

.map-badge {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 30px;
  display: grid;
  grid-template-columns: 10px auto;
  column-gap: 12px;
  align-items: center;
  padding: 14px 18px;
  color: #fff;
  background: rgba(7, 24, 33, .92);
  box-shadow: 0 12px 34px rgba(7, 24, 33, .28);
  pointer-events: none;
}

.map-badge span {
  grid-row: 1 / 3;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cc0605;
  box-shadow: 0 0 0 5px rgba(204, 6, 5, .2);
}

.map-badge strong,
.map-badge small {
  line-height: 1.2;
}

.map-badge strong {
  font-size: 14px;
  letter-spacing: .07em;
}

.map-badge small {
  margin-top: 3px;
  color: #b9c5ca;
  font-size: 12px;
}

@media (max-width: 900px) {
  .location-map,
  .location-map iframe {
    min-height: 420px;
    height: 420px;
  }

  .map-badge {
    left: 18px;
    bottom: 18px;
  }
}
