.social-links,
.social-links .social-network {
	padding: 0;
	margin: 0;
	list-style: none;
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.social-links .social-link {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 40px;
	font-size: 23.333px;
	line-height:1;
	text-align: center;
	text-decoration: none !important;
	color: var(--blue-dark);
}

.social-links .social-link::before,
.social-links .social-link::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	display: block;
	content: '';
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	transition: opacity var(--transition-appendix);
}

.social-links .social-link::before {
	background-image: url('/includes/public/assets/shared/circle-yellow.svg');
	opacity: 1;
}

.social-links .social-link::after {
	background-image: url('/includes/public/assets/shared/circle-green.svg');
	opacity: 0;
}

@media (hover: hover) {
	.social-links .social-link:hover::before {
		opacity: 0;
	}
	
	.social-links .social-link:hover::after {
		opacity: 1;
	}
}

@media (min-width: 64em) {
	.social-links .social-link {
		width: 50px;
		height: 48px;
		font-size: 28px;
	}
}