#listings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.listing-desc {
	text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.listing-item{
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0px 4px 3px 0px #80808024;
  position: relative;
  border: 1px solid #e6e6e6;
}
.listing-featured {
  position: absolute;
  top: 10px;
  right: 15px;
}
.listing-featured .fas {
  color: yellow;
}
.listing-banner {
  height: 250px;
  width: 100%;
  background-size: cover !important;
  background-position: center center !important;
}
.listing-content {
  padding: 30px 40px;
  background: #fff;
}
.listing-item h5 {
 font-size: 1.3rem; 
 margin-bottom:5px;
}
.listing-address {
  display: flex;
  align-items: center;
  gap: 10px;
}
.listing-address .fas {
  color: var(--color-content-primary)
}
.listing-address p {
  color: #838383;
  font-size:14px;
}
.listing-desc {
  border-top: 1px solid #E3E3E3;
  border-bottom: 1px solid #E3E3E3;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.listing-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.listing-price {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: bold;
}
.listing-load-more {
  display: table !important;
  margin: auto;
  margin-top: 50px;
}