/*
Theme Name: Astra Child
Template: astra
*/
.property-mini-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.property-mini-gallery img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border: 1px solid #ccc;
    padding: 2px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.property-mini-gallery img:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

@media (max-width: 600px) {
    .property-mini-gallery img {
        width: 48%;
        height: auto;
    }
}

#property-search-form { margin-bottom: 20px; }
#property-search-form label { display:block; margin-top:10px; }
.property-results-grid { display:flex; flex-wrap:wrap; gap:20px; }
.property-item { border:1px solid #ddd; padding:10px; width:calc(33.33% - 20px); box-sizing:border-box; }
.property-thumb img { max-width:100%; height:auto; display:block; margin-bottom:10px; }

#property-search-form .search-group {
    margin-bottom: 15px;
}

#property-search-form .search-field {
    margin-bottom: 10px;
}

#property-search-form fieldset {
    border: 1px solid #ddd;
    padding: 10px;
}

#property-search-form fieldset legend {
    font-weight: bold;
}

#property-search-form button {
    padding: 8px 15px;
    cursor: pointer;
}

#property-search-results {
    margin-top: 20px;
}


