.slm-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.slm-search-field {
    display: flex;
    flex-direction: column;
    min-width: 160px;
}
.slm-search-submit {
    display: flex;
    align-items: flex-end;
}
.slm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.slm-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}
.slm-card-image-wrap {
    position: relative;
    padding-top: 66%;
    background: #f3f3f3;
    overflow: hidden;
}
.slm-card-image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slm-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}
.slm-card-body {
    padding: 0.75rem 0.9rem 1rem;
}
.slm-card-title {
    font-size: 1rem;
    margin: 0 0 0.4rem;
}
.slm-card-title a {
    text-decoration: none;
    color: #222;
}
.slm-card-title a:hover {
    text-decoration: underline;
}
.slm-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
    font-size: 0.9rem;
    color: #555;
    align-items: baseline;
}
.slm-card-price {
    font-weight: 600;
    font-size: 1rem;
}
.slm-card-beds-baths {
    color: #666;
}
.slm-card-city {
    color: #777;
}
