.about-neighborhoods-3 {
  padding: 0 20px 96px;
}

.about-neighborhoods-3__container {
  max-width: 1720px;
  margin: 0 auto;
}

.about-neighborhoods-3__card {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(0, 0.92fr);
  grid-template-areas:
    "intro image-top"
    "image-bottom contact";
  overflow: hidden;
  border-radius: 40px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(24, 31, 38, 0.16);
}

.about-neighborhoods-3__intro,
.about-neighborhoods-3__contact {
  padding: 76px 64px 66px;
}

.about-neighborhoods-3__intro {
  grid-area: intro;
}

.about-neighborhoods-3__image--top {
  grid-area: image-top;
}

.about-neighborhoods-3__image--bottom {
  grid-area: image-bottom;
}

.about-neighborhoods-3__contact {
  grid-area: contact;
}

.about-neighborhoods-3__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-neighborhoods-3__description + .about-neighborhoods-3__description {
  margin-top: 34px;
}

.about-neighborhoods-3__contact {
  background: #ffffff;
}

.about-neighborhoods-3__contact h3 {
  margin: 0 0 22px;
  color: #2f313a;
  font-family: var(--font-family-display);
  font-size: 34px;
  line-height: 1.12;
  font-weight: 700;
}

.about-neighborhoods-3__contact p {
  margin: 0 0 18px;
  color: #4a4d54;
  font-size: 20px;
  line-height: 1.4;
}

.about-neighborhoods-3__details {
  margin: 34px 0 0;
  display: grid;
  gap: 28px;
}

.about-neighborhoods-3__details dt {
  margin: 0 0 8px;
  color: var(--color-primary-soft);
  font-family: var(--font-family-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-neighborhoods-3__details dd {
  margin: 0;
  color: #8b8c8f;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
}

.about-neighborhoods-3__details a {
  text-decoration: none;
}

@media (max-width: 1200px) {
  .about-neighborhoods-3__card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "image-top"
      "image-bottom"
      "contact";
  }
}

@media (max-width: 767px) {
  .about-neighborhoods-3 {
    padding: 0 20px 64px;
  }

  .about-neighborhoods-3__card {
    border-radius: 26px;
  }

  .about-neighborhoods-3__intro,
  .about-neighborhoods-3__contact {
    padding: 34px 20px;
  }

  .about-neighborhoods-3__contact h3 {
    font-size: 28px;
  }

  .about-neighborhoods-3__contact p,
  .about-neighborhoods-3__details dd {
    font-size: 17px;
  }
}
