diff --git a/components/jambonz-ui.js b/components/jambonz-ui.js
index 7e873c7..038206d 100644
--- a/components/jambonz-ui.js
+++ b/components/jambonz-ui.js
@@ -100,9 +100,11 @@ export function Hero({ data, subStyle }) {
{data.headline}
- {normalizeSubtext(data.subtext).map((subtext) => {
- return
{subtext}
;
- })}
+
+ {normalizeSubtext(data.subtext).map((subtext) => {
+ return
{subtext}
;
+ })}
+
{data.cta && (
diff --git a/styles/_layout.scss b/styles/_layout.scss
index 4709c0a..4dd2cea 100644
--- a/styles/_layout.scss
+++ b/styles/_layout.scss
@@ -68,7 +68,7 @@
margin-bottom: 0;
max-width: 820px;
- > :nth-child(even) {
+ div + div {
margin-top: 32px;
@media (max-width: $width-mobile) {