.icon-link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	min-height: 50px;
	padding: 10px;
	font-family: var(--font-barlow);
	font-weight: 700;
	font-size: var(--text-xs);
	line-height: 1;
	color: inherit;
	text-align: center;
	text-decoration: none !important;
	background: var(--teal-dark);
}

/*----- microsite (black) theme -----*/

.theme-microsite .icon-link {
	background: var(--black);
}

/*----- lavender theme -----*/

.theme-lavender .icon-link {
	background: var(--lavender-dark);
}

.icon-link:hover {
	color: var(--white);
}