.for-rent-list .filter button {
  cursor: pointer;
}
.for-rent-list .filter button.active {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}
.for-rent-list .property {
  text-decoration: none;
  background: var(--green);
  color: var(--white);
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
}
.for-rent-list .property .img-wrapper {
  aspect-ratio: 451/311;
}
.for-rent-list .property .content {
  padding: 1.25rem;
}
.for-rent-list .property .content h2 {
  font: var(--h4-font);
}
.for-rent-list .property.hide {
  display: none;
}