.social-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0;
	padding: 0;
	font-size: 1.6rem;
	line-height: 1;
	list-style: none;
}

.social-links .social-link {
	text-decoration: none;
	height: var(--space-10);
	width: var(--space-10);
	font-size: var(--text-2xl);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--olive);
	border-radius: var(--rounded-circle);
}

.social-links .social-network {
	padding: 0;
	margin: 0;
}

@media (min-width: 64em) {
	.social-links .social-network .social-link {
		position: relative;
		height: 50px;
		width: 50px;
	}

	.social-links .social-network .social-link:after {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		height: calc(100% + 8px);
		width: calc(100% + 8px);
		border: 1px solid var(--olive);
		border-radius: var(--rounded-full);
		opacity: 0;
		pointer-events: none;
		transition: opacity 500ms ease-in-out;
	}

	@media (hover: hover) {
		.social-links .social-network .social-link:hover {
			color: var(--white);
		}
		.social-links .social-network .social-link:hover:after {
			opacity: 1;
		}
	}
}