﻿﻿body {
    background: #f5f5f5;
}

.container-main {
    max-width: 1100px;
}

.house-card {
    background: #fff;
    border-radius: .5rem;
    overflow: hidden;
}

    .house-card .card-body {
        padding: 1rem 1rem 1.25rem;
    }

    .house-card .cover-wrap {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        border-radius: .5rem;
        background: #e9ecef;
    }

        .house-card .cover-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

    .house-card .cover-overlay {
        position: absolute;
        top: .5rem;
        left: .5rem;
        right: .5rem;
        display: flex;
        gap: .25rem;
        flex-wrap: wrap;
        z-index: 2;
    }

        .house-card .cover-overlay .badge {
            background: #f8f9fa;
            color: #212529;
            border: 1px solid #dee2e6;
            font-weight: 600;
        }

    .house-card .header-row {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: .75rem;
    }

        .house-card .header-row .btn {
            white-space: nowrap;
        }

.muted {
    color: #6c757d;
}

.thumbs {
    border-top: 1px solid #f1f1f1;
}

    .thumbs .thumb {
        width: 72px;
        height: 72px;
        object-fit: cover;
        border-radius: .35rem;
        box-shadow: 0 1px 3px rgba(0,0,0,.15);
    }
