diff --git a/submissions/examples/mobile-alignment-fix/README.md b/submissions/examples/mobile-alignment-fix/README.md
new file mode 100644
index 00000000..3a99e2aa
--- /dev/null
+++ b/submissions/examples/mobile-alignment-fix/README.md
@@ -0,0 +1,11 @@
+# Mobile Responsive Alignment Fix
+
+Fixes the layout shifting and breaking bug where dashboard stats cards dropped their centered properties on narrow mobile screens.
+
+## Resolution
+- Implemented robust flexbox property overrides inside max-width media queries.
+- Normalized child container structure metrics to use clean, auto-centering margins (`margin: 0 auto`).
+- Verified zero left-border text clipping down to 320px viewports.
+
+## Linked Issue
+Closes #1232
diff --git a/submissions/examples/mobile-alignment-fix/demo.html b/submissions/examples/mobile-alignment-fix/demo.html
new file mode 100644
index 00000000..8fcac62b
--- /dev/null
+++ b/submissions/examples/mobile-alignment-fix/demo.html
@@ -0,0 +1,15 @@
+
+
+
+
+
+ Mobile Alignment Fix Demo - #1232
+
+
+
+
+
CommitPulse Stats Dashboard
+
This layout component adjusts dynamically to mobile viewports. Try shrinking your browser screen under 768px to verify the layout remains perfectly centered without breaking or clipping text layout boundaries.