/**
 * ============================================================
 * Sharing Articles — עיצוב כפתורי השיתוף
 * ============================================================ */

.sharing_fw_dashboard_btns {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	direction: rtl;
}

.sharing_fw_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	text-decoration: none;
	transition: opacity 0.2s ease, transform 0.15s ease;
	cursor: pointer;
	border: none;
	box-sizing: border-box;
}

.sharing_fw_btn:hover,
.sharing_fw_btn:focus {
	opacity: 0.85;
	transform: scale(1.05);
	text-decoration: none;
}

.sharing_fw_btn:focus-visible {
	outline: 2px solid #000;
	outline-offset: 2px;
}

.sharing_fw_icon {
	width: 20px;
	height: 20px;
	fill: #ffffff;
	display: block;
}

/* פייסבוק — צבע רשמי */
.sharing_fw_btn_facebook {
	background-color: #1877F2;
}

/* ווטסאפ — צבע רשמי */
.sharing_fw_btn_whatsapp {
	background-color: #25D366;
}

/* התאמה למובייל — מעט יותר גדול לנגיעה נוחה */
@media (max-width: 768px) {
	.sharing_fw_btn {
		width: 40px;
		height: 40px;
	}
	.sharing_fw_icon {
		width: 22px;
		height: 22px;
	}
}
