diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 26f2638b7ec168371d48c1e8a0f85d4766598ba4..eadc645326bb3d385488c94290a7a90d3324f63c 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -51,6 +51,7 @@ Fixed
 * The data check results list view didn't work if a related object had been deleted in the meanwhile.
 * Socialaccount login template was not overriden
 * Atomic transactions now cause only one Haystack update task to run
+* Too long headlines didn't break in another line.
 
 Changed
 ~~~~~~~
diff --git a/aleksis/core/static/public/style.scss b/aleksis/core/static/public/style.scss
index cb59138727e2a9345fb4295261a4393414d0aade..e448c8aa54e55d4667c8dde9826c37e70fed6db0 100644
--- a/aleksis/core/static/public/style.scss
+++ b/aleksis/core/static/public/style.scss
@@ -297,6 +297,11 @@ h2 {
   font-size: 3.0rem;
 }
 
+p, h1, h2, h3, h4, h5, h6, .card-title {
+  overflow-wrap: break-word;
+  hyphens: auto;
+}
+
 /* Collections */
 
 ul.collection .collection-item .title {