.social-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	font-size: 1.6rem;
	line-height: 1;
	list-style: none;
}

.social-links li,
.social-links li a {
	line-height: var(--leading-none);
}

.social-links a {
	display: flex;
    align-items: center;
    justify-content: center;
	width: 55px;
	height: 55px;
	color: inherit;
	text-decoration: none;
	font-size: 1.9587rem;
	background-size: cover
}
.social-links .social-network {
	padding: 0;
	margin: 0;
}

@media (hover : hover) {
	.social-links a:hover {
		text-decoration: none;
		color: currentColor;
	}
}

@media (max-width: 1023px) {
	.social-links .social-network:nth-child(4n+1) a { background-image: url(vector-1.svg); }
	.social-links .social-network:nth-child(4n+2) a { background-image: url(vector-2.svg); }
	.social-links .social-network:nth-child(4n+3) a { background-image: url(vector-3.svg); }
	.social-links .social-network:nth-child(4n+4) a { background-image: url(vector-4.svg); }
	.panel-social .social-links {
		gap: 9px;
	}	
}

.panel-social .social-links .social-network  {
	background-color: var(--dusk);
	color: var(--cream);
	border-radius: var(--rounded-circle);
}
.panel-social .social-links .social-network a { 
	background-image: none; 
}

@media (min-width: 64em) {
	.social-links {
		gap: 9px;

	}
	.social-links .social-network a { background-image: url(vector-desktop.svg); }

	.panel-social .social-links .social-network a { 
		width: 56px;
		height: 56px;
	}
	@media (hover : hover) {
		.panel-social .social-links .social-network a:hover {
			color: var(--krew);
		}
	}
}