  /* real-estate-post-style4  */
  .real-estate-post-style4 {
    border-radius: 8px;
    overflow: hidden;
    background: var(--white-700);
    transition: var(--transition);
    margin-bottom: 30px;
    border: 1px solid var(--e-a-border-color);
}

.real-estate-post-style4:hover {
    box-shadow: 0px 9px 50px 0px #00000029;
}

.real-estate-post-style4 a{
    text-decoration: none;
}

.real-estate-post-style4-thumbnail {
    height: 180px;
    overflow: hidden;
}

.real-estate-post-style4-thumbnail img {
    width: 100%;
    transition: var(--transition);
    height: 100%;
    object-fit: cover;
}
.real-estate-post-style4:hover  .real-estate-post-style4-thumbnail img{
    transform: scale(1.1);
}
.real-estate-post-style4-content {
    padding: 16px;
}

.real-estate-post-style4-content h2.post-title {
    color: var(--primary-font-color);
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    line-height: 22px;
    margin-bottom: 5px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}
.real-estate-post-style4-content h2.post-title:hover{
    color: var(--primary-color);
}
.real-estate-post-style4-content span.post-loc {
    color: #73777D;
    font-family: var(--primary-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
}

.real-estate-post-style4-content .post-cat-price {
    display: flex;
    height: 28px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.real-estate-post-style4-content p.category {
    color: #73777D;
    font-family: var(--primary-font);
    font-size: 10px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 0;
}

.real-estate-post-style4-content h3.price {
    color: var(--primary-font-color);
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 0;
}

@media (max-width: 991px){

    .real-estate-post-style4-content .post-cat-price{
        height: auto;
    }

    .real-estate-post-style4-thumbnail {
        height: 120px;
    }

}

@media (max-width: 767px){


    .real-estate-post-style4-thumbnail {
        height: 180px;
    }

}
