
.yardsale-img-sm {
    height: 60px;   /* or even 24px */
    width: auto;
    display: block;
}

.yardsale-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.yardsale-img {
  width: 100%;
  max-width: 120px; /* desktop size */
  height: auto;
  border-radius: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.yardsale-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .yardsale-img {
    max-width: 100%; /* full width on mobile */
  }
}