/* Featured Properties Uniform Layout */
.recently-properties .property-box-5 {
    height: 320px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.recently-properties .property-photo {
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
}

.recently-properties .property-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recently-properties .detail {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.recently-properties .detail .heading {
    padding: 0;
    margin-bottom: 10px;
}

.recently-properties .detail .heading h3 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 8px;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recently-properties .detail .location {
    font-size: 14px;
    margin-bottom: 15px;
    height: 20px;
    overflow: hidden;
}

.recently-properties .properties-listing {
    margin-top: auto;
    height: 40px;
}

.recently-properties .slick-slide-item {
    height: 320px;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .recently-properties .property-box-5 {
        height: 320px;
    }
    
    .recently-properties .property-photo {
        height: 180px;
    }
    
    .recently-properties .slick-slide-item {
        height: 320px;
    }
}