diff --git a/opentech/static_src/src/sass/components/_rich-text.scss b/opentech/static_src/src/sass/components/_rich-text.scss
index 0b8516bed58ffde776bed28c99d33bb07a1cebd5..b979962ba2e9cd0e6a1211748a220d340be9acc6 100644
--- a/opentech/static_src/src/sass/components/_rich-text.scss
+++ b/opentech/static_src/src/sass/components/_rich-text.scss
@@ -1,9 +1,30 @@
 .rich-text {
+    margin-bottom: 2rem;
+
+    a {
+        font-weight: $weight--bold;
+        border-bottom: 1px solid transparent;
+        transition: border, color, 0.15s ease-in-out;
+
+        &:hover {
+            border-bottom: 1px solid $color--primary;
+      }
+    }
+
     ul {
-        list-style: inside disc;
+        padding-left: 20px;
+        list-style: outside disc;
+
+        li {
+            margin-bottom: 1rem;
+        }
     }
 
     ol {
         list-style: inside decimal;
+
+        li {
+            margin-bottom: 1rem;
+        }
     }
 }