.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .15s, transform .15s, border-color .15s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-2px);
  border-color: #b8b8b8;
}

.card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--gray);
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #c5c5c5;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: repeating-linear-gradient(135deg, #f4f4f4 0 14px, #efefef 14px 28px);
}
.card-img .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 4px;
  align-items: center;
}

.card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.card-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.card-price-main {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--fg-strong);
}
.card-price-was {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}
.card-address {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-loc {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-meta {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--fg);
}
.card-meta span { white-space: nowrap; }

/* Image overlay badges — uniform glass style */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .03em;
  white-space: nowrap;
  background: rgba(17,17,17,.78);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Status indicator — colored dot + neutral text */
.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #444;
  white-space: nowrap;
}
.status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #c5c5c5;
}
.status-move_in_ready .dot { background: var(--green); }
.status-under_construction .dot { background: var(--amber); }
.status-quick_move_in .dot { background: var(--blue); }

.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  margin-bottom: 8px;
}
