/* EP Social Share — Share Button Styles */
.ep-share {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}
.ep-share-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	transition: opacity 0.15s;
	color: #fff;
}
.ep-share-btn:hover {
	opacity: 0.85;
}
.ep-share-btn svg {
	flex-shrink: 0;
}
.ep-share-btn--twitter { background: #000; }
.ep-share-btn--facebook { background: #1877f2; }
.ep-share-btn--linkedin { background: #0a66c2; }
.ep-share-btn--bluesky { background: #0085ff; }
.ep-share-btn--reddit { background: #ff4500; }
.ep-share-btn--email { background: #6b5e54; }

/* Minimal style: icons only */
.ep-share--minimal .ep-share-btn {
	padding: 8px;
	border-radius: 50%;
}
.ep-share--minimal .ep-share-btn span {
	display: none;
}
