div.profile-item {
	--min-height: var(--min-item-height, 35px); 
	--icon-width: var(--min-height, 35px); 
	
/* 	display: flex; */
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
}

/* div.profile-item--no-icon {} */

div.profile-item__icon {
	width: var(--icon-width);
	height: var(--min-height);
	display: flex;
	align-items: center;
	justify-content: center;
	padding-right: 1em;
	text-align: center;
}

div.profile-item__icon svg {
	object-fit: contain;
}

div.profile-item__text {
	width: 100%;
	color: var(--cryomate-teal, #20504E);
	font-family: "TT Commons";
	font-size: 1.0625rem;
	font-weight: 400;
	line-height: 144%;
}

/* if it's a link */
div.profile-item a {
	color: currentcolor;
	transition: all 0.5s ease;
}

div.profile-item a:hover {
	text-underline-offset: 5px;
	opacity: 0.8;
}

/* if there's additional note */
div.profile-item__note {
	grid-column: 2;
	color: var(--cryomate-teal, #20504E);
	font-family: "TT Commons";
	font-size: var(--wp--preset--font-size--small, 14px);
	font-weight: 450;
	line-height: 20.16px;
}
