/* ==========================================================================
   Social Share Buttons — Speedy Magazine
   ========================================================================== */

.educenters-share-buttons {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 0;
	margin: 20px 0;
	border-top: 1px solid var(--educenters-border, #eee);
	border-bottom: 1px solid var(--educenters-border, #eee);
}

.educenters-share-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--educenters-text, #333);
	white-space: nowrap;
}

.educenters-share-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.educenters-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	text-decoration: none;
	transition: transform .2s, opacity .2s;
	color: #fff;
}

.educenters-share-btn:hover {
	transform: translateY(-2px);
	opacity: .9;
}

/* Per-network colours */
.educenters-share-facebook  { background: #1877f2; }
.educenters-share-twitter   { background: #000;    }
.educenters-share-linkedin  { background: #0a66c2; }
.educenters-share-whatsapp  { background: #25d366; }
.educenters-share-telegram  { background: #2aabee; }
.educenters-share-pinterest { background: #bd081c; }
.educenters-share-email     { background: #555;    }
.educenters-share-copy      { background: var(--educenters-bg-surface, #f0f0f0); color: var(--educenters-text, #333); }

.educenters-share-copy.copied {
	background: #27ae60;
	color: #fff;
}

/* Dark mode */
[data-theme="dark"] .educenters-share-copy {
	background: var(--educenters-bg-surface-2, #2d2d2d);
	color: var(--educenters-text, #e0e0e0);
}

/* Responsive */
@media (max-width: 480px) {
	.educenters-share-buttons {
		flex-wrap: wrap;
	}

	.educenters-share-btn {
		width: 32px;
		height: 32px;
	}
}
