.object-room-grid {
    display: flex;
    flex-wrap: wrap;
}

.object-room-grid-item {
    display: flex;
    margin-bottom: 30px;
}

.object-room-card.thumbnail {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--b2r-border, #e6ebf2);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(18, 34, 56, .06);
}

.object-room-card > img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #edf2f7;
}

.object-room-card .caption {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.object-room-card .caption h3 {
    margin-top: 0;
    font-weight: 800;
}

.object-room-description {
    flex: 1;
    line-height: 1.6;
}

.object-room-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.object-room-actions .btn {
    flex: 1 1 135px;
    min-width: 0;
    margin: 0;
    white-space: normal;
}

.object-tabs {
    margin-top: 28px;
}

.object-tabs + .tab-content {
    min-height: 70px;
}

@media (max-width: 767px) {
    .object-room-grid-item {
        width: 100%;
    }

    .object-room-card > img {
        height: 210px;
    }
}
