.lpc-category-list,
.lpc-category-products__grid,
.lpc-featured-products__grid,
.lpc-related-products__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
	gap: var(--lpc-grid-gap);
}

.lpc-category-card {
	min-height: 100%;
}

.lpc-category-card__header,
.lpc-category-products__header,
.lpc-search-results__header,
.lpc-featured-products__header,
.lpc-related-products__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--lpc-spacing-md);
	margin-bottom: var(--lpc-spacing-lg);
}

.lpc-category-card__description,
.lpc-category-products__summary,
.lpc-search-results__summary {
	color: var(--lpc-color-text-muted);
}

.lpc-category-card__count,
.lpc-category-products__count,
.lpc-search-results__count,
.lpc-featured-products__count,
.lpc-related-products__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	background: var(--lpc-color-surface-alt);
	color: var(--lpc-color-text-muted);
	font-size: 0.85rem;
	font-weight: 600;
	white-space: nowrap;
}
