.apc-wc-cats__grid {
	display: grid;

	/* Responsive magic */
    grid-template-columns: repeat(3, 1fr);

	gap: var(--apc-grid-gap, 24px);
}

/* Tablet */
@media (max-width: 1024px) {
    .apc-wc-cats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 380px) {
    .apc-wc-cats__grid {
        grid-template-columns: 1fr;
    }
}



.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;
}