diff --git a/docs/src/pages/components/Modal.svx b/docs/src/pages/components/Modal.svx
index 34c982b5..4e42ff88 100644
--- a/docs/src/pages/components/Modal.svx
+++ b/docs/src/pages/components/Modal.svx
@@ -2,60 +2,76 @@
import Preview from "../../components/Preview.svelte";
+The `Modal` component provides a focused dialog for user interactions, confirmations, or data entry. It supports various sizes, states, and customization options to create accessible and user-friendly modal experiences.
+
## Default (transactional)
+Create a basic modal dialog with primary and secondary actions. This variant is ideal for confirming user actions or gathering input.
+
## Custom focus
-By default, the modal close button will be focused when opened.
-
-Use the `selectorPrimaryFocus` to specify the element that should be focused when the modal is opened (e.g., `#id`, `.class`, `[data-attribute]`).
+Control which element receives focus when the modal opens. Use `selectorPrimaryFocus` to specify the target element using CSS selectors.
## Danger modal
+Display critical actions or destructive operations with the danger variant. This style emphasizes the severity of the action.
+
## Passive modal
+Create a non-interactive modal for displaying information. This variant lacks action buttons and focuses on content presentation.
+
## Has scrolling content
-Setting `hasScrollingContent` to `true` increases the vertical space within the modal.
+Enable vertical scrolling for modals with lengthy content. This ensures all content remains accessible while maintaining a reasonable modal height.
## Multiple modals
+Stack multiple modals for complex workflows. Each modal maintains its own state and focus management.
+
## Multiple secondary buttons
-Use the `secondaryButtons` prop to render two secondary buttons. The prop is a 2-tuple type that supersedes `secondaryButtonText`.
+Add up to two secondary actions using the `secondaryButtons` prop. This provides more flexibility than the single `secondaryButtonText` option.
## Extra-small size
+Use the extra-small size for compact notifications by setting `size` to `"xs"`. This is ideal for simple confirmations.
+
## Small size
+Use the small size for simple confirmations by setting `size` to `"sm"`. This provides a more focused dialog.
+
## Large size
+Use the large size for complex content by setting `size` to `"lg"`. This provides more space for detailed information.
+
## Prevent close on outside click
-`preventCloseOnClickOutside` prevents the modal from being closed when clicking outside of an open modal. This prop is intended to be used for transactional modals.
+Disable closing the modal when clicking outside by setting `preventCloseOnClickOutside` to `true`. This is useful for transactional modals where explicit user action is required.
## Button with icon
+Enhance modal buttons with icons for better visual context and clarity. This example shows how to add icons to modal actions.
+