.object-list-page {
  margin-top: 0;
}

.object-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.object-list-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.object-list-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.object-list-card__body {
  padding: 1rem;
}

.object-list-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.object-list-card__price {
  font-weight: 700;
  color: #0f2d1f;
}

.object-list-empty {
  color: #6b7280;
}
