.ed-floating-social {
	position: fixed;
	top: 35%;
	right: 0;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.ed-floating-social__link {
	display: block;
	width: 40px;
	height: 40px;
	margin: 8px 16px 0 0;
	padding: 0;
	overflow: visible;
	border-radius: 50%;
	box-shadow: 0 0 10px rgb(255 255 255 / 80%);
	line-height: 0;
	transition: all 0.25s linear;
}

.ed-floating-social__link img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (hover: hover) and (pointer: fine) {
	.ed-floating-social__link:hover {
		transform: rotate(360deg);
	}
}

.ed-floating-social__link:focus-visible {
	outline: 3px solid #ff2a71;
	outline-offset: 2px;
}

@media (max-width: 768px) {
	.ed-floating-social {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ed-floating-social__link {
		transition: none;
	}
}
