diff --git a/.storybook/order.json b/.storybook/order.json
index 63759115..78e57f80 100644
--- a/.storybook/order.json
+++ b/.storybook/order.json
@@ -5,6 +5,8 @@
["Tone and Voice", "Accessible and Inclusive Language", "Grammar", "Vocabulary"],
"Design",
["Logo", "Colors", "Typography", "Illustrations", "Icons", "Images"],
+ "Development",
+ ["Engineering Rules", "Breakpoints"],
"Accessibility",
["Accessibility"],
"Design Tokens",
diff --git a/src/stories/Development/breakpoints.stories.mdx b/src/stories/Development/breakpoints.stories.mdx
new file mode 100644
index 00000000..1ccae185
--- /dev/null
+++ b/src/stories/Development/breakpoints.stories.mdx
@@ -0,0 +1,7 @@
+import { Meta } from '@storybook/addon-docs'
+
+
+
+# Breakpoints
+
+Currently we use only 1 breakpoint. We distinguish between phone (0 - 450px) and desktop (451px +). Maybe we want to introduce more breakpoints in the future.
diff --git a/src/stories/Development/engineering_rules.stories.mdx b/src/stories/Development/engineering_rules.stories.mdx
new file mode 100644
index 00000000..cb5a4022
--- /dev/null
+++ b/src/stories/Development/engineering_rules.stories.mdx
@@ -0,0 +1,24 @@
+import { Meta } from '@storybook/addon-docs'
+
+
+
+# Engineering rules (!!!WIP!!!)
+
+#### How do we write our custom components?
+
+- We use CSS Modules.
+- We do not use Sass/SCSS for the Design System
+ - because we don’t need it for variables and nesting anymore. PostCSS allows us to do nesting.
+ - because it will reduce bundle sizes.
+ - because we want to have so many dependencies.
+- We don't use a CSS Framework, we build our own
+
+### CSS class splitting
+
+CSS classes must always be written in one piece, as well in Slim as in JS.
+
+- bad: `label-${success ? 'success' : 'error'}`
+- good: `success ? 'label-success' : 'label-error'`
+- bad: [https://css-tricks.com/the-sass-ampersand/#article-header-id-10](https://css-tricks.com/the-sass-ampersand/#article-header-id-10)
+
+This helps to find all occurrences of classes while developing and, more importantly, [PurgeCSS](https://purgecss.com/) can detect used classes and purge the correct classes.