.typical-houses-description__wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.typical-houses-description__content {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
}
.typical-houses-description__button .btn {
  padding: 27px 60px;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  text-decoration: none;
}
.typical-houses-description__img {
  overflow: hidden;
  border-radius: 12px;
  height: 389px;
}
.typical-houses-description__img img {
  height: 100%;
  width: auto;
}
@media (max-width: 576px) {
  .typical-houses-description__wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
  }
  .typical-houses-description__img {
    height: auto;
  }
}
