/**
 * Studio card map previews — purple pin matches mobile `ArtistServiceAreaSection` marker.
 */
.studio-card-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 140px;
  background: var(--n50, #f7f7f9);
  line-height: 0;
  overflow: hidden;
}

.studio-card-map .leaflet-container {
  width: 100%;
  height: 100%;
  font-family: inherit;
  background: var(--n100, #f1f1f4);
}

.studio-card-map--static {
  cursor: inherit;
}

.studio-card-map--static .leaflet-container {
  pointer-events: none;
}

.studio-map-marker-wrap {
  background: transparent;
  border: none;
}

.studio-map-marker-pin {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #6a00f4;
  border: 2px solid #ffffff;
  box-shadow: 0 1px 4px rgba(10, 10, 10, 0.28);
}

.studio-card-map-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  text-align: center;
  background: var(--n50, #f7f7f9);
  color: var(--n500, #6b6b6b);
}

.studio-card-map-placeholder__icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--n200, #e5e5ea);
  border: 2px solid var(--n0, #ffffff);
  box-shadow: 0 1px 3px rgba(10, 10, 10, 0.12);
}

.studio-card-map-placeholder__label {
  font-size: 0.8125rem;
  line-height: 1.35;
  color: var(--n700, #2c2c2e);
  max-width: 22rem;
}
