/* =========================
   Search Results (Page)
========================= */

.search-section {
  margin-top: 3rem;
}

/* Product results */
.search-products .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}

/* Post results */
.search-posts .post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-posts .post-list li {
  margin-bottom: .75rem;
}

/* Headings */
.search-title {
  margin-top: 2rem;
  font-size: 1.75rem;
  color: var(--vcom-text);
}