.category-icons.alignfull{
	margin-top: 0px!important;
	margin-bottom: 0px!important;
}

.category-icons__wrapper{
	display: grid;
  	grid-template-columns: 2fr 6fr; /* 1/8 column for the first child, 7/8 for the second child */
	gap: 10px; /* Adjust the gap between columns as needed */
}

.category-icons__wrapper .heading{
	display: flex;
	align-items: center;
}
.category-icons__wrapper .heading h2{
	font-size: var(--wp--preset--font-size--big);
}

.category-icons__wrapper .icon-group{
	display: grid;
	grid-template-columns: repeat(8, 1fr); /* Create 8 equal columns */
	gap: 20px;
}
.category-icons__wrapper .icon-group .item{
	text-align: center;
}
.category-icons__wrapper .icon-group .item a{
	position: relative;
	display: inline-block;
}
.category-icons__wrapper .icon-group .item span{
	position: absolute;
	left: 0px;
	top: 10px;
	display: block;
	width: 100%;
	height: auto;
	font-family: var(--wp--custom--typography--heading--font-family);
	font-size: var(--wp--preset--font-size--huge);
	color: var(--wp--preset--color--background);
	font-weight: 700;
}
.category-icons__wrapper .icon-group .item svg{
	width: 80px;
	height: 80px;
}
.category-icons__wrapper .icon-group .item p{
	text-transform: uppercase;
	font-size: var(--wp--preset--font-size--min);
	font-weight: 600;
	display: block;
	width: 100%;
	margin: 0px;
}

.category-icons__wrapper .icon-group .item:hover svg{
	fill: var(--wp--preset--color--foreground);
}

.category-icons__wrapper .cat-key.asparagus svg{ fill: #929E53; }
.category-icons__wrapper .cat-key.sunrise svg{ fill: #CD4D44; }
.category-icons__wrapper .cat-key.mustard svg{ fill: #E9BC50; }
.category-icons__wrapper .cat-key.robbinegg svg{ fill: #A7DAD2; }
.category-icons__wrapper .cat-key.rose svg{ fill: #E9C3B6; }
.category-icons__wrapper .cat-key.smoke svg{ fill: #6B6A6B; }
.category-icons__wrapper .cat-key.dirtyblue svg{ fill: #37757F; }
.category-icons__wrapper .cat-key.byzantium-purple svg{ fill: #6C4F80; }
.category-icons__wrapper .cat-key.fog svg{ fill: #CBCAC8; }

@media screen and (max-width: 767px) {

	.category-icons__wrapper{
		display: block;
	}

	.category-icons__wrapper .heading{
		display: block;
		text-align: center;
	}

	.category-icons__wrapper .icon-group{
		display: grid;
		grid-template-columns: repeat(4, 1fr); /* Create 8 equal columns */
		gap: 10px;
	}

	.category-icons__wrapper .icon-group .item svg{
		width: 60px;
		height: 60px;
	}

	.category-icons__wrapper .icon-group .item span{
		top: 5px;
		font-size: var(--wp--preset--font-size--huge);
	}

	.category-icons__wrapper .icon-group .item p{
		font-size: var(--wp--preset--font-size--min);
	}

}
