/* Uniform cover image size */
#listings .listing img.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Subtle hover feedback */
#listings .listing.card {
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

#listings .listing.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

/* Avatar styling */
#listings .hostAvatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: cover;
}

/* Make the image feel clickable */
#listings .listingThumb {
  cursor: zoom-in;
}