.lb-grid { display: grid; gap: 24px; margin: 24px 0; }
.lb-cols-1 { grid-template-columns: 1fr; }
.lb-cols-2 { grid-template-columns: repeat(2, 1fr); }
.lb-cols-3 { grid-template-columns: repeat(3, 1fr); }
.lb-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) { .lb-cols-3, .lb-cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lb-grid { grid-template-columns: 1fr; } }

.lb-card { border: 1px solid rgba(0,0,0,.1); border-radius: 10px; overflow: hidden; background: #fff; transition: box-shadow .2s ease, transform .2s ease; }
.lb-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-2px); }
.lb-card-link { display: block; text-decoration: none; color: inherit; }
.lb-card-media { aspect-ratio: 4 / 3; overflow: hidden; background: #f2f2f2; }
.lb-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lb-card-body { padding: 16px; }
.lb-card-title { margin: 0 0 4px; font-size: 1.05rem; line-height: 1.35; }
.lb-card-location { margin: 0 0 10px; font-size: .85rem; opacity: .7; }
.lb-card-price { margin: 0 0 6px; font-weight: 700; }
.lb-card-facts { margin: 0; font-size: .85rem; opacity: .75; }
.lb-empty { opacity: .7; }

.lb-single { margin-top: 32px; }
.lb-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; margin-bottom: 28px; }
.lb-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; display: block; }
.lb-specs { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
.lb-specs th, .lb-specs td { text-align: left; padding: 10px 12px; border-bottom: 1px solid rgba(0,0,0,.08); }
.lb-specs th { width: 200px; font-weight: 600; opacity: .75; }
.lb-amenities { line-height: 1.8; }
.lb-plan { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.lb-plan li { border: 1px solid rgba(0,0,0,.12); border-radius: 8px; padding: 10px 14px; font-size: .9rem; }
.lb-agent { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding: 16px; border: 1px solid rgba(0,0,0,.1); border-radius: 10px; }
.lb-agent-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
