

.listings {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 1rem;
    box-sizing: border-box;
}

.listings__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 1rem;
    text-align: center;
}

.card {
    display: flex;
    /* gap: 1rem; */
    flex-direction: column;
    cursor: pointer;
    height: 460px;
    border-radius: 22px;
    border: 2px solid rgb(228, 228, 228);
    text-align: start;
    padding: 0px;
    /* background-color: white; */
    /* max-width: 300px; */
}

.card h3 {
    margin-inline-start: 15px;
    margin-top: 5px;
    color: rgb(17, 17, 17);
        width: 200px;
    height: 3em;                   /* Adjust height based on line-height */
    line-height: 1.5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    /* margin-bottom: 5px; */
    /* margin-left: 4px; */
}

.card p {
    margin-left: 4px;
    color: rgba(56, 56, 56, 0.932);
    font-weight: bold;
    font-size: 18px;
    margin: 15px;
}

.features {
    display: flex;
    gap: 2rem;
    margin-left: 15px;
    margin-top: 11px;
}

.beds {
    /* margin-left: 5px; */
    color: rgb(20, 90, 10);
    /* width: 40px; */
    /* border-right: 1px solid black; */
    padding-right: 15px;
    /* margin: 15px; */
} 


.main_listing_img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  border-radius: inherit;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}




 /**/
.listings h3 {
    /* margin-inline-start: 15.2%; */
    margin-bottom: 15px;
    font-size: 25px;
}

.card h3 {
    margin-inline-start: 4.9%;
    font-size: 20px;
}


/*filter styling*/
.filters {
    padding: 17px;
    background-color: #d9f0dc;
    border: 1px solid #68c86e;
    border-radius: 10px;
    font-size: 19px;
    cursor: pointer;
    margin-bottom: 15px;
    margin-inline-end: 9px;
    color: #2b2b2b;
}

.filtersContainer {
  margin: 15px 0;
}

#cityFilter{
    display: none;
}