.block-neighbourhood-hero {
  position: relative;
  background: var(--teal);
  padding: 150px var(--gutter) 60px;
  text-align: center;
  overflow: hidden;
}
.block-neighbourhood-hero .nbh-title {
  position: relative;
  z-index: 2;
  font-family: "Cormorant", "Georgia", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  color: var(--cream);
  margin: 0 0 28px;
}
.block-neighbourhood-hero .nbh-map {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1178px;
  margin: 0 auto;
}
.block-neighbourhood-hero .nbh-map img {
  display: block;
  width: 100%;
  height: auto;
}
.block-neighbourhood-hero .nbh-pin {
  position: absolute;
  width: 30px;
  height: 40px;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  -webkit-filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.3));
}
.block-neighbourhood-hero .nbh-pin svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 900px) {
  .block-neighbourhood-hero {
    padding: 120px var(--margin-small) 40px;
  }
}