/*
 * GLOBAL-CATEGORY-CARDS-WORD-WRAP-01-HARDENING
 *
 * Loaded after bood-category-navigation.css. Long category names must grow
 * the native card instead of being silently clipped after an arbitrary line.
 */

.bood-category-nav__card-title {
	display: block;
	overflow: visible;
	overflow-wrap: anywhere;
	word-break: normal;
	hyphens: auto;
	-webkit-box-orient: initial;
	-webkit-line-clamp: unset;
}

@media (max-width: 1350px) and (min-width: 1200px) {
	.bood-category-nav__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
