section.pcl {
    padding: 50px 0;
} 
.pcl .row {
    display: flex;
    flex-wrap: wrap;
    gap: 17.33px;
}

.pcl .col {
    flex: calc(25% - 13.33px);
    max-width: calc(25% - 13.33px);
}

.pcl .col:nth-child(4n) {
    margin-right: 0;
}

.pcl .filter-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pcl .filter-section .section-title {
    padding-bottom: 0;
}

.pcl .filter-section select {
    height: 40px;
    border: 1px solid #000000;
    background: #ffffff;
    font-size: 18px;
    font-family: Arada-Regular;
    padding: 8px;
    background: url(../..//images/select-arrow.svg) 0 0 no-repeat;
    -webkit-appearance: none;
    background-position: right;
    background-size: 18px;
    background-origin: content-box;
}

.pcl .list-item {
    display: flex;
    flex-direction: column;
    border: 1px solid #CCCCCC;
    background-color: #fff;
    overflow: hidden;
}

.pcl .list-item-img {
    height: 300px;
    border-bottom: 1px solid #CCCCCC;
    overflow: hidden;
    position: relative;
}

.pcl .list-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    transform: scale(1);
}
.pcl .list-item-img:hover img{
    transform: scale(1.05);
}

.pcl .list-item-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex: 1 0;
}

.pcl .list-item-content h3 {
    font-weight: normal;
}

.pcl .list-item-content a.link-button {
    text-align: right;
}


.pcl .overlay-sold-out{
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    background: #00000075;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 1;
}
.pcl .overlay-sold-out span{
    font-size: 30px;
    font-family: Arada-Bold;
    padding: 0 22px;
    line-height: 22px;
}

.property-category-sold-out{
    min-height: 400px;
    justify-content: center;
    align-items: center;
}
.property-category-sold-out h2{
    color: #fff;
}

@media screen and (max-width:1400px) {
    .pcl .col {
        flex: calc(33.33% - 13.33px);
        max-width: calc(33.33% - 13.33px);
    }
}

@media screen and (max-width: 1024px) {
    .pcl .row {
        gap: 26.33px;
    }

    .pcl .col {
        flex: calc(50% - 13.33px);
        max-width: calc(50% - 13.33px);
    }
}

@media screen and (max-width: 768px) {
    .pcl .col {
        flex: 100%;
        max-width: 100%;
    }

    .pcl .list-item {
        height: auto !important;
    }

    .pcl .list-item h2 {
        width: 100%;
        padding-right: 0;
    }
}


/* Arabic Version Style Start */
.rtl .pcl .overlay-sold-out span{
    font-family: Cairo-Bold;
}

.rtl .pcl .filter-section select {
    font-family: Cairo-Regular;
    background-position: left;
}
/* Arabic Version Style End */