.block--us-map .us-map-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.block--us-map .us-map-container svg {
  width: 100%;
  height: auto;
  display: block;
}

.block--us-map .us-map-container .state {
  transition: filter 0.2s ease;
}

.block--us-map .us-map-container .state.active {
  cursor: pointer;
}

.block--us-map .us-map-container .state:not(.active) {
  pointer-events: none;
}

.block--us-map .us-map-container .state-tooltip {
  position: absolute;
  background-color: #1F1C1B;
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  pointer-events: none;
  z-index: 1000;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.block--us-map .us-map-container .state-tooltip::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #1F1C1B;
}
