diff --git a/packages/website/docs/_components_pages/main/Avatar/Avatar.mdx b/packages/website/docs/_components_pages/main/Avatar/Avatar.mdx
index c98f8f303d74..ea28bf8de93c 100644
--- a/packages/website/docs/_components_pages/main/Avatar/Avatar.mdx
+++ b/packages/website/docs/_components_pages/main/Avatar/Avatar.mdx
@@ -4,6 +4,7 @@ slug: ../Avatar
import Basic from "../../../_samples/main/Avatar/Basic/Basic.md";
import Interactive from "../../../_samples/main/Avatar/Interactive/Interactive.md";
+import Decorative from "../../../_samples/main/Avatar/Decorative/Decorative.md";
import WithBadge from "../../../_samples/main/Avatar/WithBadge/WithBadge.md";
import ColorSchemes from "../../../_samples/main/Avatar/ColorSchemes/ColorSchemes.md";
import Sizes from "../../../_samples/main/Avatar/Sizes/Sizes.md";
@@ -31,11 +32,16 @@ The Avatar comes in several sizes (S to XL).
-### Interactive
-The Avatar can be interactive, e.g. responds to hover, focus and press.
+### Interactive Mode
+The Avatar can be set to interactive mode with `mode="Interactive"`, making it focusable with role="button" and enabling keyboard interaction. This is the recommended way to make an avatar interactive.
+### Decorative Mode
+The Avatar can be set to decorative mode with `mode="Decorative"`, making it purely visual without semantic content (role="presentation", aria-hidden="true"). This is useful when the avatar is used for visual purposes only and shouldn't be announced by screen readers.
+
+
+
### Color Schemes
The Avatar can be displayed in multiple color schemes.
diff --git a/packages/website/docs/_samples/main/Avatar/Decorative/Decorative.md b/packages/website/docs/_samples/main/Avatar/Decorative/Decorative.md
new file mode 100644
index 000000000000..17798ecc59ab
--- /dev/null
+++ b/packages/website/docs/_samples/main/Avatar/Decorative/Decorative.md
@@ -0,0 +1,4 @@
+import html from '!!raw-loader!./sample.html';
+import js from '!!raw-loader!./main.js';
+
+
diff --git a/packages/website/docs/_samples/main/Avatar/Decorative/main.js b/packages/website/docs/_samples/main/Avatar/Decorative/main.js
new file mode 100644
index 000000000000..4dd3f498b33f
--- /dev/null
+++ b/packages/website/docs/_samples/main/Avatar/Decorative/main.js
@@ -0,0 +1,2 @@
+import "@ui5/webcomponents/dist/Label.js";
+import "@ui5/webcomponents/dist/Avatar.js";
diff --git a/packages/website/docs/_samples/main/Avatar/Decorative/sample.html b/packages/website/docs/_samples/main/Avatar/Decorative/sample.html
new file mode 100644
index 000000000000..8cf9bfdcacc1
--- /dev/null
+++ b/packages/website/docs/_samples/main/Avatar/Decorative/sample.html
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
Sample
+
+
+
+
+
+
+
+
+
+ Decorative avatar with initials - not in accessibility tree
+
+
+
+
+ Image mode avatar (default) - announced as "Avatar CD"
+
+
+
+
+ Interactive mode - focusable with role="button"
+
+
+
+
+
+
+
+
diff --git a/packages/website/docs/_samples/main/Avatar/Interactive/sample.html b/packages/website/docs/_samples/main/Avatar/Interactive/sample.html
index 2f347b188a0f..08505a234994 100644
--- a/packages/website/docs/_samples/main/Avatar/Interactive/sample.html
+++ b/packages/website/docs/_samples/main/Avatar/Interactive/sample.html
@@ -11,7 +11,7 @@
-
+