/* Base layout: 3 columns */
.wp-block-custom-subcategories ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wp-block-custom-subcategories li {
	flex: 0 0 calc(33.333% - 16px);
	margin: 8px;
	box-sizing: border-box;
}
  
/* Responsive‐hide helpers */
@media (min-width: 1025px) {
	.hide-desktop { display: none !important; }
}

@media (min-width: 768px) and (max-width: 1024px) {
	.hide-tablet { display: none !important; }
}

@media (max-width: 767px) {
	.hide-mobile { display: none !important; }
}

/* Standard styling defaults you can override in the editor: */
.wp-block-custom-subcategories ul li a {
	color: inherit;
	background: transparent;
	padding: 4px 8px;
	margin: 0;
	border: none;
	text-decoration: none;
	display: inline-block;
}  