/**
 * Hide Dummy/Example Cards
 * Only show dynamic content from localStorage
 */

/* Hide all hardcoded property cards on homepage */
#property .property-list > li {
  display: none !important;
}

/* Hide all hardcoded blog cards on homepage */
#blog .blog-list > li {
  display: none !important;
}

/* Hide all hardcoded property cards on properties page */
.property .property-list > li {
  display: none !important;
}

/* Hide all hardcoded blog cards on blog page */
.blog .blog-list > li {
  display: none !important;
}

/* Show message when no properties/blogs are added yet */
.property-list:empty::after,
.blog-list:empty::after {
  content: 'No properties/blogs added yet. Add them from the admin panel!';
  display: block;
  text-align: center;
  padding: 60px 20px;
  color: var(--cadet);
  font-size: 18px;
  font-weight: 600;
}
