*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins', sans-serif;
}

body{
background:#ffffff;
color:#333;
}

/* GRID */
.property-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
padding:15px;
}

/* CARD */
.property-card{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

/* IMAGE */
.property-card img{
width:100%;
height:160px;
object-fit:cover;
}

/* INFO */
.property-info{
padding:12px;
}

/* ✅ NEW COLOR */
.price{
color:#90AB8B;
font-weight:bold;
}

.location{
font-size:14px;
color:#777;
}

/* DETAILS */
.details{
display:flex;
justify-content:space-between;
margin:8px 0;
font-size:14px;
}

/* ✅ BUTTON COLOR */
.view-btn{
display:block;
text-align:center;
background:#90AB8B;
color:#fff;
padding:8px;
border-radius:5px;
text-decoration:none;
font-size:14px;
}

/* 📱 MOBILE FIX */
@media(max-width:768px){

.property-grid{
grid-template-columns:repeat(2,1fr);
gap:10px;
}

/* 👇 FONT SMALL */
.property-info{
padding:8px;
}

.price{
font-size:13px;
}

.location{
font-size:12px;
}

.details{
font-size:12px;
}

.view-btn{
font-size:12px;
padding:6px;
}

.property-card img{
height:130px;
}

}

/* 📱 VERY SMALL MOBILE */
@media(max-width:480px){

.price{
font-size:12px;
}

.location{
font-size:11px;
}

.details{
font-size:11px;
}

.view-btn{
font-size:11px;
padding:5px;
}

}