.paf-filter-buttons {
    text-align: center;
    margin-bottom: 20px;
}
.paf-filter-btn {
    background: #fff3cd;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.paf-properties-grid {
    display: grid;
     grid-template-columns: repeat(4, 1fr);  
    gap: 20px;
    padding: 20px 0;
}

.paf-property-card {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 150px;
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 10px 31px 0 rgba(239, 191, 4, 0.09);
    transition: all 0.4s ease;
    min-height: 100px;
}

.paf-property-card:hover {
    transform: scale(1.02);
}

.paf-text-area {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    width: 100%;
    color: #fff;
    text-align: center;
    height: 100%;
}

.paf-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.paf-title a {
    color: #fff;
    text-decoration: none;
}

.paf-listing {
    margin-top: 8px;
}

.paf-listing-count {
  background: #efbf04;
    color: #5C727D;
    padding: 1px 9px;
    border-radius: 4px;
    font-weight: 400;
    display: inline-block;
    font-size: 14px;
}
@media (max-width: 992px) {
    .paf-properties-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

@media (max-width: 576px) {
    .paf-properties-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}
.paf-text-elem{
    bottom: 13%;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 13%;
    text-align: center;
    color: white;
}


.paf-filter-btn.active {
   background-color: #FDF8E6;
    color: #EFBF04;
}
.float-none{
    float: none !important;
}

