/* Main area padding and responsive adjustments */
.featured-properties-area.section-padding-100-50 {
    padding: 100px 0 50px 0;
    background: #fcfcfc; /* optional subtle background */
}

/* Headings styling */
.featured-properties-area .section-heading h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 0.3em;
}

/* Featured property card spacing and animation tweaks */
.single-featured-property {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(44,44,90,0.07);
    transition: box-shadow 0.2s, transform 0.18s;
    margin-bottom: 40px;
}
.single-featured-property:hover {
    box-shadow: 0 14px 40px rgba(44,44,90,0.13);
    transform: translateY(-4px) scale(1.02);
}

/* Standardized thumbnail container */
.property-thumb {
    width: 100%;
    aspect-ratio: 4 / 3; /* Keeps consistent width:height ratio */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f6f8;
    border-radius: 12px;
    position: relative;
}

/* Uniform image styling for all property thumbnails */
.property-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Interactive image effect on hover */
.property-thumb img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    cursor: pointer;
}

/* Property content formatting */
.property-content {
    padding: 22px 18px 18px 18px;
}

/* Property meta icons alignment */
.property-meta-data {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-meta-data > div {
    display: flex;
    align-items: center;
    gap: 4px;
}

.property-meta-data img {
    width: 22px;
    height: 22px;
}

/* Responsive adjustments for mobile screens */
@media (max-width: 600px) {
    .property-thumb {
        aspect-ratio: 4 / 3;
    }
    .property-content {
        padding: 15px 10px;
    }
}
