.house-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.house-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.house-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}
.house-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.house-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.house-image i { font-size: 48px; color: var(--icon-light); }
.house-tag {
    position: absolute;
    top: 10px;
    left: 10px;
}
.house-tag span {
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: var(--text-white);
}
.tag-rent { background: var(--color-service-start); }
.tag-sale { background: var(--color-house-start); }
.house-info { padding: 20px; }
.house-price {
    font-size: 24px;
    color: var(--color-house-start);
    font-weight: bold;
    margin-bottom: 10px;
}
.house-title {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.house-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}
.detail-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text-medium);
}
.detail-item i { color: var(--color-house-start); }
.house-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-light);
}
.house-location i { margin-right: 5px; color: var(--color-house-start); }
.house-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-white);
    border-radius: 12px;
}
.house-empty-state i { font-size: 48px; color: var(--icon-lighter); margin-bottom: 15px; }
.house-empty-state p { color: var(--text-light); font-size: 16px; }
