.properties-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(320px, 1fr));
    gap:28px;
    margin-top:40px;
}

.property-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(15,23,42,.10);
}

.property-card-image{
    width:100%;
    height:240px;
    object-fit:cover;
}

.property-card-content{
    padding:24px;
}

.property-card-meta{
    display:flex;
    gap:10px;
    margin-bottom:16px;
}

.property-card-meta span{
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    color:#0f766e;
}

.property-card h3{
    font-size:22px;
    margin-bottom:14px;
}

.property-location{
    color:#64748b;
    margin-bottom:14px;
}

.property-price{
    font-size:26px;
    font-weight:800;
    color:#047857;
    margin-bottom:16px;
}

.property-description{
    color:#475569;
    line-height:1.6;
}

.property-card{
    max-width:420px;
}

.property-description{
    max-height:92px;
    overflow:hidden;
}