diff --git a/src/components/HeroHeadline/HeroHeadline.mdx b/src/components/HeroHeadline/HeroHeadline.mdx
index 8aa99e63..a8f0a4cb 100644
--- a/src/components/HeroHeadline/HeroHeadline.mdx
+++ b/src/components/HeroHeadline/HeroHeadline.mdx
@@ -109,43 +109,46 @@ To customise styles, use CSS to target the class passed to `HeroHeadline`.
+```
-
-
+
+ // For small height
+ @media (max-height: 850px) {
+ --heroHeight: 100svh;
+ }
+
+ // Custom hero sizing for landscape mobile
+ @media (max-width: 960px) and (orientation: landscape) {
+ --heroHeight: 200svh;
+ }
+}
+
+// Override default fixed height for hero layout in embeds
+.hero-wrapper.embedded {
+ --heroHeight: 1000px;
+}
```
@@ -185,24 +188,27 @@ To add a video as the hero, use the [Video](?path=/docs/components-multimedia-vi
ariaDescription="Aerial footage of people houses in refugee camp"
/>
+```
-
-
+}
```
@@ -291,32 +297,33 @@ Since `Headline` internally uses the [Byline](?path=/docs/components-text-elemen
{/snippet}
-
-
-
-
```
-
+Add styles in `global.scss`:
+
+```scss
+// global.scss
+.custom-hed {
+ h1 {
+ .body-note {
+ color: #ffffff;
+ }
+ .title {
+ color: #ffffff;
+ text-shadow: 1px 1px 8px #ff7c88;
+ filter: drop-shadow(0px 0px 12px #ff7c88);
+ }
+ }
+
+ .dek {
+ margin-top: 1rem;
+ p {
+ color: #ffffff;
+ text-shadow: 1px 1px 8px #ff7c88;
+ filter: drop-shadow(0px 0px 12px #ff7c88);
+ }
+ }
+}
+```
+
+{' '}