.property-card{

    max-width:900px;

    margin:70px auto;

    background:#111;

    border:1px solid #2d2d2d;

    border-radius:18px;

    overflow:hidden;

    display:flex;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

    transition:.35s;

}

.property-card:hover{

    transform:translateY(-6px);

    box-shadow:0 30px 60px rgba(0,0,0,.45);

}

.property-image{

    width:42%;

    object-fit:cover;

}

.property-content{

    width:58%;

    padding:45px;

    color:white;

}

.property-location{

    color:#bfa46f;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:13px;

}

.property-content h2{

    margin-top:12px;

    font-size:34px;

    font-weight:300;

}

.property-intro{

    margin:25px 0;

    color:#cfcfcf;

    line-height:1.8;

}

.property-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin:35px 0;

}

.property-features span{

    color:#ddd;

}

.property-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.price{

    font-size:34px;

    font-weight:600;

}

.price span{

    font-size:16px;

    color:#aaa;

}

.btn-view{

    background:#bfa46f;

    color:white;

    text-decoration:none;

    padding:16px 34px;

    border-radius:50px;

    transition:.3s;

}

.btn-view:hover{

    background:#d7ba7d;

}