.apc-wc-cats__grid {
	display: grid;

	/* Responsive magic */
	grid-template-columns: repeat(
		auto-fit,
		minmax(var(--apc-grid-min, 240px), 1fr)
	);

	gap: var(--apc-grid-gap, 24px);
}
.apc-wc-cats {
    width:100%;
}
.apc-wc-cats__item {
	position: relative;
	min-width: 0;
}

/* Stretched link */
.apc-wc-cats__link {
	position: absolute;
	inset: 0;
	z-index: 1;
}

/* Ensure real content is above the link if needed */
.apc-wc-cats__item > *:not(.apc-wc-cats__link) {
	position: relative;
	z-index: 0;
}