/* === SOCIAL MEDIA ICONS (footer) – survol harmonisé === */
.sfooter ul.social-links,
ul.social-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.sfooter ul.social-links li,
ul.social-links li {
	list-style: none;
	display: inline-block;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.sfooter ul.social-links li a,
ul.social-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.sfooter ul.social-links li a:hover,
ul.social-links li a:hover {
	transform: scale(1.15) translateY(-3px);
	background-color: var(--c-grey-soft, #e0e0e0);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sfooter ul.social-links img,
ul.social-links img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}
