/* Category pages share the editorial hero and the light catalogue surface. */
.catalog-category-page.astro-editorial-surface {
	color: var(--astro-color-ink);
	background: var(--astro-color-paper);
}

.catalog-category-page .astro-editorial-hero h1 {
	max-width: none;
	max-inline-size: 20ch;
	overflow-wrap: anywhere;
}

.catalog-category-page .astro-editorial-body {
	padding-block: clamp(2.5rem, 5vw, 5rem);
}

.catalog-category-page .astro-editorial-body h2,
.catalog-category-page .catalog-category-results h2 {
	color: var(--astro-color-ink);
}

.catalog-category-page .catalog-category-children {
	border-color: var(--astro-color-line);
}

.catalog-category-page .catalog-category-children ul,
.catalog-category-page .catalog-category-children a {
	border-color: var(--astro-color-line);
}

.catalog-category-page .catalog-category-children a {
	color: var(--astro-color-ink);
	background: var(--astro-color-mineral);
}

.catalog-category-page .catalog-category-children a:hover,
.catalog-category-page .catalog-category-children a:focus-visible {
	background: var(--astro-color-action);
	color: var(--astro-color-ink);
}

.catalog-category-page .catalog-category-children a:focus-visible,
.catalog-category-page .catalog-pagination a:focus-visible {
	outline: 2px solid var(--astro-color-ink);
	outline-offset: -3px;
}

.catalog-category-page .catalog-kicker,
.catalog-category-page .catalog-results__status,
.catalog-category-page .product-card__meta,
.catalog-category-page .catalog-content-limitations {
	color: var(--astro-color-muted-on-light);
}

.catalog-category-page .product-card {
	color: var(--astro-color-ink);
	background: var(--astro-color-mineral);
}

.catalog-category-page .product-card h3,
.catalog-category-page .product-card h3 a {
	color: var(--astro-color-ink);
	overflow-wrap: anywhere;
}

.catalog-category-page .product-card__category,
.catalog-category-page .catalog-pagination a,
.catalog-category-page .catalog-related-links a {
	color: var(--astro-color-action-on-light);
}

.catalog-category-page .catalog-pagination {
	gap: .75rem;
	border-color: var(--astro-color-line);
}

.catalog-category-page .catalog-pagination a {
	border-color: var(--astro-color-line);
}

.catalog-category-page .catalog-pagination a[aria-current="page"] {
	color: var(--astro-color-ink);
	background: var(--astro-color-action);
}

.catalog-category-page .catalog-pagination > :last-child {
	margin-left: 0;
}

.catalog-category-page .catalog-related-links {
	padding-bottom: 3rem;
}

@media (max-width: 47.99rem) {
	.catalog-category-page .catalog-category-children ul {
		grid-template-columns: 1fr;
	}

	.catalog-category-page .catalog-category-children a {
		min-height: 4rem;
	}
}

@media (max-width: 40rem) {
	.catalog-category-page .page-breadcrumbs {
		overflow-x: auto;
		overflow-y: hidden;
		overscroll-behavior-inline: contain;
		scrollbar-width: thin;
		white-space: nowrap;
	}
}
