/*.property-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    flex-wrap: wrap;
}
.property-list > [class*='col-'] {
    display: flex;
    flex-direction: column;
}
.property-item{
    margin-bottom: 60px;
}
.property-item .img-container{
    position: relative;
}
.property-item .img-container .overlay {
    position: absolute;
    top: 20px;
    left: 0;
    transition: .5s ease;
    background-color: #dc2c27;
    padding: 4px 8px;
}
.property-item .img-container .overlay p{
    color: white;
    font-size: 12px;
    font-family: 'Roboto var', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0;
}
.property-item .img-container:hover .overlay {
    opacity: 0.7;
}
.property-item .city{
    color: #000;
    font-family: 'Roboto var', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}
.property-item .title{
    color: #000;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    margin-top: 10px;
    min-height: 35px;
}
.property-item .price{
    text-align: center;
    color: #000;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 18px;
}
.property-item .see-detail{
    color: #fff;
    background-color: #dc2c27;
    font-family: 'Roboto var', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    width: 140px;
    margin: 20px auto 0;
    text-align: center;
    padding-top: 11px;
    padding-bottom: 10px;
}
.property-item .see-detail:hover{
    color: #dc2c27;
    background-color: #fff;
    border:1px solid #dc2c27;
}*/

.property-list {
    display: flex;
    flex-wrap: wrap;
}
.property-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    text-decoration: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: calc(100% - 30px);
}
.property-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(20, 28, 45, 0.12);
}
.property-card .img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #eee;
}
.property-card .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.property-card:hover .img-container img {
    transform: scale(1.04);
}
.property-card .overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #dc2c27;
    padding: 6px 14px;
    opacity: 1;
}
.property-card .overlay p {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}
.property-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    font-family: 'Roboto var', sans-serif;
}
.property-card .city {
    font-size: 12px;
    font-weight: 400;
    color: #dc2c27;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}
.property-card .title-text {
    font-family: 'Roboto var', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #141c2d;
    line-height: 1.4;
    margin: 0 0 25px 0;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.property-card .see-detail {
    align-self: flex-start;
    margin-top: auto;
    color: #fff;
    padding: 11px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background 0.25s;
    background-color: #dc2c27;
}
.property-card:hover .see-detail {
    background: #dc2c27;
}