.contact-map-block {
  width: 100%;
  min-height: clamp(320px, 30vw, 360px);
  overflow: hidden;
  background: #cfeaf2;
}

.contact-map-block__canvas,
.contact-map-block img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
}

.contact-map-block img {
  object-fit: cover;
  object-position: center;
}

.contact-map-block .leaflet-container {
  font-family: "Karla", sans-serif;
}

.contact-map-pin {
  background: transparent;
  border: 0;
}

.contact-map-pin__dot {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #d1ac5c;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  position: relative;
}

.contact-map-pin__dot::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  top: 9px;
  left: 9px;
}

.contact-map-popup-wrap .leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  padding: 0;
}

.contact-map-popup-wrap .leaflet-popup-content {
  margin: 0;
  width: 280px !important;
}

.contact-map-popup {
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.contact-map-popup__title {
  margin: 0 0 0.3rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  color: #1b1b1b;
}

.contact-map-popup__text,
.contact-map-popup__address {
  margin: 0;
  color: #3d424a;
  font-size: 0.9rem;
  line-height: 1.45;
}

.contact-map-popup__text {
  margin-bottom: 0.22rem;
}

@media (max-width: 640px) {
  .contact-map-block {
    width: min(100% - 1.25rem, 1479px);
    min-height: 340px;
    margin: 0 auto 1rem;
  }

  .contact-map-popup-wrap .leaflet-popup-content {
    width: 240px !important;
  }
}