.bh-real-estate-listings {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 14px;
	align-items: start;
}

.bh-listing-item {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
	transition: transform 0.14s ease;
}
.bh-listing-item:hover { transform: translateY(-6px); }

.bh-listing-link { display: block; color: inherit; text-decoration: none; }

.bh-listing-body { padding: 14px; display: flex; flex-direction: column; gap: 6px; }
.bh-listing-title { font-size: 1.7rem; margin: 0; color: #0f172a; font-weight: 700; line-height: 1.15; }
.bh-listing-address { color: #475569; font-size: 1.45rem; margin-top: 4px; }
.bh-listing-price { color: #0f66ff; font-weight: 800; font-size: 1.55rem; margin-top: 6px; }

@media (max-width: 640px) {
	.bh-real-estate-listings { grid-template-columns: 1fr; }
}

