.linkwithicon{
	a[href]{
		display: inline-flex;
		align-items: center;
		gap: 16px;
		transition: color .3s ease;

		&::before{
			content: '';
			width: 32px;
			aspect-ratio: 1;
			-webkit-mask: var(--i) no-repeat center/contain;
			mask: var(--i) no-repeat center/contain;
			background: currentColor;
			transition: background-color .3s ease;
		}
	}

	&.has-blau-color a:hover{
		color: var(--wp--preset--color--rot);
	}
}