diff --git a/src/components/Molecules/CTA/CTASingleCard/CTASingleCard.md b/src/components/Molecules/CTA/CTASingleCard/CTASingleCard.md
deleted file mode 100644
index af3cd37a0..000000000
--- a/src/components/Molecules/CTA/CTASingleCard/CTASingleCard.md
+++ /dev/null
@@ -1,124 +0,0 @@
-# CTASingleCard
-## Single full-width card component
-
-This component displays a single card, full-width across the page. It looks and behaves like the single cards from CTAMultiCard, but is always displayed as a single full-width card with no grid layout or carousel functionality.
-
-The component expects pre-rendered content to be passed in the `body` field of the card. The frontend should handle rich text rendering before passing data to this component.
-
-### Props
-
-`CTASingleCard` takes a single required prop:
-
-- `data`: an object containing:
- - `card`: the processed card object (see below)
- - `backgroundColour`: background colour for the full-width section (e.g. `"grey_medium"`, `"Transparent"`)
- - `paddingAbove`: CSS value for top padding (e.g. `"1rem"`, `"32px"`)
- - `paddingBelow`: CSS value for bottom padding (e.g. `"2rem"`, `"32px"`)
-
-**Note:** The frontend is responsible for processing image data and link targets. The card object should include the following processed fields:
-- `fallback`: The fallback image src from `image.gatsbyImageData.images.fallback.src`
-- `imageLow`: The placeholder image from `image.gatsbyImageData.placeholder.fallback`
-- `images`: The srcSet from `image.gatsbyImageData.images.sources[0].srcSet`
-- `description`: The image description from `image.description`
-- `target`: The link target ('self' for internal links, 'blank' for external)
-- `external`: The rel attribute ('noopener' for external links, null for internal)
-
-### CTASingleCard: Basic Example
-
-```js
-import CTASingleCard from './CTASingleCard';
-import Text from '../../../Atoms/Text/Text';
-
-const exampleCard = {
- id: 'single-card-1',
- label: 'Example Label',
- body: (
-
- Single Card content here
-
- ),
- link: "/test",
- linkLabel: "Learn more",
- fallback: "https://images.ctfassets.net/zsfivwzfgl3t/4VsIykPLHDNkNCT9djGrX/c8f1e4cb5c6bda5a7b77f18501e9304d/challenge-1.jpg?w=678&h=501&fl=progressive&q=80&fm=jpg",
- imageLow: "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAPABQDASIAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAcIBAb/xAAjEAACAgIBBAIDAAAAAAAAAAABAgMEABEGBRIhMQdBE1Fh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgT/xAAaEQADAQADAAAAAAAAAAAAAAAAAQIDERIT/9oADAMBAAIRAxEAPwBzRcrjVY+0tonyT41nG8y+SLFTkgpQTVFpoqiRZGHc2/egf4RrMM12OHpNi3LsrAjO2vsKCcQtvkbTW570sMUt6xphJKnd+Ma9A78ZRWcS+SWNLpNMqAdQidVaSxErEA6ZgCNj9YZNPTOTpJW7+ovdlnLHyjgAD6GGPug+bP/Z",
- images: "https://images.ctfassets.net/zsfivwzfgl3t/4VsIykPLHDNkNCT9djGrX/c8f1e4cb5c6bda5a7b77f18501e9304d/challenge-1.jpg?w=678&h=501&q=80&fm=webp 678w",
- description: "Example image",
- target: "self",
- external: null
-};
-
-
-
-
;
-```
-
-### CTASingleCard: With Background Colour
-
-```js
-import CTASingleCard from './CTASingleCard';
-import Text from '../../../Atoms/Text/Text';
-
-const exampleCard = {
- id: 'single-card-2',
- label: 'Example Label',
- body: (
-
- Single card
-
- ),
- link: "/test",
- linkLabel: "Learn more",
- fallback: "https://images.ctfassets.net/zsfivwzfgl3t/4VsIykPLHDNkNCT9djGrX/c8f1e4cb5c6bda5a7b77f18501e9304d/challenge-1.jpg?w=678&h=501&fl=progressive&q=80&fm=jpg",
- imageLow: "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAPABQDASIAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAcIBAb/xAAjEAACAgIBBAIDAAAAAAAAAAABAgMEABEGBRIhMQdBE1Fh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgT/xAAaEQADAQADAAAAAAAAAAAAAAAAAQIDERIT/9oADAMBAAIRAxEAPwBzRcrjVY+0tonyT41nG8y+SLFTkgpQTVFpoqiRZGHc2/egf4RrMM12OHpNi3LsrAjO2vsKCcQtvkbTW570sMUt6xphJKnd+Ma9A78ZRWcS+SWNLpNMqAdQidVaSxErEA6ZgCNj9YZNPTOTpJW7+ovdlnLHyjgAD6GGPug+bP/Z",
- images: "https://images.ctfassets.net/zsfivwzfgl3t/4VsIykPLHDNkNCT9djGrX/c8f1e4cb5c6bda5a7b77f18501e9304d/challenge-1.jpg?w=678&h=501&q=80&fm=webp 678w",
- description: "Example image",
- target: "self",
- external: null
-};
-
-
-
-
;
-```
-
-### CTASingleCard: With Long Text
-
-**NB: This example contains a lot of lorem ipsum text to demonstrate that the card will grow in height to accommodate longer content. The image proportion remains constant (1/3 width on desktop), while the card height adjusts based on the text content.**
-
-```js
-import CTASingleCard from './CTASingleCard';
-import Text from '../../../Atoms/Text/Text';
-
-const exampleCardWithLongText = {
- id: 'single-card-long-text',
- label: 'Example Label',
- body: (
- <>
-
- Single card with background colour set on the full-width section
-
-
- Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
-
-
- Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.
-
-
- At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga.
-
- >
- ),
- link: "/test",
- linkLabel: "Learn more",
- fallback: "https://images.ctfassets.net/zsfivwzfgl3t/4VsIykPLHDNkNCT9djGrX/c8f1e4cb5c6bda5a7b77f18501e9304d/challenge-1.jpg?w=678&h=501&fl=progressive&q=80&fm=jpg",
- imageLow: "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAPABQDASIAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAcIBAb/xAAjEAACAgIBBAIDAAAAAAAAAAABAgMEABEGBRIhMQdBE1Fh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgT/xAAaEQADAQADAAAAAAAAAAAAAAAAAQIDERIT/9oADAMBAAIRAxEAPwBzRcrjVY+0tonyT41nG8y+SLFTkgpQTVFpoqiRZGHc2/egf4RrMM12OHpNi3LsrAjO2vsKCcQtvkbTW570sMUt6xphJKnd+Ma9A78ZRWcS+SWNLpNMqAdQidVaSxErEA6ZgCNj9YZNPTOTpJW7+ovdlnLHyjgAD6GGPug+bP/Z",
- images: "https://images.ctfassets.net/zsfivwzfgl3t/4VsIykPLHDNkNCT9djGrX/c8f1e4cb5c6bda5a7b77f18501e9304d/challenge-1.jpg?w=678&h=501&q=80&fm=webp 678w",
- description: "Example image",
- target: "self",
- external: null
-};
-
-
-
-
;
-```
diff --git a/src/components/Molecules/CTA/CTASingleCard/CTASingleCardExample.jsx b/src/components/Molecules/CTA/CTASingleCard/CTASingleCardExample.jsx
new file mode 100644
index 000000000..cf65137bb
--- /dev/null
+++ b/src/components/Molecules/CTA/CTASingleCard/CTASingleCardExample.jsx
@@ -0,0 +1,44 @@
+import React from 'react';
+import CTASingleCard from './CTASingleCard';
+import Text from '../../../Atoms/Text/Text';
+
+const fallback = 'https://images.ctfassets.net/zsfivwzfgl3t/4VsIykPLHDNkNCT9djGrX/c8f1e4cb5c6bda5a7b77f18501e9304d/challenge-1.jpg?w=678&h=501&fl=progressive&q=80&fm=jpg';
+const imageLow = 'data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAPABQDASIAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAcIBAb/xAAjEAACAgIBBAIDAAAAAAAAAAABAgMEABEGBRIhMQdBE1Fh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgT/xAAaEQADAQADAAAAAAAAAAAAAAAAAQIDERIT/9oADAMBAAIRAxEAPwBzRcrjVY+0tonyT41nG8y+SLFTkgpQTVFpoqiRZGHc2/egf4RrMM12OHpNi3LsrAjO2vsKCcQtvkbTW570sMUt6xphJKnd+Ma9A78ZRWcS+SWNLpNMqAdQidVaSxErEA6ZgCNj9YZNPTOTpJW7+ovdlnLHyjgAD6GGPug+bP/Z';
+const images = 'https://images.ctfassets.net/zsfivwzfgl3t/4VsIykPLHDNkNCT9djGrX/c8f1e4cb5c6bda5a7b77f18501e9304d/challenge-1.jpg?w=678&h=501&q=80&fm=webp 678w';
+
+const baseCard = {
+ link: '/test',
+ linkLabel: 'Learn more',
+ fallback,
+ imageLow,
+ images,
+ description: 'Example image',
+ target: 'self',
+ external: null,
+};
+
+export default function CTASingleCardExample() {
+ return (
+ <>
+
Basic
+
+ Single Card content here },
+ backgroundColour: 'Transparent',
+ paddingAbove: '1rem',
+ paddingBelow: '2rem',
+ }} />
+
+
+
With background colour
+
+ Single card },
+ backgroundColour: 'grey_medium',
+ paddingAbove: '1rem',
+ paddingBelow: '2rem',
+ }} />
+
+ >
+ );
+}
diff --git a/src/components/Molecules/CTA/CTASingleCard/__snapshots__/CTASingleCard.test.js.snap b/src/components/Molecules/CTA/CTASingleCard/__snapshots__/CTASingleCard.test.js.snap
index 3893c4836..afa8439f6 100644
--- a/src/components/Molecules/CTA/CTASingleCard/__snapshots__/CTASingleCard.test.js.snap
+++ b/src/components/Molecules/CTA/CTASingleCard/__snapshots__/CTASingleCard.test.js.snap
@@ -46,75 +46,12 @@ exports[`renders correctly with data prop 1`] = `
text-decoration: none;
}
-.c23 {
+.c20 {
display: inline-block;
color: #FFFFFF;
fill: currentColor;
}
-.c22 {
- display: -webkit-inline-box;
- display: -webkit-inline-flex;
- display: -ms-inline-flexbox;
- display: inline-flex;
- -webkit-align-items: center;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.65,-0.19,0.37,1.16);
- -webkit-transition: transform 0.3s cubic-bezier(0.65,-0.19,0.37,1.16);
- transition: transform 0.3s cubic-bezier(0.65,-0.19,0.37,1.16);
- -webkit-transform: scale(1);
- -ms-transform: scale(1);
- transform: scale(1);
- -webkit-transform-origin: center;
- -ms-transform-origin: center;
- transform-origin: center;
-}
-
-.c20 {
- width: 32px;
- height: 32px;
- border-radius: 50%;
- background: #E52630;
- display: -webkit-box;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- -webkit-align-items: center;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-flex-shrink: 0;
- -ms-flex-negative: 0;
- flex-shrink: 0;
- overflow: hidden;
-}
-
-.c18 {
- padding-left: 1rem;
- display: -webkit-box;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- -webkit-align-items: center;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: end;
- -webkit-justify-content: flex-end;
- -ms-flex-pack: end;
- justify-content: flex-end;
-}
-
.c6 {
width: 100%;
overflow: hidden;
@@ -162,6 +99,44 @@ exports[`renders correctly with data prop 1`] = `
pointer-events: none;
}
+.c19 {
+ width: 32px;
+ height: 32px;
+ border-radius: 50%;
+ background: #E52630;
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+}
+
+.c18 {
+ padding-left: 1rem;
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-align-items: center;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: end;
+ -webkit-justify-content: flex-end;
+ -ms-flex-pack: end;
+ justify-content: flex-end;
+}
+
.c4 {
display: -webkit-box;
display: -webkit-flex;
@@ -302,12 +277,6 @@ exports[`renders correctly with data prop 1`] = `
}
}
-@media (min-width:1024px) {
- .c20 {
- background: #222222;
- }
-}
-
@media (min-width:740px) {
.c6 {
width: calc(100% / 3);
@@ -366,6 +335,12 @@ exports[`renders correctly with data prop 1`] = `
}
}
+@media (min-width:1024px) {
+ .c19 {
+ background: #222222;
+ }
+}
+
@media (min-width:740px) {
.c4 {
-webkit-flex-direction: row;
@@ -423,12 +398,6 @@ exports[`renders correctly with data prop 1`] = `
.c4:hover .c16 {
opacity: 1;
}
-
- .c4:hover .c19 .c21 {
- -webkit-transform: scale(1.2);
- -ms-transform: scale(1.2);
- transform: scale(1.2);
- }
}
@media (min-width:740px) {
@@ -499,6 +468,7 @@ exports[`renders correctly with data prop 1`] = `
>