/* Property / project cards for area & market report pages */
.prop-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .prop-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .prop-card-grid { grid-template-columns: 1fr; }
}

.prop-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  background: #fafafa;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.prop-card:hover {
  border-color: rgba(27, 67, 50, 0.35);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.prop-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #e8e8e8;
  overflow: hidden;
}
.prop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prop-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #888;
  background: linear-gradient(135deg, #ececec, #f7f7f7);
}

.prop-card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1b4332;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}

.prop-card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.prop-card-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1b4332;
}
.prop-card-title {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 700;
}
.prop-card-meta,
.prop-card-specs {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.45;
}

.area-browse-bar {
  margin-top: 14px;
  max-width: 320px;
}
.area-browse-bar label {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.75);
}
.area-browse-bar select {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0 12px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.95);
}

.prop-section-cta {
  margin-top: 12px;
}
.prop-section-cta a {
  font-weight: 700;
  color: #1b4332;
}
