.SocialList {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

.SocialList__Item {
	margin: 0;
	padding: 0;
}

.SocialList__Link {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	color: #ffffff;
	transition: color 0.2s ease, fill 0.2s ease;
}

.SocialList__Link:hover,
.SocialList__Link:focus {
	color: #d3d3d3;
	text-decoration: none;
}

.SocialList__Link i {
	font-size: 24px;
}

.SocialList__Link svg {
	width: 24px;
	height: 24px;
	display: block;
}
