/* ============================================
   SHARE WIDGET
   ============================================ */

.share-widget .share-buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.share-button {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border-radius: 6px;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
	width: 100%;
	text-align: left;
}

.share-button i {
	width: 16px;
	text-align: center;
	font-size: 14px;
	flex-shrink: 0;
}

/* LinkedIn */
.share-button--linkedin {
	background: rgba(0, 119, 181, 0.08);
	color: #0077b5;
}

.share-button--linkedin:hover {
	background: #0077b5;
	color: white;
}

/* Facebook */
.share-button--facebook {
	background: rgba(24, 119, 242, 0.08);
	color: #1877f2;
}

.share-button--facebook:hover {
	background: #1877f2;
	color: white;
}

/* Email */
.share-button--email {
	background: rgba(0, 132, 201, 0.08);
	color: #0084c9;
}

.share-button--email:hover {
	background: #0084c9;
	color: white;
}

/* Copy Link */
.share-button--copy {
	background: rgba(89, 89, 89, 0.08);
	color: #595959;
}

.share-button--copy:hover {
	background: #595959;
	color: white;
}

/* Copied state */
.share-button--copy.copied {
	background: rgba(0, 219, 109, 0.1);
	color: #00a854;
}