diff --git a/projects/plugins/jetpack/changelog/update-featured-image-usage-counter b/projects/plugins/jetpack/changelog/update-featured-image-usage-counter
new file mode 100644
index 0000000000000..30d4b114af9a8
--- /dev/null
+++ b/projects/plugins/jetpack/changelog/update-featured-image-usage-counter
@@ -0,0 +1,4 @@
+Significance: minor
+Type: other
+
+Update UX of featured image usage counter
diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/featured-image/usage-counter.scss b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/featured-image/usage-counter.scss
index ae567be1608cb..eb99ff4349167 100644
--- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/featured-image/usage-counter.scss
+++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/featured-image/usage-counter.scss
@@ -4,4 +4,16 @@
color: var(--studio-gray-50, #646970);
font-size: 1em;
display: flex;
-}
\ No newline at end of file
+ flex-direction: column;
+
+ & > span {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ gap: 8px;
+ }
+
+ &-no-limit {
+ color: red;
+ }
+}
diff --git a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/featured-image/usage-counter.tsx b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/featured-image/usage-counter.tsx
index fdc87de649927..107eebe5c0149 100644
--- a/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/featured-image/usage-counter.tsx
+++ b/projects/plugins/jetpack/extensions/plugins/ai-assistant-plugin/components/featured-image/usage-counter.tsx
@@ -1,6 +1,7 @@
/**
* External dependencies
*/
+import { createInterpolateElement } from '@wordpress/element';
import { __, sprintf } from '@wordpress/i18n';
/**
* Internal dependencies
@@ -16,19 +17,30 @@ type UsageCounterProps = {
export default function UsageCounter( { currentLimit, currentUsage, cost }: UsageCounterProps ) {
const requestsBalance = currentLimit - currentUsage;
- const requestsBalanceLabel = __( 'Requests needed / available:', 'jetpack' );
-
- const requestsBalanceValues = sprintf(
- // Translators: %1$d is the cost of one image, %2$d is the current requests balance.
- __( '%1$d / %2$d', 'jetpack' ),
- cost,
- requestsBalance
+ const requestsNeeded = createInterpolateElement(
+ // Translators: %d is the cost of one image.
+ sprintf( __( 'Requests needed: