/* Property Cards - cards.css */
.card {
  display: flex;
  gap: 12px;
  background: #fff;
  padding: 12px;
  border-radius: 6px;
  margin-top: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.card img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
}
.details {
  flex: 1;
}
.meta {
  color: #666;
  font-size: 13px;
  margin-top: 6px;
}
.price {
  width: 150px;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
