/* Listing view for the HubDB-driven property template. Plain CSS (not a
   CSS module) since this markup lives directly in the HubL template. */

.property-listing-hero {
  background: var(--bg);
  padding: 64px 24px 40px;
  text-align: center;
}

.property-listing-hero__inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.property-listing-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 8px 0 12px;
}

.property-listing-hero__subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 40em;
  margin: 0 auto;
}

.property-grid {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 40px 24px 96px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.property-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.15s ease;
}

.property-card:hover {
  transform: translateY(-4px);
}

.property-card__tenant {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-on-surface);
  margin-bottom: 10px;
}

.property-card__title {
  font-size: 20px;
  margin-bottom: 10px;
}

.property-card__title span {
  color: var(--accent-on-surface);
}

.property-card__address {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.property-card__cta {
  color: var(--accent-on-surface);
  font-weight: 600;
  font-size: 14px;
}
