.itm-sharing { display: flex; gap: 8px; flex-wrap: wrap; }
.itm-share-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.06);
	color: var(--share-color, #fff);
	font-size: 0.9rem;
	transition: transform 0.2s, background 0.2s;
}
.itm-share-btn:hover { transform: scale(1.1); background: var(--share-color); color: #fff; }
