.vcl-neighbourhood-listings {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  padding: 0 var(--margin-medium);
}
.vcl-neighbourhood-listings .vcl-neighbourhood-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
}
.vcl-neighbourhood-listings .vcl-neighbourhood-item .vcl-neighbourhood-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.vcl-neighbourhood-listings .vcl-neighbourhood-item .vcl-neighbourhood-image img {
  width: 100%;
  height: 40vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.vcl-neighbourhood-listings .vcl-neighbourhood-item .vcl-neighbourhood-content {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
}
.vcl-neighbourhood-listings .vcl-neighbourhood-item .vcl-neighbourhood-content h2 {
  font-size: 1rem;
  line-height: 1rem;
  margin-bottom: 0;
}
.vcl-neighbourhood-listings .vcl-neighbourhood-item .vcl-neighbourhood-content .vcl-neighbourhood-description {
  margin-bottom: 20px;
  font-size: 0.8rem;
  line-height: 1rem;
}
@media (max-width: 1400px) {
  .vcl-neighbourhood-listings {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
}
@media (max-width: 1000px) {
  .vcl-neighbourhood-listings {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
  }
}