@comicrelief/component-library 8.49.0 → 8.50.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/dist/components/Atoms/Button/Button.style.js +1 -1
  2. package/dist/components/Atoms/Button/Button.test.js +1 -1
  3. package/dist/components/Atoms/Link/Link.style.js +1 -1
  4. package/dist/components/Atoms/Link/Link.test.js +1 -1
  5. package/dist/components/Molecules/ArticleTeaser/ArticleTeaser.js +0 -1
  6. package/dist/components/Molecules/ArticleTeaser/ArticleTeaser.test.js +0 -2
  7. package/dist/components/Molecules/CTA/CTAMultiCard/CTAMultiCard.js +59 -0
  8. package/{src/components/Molecules → dist/components/Molecules/CTA}/CTAMultiCard/CTAMultiCard.md +4 -4
  9. package/dist/components/Molecules/CTA/CTAMultiCard/CTAMultiCard.style.js +55 -0
  10. package/dist/components/Molecules/CTA/CTAMultiCard/CTAMultiCard.test.js +91 -0
  11. package/dist/components/Molecules/CTA/CTAMultiCard/__snapshots__/CTAMultiCard.test.js.snap +2931 -0
  12. package/dist/components/Molecules/CTA/CTAMultiCard/example_data.json +107 -0
  13. package/dist/components/Molecules/CTA/CTASingleCard/CTASingleCard.js +44 -0
  14. package/dist/components/Molecules/CTA/CTASingleCard/CTASingleCard.md +124 -0
  15. package/dist/components/Molecules/CTA/CTASingleCard/CTASingleCard.style.js +23 -0
  16. package/dist/components/Molecules/CTA/CTASingleCard/CTASingleCard.test.js +96 -0
  17. package/dist/components/Molecules/CTA/CTASingleCard/__snapshots__/CTASingleCard.test.js.snap +903 -0
  18. package/dist/components/Molecules/CTA/shared/CTACard.js +67 -0
  19. package/dist/components/Molecules/CTA/shared/CTACard.style.js +269 -0
  20. package/dist/components/Molecules/{CTAMultiCard → CTA/shared}/_ArrowIcon.js +1 -1
  21. package/dist/components/Molecules/CardDs/__snapshots__/CardDs.test.js.snap +2 -2
  22. package/dist/components/Molecules/Countdown/Countdown.js +4 -8
  23. package/dist/components/Molecules/Descriptor/Descriptor.js +1 -2
  24. package/dist/components/Molecules/Descriptor/Descriptor.test.js +0 -2
  25. package/dist/components/Molecules/InfoBanner/InfoBanner.js +6 -12
  26. package/dist/components/Molecules/InfoBanner/__snapshots__/InfoBanner.test.js.snap +0 -1
  27. package/dist/components/Molecules/{CTAMultiCard → OLD_CTAMultiCard}/CTAMultiCard.style.js +11 -11
  28. package/dist/components/Molecules/OLD_CTAMultiCard/_ArrowIcon.js +29 -0
  29. package/dist/components/Molecules/{CTAMultiCard → OLD_CTAMultiCard}/__snapshots__/CTAMultiCard.test.js.snap +8 -0
  30. package/dist/components/Molecules/Promo/__snapshots__/Promo.test.js.snap +2 -2
  31. package/dist/components/Molecules/SearchResult/SearchResult.js +2 -4
  32. package/dist/components/Molecules/SearchResult/__snapshots__/SearchResult.test.js.snap +0 -8
  33. package/dist/components/Molecules/SingleMessage/__snapshots__/SingleMessage.test.js.snap +2 -2
  34. package/dist/components/Molecules/SingleMessageDS/SingleMessageDs.style.js +1 -1
  35. package/dist/components/Molecules/SingleMessageDS/__snapshots__/SingleMessageDs.test.js.snap +1 -2
  36. package/dist/components/Organisms/CookieBanner/CookieBanner.test.js +1 -1
  37. package/dist/components/Organisms/Donate/Donate.js +1 -2
  38. package/dist/components/Organisms/Donate/__snapshots__/Donate.test.js.snap +0 -4
  39. package/dist/components/Organisms/EmailSignUp/_EmailSignUp.js +1 -2
  40. package/dist/components/Organisms/EmailSignUp/__snapshots__/EmailSignUp.test.js.snap +1 -2
  41. package/dist/components/Organisms/FooterNew/__snapshots__/FooterNew.test.js.snap +1 -1
  42. package/dist/components/Organisms/ImpactSlider/ImpactSlider.js +0 -1
  43. package/dist/components/Organisms/ImpactSlider/_ImpactMoneybuys.js +0 -1
  44. package/dist/components/Organisms/WYMDCarousel/WYMDCarousel.js +0 -2
  45. package/dist/components/Organisms/WYMDCarousel/__snapshots__/WYMDCarousel.test.js.snap +0 -1
  46. package/dist/index.js +8 -1
  47. package/package.json +1 -1
  48. package/src/components/Atoms/Button/Button.style.js +1 -1
  49. package/src/components/Atoms/Button/Button.test.js +1 -1
  50. package/src/components/Atoms/Link/Link.style.js +1 -1
  51. package/src/components/Atoms/Link/Link.test.js +1 -1
  52. package/src/components/Molecules/ArticleTeaser/ArticleTeaser.js +0 -1
  53. package/src/components/Molecules/ArticleTeaser/ArticleTeaser.test.js +0 -2
  54. package/src/components/Molecules/CTA/CTAMultiCard/CTAMultiCard.js +99 -0
  55. package/{dist/components/Molecules → src/components/Molecules/CTA}/CTAMultiCard/CTAMultiCard.md +4 -4
  56. package/src/components/Molecules/CTA/CTAMultiCard/CTAMultiCard.style.js +68 -0
  57. package/src/components/Molecules/CTA/CTAMultiCard/CTAMultiCard.test.js +107 -0
  58. package/src/components/Molecules/CTA/CTAMultiCard/__snapshots__/CTAMultiCard.test.js.snap +2931 -0
  59. package/src/components/Molecules/CTA/CTAMultiCard/example_data.json +107 -0
  60. package/src/components/Molecules/CTA/CTASingleCard/CTASingleCard.js +72 -0
  61. package/src/components/Molecules/CTA/CTASingleCard/CTASingleCard.md +124 -0
  62. package/src/components/Molecules/CTA/CTASingleCard/CTASingleCard.style.js +19 -0
  63. package/src/components/Molecules/CTA/CTASingleCard/CTASingleCard.test.js +96 -0
  64. package/src/components/Molecules/CTA/CTASingleCard/__snapshots__/CTASingleCard.test.js.snap +903 -0
  65. package/src/components/Molecules/CTA/shared/CTACard.js +115 -0
  66. package/src/components/Molecules/CTA/shared/CTACard.style.js +356 -0
  67. package/src/components/Molecules/CardDs/__snapshots__/CardDs.test.js.snap +2 -2
  68. package/src/components/Molecules/Countdown/Countdown.js +4 -4
  69. package/src/components/Molecules/Descriptor/Descriptor.js +0 -2
  70. package/src/components/Molecules/Descriptor/Descriptor.test.js +0 -2
  71. package/src/components/Molecules/InfoBanner/InfoBanner.js +6 -6
  72. package/src/components/Molecules/InfoBanner/__snapshots__/InfoBanner.test.js.snap +0 -1
  73. package/src/components/Molecules/{CTAMultiCard → OLD_CTAMultiCard}/CTAMultiCard.style.js +2 -0
  74. package/src/components/Molecules/OLD_CTAMultiCard/_ArrowIcon.js +22 -0
  75. package/src/components/Molecules/{CTAMultiCard → OLD_CTAMultiCard}/__snapshots__/CTAMultiCard.test.js.snap +8 -0
  76. package/src/components/Molecules/Promo/__snapshots__/Promo.test.js.snap +2 -2
  77. package/src/components/Molecules/SearchResult/SearchResult.js +2 -2
  78. package/src/components/Molecules/SearchResult/__snapshots__/SearchResult.test.js.snap +0 -8
  79. package/src/components/Molecules/SingleMessage/__snapshots__/SingleMessage.test.js.snap +2 -2
  80. package/src/components/Molecules/SingleMessageDS/SingleMessageDs.style.js +0 -1
  81. package/src/components/Molecules/SingleMessageDS/__snapshots__/SingleMessageDs.test.js.snap +1 -2
  82. package/src/components/Organisms/CookieBanner/CookieBanner.test.js +1 -1
  83. package/src/components/Organisms/Donate/Donate.js +1 -1
  84. package/src/components/Organisms/Donate/__snapshots__/Donate.test.js.snap +0 -4
  85. package/src/components/Organisms/EmailSignUp/_EmailSignUp.js +1 -1
  86. package/src/components/Organisms/EmailSignUp/__snapshots__/EmailSignUp.test.js.snap +1 -2
  87. package/src/components/Organisms/FooterNew/__snapshots__/FooterNew.test.js.snap +1 -1
  88. package/src/components/Organisms/ImpactSlider/ImpactSlider.js +1 -1
  89. package/src/components/Organisms/ImpactSlider/_ImpactMoneybuys.js +1 -1
  90. package/src/components/Organisms/WYMDCarousel/WYMDCarousel.js +2 -2
  91. package/src/components/Organisms/WYMDCarousel/__snapshots__/WYMDCarousel.test.js.snap +0 -1
  92. package/src/index.js +2 -1
  93. /package/dist/components/Molecules/{CTAMultiCard → OLD_CTAMultiCard}/CTAMultiCard.js +0 -0
  94. /package/dist/components/Molecules/{CTAMultiCard → OLD_CTAMultiCard}/CTAMultiCard.test.js +0 -0
  95. /package/dist/components/Molecules/{CTAMultiCard → OLD_CTAMultiCard}/SingleCard.js +0 -0
  96. /package/dist/components/Molecules/{CTAMultiCard → OLD_CTAMultiCard}/example_data.json +0 -0
  97. /package/src/components/Molecules/{CTAMultiCard → CTA/shared}/_ArrowIcon.js +0 -0
  98. /package/src/components/Molecules/{CTAMultiCard → OLD_CTAMultiCard}/CTAMultiCard.js +0 -0
  99. /package/src/components/Molecules/{CTAMultiCard → OLD_CTAMultiCard}/CTAMultiCard.test.js +0 -0
  100. /package/src/components/Molecules/{CTAMultiCard → OLD_CTAMultiCard}/SingleCard.js +0 -0
  101. /package/src/components/Molecules/{CTAMultiCard → OLD_CTAMultiCard}/example_data.json +0 -0
@@ -0,0 +1,2931 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`handles data structure correctly 1`] = `
4
+ .c9 {
5
+ font-family: 'Montserrat',Helvetica,Arial,sans-serif;
6
+ font-weight: 400;
7
+ text-transform: inherit;
8
+ -webkit-letter-spacing: 0;
9
+ -moz-letter-spacing: 0;
10
+ -ms-letter-spacing: 0;
11
+ letter-spacing: 0;
12
+ font-size: 1rem;
13
+ line-height: 1.25rem;
14
+ }
15
+
16
+ .c9 span {
17
+ font-size: inherit;
18
+ line-height: inherit;
19
+ }
20
+
21
+ .c5 {
22
+ display: block;
23
+ width: 100%;
24
+ height: 100%;
25
+ position: relative;
26
+ }
27
+
28
+ .c6 {
29
+ width: 100%;
30
+ height: 100%;
31
+ display: block;
32
+ object-fit: cover;
33
+ }
34
+
35
+ .c17 {
36
+ display: inline-block;
37
+ color: #FFFFFF;
38
+ fill: currentColor;
39
+ }
40
+
41
+ .c4 {
42
+ width: 100%;
43
+ overflow: hidden;
44
+ -webkit-flex-shrink: 0;
45
+ -ms-flex-negative: 0;
46
+ flex-shrink: 0;
47
+ background: transparent;
48
+ border-radius: 1rem 1rem 0 0;
49
+ }
50
+
51
+ .c4 img {
52
+ width: 100%;
53
+ height: auto;
54
+ object-fit: cover;
55
+ display: block;
56
+ }
57
+
58
+ .c12 {
59
+ font-family: 'Montserrat',Helvetica,Arial,sans-serif;
60
+ font-weight: 400;
61
+ text-transform: inherit;
62
+ -webkit-letter-spacing: 0;
63
+ -moz-letter-spacing: 0;
64
+ -ms-letter-spacing: 0;
65
+ letter-spacing: 0;
66
+ font-size: 1rem;
67
+ line-height: 1.25rem;
68
+ color: #969598;
69
+ font-weight: bold;
70
+ -webkit-text-decoration: none;
71
+ text-decoration: none;
72
+ position: relative;
73
+ display: inline-block;
74
+ }
75
+
76
+ .c14 {
77
+ height: 4px;
78
+ width: 100%;
79
+ position: absolute;
80
+ left: 0;
81
+ bottom: -5px;
82
+ -webkit-transition: opacity 0.15s 0.1s;
83
+ transition: opacity 0.15s 0.1s;
84
+ opacity: 0;
85
+ pointer-events: none;
86
+ }
87
+
88
+ .c16 {
89
+ width: 32px;
90
+ height: 32px;
91
+ border-radius: 50%;
92
+ background: #969598;
93
+ display: -webkit-box;
94
+ display: -webkit-flex;
95
+ display: -ms-flexbox;
96
+ display: flex;
97
+ -webkit-align-items: center;
98
+ -webkit-box-align: center;
99
+ -ms-flex-align: center;
100
+ align-items: center;
101
+ -webkit-box-pack: center;
102
+ -webkit-justify-content: center;
103
+ -ms-flex-pack: center;
104
+ justify-content: center;
105
+ -webkit-flex-shrink: 0;
106
+ -ms-flex-negative: 0;
107
+ flex-shrink: 0;
108
+ }
109
+
110
+ .c2 {
111
+ display: -webkit-box;
112
+ display: -webkit-flex;
113
+ display: -ms-flexbox;
114
+ display: flex;
115
+ position: relative;
116
+ -webkit-flex-direction: column;
117
+ -ms-flex-direction: column;
118
+ flex-direction: column;
119
+ width: 100%;
120
+ -webkit-flex: 1 1 auto;
121
+ -ms-flex: 1 1 auto;
122
+ flex: 1 1 auto;
123
+ background: transparent;
124
+ border-radius: 1rem;
125
+ box-shadow: 0 0 1rem rgba(0,0,0,0.15);
126
+ -webkit-text-decoration: none;
127
+ text-decoration: none;
128
+ overflow: hidden;
129
+ cursor: pointer;
130
+ box-sizing: border-box;
131
+ }
132
+
133
+ .c2 img {
134
+ -webkit-transform: scale(1.02);
135
+ -ms-transform: scale(1.02);
136
+ transform: scale(1.02);
137
+ -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.68,-1.15,0.265,2.35);
138
+ -webkit-transition: transform 0.4s cubic-bezier(0.68,-1.15,0.265,2.35);
139
+ transition: transform 0.4s cubic-bezier(0.68,-1.15,0.265,2.35);
140
+ }
141
+
142
+ .c1 {
143
+ width: 100%;
144
+ -webkit-flex-shrink: 0;
145
+ -ms-flex-negative: 0;
146
+ flex-shrink: 0;
147
+ display: -webkit-box;
148
+ display: -webkit-flex;
149
+ display: -ms-flexbox;
150
+ display: flex;
151
+ -webkit-flex-direction: column;
152
+ -ms-flex-direction: column;
153
+ flex-direction: column;
154
+ -webkit-align-self: stretch;
155
+ -ms-flex-item-align: stretch;
156
+ align-self: stretch;
157
+ }
158
+
159
+ .c7 {
160
+ width: 100%;
161
+ background: #FFFFFF;
162
+ display: -webkit-box;
163
+ display: -webkit-flex;
164
+ display: -ms-flexbox;
165
+ display: flex;
166
+ -webkit-flex-direction: column;
167
+ -ms-flex-direction: column;
168
+ flex-direction: column;
169
+ padding: 2rem;
170
+ -webkit-flex: 1;
171
+ -ms-flex: 1;
172
+ flex: 1;
173
+ min-height: 0;
174
+ border-radius: 0 0 1rem 1rem;
175
+ }
176
+
177
+ .c18 {
178
+ width: 100%;
179
+ background: #BECCF9;
180
+ display: -webkit-box;
181
+ display: -webkit-flex;
182
+ display: -ms-flexbox;
183
+ display: flex;
184
+ -webkit-flex-direction: column;
185
+ -ms-flex-direction: column;
186
+ flex-direction: column;
187
+ padding: 2rem;
188
+ -webkit-flex: 1;
189
+ -ms-flex: 1;
190
+ flex: 1;
191
+ min-height: 0;
192
+ border-radius: 0 0 1rem 1rem;
193
+ }
194
+
195
+ .c8 {
196
+ -webkit-flex: 1;
197
+ -ms-flex: 1;
198
+ flex: 1;
199
+ display: -webkit-box;
200
+ display: -webkit-flex;
201
+ display: -ms-flexbox;
202
+ display: flex;
203
+ -webkit-flex-direction: column;
204
+ -ms-flex-direction: column;
205
+ flex-direction: column;
206
+ min-height: 0;
207
+ }
208
+
209
+ .c10 {
210
+ width: 100%;
211
+ display: -webkit-box;
212
+ display: -webkit-flex;
213
+ display: -ms-flexbox;
214
+ display: flex;
215
+ -webkit-flex-direction: row;
216
+ -ms-flex-direction: row;
217
+ flex-direction: row;
218
+ -webkit-align-items: center;
219
+ -webkit-box-align: center;
220
+ -ms-flex-align: center;
221
+ align-items: center;
222
+ -webkit-box-pack: justify;
223
+ -webkit-justify-content: space-between;
224
+ -ms-flex-pack: justify;
225
+ justify-content: space-between;
226
+ margin-top: auto;
227
+ padding-top: 1rem;
228
+ }
229
+
230
+ .c0 {
231
+ display: -webkit-box;
232
+ display: -webkit-flex;
233
+ display: -ms-flexbox;
234
+ display: flex;
235
+ -webkit-flex-direction: column;
236
+ -ms-flex-direction: column;
237
+ flex-direction: column;
238
+ width: 100%;
239
+ background: #FFFFFF;
240
+ gap: 1rem;
241
+ }
242
+
243
+ @media (min-width:740px) {
244
+ .c9 {
245
+ font-size: 1rem;
246
+ line-height: 1.25rem;
247
+ }
248
+ }
249
+
250
+ @media (min-width:1024px) {
251
+ .c9 {
252
+ font-size: 1.125rem;
253
+ line-height: 1.375rem;
254
+ }
255
+ }
256
+
257
+ @media (min-width:740px) {
258
+ .c4 img {
259
+ -webkit-transition: -webkit-transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
260
+ -webkit-transition: transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
261
+ transition: transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
262
+ -webkit-transform-origin: center;
263
+ -ms-transform-origin: center;
264
+ transform-origin: center;
265
+ }
266
+
267
+ .c4 img:hover,
268
+ .c4 img:focus {
269
+ -webkit-transform: scale(1.08);
270
+ -ms-transform: scale(1.08);
271
+ transform: scale(1.08);
272
+ }
273
+ }
274
+
275
+ @media (min-width:740px) {
276
+ .c12 {
277
+ font-size: 1rem;
278
+ line-height: 1.25rem;
279
+ }
280
+ }
281
+
282
+ @media (min-width:1024px) {
283
+ .c12 {
284
+ font-size: 1.125rem;
285
+ line-height: 1.375rem;
286
+ }
287
+ }
288
+
289
+ @media (min-width:740px) {
290
+ .c2 {
291
+ -webkit-transition: -webkit-transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
292
+ -webkit-transition: transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
293
+ transition: transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
294
+ -webkit-transform-origin: center;
295
+ -ms-transform-origin: center;
296
+ transform-origin: center;
297
+ }
298
+
299
+ .c2:hover,
300
+ .c2:focus {
301
+ -webkit-transform: translateY(-0.02px);
302
+ -ms-transform: translateY(-0.02px);
303
+ transform: translateY(-0.02px);
304
+ }
305
+
306
+ .c2:hover {
307
+ box-shadow: 0 0 1.5rem rgba(0,0,0,0.25);
308
+ }
309
+
310
+ .c2:hover .c3 img {
311
+ -webkit-transform: scale(1.1);
312
+ -ms-transform: scale(1.1);
313
+ transform: scale(1.1);
314
+ }
315
+
316
+ .c2:hover .c11 {
317
+ color: #E52630;
318
+ -webkit-text-decoration: none;
319
+ text-decoration: none;
320
+ }
321
+
322
+ .c2:hover .c13 {
323
+ opacity: 1;
324
+ }
325
+
326
+ .c2:hover .c15 {
327
+ background: #E52630;
328
+ }
329
+ }
330
+
331
+ @media (max-width:739px) {
332
+ .c1 {
333
+ max-width: 309px;
334
+ margin-left: auto;
335
+ margin-right: auto;
336
+ }
337
+ }
338
+
339
+ @media (min-width:740px) and (max-width:1023px) {
340
+ .c1 {
341
+ -webkit-align-self: stretch;
342
+ -ms-flex-item-align: stretch;
343
+ align-self: stretch;
344
+ -webkit-flex: 0 0 100%;
345
+ -ms-flex: 0 0 100%;
346
+ flex: 0 0 100%;
347
+ max-width: 309px;
348
+ margin-left: auto;
349
+ margin-right: auto;
350
+ }
351
+ }
352
+
353
+ @media (min-width:1024px) and (max-width:1439px) {
354
+ .c1 {
355
+ -webkit-flex-basis: calc(33.333% - 1rem);
356
+ -ms-flex-preferred-size: calc(33.333% - 1rem);
357
+ flex-basis: calc(33.333% - 1rem);
358
+ min-width: 286px;
359
+ max-width: 371px;
360
+ -webkit-align-self: stretch;
361
+ -ms-flex-item-align: stretch;
362
+ align-self: stretch;
363
+ }
364
+ }
365
+
366
+ @media (min-width:1440px) {
367
+ .c1 {
368
+ -webkit-flex-basis: unset;
369
+ -ms-flex-preferred-size: unset;
370
+ flex-basis: unset;
371
+ width: 371px;
372
+ -webkit-align-self: stretch;
373
+ -ms-flex-item-align: stretch;
374
+ align-self: stretch;
375
+ }
376
+ }
377
+
378
+ @media (max-width:739px) {
379
+ .c0 {
380
+ -webkit-flex-direction: column;
381
+ -ms-flex-direction: column;
382
+ flex-direction: column;
383
+ background: transparent;
384
+ }
385
+ }
386
+
387
+ @media (min-width:740px) {
388
+ .c0 {
389
+ -webkit-flex-direction: row;
390
+ -ms-flex-direction: row;
391
+ flex-direction: row;
392
+ -webkit-flex-wrap: wrap;
393
+ -ms-flex-wrap: wrap;
394
+ flex-wrap: wrap;
395
+ -webkit-box-pack: center;
396
+ -webkit-justify-content: center;
397
+ -ms-flex-pack: center;
398
+ justify-content: center;
399
+ -webkit-align-items: stretch;
400
+ -webkit-box-align: stretch;
401
+ -ms-flex-align: stretch;
402
+ align-items: stretch;
403
+ width: -webkit-fit-content;
404
+ width: -moz-fit-content;
405
+ width: fit-content;
406
+ max-width: 100%;
407
+ margin: 0 auto;
408
+ }
409
+ }
410
+
411
+ @media (min-width:1440px) {
412
+ .c0 {
413
+ display: grid;
414
+ -webkit-box-pack: center;
415
+ -webkit-justify-content: center;
416
+ -ms-flex-pack: center;
417
+ justify-content: center;
418
+ -webkit-align-items: stretch;
419
+ -webkit-box-align: stretch;
420
+ -ms-flex-align: stretch;
421
+ align-items: stretch;
422
+ grid-template-columns: repeat(3,minmax(0,371px));
423
+ width: 100%;
424
+ margin: 0 auto;
425
+ max-width: 100%;
426
+ }
427
+ }
428
+
429
+ <div
430
+ className="c0"
431
+ >
432
+ <div
433
+ className="c1"
434
+ >
435
+ <a
436
+ className="c2"
437
+ href="/test"
438
+ rel={null}
439
+ target="self"
440
+ >
441
+ <div
442
+ className="c3 c4"
443
+ >
444
+ <div
445
+ className="c5 lazyload"
446
+ height="100%"
447
+ width="100%"
448
+ >
449
+ <img
450
+ alt=""
451
+ className="c6 lazyload"
452
+ data-lowsrc="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAPABQDASIAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAcIBAb/xAAjEAACAgIBBAIDAAAAAAAAAAABAgMEABEGBRIhMQdBE1Fh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgT/xAAaEQADAQADAAAAAAAAAAAAAAAAAQIDERIT/9oADAMBAAIRAxEAPwBzRcrjVY+0tonyT41nG8y+SLFTkgpQTVFpoqiRZGHc2/egf4RrMM12OHpNi3LsrAjO2vsKCcQtvkbTW570sMUt6xphJKnd+Ma9A78ZRWcS+SWNLpNMqAdQidVaSxErEA6ZgCNj9YZNPTOTpJW7+ovdlnLHyjgAD6GGPug+bP/Z"
453
+ data-sizes="auto"
454
+ data-src="@component-library/src/styleguide/assets/challenge-1.jpg"
455
+ data-srcset="@component-library/src/styleguide/assets/challenge-1.jpg 678w"
456
+ height="100%"
457
+ src="@component-library/src/styleguide/assets/challenge-1.jpg"
458
+ srcSet="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
459
+ width="100%"
460
+ />
461
+ </div>
462
+ </div>
463
+ <div
464
+ className="c7"
465
+ >
466
+ <div
467
+ className="c8"
468
+ >
469
+ <p
470
+ className="c9"
471
+ >
472
+ <strong>
473
+ Load
474
+ </strong>
475
+ of text here
476
+ </p>
477
+ </div>
478
+ <div
479
+ className="c10"
480
+ >
481
+ <span
482
+ className="c11 c12"
483
+ >
484
+ test go
485
+ <img
486
+ alt=""
487
+ aria-hidden="true"
488
+ className="c13 c14"
489
+ src="mock.asset"
490
+ />
491
+ </span>
492
+ <div
493
+ className="c15 c16"
494
+ >
495
+ <svg
496
+ className="c17"
497
+ fill="none"
498
+ height="13"
499
+ viewBox="0 0 15 13"
500
+ width="15"
501
+ xmlns="http://www.w3.org/2000/svg"
502
+ >
503
+ <path
504
+ d="M9.58496 0.349976C9.1395 -0.116662 8.40641 -0.116634 7.96094 0.349976C7.52803 0.803486 7.5281 1.53021 7.96094 1.98376L11.1582 5.33337H1.13672C0.48748 5.33337 0 5.87822 0 6.50037C2.15408e-05 7.1225 0.487494 7.66736 1.13672 7.66736H11.1582L7.96094 11.017C7.52806 11.4705 7.52899 12.1972 7.96191 12.6508C8.18163 12.8803 8.47556 13.0004 8.77344 13.0004C9.07114 13.0002 9.36533 12.8808 9.58496 12.6508L14.6758 7.31677L14.6748 7.3158L14.6875 7.3031L14.6865 7.30212C14.6954 7.29215 14.7044 7.28482 14.71 7.27771C14.7117 7.27545 14.7133 7.27285 14.7148 7.27087C14.7485 7.23203 14.7824 7.18925 14.8135 7.14099L14.8154 7.13806C14.8354 7.10658 14.8493 7.07842 14.8564 7.06384L14.8652 7.04626L14.8662 7.04431L14.8672 7.04333C14.8672 7.04333 14.868 7.04057 14.8691 7.03845C14.8709 7.03512 14.8758 7.02671 14.8799 7.01892L14.8802 7.01839C14.8888 7.002 14.9034 6.97423 14.917 6.93982V6.93787C14.9303 6.90375 14.9391 6.87285 14.9443 6.85388C14.9469 6.84458 14.9498 6.83567 14.9512 6.83044C14.9527 6.82454 14.9535 6.8228 14.9541 6.82068C14.9541 6.82068 14.9542 6.81753 14.9551 6.81482L14.958 6.80603L14.9586 6.80422C14.9631 6.78961 14.9718 6.76119 14.9785 6.72693V6.72498C15.0066 6.57705 15.0066 6.4246 14.9785 6.27673V6.27478L14.958 6.19568L14.9551 6.18591L14.9531 6.18005L14.9512 6.17224C14.9497 6.1664 14.9481 6.15677 14.9453 6.14685C14.9398 6.12695 14.9307 6.09654 14.917 6.06189C14.9032 6.02688 14.8885 5.99813 14.8799 5.98181C14.8758 5.97402 14.8709 5.96562 14.8691 5.96228L14.8564 5.93689C14.849 5.92177 14.8351 5.89372 14.8154 5.86267L14.8145 5.86072L14.7529 5.7738C14.7316 5.74659 14.7094 5.72129 14.6875 5.69763C14.6837 5.69341 14.6802 5.68854 14.6758 5.68396L9.58496 0.349976Z"
505
+ fill="currentColor"
506
+ />
507
+ </svg>
508
+ </div>
509
+ </div>
510
+ </div>
511
+ </a>
512
+ </div>
513
+ <div
514
+ className="c1"
515
+ >
516
+ <a
517
+ className="c2"
518
+ href="/test"
519
+ rel={null}
520
+ target="self"
521
+ >
522
+ <div
523
+ className="c3 c4"
524
+ >
525
+ <div
526
+ className="c5 lazyload"
527
+ height="100%"
528
+ width="100%"
529
+ >
530
+ <img
531
+ alt=""
532
+ className="c6 lazyload"
533
+ data-lowsrc="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAPABQDASIAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAcIBAb/xAAjEAACAgIBBAIDAAAAAAAAAAABAgMEABEGBRIhMQdBE1Fh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgT/xAAaEQADAQADAAAAAAAAAAAAAAAAAQIDERIT/9oADAMBAAIRAxEAPwBzRcrjVY+0tonyT41nG8y+SLFTkgpQTVFpoqiRZGHc2/egf4RrMM12OHpNi3LsrAjO2vsKCcQtvkbTW570sMUt6xphJKnd+Ma9A78ZRWcS+SWNLpNMqAdQidVaSxErEA6ZgCNj9YZNPTOTpJW7+ovdlnLHyjgAD6GGPug+bP/Z"
534
+ data-sizes="auto"
535
+ data-src="@component-library/src/styleguide/assets/challenge-1.jpg"
536
+ data-srcset="@component-library/src/styleguide/assets/challenge-1.jpg 678w"
537
+ height="100%"
538
+ src="@component-library/src/styleguide/assets/challenge-1.jpg"
539
+ srcSet="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
540
+ width="100%"
541
+ />
542
+ </div>
543
+ </div>
544
+ <div
545
+ className="c7"
546
+ >
547
+ <div
548
+ className="c8"
549
+ >
550
+ <p
551
+ className="c9"
552
+ >
553
+ <strong>
554
+ Load
555
+ </strong>
556
+ of text here
557
+ </p>
558
+ </div>
559
+ <div
560
+ className="c10"
561
+ >
562
+ <span
563
+ className="c11 c12"
564
+ >
565
+ test go
566
+ <img
567
+ alt=""
568
+ aria-hidden="true"
569
+ className="c13 c14"
570
+ src="mock.asset"
571
+ />
572
+ </span>
573
+ <div
574
+ className="c15 c16"
575
+ >
576
+ <svg
577
+ className="c17"
578
+ fill="none"
579
+ height="13"
580
+ viewBox="0 0 15 13"
581
+ width="15"
582
+ xmlns="http://www.w3.org/2000/svg"
583
+ >
584
+ <path
585
+ d="M9.58496 0.349976C9.1395 -0.116662 8.40641 -0.116634 7.96094 0.349976C7.52803 0.803486 7.5281 1.53021 7.96094 1.98376L11.1582 5.33337H1.13672C0.48748 5.33337 0 5.87822 0 6.50037C2.15408e-05 7.1225 0.487494 7.66736 1.13672 7.66736H11.1582L7.96094 11.017C7.52806 11.4705 7.52899 12.1972 7.96191 12.6508C8.18163 12.8803 8.47556 13.0004 8.77344 13.0004C9.07114 13.0002 9.36533 12.8808 9.58496 12.6508L14.6758 7.31677L14.6748 7.3158L14.6875 7.3031L14.6865 7.30212C14.6954 7.29215 14.7044 7.28482 14.71 7.27771C14.7117 7.27545 14.7133 7.27285 14.7148 7.27087C14.7485 7.23203 14.7824 7.18925 14.8135 7.14099L14.8154 7.13806C14.8354 7.10658 14.8493 7.07842 14.8564 7.06384L14.8652 7.04626L14.8662 7.04431L14.8672 7.04333C14.8672 7.04333 14.868 7.04057 14.8691 7.03845C14.8709 7.03512 14.8758 7.02671 14.8799 7.01892L14.8802 7.01839C14.8888 7.002 14.9034 6.97423 14.917 6.93982V6.93787C14.9303 6.90375 14.9391 6.87285 14.9443 6.85388C14.9469 6.84458 14.9498 6.83567 14.9512 6.83044C14.9527 6.82454 14.9535 6.8228 14.9541 6.82068C14.9541 6.82068 14.9542 6.81753 14.9551 6.81482L14.958 6.80603L14.9586 6.80422C14.9631 6.78961 14.9718 6.76119 14.9785 6.72693V6.72498C15.0066 6.57705 15.0066 6.4246 14.9785 6.27673V6.27478L14.958 6.19568L14.9551 6.18591L14.9531 6.18005L14.9512 6.17224C14.9497 6.1664 14.9481 6.15677 14.9453 6.14685C14.9398 6.12695 14.9307 6.09654 14.917 6.06189C14.9032 6.02688 14.8885 5.99813 14.8799 5.98181C14.8758 5.97402 14.8709 5.96562 14.8691 5.96228L14.8564 5.93689C14.849 5.92177 14.8351 5.89372 14.8154 5.86267L14.8145 5.86072L14.7529 5.7738C14.7316 5.74659 14.7094 5.72129 14.6875 5.69763C14.6837 5.69341 14.6802 5.68854 14.6758 5.68396L9.58496 0.349976Z"
586
+ fill="currentColor"
587
+ />
588
+ </svg>
589
+ </div>
590
+ </div>
591
+ </div>
592
+ </a>
593
+ </div>
594
+ <div
595
+ className="c1"
596
+ >
597
+ <a
598
+ className="c2"
599
+ href="/test"
600
+ rel={null}
601
+ target="self"
602
+ >
603
+ <div
604
+ className="c3 c4"
605
+ >
606
+ <div
607
+ className="c5 lazyload"
608
+ height="100%"
609
+ width="100%"
610
+ >
611
+ <img
612
+ alt=""
613
+ className="c6 lazyload"
614
+ data-lowsrc="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAPABQDASIAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAcIBAb/xAAjEAACAgIBBAIDAAAAAAAAAAABAgMEABEGBRIhMQdBE1Fh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgT/xAAaEQADAQADAAAAAAAAAAAAAAAAAQIDERIT/9oADAMBAAIRAxEAPwBzRcrjVY+0tonyT41nG8y+SLFTkgpQTVFpoqiRZGHc2/egf4RrMM12OHpNi3LsrAjO2vsKCcQtvkbTW570sMUt6xphJKnd+Ma9A78ZRWcS+SWNLpNMqAdQidVaSxErEA6ZgCNj9YZNPTOTpJW7+ovdlnLHyjgAD6GGPug+bP/Z"
615
+ data-sizes="auto"
616
+ data-src="@component-library/src/styleguide/assets/challenge-1.jpg"
617
+ data-srcset="@component-library/src/styleguide/assets/challenge-1.jpg 678w"
618
+ height="100%"
619
+ src="@component-library/src/styleguide/assets/challenge-1.jpg"
620
+ srcSet="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
621
+ width="100%"
622
+ />
623
+ </div>
624
+ </div>
625
+ <div
626
+ className="c7"
627
+ >
628
+ <div
629
+ className="c8"
630
+ >
631
+ <p
632
+ className="c9"
633
+ >
634
+ <strong>
635
+ Load
636
+ </strong>
637
+ of text here
638
+ </p>
639
+ </div>
640
+ <div
641
+ className="c10"
642
+ >
643
+ <span
644
+ className="c11 c12"
645
+ >
646
+ test go
647
+ <img
648
+ alt=""
649
+ aria-hidden="true"
650
+ className="c13 c14"
651
+ src="mock.asset"
652
+ />
653
+ </span>
654
+ <div
655
+ className="c15 c16"
656
+ >
657
+ <svg
658
+ className="c17"
659
+ fill="none"
660
+ height="13"
661
+ viewBox="0 0 15 13"
662
+ width="15"
663
+ xmlns="http://www.w3.org/2000/svg"
664
+ >
665
+ <path
666
+ d="M9.58496 0.349976C9.1395 -0.116662 8.40641 -0.116634 7.96094 0.349976C7.52803 0.803486 7.5281 1.53021 7.96094 1.98376L11.1582 5.33337H1.13672C0.48748 5.33337 0 5.87822 0 6.50037C2.15408e-05 7.1225 0.487494 7.66736 1.13672 7.66736H11.1582L7.96094 11.017C7.52806 11.4705 7.52899 12.1972 7.96191 12.6508C8.18163 12.8803 8.47556 13.0004 8.77344 13.0004C9.07114 13.0002 9.36533 12.8808 9.58496 12.6508L14.6758 7.31677L14.6748 7.3158L14.6875 7.3031L14.6865 7.30212C14.6954 7.29215 14.7044 7.28482 14.71 7.27771C14.7117 7.27545 14.7133 7.27285 14.7148 7.27087C14.7485 7.23203 14.7824 7.18925 14.8135 7.14099L14.8154 7.13806C14.8354 7.10658 14.8493 7.07842 14.8564 7.06384L14.8652 7.04626L14.8662 7.04431L14.8672 7.04333C14.8672 7.04333 14.868 7.04057 14.8691 7.03845C14.8709 7.03512 14.8758 7.02671 14.8799 7.01892L14.8802 7.01839C14.8888 7.002 14.9034 6.97423 14.917 6.93982V6.93787C14.9303 6.90375 14.9391 6.87285 14.9443 6.85388C14.9469 6.84458 14.9498 6.83567 14.9512 6.83044C14.9527 6.82454 14.9535 6.8228 14.9541 6.82068C14.9541 6.82068 14.9542 6.81753 14.9551 6.81482L14.958 6.80603L14.9586 6.80422C14.9631 6.78961 14.9718 6.76119 14.9785 6.72693V6.72498C15.0066 6.57705 15.0066 6.4246 14.9785 6.27673V6.27478L14.958 6.19568L14.9551 6.18591L14.9531 6.18005L14.9512 6.17224C14.9497 6.1664 14.9481 6.15677 14.9453 6.14685C14.9398 6.12695 14.9307 6.09654 14.917 6.06189C14.9032 6.02688 14.8885 5.99813 14.8799 5.98181C14.8758 5.97402 14.8709 5.96562 14.8691 5.96228L14.8564 5.93689C14.849 5.92177 14.8351 5.89372 14.8154 5.86267L14.8145 5.86072L14.7529 5.7738C14.7316 5.74659 14.7094 5.72129 14.6875 5.69763C14.6837 5.69341 14.6802 5.68854 14.6758 5.68396L9.58496 0.349976Z"
667
+ fill="currentColor"
668
+ />
669
+ </svg>
670
+ </div>
671
+ </div>
672
+ </div>
673
+ </a>
674
+ </div>
675
+ <div
676
+ className="c1"
677
+ >
678
+ <a
679
+ className="c2"
680
+ href="/test-no-image"
681
+ rel={null}
682
+ target="self"
683
+ >
684
+ <div
685
+ className="c18"
686
+ >
687
+ <div
688
+ className="c8"
689
+ >
690
+ <p
691
+ className="c9"
692
+ >
693
+ Load of text here
694
+ </p>
695
+ </div>
696
+ <div
697
+ className="c10"
698
+ >
699
+ <span
700
+ className="c11 c12"
701
+ >
702
+ View card
703
+ <img
704
+ alt=""
705
+ aria-hidden="true"
706
+ className="c13 c14"
707
+ src="mock.asset"
708
+ />
709
+ </span>
710
+ <div
711
+ className="c15 c16"
712
+ >
713
+ <svg
714
+ className="c17"
715
+ fill="none"
716
+ height="13"
717
+ viewBox="0 0 15 13"
718
+ width="15"
719
+ xmlns="http://www.w3.org/2000/svg"
720
+ >
721
+ <path
722
+ d="M9.58496 0.349976C9.1395 -0.116662 8.40641 -0.116634 7.96094 0.349976C7.52803 0.803486 7.5281 1.53021 7.96094 1.98376L11.1582 5.33337H1.13672C0.48748 5.33337 0 5.87822 0 6.50037C2.15408e-05 7.1225 0.487494 7.66736 1.13672 7.66736H11.1582L7.96094 11.017C7.52806 11.4705 7.52899 12.1972 7.96191 12.6508C8.18163 12.8803 8.47556 13.0004 8.77344 13.0004C9.07114 13.0002 9.36533 12.8808 9.58496 12.6508L14.6758 7.31677L14.6748 7.3158L14.6875 7.3031L14.6865 7.30212C14.6954 7.29215 14.7044 7.28482 14.71 7.27771C14.7117 7.27545 14.7133 7.27285 14.7148 7.27087C14.7485 7.23203 14.7824 7.18925 14.8135 7.14099L14.8154 7.13806C14.8354 7.10658 14.8493 7.07842 14.8564 7.06384L14.8652 7.04626L14.8662 7.04431L14.8672 7.04333C14.8672 7.04333 14.868 7.04057 14.8691 7.03845C14.8709 7.03512 14.8758 7.02671 14.8799 7.01892L14.8802 7.01839C14.8888 7.002 14.9034 6.97423 14.917 6.93982V6.93787C14.9303 6.90375 14.9391 6.87285 14.9443 6.85388C14.9469 6.84458 14.9498 6.83567 14.9512 6.83044C14.9527 6.82454 14.9535 6.8228 14.9541 6.82068C14.9541 6.82068 14.9542 6.81753 14.9551 6.81482L14.958 6.80603L14.9586 6.80422C14.9631 6.78961 14.9718 6.76119 14.9785 6.72693V6.72498C15.0066 6.57705 15.0066 6.4246 14.9785 6.27673V6.27478L14.958 6.19568L14.9551 6.18591L14.9531 6.18005L14.9512 6.17224C14.9497 6.1664 14.9481 6.15677 14.9453 6.14685C14.9398 6.12695 14.9307 6.09654 14.917 6.06189C14.9032 6.02688 14.8885 5.99813 14.8799 5.98181C14.8758 5.97402 14.8709 5.96562 14.8691 5.96228L14.8564 5.93689C14.849 5.92177 14.8351 5.89372 14.8154 5.86267L14.8145 5.86072L14.7529 5.7738C14.7316 5.74659 14.7094 5.72129 14.6875 5.69763C14.6837 5.69341 14.6802 5.68854 14.6758 5.68396L9.58496 0.349976Z"
723
+ fill="currentColor"
724
+ />
725
+ </svg>
726
+ </div>
727
+ </div>
728
+ </div>
729
+ </a>
730
+ </div>
731
+ </div>
732
+ `;
733
+
734
+ exports[`renders 2 columns layout correctly 1`] = `
735
+ .c9 {
736
+ font-family: 'Montserrat',Helvetica,Arial,sans-serif;
737
+ font-weight: 400;
738
+ text-transform: inherit;
739
+ -webkit-letter-spacing: 0;
740
+ -moz-letter-spacing: 0;
741
+ -ms-letter-spacing: 0;
742
+ letter-spacing: 0;
743
+ font-size: 1rem;
744
+ line-height: 1.25rem;
745
+ }
746
+
747
+ .c9 span {
748
+ font-size: inherit;
749
+ line-height: inherit;
750
+ }
751
+
752
+ .c5 {
753
+ display: block;
754
+ width: 100%;
755
+ height: 100%;
756
+ position: relative;
757
+ }
758
+
759
+ .c6 {
760
+ width: 100%;
761
+ height: 100%;
762
+ display: block;
763
+ object-fit: cover;
764
+ }
765
+
766
+ .c17 {
767
+ display: inline-block;
768
+ color: #FFFFFF;
769
+ fill: currentColor;
770
+ }
771
+
772
+ .c4 {
773
+ width: 100%;
774
+ overflow: hidden;
775
+ -webkit-flex-shrink: 0;
776
+ -ms-flex-negative: 0;
777
+ flex-shrink: 0;
778
+ background: transparent;
779
+ border-radius: 1rem 1rem 0 0;
780
+ }
781
+
782
+ .c4 img {
783
+ width: 100%;
784
+ height: auto;
785
+ object-fit: cover;
786
+ display: block;
787
+ }
788
+
789
+ .c12 {
790
+ font-family: 'Montserrat',Helvetica,Arial,sans-serif;
791
+ font-weight: 400;
792
+ text-transform: inherit;
793
+ -webkit-letter-spacing: 0;
794
+ -moz-letter-spacing: 0;
795
+ -ms-letter-spacing: 0;
796
+ letter-spacing: 0;
797
+ font-size: 1rem;
798
+ line-height: 1.25rem;
799
+ color: #969598;
800
+ font-weight: bold;
801
+ -webkit-text-decoration: none;
802
+ text-decoration: none;
803
+ position: relative;
804
+ display: inline-block;
805
+ }
806
+
807
+ .c14 {
808
+ height: 4px;
809
+ width: 100%;
810
+ position: absolute;
811
+ left: 0;
812
+ bottom: -5px;
813
+ -webkit-transition: opacity 0.15s 0.1s;
814
+ transition: opacity 0.15s 0.1s;
815
+ opacity: 0;
816
+ pointer-events: none;
817
+ }
818
+
819
+ .c16 {
820
+ width: 32px;
821
+ height: 32px;
822
+ border-radius: 50%;
823
+ background: #969598;
824
+ display: -webkit-box;
825
+ display: -webkit-flex;
826
+ display: -ms-flexbox;
827
+ display: flex;
828
+ -webkit-align-items: center;
829
+ -webkit-box-align: center;
830
+ -ms-flex-align: center;
831
+ align-items: center;
832
+ -webkit-box-pack: center;
833
+ -webkit-justify-content: center;
834
+ -ms-flex-pack: center;
835
+ justify-content: center;
836
+ -webkit-flex-shrink: 0;
837
+ -ms-flex-negative: 0;
838
+ flex-shrink: 0;
839
+ }
840
+
841
+ .c2 {
842
+ display: -webkit-box;
843
+ display: -webkit-flex;
844
+ display: -ms-flexbox;
845
+ display: flex;
846
+ position: relative;
847
+ -webkit-flex-direction: column;
848
+ -ms-flex-direction: column;
849
+ flex-direction: column;
850
+ width: 100%;
851
+ -webkit-flex: 1 1 auto;
852
+ -ms-flex: 1 1 auto;
853
+ flex: 1 1 auto;
854
+ background: transparent;
855
+ border-radius: 1rem;
856
+ box-shadow: 0 0 1rem rgba(0,0,0,0.15);
857
+ -webkit-text-decoration: none;
858
+ text-decoration: none;
859
+ overflow: hidden;
860
+ cursor: pointer;
861
+ box-sizing: border-box;
862
+ }
863
+
864
+ .c2 img {
865
+ -webkit-transform: scale(1.02);
866
+ -ms-transform: scale(1.02);
867
+ transform: scale(1.02);
868
+ -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.68,-1.15,0.265,2.35);
869
+ -webkit-transition: transform 0.4s cubic-bezier(0.68,-1.15,0.265,2.35);
870
+ transition: transform 0.4s cubic-bezier(0.68,-1.15,0.265,2.35);
871
+ }
872
+
873
+ .c1 {
874
+ width: 100%;
875
+ -webkit-flex-shrink: 0;
876
+ -ms-flex-negative: 0;
877
+ flex-shrink: 0;
878
+ display: -webkit-box;
879
+ display: -webkit-flex;
880
+ display: -ms-flexbox;
881
+ display: flex;
882
+ -webkit-flex-direction: column;
883
+ -ms-flex-direction: column;
884
+ flex-direction: column;
885
+ -webkit-align-self: stretch;
886
+ -ms-flex-item-align: stretch;
887
+ align-self: stretch;
888
+ }
889
+
890
+ .c7 {
891
+ width: 100%;
892
+ background: #FFFFFF;
893
+ display: -webkit-box;
894
+ display: -webkit-flex;
895
+ display: -ms-flexbox;
896
+ display: flex;
897
+ -webkit-flex-direction: column;
898
+ -ms-flex-direction: column;
899
+ flex-direction: column;
900
+ padding: 2rem;
901
+ -webkit-flex: 1;
902
+ -ms-flex: 1;
903
+ flex: 1;
904
+ min-height: 0;
905
+ border-radius: 0 0 1rem 1rem;
906
+ }
907
+
908
+ .c18 {
909
+ width: 100%;
910
+ background: #BECCF9;
911
+ display: -webkit-box;
912
+ display: -webkit-flex;
913
+ display: -ms-flexbox;
914
+ display: flex;
915
+ -webkit-flex-direction: column;
916
+ -ms-flex-direction: column;
917
+ flex-direction: column;
918
+ padding: 2rem;
919
+ -webkit-flex: 1;
920
+ -ms-flex: 1;
921
+ flex: 1;
922
+ min-height: 0;
923
+ border-radius: 0 0 1rem 1rem;
924
+ }
925
+
926
+ .c8 {
927
+ -webkit-flex: 1;
928
+ -ms-flex: 1;
929
+ flex: 1;
930
+ display: -webkit-box;
931
+ display: -webkit-flex;
932
+ display: -ms-flexbox;
933
+ display: flex;
934
+ -webkit-flex-direction: column;
935
+ -ms-flex-direction: column;
936
+ flex-direction: column;
937
+ min-height: 0;
938
+ }
939
+
940
+ .c10 {
941
+ width: 100%;
942
+ display: -webkit-box;
943
+ display: -webkit-flex;
944
+ display: -ms-flexbox;
945
+ display: flex;
946
+ -webkit-flex-direction: row;
947
+ -ms-flex-direction: row;
948
+ flex-direction: row;
949
+ -webkit-align-items: center;
950
+ -webkit-box-align: center;
951
+ -ms-flex-align: center;
952
+ align-items: center;
953
+ -webkit-box-pack: justify;
954
+ -webkit-justify-content: space-between;
955
+ -ms-flex-pack: justify;
956
+ justify-content: space-between;
957
+ margin-top: auto;
958
+ padding-top: 1rem;
959
+ }
960
+
961
+ .c0 {
962
+ display: -webkit-box;
963
+ display: -webkit-flex;
964
+ display: -ms-flexbox;
965
+ display: flex;
966
+ -webkit-flex-direction: column;
967
+ -ms-flex-direction: column;
968
+ flex-direction: column;
969
+ width: 100%;
970
+ background: transparent;
971
+ gap: 1rem;
972
+ }
973
+
974
+ @media (min-width:740px) {
975
+ .c9 {
976
+ font-size: 1rem;
977
+ line-height: 1.25rem;
978
+ }
979
+ }
980
+
981
+ @media (min-width:1024px) {
982
+ .c9 {
983
+ font-size: 1.125rem;
984
+ line-height: 1.375rem;
985
+ }
986
+ }
987
+
988
+ @media (min-width:740px) {
989
+ .c4 img {
990
+ -webkit-transition: -webkit-transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
991
+ -webkit-transition: transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
992
+ transition: transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
993
+ -webkit-transform-origin: center;
994
+ -ms-transform-origin: center;
995
+ transform-origin: center;
996
+ }
997
+
998
+ .c4 img:hover,
999
+ .c4 img:focus {
1000
+ -webkit-transform: scale(1.08);
1001
+ -ms-transform: scale(1.08);
1002
+ transform: scale(1.08);
1003
+ }
1004
+ }
1005
+
1006
+ @media (min-width:740px) {
1007
+ .c12 {
1008
+ font-size: 1rem;
1009
+ line-height: 1.25rem;
1010
+ }
1011
+ }
1012
+
1013
+ @media (min-width:1024px) {
1014
+ .c12 {
1015
+ font-size: 1.125rem;
1016
+ line-height: 1.375rem;
1017
+ }
1018
+ }
1019
+
1020
+ @media (min-width:740px) {
1021
+ .c2 {
1022
+ -webkit-transition: -webkit-transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
1023
+ -webkit-transition: transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
1024
+ transition: transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
1025
+ -webkit-transform-origin: center;
1026
+ -ms-transform-origin: center;
1027
+ transform-origin: center;
1028
+ }
1029
+
1030
+ .c2:hover,
1031
+ .c2:focus {
1032
+ -webkit-transform: translateY(-0.02px);
1033
+ -ms-transform: translateY(-0.02px);
1034
+ transform: translateY(-0.02px);
1035
+ }
1036
+
1037
+ .c2:hover {
1038
+ box-shadow: 0 0 1.5rem rgba(0,0,0,0.25);
1039
+ }
1040
+
1041
+ .c2:hover .c3 img {
1042
+ -webkit-transform: scale(1.1);
1043
+ -ms-transform: scale(1.1);
1044
+ transform: scale(1.1);
1045
+ }
1046
+
1047
+ .c2:hover .c11 {
1048
+ color: #E52630;
1049
+ -webkit-text-decoration: none;
1050
+ text-decoration: none;
1051
+ }
1052
+
1053
+ .c2:hover .c13 {
1054
+ opacity: 1;
1055
+ }
1056
+
1057
+ .c2:hover .c15 {
1058
+ background: #E52630;
1059
+ }
1060
+ }
1061
+
1062
+ @media (max-width:739px) {
1063
+ .c1 {
1064
+ max-width: 345px;
1065
+ margin-left: auto;
1066
+ margin-right: auto;
1067
+ }
1068
+ }
1069
+
1070
+ @media (min-width:740px) and (max-width:1023px) {
1071
+ .c1 {
1072
+ -webkit-align-self: stretch;
1073
+ -ms-flex-item-align: stretch;
1074
+ align-self: stretch;
1075
+ -webkit-flex: 0 0 345px;
1076
+ -ms-flex: 0 0 345px;
1077
+ flex: 0 0 345px;
1078
+ max-width: 345px;
1079
+ margin-left: 0;
1080
+ margin-right: 0;
1081
+ }
1082
+ }
1083
+
1084
+ @media (min-width:1024px) and (max-width:1439px) {
1085
+ .c1 {
1086
+ -webkit-flex-basis: calc(50% - 1rem);
1087
+ -ms-flex-preferred-size: calc(50% - 1rem);
1088
+ flex-basis: calc(50% - 1rem);
1089
+ min-width: 443px;
1090
+ max-width: 564px;
1091
+ -webkit-align-self: stretch;
1092
+ -ms-flex-item-align: stretch;
1093
+ align-self: stretch;
1094
+ }
1095
+ }
1096
+
1097
+ @media (min-width:1440px) {
1098
+ .c1 {
1099
+ -webkit-flex-basis: unset;
1100
+ -ms-flex-preferred-size: unset;
1101
+ flex-basis: unset;
1102
+ width: 564px;
1103
+ -webkit-align-self: stretch;
1104
+ -ms-flex-item-align: stretch;
1105
+ align-self: stretch;
1106
+ }
1107
+ }
1108
+
1109
+ @media (max-width:739px) {
1110
+ .c0 {
1111
+ -webkit-flex-direction: column;
1112
+ -ms-flex-direction: column;
1113
+ flex-direction: column;
1114
+ background: transparent;
1115
+ }
1116
+ }
1117
+
1118
+ @media (min-width:740px) {
1119
+ .c0 {
1120
+ -webkit-flex-direction: row;
1121
+ -ms-flex-direction: row;
1122
+ flex-direction: row;
1123
+ -webkit-flex-wrap: wrap;
1124
+ -ms-flex-wrap: wrap;
1125
+ flex-wrap: wrap;
1126
+ -webkit-box-pack: center;
1127
+ -webkit-justify-content: center;
1128
+ -ms-flex-pack: center;
1129
+ justify-content: center;
1130
+ -webkit-align-items: stretch;
1131
+ -webkit-box-align: stretch;
1132
+ -ms-flex-align: stretch;
1133
+ align-items: stretch;
1134
+ width: -webkit-fit-content;
1135
+ width: -moz-fit-content;
1136
+ width: fit-content;
1137
+ max-width: 100%;
1138
+ margin: 0 auto;
1139
+ }
1140
+ }
1141
+
1142
+ @media (min-width:1440px) {
1143
+
1144
+ }
1145
+
1146
+ <div
1147
+ className="c0"
1148
+ >
1149
+ <div
1150
+ className="c1"
1151
+ >
1152
+ <a
1153
+ className="c2"
1154
+ href="/test"
1155
+ rel={null}
1156
+ target="self"
1157
+ >
1158
+ <div
1159
+ className="c3 c4"
1160
+ >
1161
+ <div
1162
+ className="c5 lazyload"
1163
+ height="100%"
1164
+ width="100%"
1165
+ >
1166
+ <img
1167
+ alt=""
1168
+ className="c6 lazyload"
1169
+ data-lowsrc="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAPABQDASIAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAcIBAb/xAAjEAACAgIBBAIDAAAAAAAAAAABAgMEABEGBRIhMQdBE1Fh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgT/xAAaEQADAQADAAAAAAAAAAAAAAAAAQIDERIT/9oADAMBAAIRAxEAPwBzRcrjVY+0tonyT41nG8y+SLFTkgpQTVFpoqiRZGHc2/egf4RrMM12OHpNi3LsrAjO2vsKCcQtvkbTW570sMUt6xphJKnd+Ma9A78ZRWcS+SWNLpNMqAdQidVaSxErEA6ZgCNj9YZNPTOTpJW7+ovdlnLHyjgAD6GGPug+bP/Z"
1170
+ data-sizes="auto"
1171
+ data-src="@component-library/src/styleguide/assets/challenge-1.jpg"
1172
+ data-srcset="@component-library/src/styleguide/assets/challenge-1.jpg 678w"
1173
+ height="100%"
1174
+ src="@component-library/src/styleguide/assets/challenge-1.jpg"
1175
+ srcSet="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
1176
+ width="100%"
1177
+ />
1178
+ </div>
1179
+ </div>
1180
+ <div
1181
+ className="c7"
1182
+ >
1183
+ <div
1184
+ className="c8"
1185
+ >
1186
+ <p
1187
+ className="c9"
1188
+ >
1189
+ <strong>
1190
+ Load
1191
+ </strong>
1192
+ of text here
1193
+ </p>
1194
+ </div>
1195
+ <div
1196
+ className="c10"
1197
+ >
1198
+ <span
1199
+ className="c11 c12"
1200
+ >
1201
+ test go
1202
+ <img
1203
+ alt=""
1204
+ aria-hidden="true"
1205
+ className="c13 c14"
1206
+ src="mock.asset"
1207
+ />
1208
+ </span>
1209
+ <div
1210
+ className="c15 c16"
1211
+ >
1212
+ <svg
1213
+ className="c17"
1214
+ fill="none"
1215
+ height="13"
1216
+ viewBox="0 0 15 13"
1217
+ width="15"
1218
+ xmlns="http://www.w3.org/2000/svg"
1219
+ >
1220
+ <path
1221
+ d="M9.58496 0.349976C9.1395 -0.116662 8.40641 -0.116634 7.96094 0.349976C7.52803 0.803486 7.5281 1.53021 7.96094 1.98376L11.1582 5.33337H1.13672C0.48748 5.33337 0 5.87822 0 6.50037C2.15408e-05 7.1225 0.487494 7.66736 1.13672 7.66736H11.1582L7.96094 11.017C7.52806 11.4705 7.52899 12.1972 7.96191 12.6508C8.18163 12.8803 8.47556 13.0004 8.77344 13.0004C9.07114 13.0002 9.36533 12.8808 9.58496 12.6508L14.6758 7.31677L14.6748 7.3158L14.6875 7.3031L14.6865 7.30212C14.6954 7.29215 14.7044 7.28482 14.71 7.27771C14.7117 7.27545 14.7133 7.27285 14.7148 7.27087C14.7485 7.23203 14.7824 7.18925 14.8135 7.14099L14.8154 7.13806C14.8354 7.10658 14.8493 7.07842 14.8564 7.06384L14.8652 7.04626L14.8662 7.04431L14.8672 7.04333C14.8672 7.04333 14.868 7.04057 14.8691 7.03845C14.8709 7.03512 14.8758 7.02671 14.8799 7.01892L14.8802 7.01839C14.8888 7.002 14.9034 6.97423 14.917 6.93982V6.93787C14.9303 6.90375 14.9391 6.87285 14.9443 6.85388C14.9469 6.84458 14.9498 6.83567 14.9512 6.83044C14.9527 6.82454 14.9535 6.8228 14.9541 6.82068C14.9541 6.82068 14.9542 6.81753 14.9551 6.81482L14.958 6.80603L14.9586 6.80422C14.9631 6.78961 14.9718 6.76119 14.9785 6.72693V6.72498C15.0066 6.57705 15.0066 6.4246 14.9785 6.27673V6.27478L14.958 6.19568L14.9551 6.18591L14.9531 6.18005L14.9512 6.17224C14.9497 6.1664 14.9481 6.15677 14.9453 6.14685C14.9398 6.12695 14.9307 6.09654 14.917 6.06189C14.9032 6.02688 14.8885 5.99813 14.8799 5.98181C14.8758 5.97402 14.8709 5.96562 14.8691 5.96228L14.8564 5.93689C14.849 5.92177 14.8351 5.89372 14.8154 5.86267L14.8145 5.86072L14.7529 5.7738C14.7316 5.74659 14.7094 5.72129 14.6875 5.69763C14.6837 5.69341 14.6802 5.68854 14.6758 5.68396L9.58496 0.349976Z"
1222
+ fill="currentColor"
1223
+ />
1224
+ </svg>
1225
+ </div>
1226
+ </div>
1227
+ </div>
1228
+ </a>
1229
+ </div>
1230
+ <div
1231
+ className="c1"
1232
+ >
1233
+ <a
1234
+ className="c2"
1235
+ href="/test"
1236
+ rel={null}
1237
+ target="self"
1238
+ >
1239
+ <div
1240
+ className="c3 c4"
1241
+ >
1242
+ <div
1243
+ className="c5 lazyload"
1244
+ height="100%"
1245
+ width="100%"
1246
+ >
1247
+ <img
1248
+ alt=""
1249
+ className="c6 lazyload"
1250
+ data-lowsrc="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAPABQDASIAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAcIBAb/xAAjEAACAgIBBAIDAAAAAAAAAAABAgMEABEGBRIhMQdBE1Fh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgT/xAAaEQADAQADAAAAAAAAAAAAAAAAAQIDERIT/9oADAMBAAIRAxEAPwBzRcrjVY+0tonyT41nG8y+SLFTkgpQTVFpoqiRZGHc2/egf4RrMM12OHpNi3LsrAjO2vsKCcQtvkbTW570sMUt6xphJKnd+Ma9A78ZRWcS+SWNLpNMqAdQidVaSxErEA6ZgCNj9YZNPTOTpJW7+ovdlnLHyjgAD6GGPug+bP/Z"
1251
+ data-sizes="auto"
1252
+ data-src="@component-library/src/styleguide/assets/challenge-1.jpg"
1253
+ data-srcset="@component-library/src/styleguide/assets/challenge-1.jpg 678w"
1254
+ height="100%"
1255
+ src="@component-library/src/styleguide/assets/challenge-1.jpg"
1256
+ srcSet="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
1257
+ width="100%"
1258
+ />
1259
+ </div>
1260
+ </div>
1261
+ <div
1262
+ className="c7"
1263
+ >
1264
+ <div
1265
+ className="c8"
1266
+ >
1267
+ <p
1268
+ className="c9"
1269
+ >
1270
+ <strong>
1271
+ Load
1272
+ </strong>
1273
+ of text here
1274
+ </p>
1275
+ </div>
1276
+ <div
1277
+ className="c10"
1278
+ >
1279
+ <span
1280
+ className="c11 c12"
1281
+ >
1282
+ test go
1283
+ <img
1284
+ alt=""
1285
+ aria-hidden="true"
1286
+ className="c13 c14"
1287
+ src="mock.asset"
1288
+ />
1289
+ </span>
1290
+ <div
1291
+ className="c15 c16"
1292
+ >
1293
+ <svg
1294
+ className="c17"
1295
+ fill="none"
1296
+ height="13"
1297
+ viewBox="0 0 15 13"
1298
+ width="15"
1299
+ xmlns="http://www.w3.org/2000/svg"
1300
+ >
1301
+ <path
1302
+ d="M9.58496 0.349976C9.1395 -0.116662 8.40641 -0.116634 7.96094 0.349976C7.52803 0.803486 7.5281 1.53021 7.96094 1.98376L11.1582 5.33337H1.13672C0.48748 5.33337 0 5.87822 0 6.50037C2.15408e-05 7.1225 0.487494 7.66736 1.13672 7.66736H11.1582L7.96094 11.017C7.52806 11.4705 7.52899 12.1972 7.96191 12.6508C8.18163 12.8803 8.47556 13.0004 8.77344 13.0004C9.07114 13.0002 9.36533 12.8808 9.58496 12.6508L14.6758 7.31677L14.6748 7.3158L14.6875 7.3031L14.6865 7.30212C14.6954 7.29215 14.7044 7.28482 14.71 7.27771C14.7117 7.27545 14.7133 7.27285 14.7148 7.27087C14.7485 7.23203 14.7824 7.18925 14.8135 7.14099L14.8154 7.13806C14.8354 7.10658 14.8493 7.07842 14.8564 7.06384L14.8652 7.04626L14.8662 7.04431L14.8672 7.04333C14.8672 7.04333 14.868 7.04057 14.8691 7.03845C14.8709 7.03512 14.8758 7.02671 14.8799 7.01892L14.8802 7.01839C14.8888 7.002 14.9034 6.97423 14.917 6.93982V6.93787C14.9303 6.90375 14.9391 6.87285 14.9443 6.85388C14.9469 6.84458 14.9498 6.83567 14.9512 6.83044C14.9527 6.82454 14.9535 6.8228 14.9541 6.82068C14.9541 6.82068 14.9542 6.81753 14.9551 6.81482L14.958 6.80603L14.9586 6.80422C14.9631 6.78961 14.9718 6.76119 14.9785 6.72693V6.72498C15.0066 6.57705 15.0066 6.4246 14.9785 6.27673V6.27478L14.958 6.19568L14.9551 6.18591L14.9531 6.18005L14.9512 6.17224C14.9497 6.1664 14.9481 6.15677 14.9453 6.14685C14.9398 6.12695 14.9307 6.09654 14.917 6.06189C14.9032 6.02688 14.8885 5.99813 14.8799 5.98181C14.8758 5.97402 14.8709 5.96562 14.8691 5.96228L14.8564 5.93689C14.849 5.92177 14.8351 5.89372 14.8154 5.86267L14.8145 5.86072L14.7529 5.7738C14.7316 5.74659 14.7094 5.72129 14.6875 5.69763C14.6837 5.69341 14.6802 5.68854 14.6758 5.68396L9.58496 0.349976Z"
1303
+ fill="currentColor"
1304
+ />
1305
+ </svg>
1306
+ </div>
1307
+ </div>
1308
+ </div>
1309
+ </a>
1310
+ </div>
1311
+ <div
1312
+ className="c1"
1313
+ >
1314
+ <a
1315
+ className="c2"
1316
+ href="/test"
1317
+ rel={null}
1318
+ target="self"
1319
+ >
1320
+ <div
1321
+ className="c3 c4"
1322
+ >
1323
+ <div
1324
+ className="c5 lazyload"
1325
+ height="100%"
1326
+ width="100%"
1327
+ >
1328
+ <img
1329
+ alt=""
1330
+ className="c6 lazyload"
1331
+ data-lowsrc="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAPABQDASIAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAcIBAb/xAAjEAACAgIBBAIDAAAAAAAAAAABAgMEABEGBRIhMQdBE1Fh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgT/xAAaEQADAQADAAAAAAAAAAAAAAAAAQIDERIT/9oADAMBAAIRAxEAPwBzRcrjVY+0tonyT41nG8y+SLFTkgpQTVFpoqiRZGHc2/egf4RrMM12OHpNi3LsrAjO2vsKCcQtvkbTW570sMUt6xphJKnd+Ma9A78ZRWcS+SWNLpNMqAdQidVaSxErEA6ZgCNj9YZNPTOTpJW7+ovdlnLHyjgAD6GGPug+bP/Z"
1332
+ data-sizes="auto"
1333
+ data-src="@component-library/src/styleguide/assets/challenge-1.jpg"
1334
+ data-srcset="@component-library/src/styleguide/assets/challenge-1.jpg 678w"
1335
+ height="100%"
1336
+ src="@component-library/src/styleguide/assets/challenge-1.jpg"
1337
+ srcSet="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
1338
+ width="100%"
1339
+ />
1340
+ </div>
1341
+ </div>
1342
+ <div
1343
+ className="c7"
1344
+ >
1345
+ <div
1346
+ className="c8"
1347
+ >
1348
+ <p
1349
+ className="c9"
1350
+ >
1351
+ <strong>
1352
+ Load
1353
+ </strong>
1354
+ of text here
1355
+ </p>
1356
+ </div>
1357
+ <div
1358
+ className="c10"
1359
+ >
1360
+ <span
1361
+ className="c11 c12"
1362
+ >
1363
+ test go
1364
+ <img
1365
+ alt=""
1366
+ aria-hidden="true"
1367
+ className="c13 c14"
1368
+ src="mock.asset"
1369
+ />
1370
+ </span>
1371
+ <div
1372
+ className="c15 c16"
1373
+ >
1374
+ <svg
1375
+ className="c17"
1376
+ fill="none"
1377
+ height="13"
1378
+ viewBox="0 0 15 13"
1379
+ width="15"
1380
+ xmlns="http://www.w3.org/2000/svg"
1381
+ >
1382
+ <path
1383
+ d="M9.58496 0.349976C9.1395 -0.116662 8.40641 -0.116634 7.96094 0.349976C7.52803 0.803486 7.5281 1.53021 7.96094 1.98376L11.1582 5.33337H1.13672C0.48748 5.33337 0 5.87822 0 6.50037C2.15408e-05 7.1225 0.487494 7.66736 1.13672 7.66736H11.1582L7.96094 11.017C7.52806 11.4705 7.52899 12.1972 7.96191 12.6508C8.18163 12.8803 8.47556 13.0004 8.77344 13.0004C9.07114 13.0002 9.36533 12.8808 9.58496 12.6508L14.6758 7.31677L14.6748 7.3158L14.6875 7.3031L14.6865 7.30212C14.6954 7.29215 14.7044 7.28482 14.71 7.27771C14.7117 7.27545 14.7133 7.27285 14.7148 7.27087C14.7485 7.23203 14.7824 7.18925 14.8135 7.14099L14.8154 7.13806C14.8354 7.10658 14.8493 7.07842 14.8564 7.06384L14.8652 7.04626L14.8662 7.04431L14.8672 7.04333C14.8672 7.04333 14.868 7.04057 14.8691 7.03845C14.8709 7.03512 14.8758 7.02671 14.8799 7.01892L14.8802 7.01839C14.8888 7.002 14.9034 6.97423 14.917 6.93982V6.93787C14.9303 6.90375 14.9391 6.87285 14.9443 6.85388C14.9469 6.84458 14.9498 6.83567 14.9512 6.83044C14.9527 6.82454 14.9535 6.8228 14.9541 6.82068C14.9541 6.82068 14.9542 6.81753 14.9551 6.81482L14.958 6.80603L14.9586 6.80422C14.9631 6.78961 14.9718 6.76119 14.9785 6.72693V6.72498C15.0066 6.57705 15.0066 6.4246 14.9785 6.27673V6.27478L14.958 6.19568L14.9551 6.18591L14.9531 6.18005L14.9512 6.17224C14.9497 6.1664 14.9481 6.15677 14.9453 6.14685C14.9398 6.12695 14.9307 6.09654 14.917 6.06189C14.9032 6.02688 14.8885 5.99813 14.8799 5.98181C14.8758 5.97402 14.8709 5.96562 14.8691 5.96228L14.8564 5.93689C14.849 5.92177 14.8351 5.89372 14.8154 5.86267L14.8145 5.86072L14.7529 5.7738C14.7316 5.74659 14.7094 5.72129 14.6875 5.69763C14.6837 5.69341 14.6802 5.68854 14.6758 5.68396L9.58496 0.349976Z"
1384
+ fill="currentColor"
1385
+ />
1386
+ </svg>
1387
+ </div>
1388
+ </div>
1389
+ </div>
1390
+ </a>
1391
+ </div>
1392
+ <div
1393
+ className="c1"
1394
+ >
1395
+ <a
1396
+ className="c2"
1397
+ href="/test-no-image"
1398
+ rel={null}
1399
+ target="self"
1400
+ >
1401
+ <div
1402
+ className="c18"
1403
+ >
1404
+ <div
1405
+ className="c8"
1406
+ >
1407
+ <p
1408
+ className="c9"
1409
+ >
1410
+ Load of text here
1411
+ </p>
1412
+ </div>
1413
+ <div
1414
+ className="c10"
1415
+ >
1416
+ <span
1417
+ className="c11 c12"
1418
+ >
1419
+ View card
1420
+ <img
1421
+ alt=""
1422
+ aria-hidden="true"
1423
+ className="c13 c14"
1424
+ src="mock.asset"
1425
+ />
1426
+ </span>
1427
+ <div
1428
+ className="c15 c16"
1429
+ >
1430
+ <svg
1431
+ className="c17"
1432
+ fill="none"
1433
+ height="13"
1434
+ viewBox="0 0 15 13"
1435
+ width="15"
1436
+ xmlns="http://www.w3.org/2000/svg"
1437
+ >
1438
+ <path
1439
+ d="M9.58496 0.349976C9.1395 -0.116662 8.40641 -0.116634 7.96094 0.349976C7.52803 0.803486 7.5281 1.53021 7.96094 1.98376L11.1582 5.33337H1.13672C0.48748 5.33337 0 5.87822 0 6.50037C2.15408e-05 7.1225 0.487494 7.66736 1.13672 7.66736H11.1582L7.96094 11.017C7.52806 11.4705 7.52899 12.1972 7.96191 12.6508C8.18163 12.8803 8.47556 13.0004 8.77344 13.0004C9.07114 13.0002 9.36533 12.8808 9.58496 12.6508L14.6758 7.31677L14.6748 7.3158L14.6875 7.3031L14.6865 7.30212C14.6954 7.29215 14.7044 7.28482 14.71 7.27771C14.7117 7.27545 14.7133 7.27285 14.7148 7.27087C14.7485 7.23203 14.7824 7.18925 14.8135 7.14099L14.8154 7.13806C14.8354 7.10658 14.8493 7.07842 14.8564 7.06384L14.8652 7.04626L14.8662 7.04431L14.8672 7.04333C14.8672 7.04333 14.868 7.04057 14.8691 7.03845C14.8709 7.03512 14.8758 7.02671 14.8799 7.01892L14.8802 7.01839C14.8888 7.002 14.9034 6.97423 14.917 6.93982V6.93787C14.9303 6.90375 14.9391 6.87285 14.9443 6.85388C14.9469 6.84458 14.9498 6.83567 14.9512 6.83044C14.9527 6.82454 14.9535 6.8228 14.9541 6.82068C14.9541 6.82068 14.9542 6.81753 14.9551 6.81482L14.958 6.80603L14.9586 6.80422C14.9631 6.78961 14.9718 6.76119 14.9785 6.72693V6.72498C15.0066 6.57705 15.0066 6.4246 14.9785 6.27673V6.27478L14.958 6.19568L14.9551 6.18591L14.9531 6.18005L14.9512 6.17224C14.9497 6.1664 14.9481 6.15677 14.9453 6.14685C14.9398 6.12695 14.9307 6.09654 14.917 6.06189C14.9032 6.02688 14.8885 5.99813 14.8799 5.98181C14.8758 5.97402 14.8709 5.96562 14.8691 5.96228L14.8564 5.93689C14.849 5.92177 14.8351 5.89372 14.8154 5.86267L14.8145 5.86072L14.7529 5.7738C14.7316 5.74659 14.7094 5.72129 14.6875 5.69763C14.6837 5.69341 14.6802 5.68854 14.6758 5.68396L9.58496 0.349976Z"
1440
+ fill="currentColor"
1441
+ />
1442
+ </svg>
1443
+ </div>
1444
+ </div>
1445
+ </div>
1446
+ </a>
1447
+ </div>
1448
+ </div>
1449
+ `;
1450
+
1451
+ exports[`renders carousel mode correctly 1`] = `
1452
+ .c9 {
1453
+ font-family: 'Montserrat',Helvetica,Arial,sans-serif;
1454
+ font-weight: 400;
1455
+ text-transform: inherit;
1456
+ -webkit-letter-spacing: 0;
1457
+ -moz-letter-spacing: 0;
1458
+ -ms-letter-spacing: 0;
1459
+ letter-spacing: 0;
1460
+ font-size: 1rem;
1461
+ line-height: 1.25rem;
1462
+ }
1463
+
1464
+ .c9 span {
1465
+ font-size: inherit;
1466
+ line-height: inherit;
1467
+ }
1468
+
1469
+ .c5 {
1470
+ display: block;
1471
+ width: 100%;
1472
+ height: 100%;
1473
+ position: relative;
1474
+ }
1475
+
1476
+ .c6 {
1477
+ width: 100%;
1478
+ height: 100%;
1479
+ display: block;
1480
+ object-fit: cover;
1481
+ }
1482
+
1483
+ .c17 {
1484
+ display: inline-block;
1485
+ color: #FFFFFF;
1486
+ fill: currentColor;
1487
+ }
1488
+
1489
+ .c4 {
1490
+ width: 100%;
1491
+ overflow: hidden;
1492
+ -webkit-flex-shrink: 0;
1493
+ -ms-flex-negative: 0;
1494
+ flex-shrink: 0;
1495
+ background: transparent;
1496
+ border-radius: 1rem 1rem 0 0;
1497
+ }
1498
+
1499
+ .c4 img {
1500
+ width: 100%;
1501
+ height: auto;
1502
+ object-fit: cover;
1503
+ display: block;
1504
+ }
1505
+
1506
+ .c12 {
1507
+ font-family: 'Montserrat',Helvetica,Arial,sans-serif;
1508
+ font-weight: 400;
1509
+ text-transform: inherit;
1510
+ -webkit-letter-spacing: 0;
1511
+ -moz-letter-spacing: 0;
1512
+ -ms-letter-spacing: 0;
1513
+ letter-spacing: 0;
1514
+ font-size: 1rem;
1515
+ line-height: 1.25rem;
1516
+ color: #969598;
1517
+ font-weight: bold;
1518
+ -webkit-text-decoration: none;
1519
+ text-decoration: none;
1520
+ position: relative;
1521
+ display: inline-block;
1522
+ }
1523
+
1524
+ .c14 {
1525
+ height: 4px;
1526
+ width: 100%;
1527
+ position: absolute;
1528
+ left: 0;
1529
+ bottom: -5px;
1530
+ -webkit-transition: opacity 0.15s 0.1s;
1531
+ transition: opacity 0.15s 0.1s;
1532
+ opacity: 0;
1533
+ pointer-events: none;
1534
+ }
1535
+
1536
+ .c16 {
1537
+ width: 32px;
1538
+ height: 32px;
1539
+ border-radius: 50%;
1540
+ background: #969598;
1541
+ display: -webkit-box;
1542
+ display: -webkit-flex;
1543
+ display: -ms-flexbox;
1544
+ display: flex;
1545
+ -webkit-align-items: center;
1546
+ -webkit-box-align: center;
1547
+ -ms-flex-align: center;
1548
+ align-items: center;
1549
+ -webkit-box-pack: center;
1550
+ -webkit-justify-content: center;
1551
+ -ms-flex-pack: center;
1552
+ justify-content: center;
1553
+ -webkit-flex-shrink: 0;
1554
+ -ms-flex-negative: 0;
1555
+ flex-shrink: 0;
1556
+ }
1557
+
1558
+ .c2 {
1559
+ display: -webkit-box;
1560
+ display: -webkit-flex;
1561
+ display: -ms-flexbox;
1562
+ display: flex;
1563
+ position: relative;
1564
+ -webkit-flex-direction: column;
1565
+ -ms-flex-direction: column;
1566
+ flex-direction: column;
1567
+ width: 100%;
1568
+ -webkit-flex: 1 1 auto;
1569
+ -ms-flex: 1 1 auto;
1570
+ flex: 1 1 auto;
1571
+ background: transparent;
1572
+ border-radius: 1rem;
1573
+ box-shadow: 0 0 1rem rgba(0,0,0,0.15);
1574
+ -webkit-text-decoration: none;
1575
+ text-decoration: none;
1576
+ overflow: hidden;
1577
+ cursor: pointer;
1578
+ box-sizing: border-box;
1579
+ }
1580
+
1581
+ .c2 img {
1582
+ -webkit-transform: scale(1.02);
1583
+ -ms-transform: scale(1.02);
1584
+ transform: scale(1.02);
1585
+ -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.68,-1.15,0.265,2.35);
1586
+ -webkit-transition: transform 0.4s cubic-bezier(0.68,-1.15,0.265,2.35);
1587
+ transition: transform 0.4s cubic-bezier(0.68,-1.15,0.265,2.35);
1588
+ }
1589
+
1590
+ .c1 {
1591
+ width: 100%;
1592
+ -webkit-flex-shrink: 0;
1593
+ -ms-flex-negative: 0;
1594
+ flex-shrink: 0;
1595
+ display: -webkit-box;
1596
+ display: -webkit-flex;
1597
+ display: -ms-flexbox;
1598
+ display: flex;
1599
+ -webkit-flex-direction: column;
1600
+ -ms-flex-direction: column;
1601
+ flex-direction: column;
1602
+ -webkit-align-self: stretch;
1603
+ -ms-flex-item-align: stretch;
1604
+ align-self: stretch;
1605
+ }
1606
+
1607
+ .c7 {
1608
+ width: 100%;
1609
+ background: #FFFFFF;
1610
+ display: -webkit-box;
1611
+ display: -webkit-flex;
1612
+ display: -ms-flexbox;
1613
+ display: flex;
1614
+ -webkit-flex-direction: column;
1615
+ -ms-flex-direction: column;
1616
+ flex-direction: column;
1617
+ padding: 2rem;
1618
+ -webkit-flex: 1;
1619
+ -ms-flex: 1;
1620
+ flex: 1;
1621
+ min-height: 0;
1622
+ border-radius: 0 0 1rem 1rem;
1623
+ }
1624
+
1625
+ .c18 {
1626
+ width: 100%;
1627
+ background: #BECCF9;
1628
+ display: -webkit-box;
1629
+ display: -webkit-flex;
1630
+ display: -ms-flexbox;
1631
+ display: flex;
1632
+ -webkit-flex-direction: column;
1633
+ -ms-flex-direction: column;
1634
+ flex-direction: column;
1635
+ padding: 2rem;
1636
+ -webkit-flex: 1;
1637
+ -ms-flex: 1;
1638
+ flex: 1;
1639
+ min-height: 0;
1640
+ border-radius: 0 0 1rem 1rem;
1641
+ }
1642
+
1643
+ .c8 {
1644
+ -webkit-flex: 1;
1645
+ -ms-flex: 1;
1646
+ flex: 1;
1647
+ display: -webkit-box;
1648
+ display: -webkit-flex;
1649
+ display: -ms-flexbox;
1650
+ display: flex;
1651
+ -webkit-flex-direction: column;
1652
+ -ms-flex-direction: column;
1653
+ flex-direction: column;
1654
+ min-height: 0;
1655
+ }
1656
+
1657
+ .c10 {
1658
+ width: 100%;
1659
+ display: -webkit-box;
1660
+ display: -webkit-flex;
1661
+ display: -ms-flexbox;
1662
+ display: flex;
1663
+ -webkit-flex-direction: row;
1664
+ -ms-flex-direction: row;
1665
+ flex-direction: row;
1666
+ -webkit-align-items: center;
1667
+ -webkit-box-align: center;
1668
+ -ms-flex-align: center;
1669
+ align-items: center;
1670
+ -webkit-box-pack: justify;
1671
+ -webkit-justify-content: space-between;
1672
+ -ms-flex-pack: justify;
1673
+ justify-content: space-between;
1674
+ margin-top: auto;
1675
+ padding-top: 1rem;
1676
+ }
1677
+
1678
+ .c0 {
1679
+ display: -webkit-box;
1680
+ display: -webkit-flex;
1681
+ display: -ms-flexbox;
1682
+ display: flex;
1683
+ -webkit-flex-direction: column;
1684
+ -ms-flex-direction: column;
1685
+ flex-direction: column;
1686
+ width: 100%;
1687
+ background: transparent;
1688
+ gap: 1rem;
1689
+ }
1690
+
1691
+ @media (min-width:740px) {
1692
+ .c9 {
1693
+ font-size: 1rem;
1694
+ line-height: 1.25rem;
1695
+ }
1696
+ }
1697
+
1698
+ @media (min-width:1024px) {
1699
+ .c9 {
1700
+ font-size: 1.125rem;
1701
+ line-height: 1.375rem;
1702
+ }
1703
+ }
1704
+
1705
+ @media (min-width:740px) {
1706
+ .c4 img {
1707
+ -webkit-transition: -webkit-transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
1708
+ -webkit-transition: transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
1709
+ transition: transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
1710
+ -webkit-transform-origin: center;
1711
+ -ms-transform-origin: center;
1712
+ transform-origin: center;
1713
+ }
1714
+
1715
+ .c4 img:hover,
1716
+ .c4 img:focus {
1717
+ -webkit-transform: scale(1.08);
1718
+ -ms-transform: scale(1.08);
1719
+ transform: scale(1.08);
1720
+ }
1721
+ }
1722
+
1723
+ @media (min-width:740px) {
1724
+ .c12 {
1725
+ font-size: 1rem;
1726
+ line-height: 1.25rem;
1727
+ }
1728
+ }
1729
+
1730
+ @media (min-width:1024px) {
1731
+ .c12 {
1732
+ font-size: 1.125rem;
1733
+ line-height: 1.375rem;
1734
+ }
1735
+ }
1736
+
1737
+ @media (min-width:740px) {
1738
+ .c2 {
1739
+ -webkit-transition: -webkit-transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
1740
+ -webkit-transition: transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
1741
+ transition: transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
1742
+ -webkit-transform-origin: center;
1743
+ -ms-transform-origin: center;
1744
+ transform-origin: center;
1745
+ }
1746
+
1747
+ .c2:hover,
1748
+ .c2:focus {
1749
+ -webkit-transform: translateY(-0.02px);
1750
+ -ms-transform: translateY(-0.02px);
1751
+ transform: translateY(-0.02px);
1752
+ }
1753
+
1754
+ .c2:hover {
1755
+ box-shadow: 0 0 1.5rem rgba(0,0,0,0.25);
1756
+ }
1757
+
1758
+ .c2:hover .c3 img {
1759
+ -webkit-transform: scale(1.1);
1760
+ -ms-transform: scale(1.1);
1761
+ transform: scale(1.1);
1762
+ }
1763
+
1764
+ .c2:hover .c11 {
1765
+ color: #E52630;
1766
+ -webkit-text-decoration: none;
1767
+ text-decoration: none;
1768
+ }
1769
+
1770
+ .c2:hover .c13 {
1771
+ opacity: 1;
1772
+ }
1773
+
1774
+ .c2:hover .c15 {
1775
+ background: #E52630;
1776
+ }
1777
+ }
1778
+
1779
+ @media (max-width:1023px) {
1780
+ .c1 {
1781
+ -webkit-scroll-snap-align: start;
1782
+ -moz-scroll-snap-align: start;
1783
+ -ms-scroll-snap-align: start;
1784
+ scroll-snap-align: start;
1785
+ -webkit-flex: 0 0 309px;
1786
+ -ms-flex: 0 0 309px;
1787
+ flex: 0 0 309px;
1788
+ width: 309px;
1789
+ -webkit-flex-shrink: 0;
1790
+ -ms-flex-negative: 0;
1791
+ flex-shrink: 0;
1792
+ }
1793
+ }
1794
+
1795
+ @media (min-width:1024px) and (max-width:1439px) {
1796
+ .c1 {
1797
+ -webkit-flex-basis: calc(33.333% - 1rem);
1798
+ -ms-flex-preferred-size: calc(33.333% - 1rem);
1799
+ flex-basis: calc(33.333% - 1rem);
1800
+ min-width: 286px;
1801
+ max-width: 371px;
1802
+ -webkit-align-self: stretch;
1803
+ -ms-flex-item-align: stretch;
1804
+ align-self: stretch;
1805
+ }
1806
+ }
1807
+
1808
+ @media (min-width:1440px) {
1809
+ .c1 {
1810
+ -webkit-flex-basis: unset;
1811
+ -ms-flex-preferred-size: unset;
1812
+ flex-basis: unset;
1813
+ width: 371px;
1814
+ -webkit-align-self: stretch;
1815
+ -ms-flex-item-align: stretch;
1816
+ align-self: stretch;
1817
+ }
1818
+ }
1819
+
1820
+ @media (min-width:740px) {
1821
+ .c0 {
1822
+ -webkit-flex-direction: row;
1823
+ -ms-flex-direction: row;
1824
+ flex-direction: row;
1825
+ -webkit-flex-wrap: wrap;
1826
+ -ms-flex-wrap: wrap;
1827
+ flex-wrap: wrap;
1828
+ -webkit-box-pack: center;
1829
+ -webkit-justify-content: center;
1830
+ -ms-flex-pack: center;
1831
+ justify-content: center;
1832
+ -webkit-align-items: stretch;
1833
+ -webkit-box-align: stretch;
1834
+ -ms-flex-align: stretch;
1835
+ align-items: stretch;
1836
+ width: -webkit-fit-content;
1837
+ width: -moz-fit-content;
1838
+ width: fit-content;
1839
+ max-width: 100%;
1840
+ margin: 0 auto;
1841
+ }
1842
+ }
1843
+
1844
+ @media (max-width:1023px) {
1845
+ .c0 {
1846
+ -webkit-flex-direction: row;
1847
+ -ms-flex-direction: row;
1848
+ flex-direction: row;
1849
+ -webkit-flex-wrap: nowrap;
1850
+ -ms-flex-wrap: nowrap;
1851
+ flex-wrap: nowrap;
1852
+ -webkit-box-pack: start;
1853
+ -webkit-justify-content: flex-start;
1854
+ -ms-flex-pack: start;
1855
+ justify-content: flex-start;
1856
+ width: 100%;
1857
+ margin: 0;
1858
+ max-width: 100%;
1859
+ overflow-x: visible;
1860
+ overflow-y: scroll;
1861
+ -webkit-overflow-scrolling: touch;
1862
+ -webkit-scroll-snap-type: x mandatory;
1863
+ -moz-scroll-snap-type: x mandatory;
1864
+ -ms-scroll-snap-type: x mandatory;
1865
+ scroll-snap-type: x mandatory;
1866
+ padding: 0.75rem 1rem;
1867
+ -webkit-scrollbar-width: none;
1868
+ -moz-scrollbar-width: none;
1869
+ -ms-scrollbar-width: none;
1870
+ scrollbar-width: none;
1871
+ -ms-overflow-style: none;
1872
+ }
1873
+
1874
+ .c0::-webkit-scrollbar {
1875
+ display: none;
1876
+ }
1877
+ }
1878
+
1879
+ @media (min-width:1440px) {
1880
+ .c0 {
1881
+ display: grid;
1882
+ -webkit-box-pack: center;
1883
+ -webkit-justify-content: center;
1884
+ -ms-flex-pack: center;
1885
+ justify-content: center;
1886
+ -webkit-align-items: stretch;
1887
+ -webkit-box-align: stretch;
1888
+ -ms-flex-align: stretch;
1889
+ align-items: stretch;
1890
+ grid-template-columns: repeat(3,minmax(0,371px));
1891
+ width: 100%;
1892
+ margin: 0 auto;
1893
+ max-width: 100%;
1894
+ }
1895
+ }
1896
+
1897
+ <div
1898
+ className="c0"
1899
+ >
1900
+ <div
1901
+ className="c1"
1902
+ >
1903
+ <a
1904
+ className="c2"
1905
+ href="/test"
1906
+ rel={null}
1907
+ target="self"
1908
+ >
1909
+ <div
1910
+ className="c3 c4"
1911
+ >
1912
+ <div
1913
+ className="c5 lazyload"
1914
+ height="100%"
1915
+ width="100%"
1916
+ >
1917
+ <img
1918
+ alt=""
1919
+ className="c6 lazyload"
1920
+ data-lowsrc="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAPABQDASIAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAcIBAb/xAAjEAACAgIBBAIDAAAAAAAAAAABAgMEABEGBRIhMQdBE1Fh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgT/xAAaEQADAQADAAAAAAAAAAAAAAAAAQIDERIT/9oADAMBAAIRAxEAPwBzRcrjVY+0tonyT41nG8y+SLFTkgpQTVFpoqiRZGHc2/egf4RrMM12OHpNi3LsrAjO2vsKCcQtvkbTW570sMUt6xphJKnd+Ma9A78ZRWcS+SWNLpNMqAdQidVaSxErEA6ZgCNj9YZNPTOTpJW7+ovdlnLHyjgAD6GGPug+bP/Z"
1921
+ data-sizes="auto"
1922
+ data-src="@component-library/src/styleguide/assets/challenge-1.jpg"
1923
+ data-srcset="@component-library/src/styleguide/assets/challenge-1.jpg 678w"
1924
+ height="100%"
1925
+ src="@component-library/src/styleguide/assets/challenge-1.jpg"
1926
+ srcSet="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
1927
+ width="100%"
1928
+ />
1929
+ </div>
1930
+ </div>
1931
+ <div
1932
+ className="c7"
1933
+ >
1934
+ <div
1935
+ className="c8"
1936
+ >
1937
+ <p
1938
+ className="c9"
1939
+ >
1940
+ <strong>
1941
+ Load
1942
+ </strong>
1943
+ of text here
1944
+ </p>
1945
+ </div>
1946
+ <div
1947
+ className="c10"
1948
+ >
1949
+ <span
1950
+ className="c11 c12"
1951
+ >
1952
+ test go
1953
+ <img
1954
+ alt=""
1955
+ aria-hidden="true"
1956
+ className="c13 c14"
1957
+ src="mock.asset"
1958
+ />
1959
+ </span>
1960
+ <div
1961
+ className="c15 c16"
1962
+ >
1963
+ <svg
1964
+ className="c17"
1965
+ fill="none"
1966
+ height="13"
1967
+ viewBox="0 0 15 13"
1968
+ width="15"
1969
+ xmlns="http://www.w3.org/2000/svg"
1970
+ >
1971
+ <path
1972
+ d="M9.58496 0.349976C9.1395 -0.116662 8.40641 -0.116634 7.96094 0.349976C7.52803 0.803486 7.5281 1.53021 7.96094 1.98376L11.1582 5.33337H1.13672C0.48748 5.33337 0 5.87822 0 6.50037C2.15408e-05 7.1225 0.487494 7.66736 1.13672 7.66736H11.1582L7.96094 11.017C7.52806 11.4705 7.52899 12.1972 7.96191 12.6508C8.18163 12.8803 8.47556 13.0004 8.77344 13.0004C9.07114 13.0002 9.36533 12.8808 9.58496 12.6508L14.6758 7.31677L14.6748 7.3158L14.6875 7.3031L14.6865 7.30212C14.6954 7.29215 14.7044 7.28482 14.71 7.27771C14.7117 7.27545 14.7133 7.27285 14.7148 7.27087C14.7485 7.23203 14.7824 7.18925 14.8135 7.14099L14.8154 7.13806C14.8354 7.10658 14.8493 7.07842 14.8564 7.06384L14.8652 7.04626L14.8662 7.04431L14.8672 7.04333C14.8672 7.04333 14.868 7.04057 14.8691 7.03845C14.8709 7.03512 14.8758 7.02671 14.8799 7.01892L14.8802 7.01839C14.8888 7.002 14.9034 6.97423 14.917 6.93982V6.93787C14.9303 6.90375 14.9391 6.87285 14.9443 6.85388C14.9469 6.84458 14.9498 6.83567 14.9512 6.83044C14.9527 6.82454 14.9535 6.8228 14.9541 6.82068C14.9541 6.82068 14.9542 6.81753 14.9551 6.81482L14.958 6.80603L14.9586 6.80422C14.9631 6.78961 14.9718 6.76119 14.9785 6.72693V6.72498C15.0066 6.57705 15.0066 6.4246 14.9785 6.27673V6.27478L14.958 6.19568L14.9551 6.18591L14.9531 6.18005L14.9512 6.17224C14.9497 6.1664 14.9481 6.15677 14.9453 6.14685C14.9398 6.12695 14.9307 6.09654 14.917 6.06189C14.9032 6.02688 14.8885 5.99813 14.8799 5.98181C14.8758 5.97402 14.8709 5.96562 14.8691 5.96228L14.8564 5.93689C14.849 5.92177 14.8351 5.89372 14.8154 5.86267L14.8145 5.86072L14.7529 5.7738C14.7316 5.74659 14.7094 5.72129 14.6875 5.69763C14.6837 5.69341 14.6802 5.68854 14.6758 5.68396L9.58496 0.349976Z"
1973
+ fill="currentColor"
1974
+ />
1975
+ </svg>
1976
+ </div>
1977
+ </div>
1978
+ </div>
1979
+ </a>
1980
+ </div>
1981
+ <div
1982
+ className="c1"
1983
+ >
1984
+ <a
1985
+ className="c2"
1986
+ href="/test"
1987
+ rel={null}
1988
+ target="self"
1989
+ >
1990
+ <div
1991
+ className="c3 c4"
1992
+ >
1993
+ <div
1994
+ className="c5 lazyload"
1995
+ height="100%"
1996
+ width="100%"
1997
+ >
1998
+ <img
1999
+ alt=""
2000
+ className="c6 lazyload"
2001
+ data-lowsrc="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAPABQDASIAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAcIBAb/xAAjEAACAgIBBAIDAAAAAAAAAAABAgMEABEGBRIhMQdBE1Fh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgT/xAAaEQADAQADAAAAAAAAAAAAAAAAAQIDERIT/9oADAMBAAIRAxEAPwBzRcrjVY+0tonyT41nG8y+SLFTkgpQTVFpoqiRZGHc2/egf4RrMM12OHpNi3LsrAjO2vsKCcQtvkbTW570sMUt6xphJKnd+Ma9A78ZRWcS+SWNLpNMqAdQidVaSxErEA6ZgCNj9YZNPTOTpJW7+ovdlnLHyjgAD6GGPug+bP/Z"
2002
+ data-sizes="auto"
2003
+ data-src="@component-library/src/styleguide/assets/challenge-1.jpg"
2004
+ data-srcset="@component-library/src/styleguide/assets/challenge-1.jpg 678w"
2005
+ height="100%"
2006
+ src="@component-library/src/styleguide/assets/challenge-1.jpg"
2007
+ srcSet="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
2008
+ width="100%"
2009
+ />
2010
+ </div>
2011
+ </div>
2012
+ <div
2013
+ className="c7"
2014
+ >
2015
+ <div
2016
+ className="c8"
2017
+ >
2018
+ <p
2019
+ className="c9"
2020
+ >
2021
+ <strong>
2022
+ Load
2023
+ </strong>
2024
+ of text here
2025
+ </p>
2026
+ </div>
2027
+ <div
2028
+ className="c10"
2029
+ >
2030
+ <span
2031
+ className="c11 c12"
2032
+ >
2033
+ test go
2034
+ <img
2035
+ alt=""
2036
+ aria-hidden="true"
2037
+ className="c13 c14"
2038
+ src="mock.asset"
2039
+ />
2040
+ </span>
2041
+ <div
2042
+ className="c15 c16"
2043
+ >
2044
+ <svg
2045
+ className="c17"
2046
+ fill="none"
2047
+ height="13"
2048
+ viewBox="0 0 15 13"
2049
+ width="15"
2050
+ xmlns="http://www.w3.org/2000/svg"
2051
+ >
2052
+ <path
2053
+ d="M9.58496 0.349976C9.1395 -0.116662 8.40641 -0.116634 7.96094 0.349976C7.52803 0.803486 7.5281 1.53021 7.96094 1.98376L11.1582 5.33337H1.13672C0.48748 5.33337 0 5.87822 0 6.50037C2.15408e-05 7.1225 0.487494 7.66736 1.13672 7.66736H11.1582L7.96094 11.017C7.52806 11.4705 7.52899 12.1972 7.96191 12.6508C8.18163 12.8803 8.47556 13.0004 8.77344 13.0004C9.07114 13.0002 9.36533 12.8808 9.58496 12.6508L14.6758 7.31677L14.6748 7.3158L14.6875 7.3031L14.6865 7.30212C14.6954 7.29215 14.7044 7.28482 14.71 7.27771C14.7117 7.27545 14.7133 7.27285 14.7148 7.27087C14.7485 7.23203 14.7824 7.18925 14.8135 7.14099L14.8154 7.13806C14.8354 7.10658 14.8493 7.07842 14.8564 7.06384L14.8652 7.04626L14.8662 7.04431L14.8672 7.04333C14.8672 7.04333 14.868 7.04057 14.8691 7.03845C14.8709 7.03512 14.8758 7.02671 14.8799 7.01892L14.8802 7.01839C14.8888 7.002 14.9034 6.97423 14.917 6.93982V6.93787C14.9303 6.90375 14.9391 6.87285 14.9443 6.85388C14.9469 6.84458 14.9498 6.83567 14.9512 6.83044C14.9527 6.82454 14.9535 6.8228 14.9541 6.82068C14.9541 6.82068 14.9542 6.81753 14.9551 6.81482L14.958 6.80603L14.9586 6.80422C14.9631 6.78961 14.9718 6.76119 14.9785 6.72693V6.72498C15.0066 6.57705 15.0066 6.4246 14.9785 6.27673V6.27478L14.958 6.19568L14.9551 6.18591L14.9531 6.18005L14.9512 6.17224C14.9497 6.1664 14.9481 6.15677 14.9453 6.14685C14.9398 6.12695 14.9307 6.09654 14.917 6.06189C14.9032 6.02688 14.8885 5.99813 14.8799 5.98181C14.8758 5.97402 14.8709 5.96562 14.8691 5.96228L14.8564 5.93689C14.849 5.92177 14.8351 5.89372 14.8154 5.86267L14.8145 5.86072L14.7529 5.7738C14.7316 5.74659 14.7094 5.72129 14.6875 5.69763C14.6837 5.69341 14.6802 5.68854 14.6758 5.68396L9.58496 0.349976Z"
2054
+ fill="currentColor"
2055
+ />
2056
+ </svg>
2057
+ </div>
2058
+ </div>
2059
+ </div>
2060
+ </a>
2061
+ </div>
2062
+ <div
2063
+ className="c1"
2064
+ >
2065
+ <a
2066
+ className="c2"
2067
+ href="/test"
2068
+ rel={null}
2069
+ target="self"
2070
+ >
2071
+ <div
2072
+ className="c3 c4"
2073
+ >
2074
+ <div
2075
+ className="c5 lazyload"
2076
+ height="100%"
2077
+ width="100%"
2078
+ >
2079
+ <img
2080
+ alt=""
2081
+ className="c6 lazyload"
2082
+ data-lowsrc="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAPABQDASIAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAcIBAb/xAAjEAACAgIBBAIDAAAAAAAAAAABAgMEABEGBRIhMQdBE1Fh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgT/xAAaEQADAQADAAAAAAAAAAAAAAAAAQIDERIT/9oADAMBAAIRAxEAPwBzRcrjVY+0tonyT41nG8y+SLFTkgpQTVFpoqiRZGHc2/egf4RrMM12OHpNi3LsrAjO2vsKCcQtvkbTW570sMUt6xphJKnd+Ma9A78ZRWcS+SWNLpNMqAdQidVaSxErEA6ZgCNj9YZNPTOTpJW7+ovdlnLHyjgAD6GGPug+bP/Z"
2083
+ data-sizes="auto"
2084
+ data-src="@component-library/src/styleguide/assets/challenge-1.jpg"
2085
+ data-srcset="@component-library/src/styleguide/assets/challenge-1.jpg 678w"
2086
+ height="100%"
2087
+ src="@component-library/src/styleguide/assets/challenge-1.jpg"
2088
+ srcSet="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
2089
+ width="100%"
2090
+ />
2091
+ </div>
2092
+ </div>
2093
+ <div
2094
+ className="c7"
2095
+ >
2096
+ <div
2097
+ className="c8"
2098
+ >
2099
+ <p
2100
+ className="c9"
2101
+ >
2102
+ <strong>
2103
+ Load
2104
+ </strong>
2105
+ of text here
2106
+ </p>
2107
+ </div>
2108
+ <div
2109
+ className="c10"
2110
+ >
2111
+ <span
2112
+ className="c11 c12"
2113
+ >
2114
+ test go
2115
+ <img
2116
+ alt=""
2117
+ aria-hidden="true"
2118
+ className="c13 c14"
2119
+ src="mock.asset"
2120
+ />
2121
+ </span>
2122
+ <div
2123
+ className="c15 c16"
2124
+ >
2125
+ <svg
2126
+ className="c17"
2127
+ fill="none"
2128
+ height="13"
2129
+ viewBox="0 0 15 13"
2130
+ width="15"
2131
+ xmlns="http://www.w3.org/2000/svg"
2132
+ >
2133
+ <path
2134
+ d="M9.58496 0.349976C9.1395 -0.116662 8.40641 -0.116634 7.96094 0.349976C7.52803 0.803486 7.5281 1.53021 7.96094 1.98376L11.1582 5.33337H1.13672C0.48748 5.33337 0 5.87822 0 6.50037C2.15408e-05 7.1225 0.487494 7.66736 1.13672 7.66736H11.1582L7.96094 11.017C7.52806 11.4705 7.52899 12.1972 7.96191 12.6508C8.18163 12.8803 8.47556 13.0004 8.77344 13.0004C9.07114 13.0002 9.36533 12.8808 9.58496 12.6508L14.6758 7.31677L14.6748 7.3158L14.6875 7.3031L14.6865 7.30212C14.6954 7.29215 14.7044 7.28482 14.71 7.27771C14.7117 7.27545 14.7133 7.27285 14.7148 7.27087C14.7485 7.23203 14.7824 7.18925 14.8135 7.14099L14.8154 7.13806C14.8354 7.10658 14.8493 7.07842 14.8564 7.06384L14.8652 7.04626L14.8662 7.04431L14.8672 7.04333C14.8672 7.04333 14.868 7.04057 14.8691 7.03845C14.8709 7.03512 14.8758 7.02671 14.8799 7.01892L14.8802 7.01839C14.8888 7.002 14.9034 6.97423 14.917 6.93982V6.93787C14.9303 6.90375 14.9391 6.87285 14.9443 6.85388C14.9469 6.84458 14.9498 6.83567 14.9512 6.83044C14.9527 6.82454 14.9535 6.8228 14.9541 6.82068C14.9541 6.82068 14.9542 6.81753 14.9551 6.81482L14.958 6.80603L14.9586 6.80422C14.9631 6.78961 14.9718 6.76119 14.9785 6.72693V6.72498C15.0066 6.57705 15.0066 6.4246 14.9785 6.27673V6.27478L14.958 6.19568L14.9551 6.18591L14.9531 6.18005L14.9512 6.17224C14.9497 6.1664 14.9481 6.15677 14.9453 6.14685C14.9398 6.12695 14.9307 6.09654 14.917 6.06189C14.9032 6.02688 14.8885 5.99813 14.8799 5.98181C14.8758 5.97402 14.8709 5.96562 14.8691 5.96228L14.8564 5.93689C14.849 5.92177 14.8351 5.89372 14.8154 5.86267L14.8145 5.86072L14.7529 5.7738C14.7316 5.74659 14.7094 5.72129 14.6875 5.69763C14.6837 5.69341 14.6802 5.68854 14.6758 5.68396L9.58496 0.349976Z"
2135
+ fill="currentColor"
2136
+ />
2137
+ </svg>
2138
+ </div>
2139
+ </div>
2140
+ </div>
2141
+ </a>
2142
+ </div>
2143
+ <div
2144
+ className="c1"
2145
+ >
2146
+ <a
2147
+ className="c2"
2148
+ href="/test-no-image"
2149
+ rel={null}
2150
+ target="self"
2151
+ >
2152
+ <div
2153
+ className="c18"
2154
+ >
2155
+ <div
2156
+ className="c8"
2157
+ >
2158
+ <p
2159
+ className="c9"
2160
+ >
2161
+ Load of text here
2162
+ </p>
2163
+ </div>
2164
+ <div
2165
+ className="c10"
2166
+ >
2167
+ <span
2168
+ className="c11 c12"
2169
+ >
2170
+ View card
2171
+ <img
2172
+ alt=""
2173
+ aria-hidden="true"
2174
+ className="c13 c14"
2175
+ src="mock.asset"
2176
+ />
2177
+ </span>
2178
+ <div
2179
+ className="c15 c16"
2180
+ >
2181
+ <svg
2182
+ className="c17"
2183
+ fill="none"
2184
+ height="13"
2185
+ viewBox="0 0 15 13"
2186
+ width="15"
2187
+ xmlns="http://www.w3.org/2000/svg"
2188
+ >
2189
+ <path
2190
+ d="M9.58496 0.349976C9.1395 -0.116662 8.40641 -0.116634 7.96094 0.349976C7.52803 0.803486 7.5281 1.53021 7.96094 1.98376L11.1582 5.33337H1.13672C0.48748 5.33337 0 5.87822 0 6.50037C2.15408e-05 7.1225 0.487494 7.66736 1.13672 7.66736H11.1582L7.96094 11.017C7.52806 11.4705 7.52899 12.1972 7.96191 12.6508C8.18163 12.8803 8.47556 13.0004 8.77344 13.0004C9.07114 13.0002 9.36533 12.8808 9.58496 12.6508L14.6758 7.31677L14.6748 7.3158L14.6875 7.3031L14.6865 7.30212C14.6954 7.29215 14.7044 7.28482 14.71 7.27771C14.7117 7.27545 14.7133 7.27285 14.7148 7.27087C14.7485 7.23203 14.7824 7.18925 14.8135 7.14099L14.8154 7.13806C14.8354 7.10658 14.8493 7.07842 14.8564 7.06384L14.8652 7.04626L14.8662 7.04431L14.8672 7.04333C14.8672 7.04333 14.868 7.04057 14.8691 7.03845C14.8709 7.03512 14.8758 7.02671 14.8799 7.01892L14.8802 7.01839C14.8888 7.002 14.9034 6.97423 14.917 6.93982V6.93787C14.9303 6.90375 14.9391 6.87285 14.9443 6.85388C14.9469 6.84458 14.9498 6.83567 14.9512 6.83044C14.9527 6.82454 14.9535 6.8228 14.9541 6.82068C14.9541 6.82068 14.9542 6.81753 14.9551 6.81482L14.958 6.80603L14.9586 6.80422C14.9631 6.78961 14.9718 6.76119 14.9785 6.72693V6.72498C15.0066 6.57705 15.0066 6.4246 14.9785 6.27673V6.27478L14.958 6.19568L14.9551 6.18591L14.9531 6.18005L14.9512 6.17224C14.9497 6.1664 14.9481 6.15677 14.9453 6.14685C14.9398 6.12695 14.9307 6.09654 14.917 6.06189C14.9032 6.02688 14.8885 5.99813 14.8799 5.98181C14.8758 5.97402 14.8709 5.96562 14.8691 5.96228L14.8564 5.93689C14.849 5.92177 14.8351 5.89372 14.8154 5.86267L14.8145 5.86072L14.7529 5.7738C14.7316 5.74659 14.7094 5.72129 14.6875 5.69763C14.6837 5.69341 14.6802 5.68854 14.6758 5.68396L9.58496 0.349976Z"
2191
+ fill="currentColor"
2192
+ />
2193
+ </svg>
2194
+ </div>
2195
+ </div>
2196
+ </div>
2197
+ </a>
2198
+ </div>
2199
+ </div>
2200
+ `;
2201
+
2202
+ exports[`renders correctly with data prop 1`] = `
2203
+ .c9 {
2204
+ font-family: 'Montserrat',Helvetica,Arial,sans-serif;
2205
+ font-weight: 400;
2206
+ text-transform: inherit;
2207
+ -webkit-letter-spacing: 0;
2208
+ -moz-letter-spacing: 0;
2209
+ -ms-letter-spacing: 0;
2210
+ letter-spacing: 0;
2211
+ font-size: 1rem;
2212
+ line-height: 1.25rem;
2213
+ }
2214
+
2215
+ .c9 span {
2216
+ font-size: inherit;
2217
+ line-height: inherit;
2218
+ }
2219
+
2220
+ .c5 {
2221
+ display: block;
2222
+ width: 100%;
2223
+ height: 100%;
2224
+ position: relative;
2225
+ }
2226
+
2227
+ .c6 {
2228
+ width: 100%;
2229
+ height: 100%;
2230
+ display: block;
2231
+ object-fit: cover;
2232
+ }
2233
+
2234
+ .c17 {
2235
+ display: inline-block;
2236
+ color: #FFFFFF;
2237
+ fill: currentColor;
2238
+ }
2239
+
2240
+ .c4 {
2241
+ width: 100%;
2242
+ overflow: hidden;
2243
+ -webkit-flex-shrink: 0;
2244
+ -ms-flex-negative: 0;
2245
+ flex-shrink: 0;
2246
+ background: transparent;
2247
+ border-radius: 1rem 1rem 0 0;
2248
+ }
2249
+
2250
+ .c4 img {
2251
+ width: 100%;
2252
+ height: auto;
2253
+ object-fit: cover;
2254
+ display: block;
2255
+ }
2256
+
2257
+ .c12 {
2258
+ font-family: 'Montserrat',Helvetica,Arial,sans-serif;
2259
+ font-weight: 400;
2260
+ text-transform: inherit;
2261
+ -webkit-letter-spacing: 0;
2262
+ -moz-letter-spacing: 0;
2263
+ -ms-letter-spacing: 0;
2264
+ letter-spacing: 0;
2265
+ font-size: 1rem;
2266
+ line-height: 1.25rem;
2267
+ color: #969598;
2268
+ font-weight: bold;
2269
+ -webkit-text-decoration: none;
2270
+ text-decoration: none;
2271
+ position: relative;
2272
+ display: inline-block;
2273
+ }
2274
+
2275
+ .c14 {
2276
+ height: 4px;
2277
+ width: 100%;
2278
+ position: absolute;
2279
+ left: 0;
2280
+ bottom: -5px;
2281
+ -webkit-transition: opacity 0.15s 0.1s;
2282
+ transition: opacity 0.15s 0.1s;
2283
+ opacity: 0;
2284
+ pointer-events: none;
2285
+ }
2286
+
2287
+ .c16 {
2288
+ width: 32px;
2289
+ height: 32px;
2290
+ border-radius: 50%;
2291
+ background: #969598;
2292
+ display: -webkit-box;
2293
+ display: -webkit-flex;
2294
+ display: -ms-flexbox;
2295
+ display: flex;
2296
+ -webkit-align-items: center;
2297
+ -webkit-box-align: center;
2298
+ -ms-flex-align: center;
2299
+ align-items: center;
2300
+ -webkit-box-pack: center;
2301
+ -webkit-justify-content: center;
2302
+ -ms-flex-pack: center;
2303
+ justify-content: center;
2304
+ -webkit-flex-shrink: 0;
2305
+ -ms-flex-negative: 0;
2306
+ flex-shrink: 0;
2307
+ }
2308
+
2309
+ .c2 {
2310
+ display: -webkit-box;
2311
+ display: -webkit-flex;
2312
+ display: -ms-flexbox;
2313
+ display: flex;
2314
+ position: relative;
2315
+ -webkit-flex-direction: column;
2316
+ -ms-flex-direction: column;
2317
+ flex-direction: column;
2318
+ width: 100%;
2319
+ -webkit-flex: 1 1 auto;
2320
+ -ms-flex: 1 1 auto;
2321
+ flex: 1 1 auto;
2322
+ background: transparent;
2323
+ border-radius: 1rem;
2324
+ box-shadow: 0 0 1rem rgba(0,0,0,0.15);
2325
+ -webkit-text-decoration: none;
2326
+ text-decoration: none;
2327
+ overflow: hidden;
2328
+ cursor: pointer;
2329
+ box-sizing: border-box;
2330
+ }
2331
+
2332
+ .c2 img {
2333
+ -webkit-transform: scale(1.02);
2334
+ -ms-transform: scale(1.02);
2335
+ transform: scale(1.02);
2336
+ -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.68,-1.15,0.265,2.35);
2337
+ -webkit-transition: transform 0.4s cubic-bezier(0.68,-1.15,0.265,2.35);
2338
+ transition: transform 0.4s cubic-bezier(0.68,-1.15,0.265,2.35);
2339
+ }
2340
+
2341
+ .c1 {
2342
+ width: 100%;
2343
+ -webkit-flex-shrink: 0;
2344
+ -ms-flex-negative: 0;
2345
+ flex-shrink: 0;
2346
+ display: -webkit-box;
2347
+ display: -webkit-flex;
2348
+ display: -ms-flexbox;
2349
+ display: flex;
2350
+ -webkit-flex-direction: column;
2351
+ -ms-flex-direction: column;
2352
+ flex-direction: column;
2353
+ -webkit-align-self: stretch;
2354
+ -ms-flex-item-align: stretch;
2355
+ align-self: stretch;
2356
+ }
2357
+
2358
+ .c7 {
2359
+ width: 100%;
2360
+ background: #FFFFFF;
2361
+ display: -webkit-box;
2362
+ display: -webkit-flex;
2363
+ display: -ms-flexbox;
2364
+ display: flex;
2365
+ -webkit-flex-direction: column;
2366
+ -ms-flex-direction: column;
2367
+ flex-direction: column;
2368
+ padding: 2rem;
2369
+ -webkit-flex: 1;
2370
+ -ms-flex: 1;
2371
+ flex: 1;
2372
+ min-height: 0;
2373
+ border-radius: 0 0 1rem 1rem;
2374
+ }
2375
+
2376
+ .c18 {
2377
+ width: 100%;
2378
+ background: #BECCF9;
2379
+ display: -webkit-box;
2380
+ display: -webkit-flex;
2381
+ display: -ms-flexbox;
2382
+ display: flex;
2383
+ -webkit-flex-direction: column;
2384
+ -ms-flex-direction: column;
2385
+ flex-direction: column;
2386
+ padding: 2rem;
2387
+ -webkit-flex: 1;
2388
+ -ms-flex: 1;
2389
+ flex: 1;
2390
+ min-height: 0;
2391
+ border-radius: 0 0 1rem 1rem;
2392
+ }
2393
+
2394
+ .c8 {
2395
+ -webkit-flex: 1;
2396
+ -ms-flex: 1;
2397
+ flex: 1;
2398
+ display: -webkit-box;
2399
+ display: -webkit-flex;
2400
+ display: -ms-flexbox;
2401
+ display: flex;
2402
+ -webkit-flex-direction: column;
2403
+ -ms-flex-direction: column;
2404
+ flex-direction: column;
2405
+ min-height: 0;
2406
+ }
2407
+
2408
+ .c10 {
2409
+ width: 100%;
2410
+ display: -webkit-box;
2411
+ display: -webkit-flex;
2412
+ display: -ms-flexbox;
2413
+ display: flex;
2414
+ -webkit-flex-direction: row;
2415
+ -ms-flex-direction: row;
2416
+ flex-direction: row;
2417
+ -webkit-align-items: center;
2418
+ -webkit-box-align: center;
2419
+ -ms-flex-align: center;
2420
+ align-items: center;
2421
+ -webkit-box-pack: justify;
2422
+ -webkit-justify-content: space-between;
2423
+ -ms-flex-pack: justify;
2424
+ justify-content: space-between;
2425
+ margin-top: auto;
2426
+ padding-top: 1rem;
2427
+ }
2428
+
2429
+ .c0 {
2430
+ display: -webkit-box;
2431
+ display: -webkit-flex;
2432
+ display: -ms-flexbox;
2433
+ display: flex;
2434
+ -webkit-flex-direction: column;
2435
+ -ms-flex-direction: column;
2436
+ flex-direction: column;
2437
+ width: 100%;
2438
+ background: transparent;
2439
+ gap: 1rem;
2440
+ }
2441
+
2442
+ @media (min-width:740px) {
2443
+ .c9 {
2444
+ font-size: 1rem;
2445
+ line-height: 1.25rem;
2446
+ }
2447
+ }
2448
+
2449
+ @media (min-width:1024px) {
2450
+ .c9 {
2451
+ font-size: 1.125rem;
2452
+ line-height: 1.375rem;
2453
+ }
2454
+ }
2455
+
2456
+ @media (min-width:740px) {
2457
+ .c4 img {
2458
+ -webkit-transition: -webkit-transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
2459
+ -webkit-transition: transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
2460
+ transition: transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
2461
+ -webkit-transform-origin: center;
2462
+ -ms-transform-origin: center;
2463
+ transform-origin: center;
2464
+ }
2465
+
2466
+ .c4 img:hover,
2467
+ .c4 img:focus {
2468
+ -webkit-transform: scale(1.08);
2469
+ -ms-transform: scale(1.08);
2470
+ transform: scale(1.08);
2471
+ }
2472
+ }
2473
+
2474
+ @media (min-width:740px) {
2475
+ .c12 {
2476
+ font-size: 1rem;
2477
+ line-height: 1.25rem;
2478
+ }
2479
+ }
2480
+
2481
+ @media (min-width:1024px) {
2482
+ .c12 {
2483
+ font-size: 1.125rem;
2484
+ line-height: 1.375rem;
2485
+ }
2486
+ }
2487
+
2488
+ @media (min-width:740px) {
2489
+ .c2 {
2490
+ -webkit-transition: -webkit-transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
2491
+ -webkit-transition: transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
2492
+ transition: transform 0.30000000000000004s cubic-bezier(0.68,-0.8500000000000001,0.265,1.9500000000000002);
2493
+ -webkit-transform-origin: center;
2494
+ -ms-transform-origin: center;
2495
+ transform-origin: center;
2496
+ }
2497
+
2498
+ .c2:hover,
2499
+ .c2:focus {
2500
+ -webkit-transform: translateY(-0.02px);
2501
+ -ms-transform: translateY(-0.02px);
2502
+ transform: translateY(-0.02px);
2503
+ }
2504
+
2505
+ .c2:hover {
2506
+ box-shadow: 0 0 1.5rem rgba(0,0,0,0.25);
2507
+ }
2508
+
2509
+ .c2:hover .c3 img {
2510
+ -webkit-transform: scale(1.1);
2511
+ -ms-transform: scale(1.1);
2512
+ transform: scale(1.1);
2513
+ }
2514
+
2515
+ .c2:hover .c11 {
2516
+ color: #E52630;
2517
+ -webkit-text-decoration: none;
2518
+ text-decoration: none;
2519
+ }
2520
+
2521
+ .c2:hover .c13 {
2522
+ opacity: 1;
2523
+ }
2524
+
2525
+ .c2:hover .c15 {
2526
+ background: #E52630;
2527
+ }
2528
+ }
2529
+
2530
+ @media (max-width:739px) {
2531
+ .c1 {
2532
+ max-width: 309px;
2533
+ margin-left: auto;
2534
+ margin-right: auto;
2535
+ }
2536
+ }
2537
+
2538
+ @media (min-width:740px) and (max-width:1023px) {
2539
+ .c1 {
2540
+ -webkit-align-self: stretch;
2541
+ -ms-flex-item-align: stretch;
2542
+ align-self: stretch;
2543
+ -webkit-flex: 0 0 100%;
2544
+ -ms-flex: 0 0 100%;
2545
+ flex: 0 0 100%;
2546
+ max-width: 309px;
2547
+ margin-left: auto;
2548
+ margin-right: auto;
2549
+ }
2550
+ }
2551
+
2552
+ @media (min-width:1024px) and (max-width:1439px) {
2553
+ .c1 {
2554
+ -webkit-flex-basis: calc(33.333% - 1rem);
2555
+ -ms-flex-preferred-size: calc(33.333% - 1rem);
2556
+ flex-basis: calc(33.333% - 1rem);
2557
+ min-width: 286px;
2558
+ max-width: 371px;
2559
+ -webkit-align-self: stretch;
2560
+ -ms-flex-item-align: stretch;
2561
+ align-self: stretch;
2562
+ }
2563
+ }
2564
+
2565
+ @media (min-width:1440px) {
2566
+ .c1 {
2567
+ -webkit-flex-basis: unset;
2568
+ -ms-flex-preferred-size: unset;
2569
+ flex-basis: unset;
2570
+ width: 371px;
2571
+ -webkit-align-self: stretch;
2572
+ -ms-flex-item-align: stretch;
2573
+ align-self: stretch;
2574
+ }
2575
+ }
2576
+
2577
+ @media (max-width:739px) {
2578
+ .c0 {
2579
+ -webkit-flex-direction: column;
2580
+ -ms-flex-direction: column;
2581
+ flex-direction: column;
2582
+ background: transparent;
2583
+ }
2584
+ }
2585
+
2586
+ @media (min-width:740px) {
2587
+ .c0 {
2588
+ -webkit-flex-direction: row;
2589
+ -ms-flex-direction: row;
2590
+ flex-direction: row;
2591
+ -webkit-flex-wrap: wrap;
2592
+ -ms-flex-wrap: wrap;
2593
+ flex-wrap: wrap;
2594
+ -webkit-box-pack: center;
2595
+ -webkit-justify-content: center;
2596
+ -ms-flex-pack: center;
2597
+ justify-content: center;
2598
+ -webkit-align-items: stretch;
2599
+ -webkit-box-align: stretch;
2600
+ -ms-flex-align: stretch;
2601
+ align-items: stretch;
2602
+ width: -webkit-fit-content;
2603
+ width: -moz-fit-content;
2604
+ width: fit-content;
2605
+ max-width: 100%;
2606
+ margin: 0 auto;
2607
+ }
2608
+ }
2609
+
2610
+ @media (min-width:1440px) {
2611
+ .c0 {
2612
+ display: grid;
2613
+ -webkit-box-pack: center;
2614
+ -webkit-justify-content: center;
2615
+ -ms-flex-pack: center;
2616
+ justify-content: center;
2617
+ -webkit-align-items: stretch;
2618
+ -webkit-box-align: stretch;
2619
+ -ms-flex-align: stretch;
2620
+ align-items: stretch;
2621
+ grid-template-columns: repeat(3,minmax(0,371px));
2622
+ width: 100%;
2623
+ margin: 0 auto;
2624
+ max-width: 100%;
2625
+ }
2626
+ }
2627
+
2628
+ <div
2629
+ className="c0"
2630
+ >
2631
+ <div
2632
+ className="c1"
2633
+ >
2634
+ <a
2635
+ className="c2"
2636
+ href="/test"
2637
+ rel={null}
2638
+ target="self"
2639
+ >
2640
+ <div
2641
+ className="c3 c4"
2642
+ >
2643
+ <div
2644
+ className="c5 lazyload"
2645
+ height="100%"
2646
+ width="100%"
2647
+ >
2648
+ <img
2649
+ alt=""
2650
+ className="c6 lazyload"
2651
+ data-lowsrc="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAPABQDASIAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAcIBAb/xAAjEAACAgIBBAIDAAAAAAAAAAABAgMEABEGBRIhMQdBE1Fh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgT/xAAaEQADAQADAAAAAAAAAAAAAAAAAQIDERIT/9oADAMBAAIRAxEAPwBzRcrjVY+0tonyT41nG8y+SLFTkgpQTVFpoqiRZGHc2/egf4RrMM12OHpNi3LsrAjO2vsKCcQtvkbTW570sMUt6xphJKnd+Ma9A78ZRWcS+SWNLpNMqAdQidVaSxErEA6ZgCNj9YZNPTOTpJW7+ovdlnLHyjgAD6GGPug+bP/Z"
2652
+ data-sizes="auto"
2653
+ data-src="@component-library/src/styleguide/assets/challenge-1.jpg"
2654
+ data-srcset="@component-library/src/styleguide/assets/challenge-1.jpg 678w"
2655
+ height="100%"
2656
+ src="@component-library/src/styleguide/assets/challenge-1.jpg"
2657
+ srcSet="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
2658
+ width="100%"
2659
+ />
2660
+ </div>
2661
+ </div>
2662
+ <div
2663
+ className="c7"
2664
+ >
2665
+ <div
2666
+ className="c8"
2667
+ >
2668
+ <p
2669
+ className="c9"
2670
+ >
2671
+ <strong>
2672
+ Load
2673
+ </strong>
2674
+ of text here
2675
+ </p>
2676
+ </div>
2677
+ <div
2678
+ className="c10"
2679
+ >
2680
+ <span
2681
+ className="c11 c12"
2682
+ >
2683
+ test go
2684
+ <img
2685
+ alt=""
2686
+ aria-hidden="true"
2687
+ className="c13 c14"
2688
+ src="mock.asset"
2689
+ />
2690
+ </span>
2691
+ <div
2692
+ className="c15 c16"
2693
+ >
2694
+ <svg
2695
+ className="c17"
2696
+ fill="none"
2697
+ height="13"
2698
+ viewBox="0 0 15 13"
2699
+ width="15"
2700
+ xmlns="http://www.w3.org/2000/svg"
2701
+ >
2702
+ <path
2703
+ d="M9.58496 0.349976C9.1395 -0.116662 8.40641 -0.116634 7.96094 0.349976C7.52803 0.803486 7.5281 1.53021 7.96094 1.98376L11.1582 5.33337H1.13672C0.48748 5.33337 0 5.87822 0 6.50037C2.15408e-05 7.1225 0.487494 7.66736 1.13672 7.66736H11.1582L7.96094 11.017C7.52806 11.4705 7.52899 12.1972 7.96191 12.6508C8.18163 12.8803 8.47556 13.0004 8.77344 13.0004C9.07114 13.0002 9.36533 12.8808 9.58496 12.6508L14.6758 7.31677L14.6748 7.3158L14.6875 7.3031L14.6865 7.30212C14.6954 7.29215 14.7044 7.28482 14.71 7.27771C14.7117 7.27545 14.7133 7.27285 14.7148 7.27087C14.7485 7.23203 14.7824 7.18925 14.8135 7.14099L14.8154 7.13806C14.8354 7.10658 14.8493 7.07842 14.8564 7.06384L14.8652 7.04626L14.8662 7.04431L14.8672 7.04333C14.8672 7.04333 14.868 7.04057 14.8691 7.03845C14.8709 7.03512 14.8758 7.02671 14.8799 7.01892L14.8802 7.01839C14.8888 7.002 14.9034 6.97423 14.917 6.93982V6.93787C14.9303 6.90375 14.9391 6.87285 14.9443 6.85388C14.9469 6.84458 14.9498 6.83567 14.9512 6.83044C14.9527 6.82454 14.9535 6.8228 14.9541 6.82068C14.9541 6.82068 14.9542 6.81753 14.9551 6.81482L14.958 6.80603L14.9586 6.80422C14.9631 6.78961 14.9718 6.76119 14.9785 6.72693V6.72498C15.0066 6.57705 15.0066 6.4246 14.9785 6.27673V6.27478L14.958 6.19568L14.9551 6.18591L14.9531 6.18005L14.9512 6.17224C14.9497 6.1664 14.9481 6.15677 14.9453 6.14685C14.9398 6.12695 14.9307 6.09654 14.917 6.06189C14.9032 6.02688 14.8885 5.99813 14.8799 5.98181C14.8758 5.97402 14.8709 5.96562 14.8691 5.96228L14.8564 5.93689C14.849 5.92177 14.8351 5.89372 14.8154 5.86267L14.8145 5.86072L14.7529 5.7738C14.7316 5.74659 14.7094 5.72129 14.6875 5.69763C14.6837 5.69341 14.6802 5.68854 14.6758 5.68396L9.58496 0.349976Z"
2704
+ fill="currentColor"
2705
+ />
2706
+ </svg>
2707
+ </div>
2708
+ </div>
2709
+ </div>
2710
+ </a>
2711
+ </div>
2712
+ <div
2713
+ className="c1"
2714
+ >
2715
+ <a
2716
+ className="c2"
2717
+ href="/test"
2718
+ rel={null}
2719
+ target="self"
2720
+ >
2721
+ <div
2722
+ className="c3 c4"
2723
+ >
2724
+ <div
2725
+ className="c5 lazyload"
2726
+ height="100%"
2727
+ width="100%"
2728
+ >
2729
+ <img
2730
+ alt=""
2731
+ className="c6 lazyload"
2732
+ data-lowsrc="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAPABQDASIAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAcIBAb/xAAjEAACAgIBBAIDAAAAAAAAAAABAgMEABEGBRIhMQdBE1Fh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgT/xAAaEQADAQADAAAAAAAAAAAAAAAAAQIDERIT/9oADAMBAAIRAxEAPwBzRcrjVY+0tonyT41nG8y+SLFTkgpQTVFpoqiRZGHc2/egf4RrMM12OHpNi3LsrAjO2vsKCcQtvkbTW570sMUt6xphJKnd+Ma9A78ZRWcS+SWNLpNMqAdQidVaSxErEA6ZgCNj9YZNPTOTpJW7+ovdlnLHyjgAD6GGPug+bP/Z"
2733
+ data-sizes="auto"
2734
+ data-src="@component-library/src/styleguide/assets/challenge-1.jpg"
2735
+ data-srcset="@component-library/src/styleguide/assets/challenge-1.jpg 678w"
2736
+ height="100%"
2737
+ src="@component-library/src/styleguide/assets/challenge-1.jpg"
2738
+ srcSet="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
2739
+ width="100%"
2740
+ />
2741
+ </div>
2742
+ </div>
2743
+ <div
2744
+ className="c7"
2745
+ >
2746
+ <div
2747
+ className="c8"
2748
+ >
2749
+ <p
2750
+ className="c9"
2751
+ >
2752
+ <strong>
2753
+ Load
2754
+ </strong>
2755
+ of text here
2756
+ </p>
2757
+ </div>
2758
+ <div
2759
+ className="c10"
2760
+ >
2761
+ <span
2762
+ className="c11 c12"
2763
+ >
2764
+ test go
2765
+ <img
2766
+ alt=""
2767
+ aria-hidden="true"
2768
+ className="c13 c14"
2769
+ src="mock.asset"
2770
+ />
2771
+ </span>
2772
+ <div
2773
+ className="c15 c16"
2774
+ >
2775
+ <svg
2776
+ className="c17"
2777
+ fill="none"
2778
+ height="13"
2779
+ viewBox="0 0 15 13"
2780
+ width="15"
2781
+ xmlns="http://www.w3.org/2000/svg"
2782
+ >
2783
+ <path
2784
+ d="M9.58496 0.349976C9.1395 -0.116662 8.40641 -0.116634 7.96094 0.349976C7.52803 0.803486 7.5281 1.53021 7.96094 1.98376L11.1582 5.33337H1.13672C0.48748 5.33337 0 5.87822 0 6.50037C2.15408e-05 7.1225 0.487494 7.66736 1.13672 7.66736H11.1582L7.96094 11.017C7.52806 11.4705 7.52899 12.1972 7.96191 12.6508C8.18163 12.8803 8.47556 13.0004 8.77344 13.0004C9.07114 13.0002 9.36533 12.8808 9.58496 12.6508L14.6758 7.31677L14.6748 7.3158L14.6875 7.3031L14.6865 7.30212C14.6954 7.29215 14.7044 7.28482 14.71 7.27771C14.7117 7.27545 14.7133 7.27285 14.7148 7.27087C14.7485 7.23203 14.7824 7.18925 14.8135 7.14099L14.8154 7.13806C14.8354 7.10658 14.8493 7.07842 14.8564 7.06384L14.8652 7.04626L14.8662 7.04431L14.8672 7.04333C14.8672 7.04333 14.868 7.04057 14.8691 7.03845C14.8709 7.03512 14.8758 7.02671 14.8799 7.01892L14.8802 7.01839C14.8888 7.002 14.9034 6.97423 14.917 6.93982V6.93787C14.9303 6.90375 14.9391 6.87285 14.9443 6.85388C14.9469 6.84458 14.9498 6.83567 14.9512 6.83044C14.9527 6.82454 14.9535 6.8228 14.9541 6.82068C14.9541 6.82068 14.9542 6.81753 14.9551 6.81482L14.958 6.80603L14.9586 6.80422C14.9631 6.78961 14.9718 6.76119 14.9785 6.72693V6.72498C15.0066 6.57705 15.0066 6.4246 14.9785 6.27673V6.27478L14.958 6.19568L14.9551 6.18591L14.9531 6.18005L14.9512 6.17224C14.9497 6.1664 14.9481 6.15677 14.9453 6.14685C14.9398 6.12695 14.9307 6.09654 14.917 6.06189C14.9032 6.02688 14.8885 5.99813 14.8799 5.98181C14.8758 5.97402 14.8709 5.96562 14.8691 5.96228L14.8564 5.93689C14.849 5.92177 14.8351 5.89372 14.8154 5.86267L14.8145 5.86072L14.7529 5.7738C14.7316 5.74659 14.7094 5.72129 14.6875 5.69763C14.6837 5.69341 14.6802 5.68854 14.6758 5.68396L9.58496 0.349976Z"
2785
+ fill="currentColor"
2786
+ />
2787
+ </svg>
2788
+ </div>
2789
+ </div>
2790
+ </div>
2791
+ </a>
2792
+ </div>
2793
+ <div
2794
+ className="c1"
2795
+ >
2796
+ <a
2797
+ className="c2"
2798
+ href="/test"
2799
+ rel={null}
2800
+ target="self"
2801
+ >
2802
+ <div
2803
+ className="c3 c4"
2804
+ >
2805
+ <div
2806
+ className="c5 lazyload"
2807
+ height="100%"
2808
+ width="100%"
2809
+ >
2810
+ <img
2811
+ alt=""
2812
+ className="c6 lazyload"
2813
+ data-lowsrc="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAPABQDASIAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAcIBAb/xAAjEAACAgIBBAIDAAAAAAAAAAABAgMEABEGBRIhMQdBE1Fh/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgT/xAAaEQADAQADAAAAAAAAAAAAAAAAAQIDERIT/9oADAMBAAIRAxEAPwBzRcrjVY+0tonyT41nG8y+SLFTkgpQTVFpoqiRZGHc2/egf4RrMM12OHpNi3LsrAjO2vsKCcQtvkbTW570sMUt6xphJKnd+Ma9A78ZRWcS+SWNLpNMqAdQidVaSxErEA6ZgCNj9YZNPTOTpJW7+ovdlnLHyjgAD6GGPug+bP/Z"
2814
+ data-sizes="auto"
2815
+ data-src="@component-library/src/styleguide/assets/challenge-1.jpg"
2816
+ data-srcset="@component-library/src/styleguide/assets/challenge-1.jpg 678w"
2817
+ height="100%"
2818
+ src="@component-library/src/styleguide/assets/challenge-1.jpg"
2819
+ srcSet="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
2820
+ width="100%"
2821
+ />
2822
+ </div>
2823
+ </div>
2824
+ <div
2825
+ className="c7"
2826
+ >
2827
+ <div
2828
+ className="c8"
2829
+ >
2830
+ <p
2831
+ className="c9"
2832
+ >
2833
+ <strong>
2834
+ Load
2835
+ </strong>
2836
+ of text here
2837
+ </p>
2838
+ </div>
2839
+ <div
2840
+ className="c10"
2841
+ >
2842
+ <span
2843
+ className="c11 c12"
2844
+ >
2845
+ test go
2846
+ <img
2847
+ alt=""
2848
+ aria-hidden="true"
2849
+ className="c13 c14"
2850
+ src="mock.asset"
2851
+ />
2852
+ </span>
2853
+ <div
2854
+ className="c15 c16"
2855
+ >
2856
+ <svg
2857
+ className="c17"
2858
+ fill="none"
2859
+ height="13"
2860
+ viewBox="0 0 15 13"
2861
+ width="15"
2862
+ xmlns="http://www.w3.org/2000/svg"
2863
+ >
2864
+ <path
2865
+ d="M9.58496 0.349976C9.1395 -0.116662 8.40641 -0.116634 7.96094 0.349976C7.52803 0.803486 7.5281 1.53021 7.96094 1.98376L11.1582 5.33337H1.13672C0.48748 5.33337 0 5.87822 0 6.50037C2.15408e-05 7.1225 0.487494 7.66736 1.13672 7.66736H11.1582L7.96094 11.017C7.52806 11.4705 7.52899 12.1972 7.96191 12.6508C8.18163 12.8803 8.47556 13.0004 8.77344 13.0004C9.07114 13.0002 9.36533 12.8808 9.58496 12.6508L14.6758 7.31677L14.6748 7.3158L14.6875 7.3031L14.6865 7.30212C14.6954 7.29215 14.7044 7.28482 14.71 7.27771C14.7117 7.27545 14.7133 7.27285 14.7148 7.27087C14.7485 7.23203 14.7824 7.18925 14.8135 7.14099L14.8154 7.13806C14.8354 7.10658 14.8493 7.07842 14.8564 7.06384L14.8652 7.04626L14.8662 7.04431L14.8672 7.04333C14.8672 7.04333 14.868 7.04057 14.8691 7.03845C14.8709 7.03512 14.8758 7.02671 14.8799 7.01892L14.8802 7.01839C14.8888 7.002 14.9034 6.97423 14.917 6.93982V6.93787C14.9303 6.90375 14.9391 6.87285 14.9443 6.85388C14.9469 6.84458 14.9498 6.83567 14.9512 6.83044C14.9527 6.82454 14.9535 6.8228 14.9541 6.82068C14.9541 6.82068 14.9542 6.81753 14.9551 6.81482L14.958 6.80603L14.9586 6.80422C14.9631 6.78961 14.9718 6.76119 14.9785 6.72693V6.72498C15.0066 6.57705 15.0066 6.4246 14.9785 6.27673V6.27478L14.958 6.19568L14.9551 6.18591L14.9531 6.18005L14.9512 6.17224C14.9497 6.1664 14.9481 6.15677 14.9453 6.14685C14.9398 6.12695 14.9307 6.09654 14.917 6.06189C14.9032 6.02688 14.8885 5.99813 14.8799 5.98181C14.8758 5.97402 14.8709 5.96562 14.8691 5.96228L14.8564 5.93689C14.849 5.92177 14.8351 5.89372 14.8154 5.86267L14.8145 5.86072L14.7529 5.7738C14.7316 5.74659 14.7094 5.72129 14.6875 5.69763C14.6837 5.69341 14.6802 5.68854 14.6758 5.68396L9.58496 0.349976Z"
2866
+ fill="currentColor"
2867
+ />
2868
+ </svg>
2869
+ </div>
2870
+ </div>
2871
+ </div>
2872
+ </a>
2873
+ </div>
2874
+ <div
2875
+ className="c1"
2876
+ >
2877
+ <a
2878
+ className="c2"
2879
+ href="/test-no-image"
2880
+ rel={null}
2881
+ target="self"
2882
+ >
2883
+ <div
2884
+ className="c18"
2885
+ >
2886
+ <div
2887
+ className="c8"
2888
+ >
2889
+ <p
2890
+ className="c9"
2891
+ >
2892
+ Load of text here
2893
+ </p>
2894
+ </div>
2895
+ <div
2896
+ className="c10"
2897
+ >
2898
+ <span
2899
+ className="c11 c12"
2900
+ >
2901
+ View card
2902
+ <img
2903
+ alt=""
2904
+ aria-hidden="true"
2905
+ className="c13 c14"
2906
+ src="mock.asset"
2907
+ />
2908
+ </span>
2909
+ <div
2910
+ className="c15 c16"
2911
+ >
2912
+ <svg
2913
+ className="c17"
2914
+ fill="none"
2915
+ height="13"
2916
+ viewBox="0 0 15 13"
2917
+ width="15"
2918
+ xmlns="http://www.w3.org/2000/svg"
2919
+ >
2920
+ <path
2921
+ d="M9.58496 0.349976C9.1395 -0.116662 8.40641 -0.116634 7.96094 0.349976C7.52803 0.803486 7.5281 1.53021 7.96094 1.98376L11.1582 5.33337H1.13672C0.48748 5.33337 0 5.87822 0 6.50037C2.15408e-05 7.1225 0.487494 7.66736 1.13672 7.66736H11.1582L7.96094 11.017C7.52806 11.4705 7.52899 12.1972 7.96191 12.6508C8.18163 12.8803 8.47556 13.0004 8.77344 13.0004C9.07114 13.0002 9.36533 12.8808 9.58496 12.6508L14.6758 7.31677L14.6748 7.3158L14.6875 7.3031L14.6865 7.30212C14.6954 7.29215 14.7044 7.28482 14.71 7.27771C14.7117 7.27545 14.7133 7.27285 14.7148 7.27087C14.7485 7.23203 14.7824 7.18925 14.8135 7.14099L14.8154 7.13806C14.8354 7.10658 14.8493 7.07842 14.8564 7.06384L14.8652 7.04626L14.8662 7.04431L14.8672 7.04333C14.8672 7.04333 14.868 7.04057 14.8691 7.03845C14.8709 7.03512 14.8758 7.02671 14.8799 7.01892L14.8802 7.01839C14.8888 7.002 14.9034 6.97423 14.917 6.93982V6.93787C14.9303 6.90375 14.9391 6.87285 14.9443 6.85388C14.9469 6.84458 14.9498 6.83567 14.9512 6.83044C14.9527 6.82454 14.9535 6.8228 14.9541 6.82068C14.9541 6.82068 14.9542 6.81753 14.9551 6.81482L14.958 6.80603L14.9586 6.80422C14.9631 6.78961 14.9718 6.76119 14.9785 6.72693V6.72498C15.0066 6.57705 15.0066 6.4246 14.9785 6.27673V6.27478L14.958 6.19568L14.9551 6.18591L14.9531 6.18005L14.9512 6.17224C14.9497 6.1664 14.9481 6.15677 14.9453 6.14685C14.9398 6.12695 14.9307 6.09654 14.917 6.06189C14.9032 6.02688 14.8885 5.99813 14.8799 5.98181C14.8758 5.97402 14.8709 5.96562 14.8691 5.96228L14.8564 5.93689C14.849 5.92177 14.8351 5.89372 14.8154 5.86267L14.8145 5.86072L14.7529 5.7738C14.7316 5.74659 14.7094 5.72129 14.6875 5.69763C14.6837 5.69341 14.6802 5.68854 14.6758 5.68396L9.58496 0.349976Z"
2922
+ fill="currentColor"
2923
+ />
2924
+ </svg>
2925
+ </div>
2926
+ </div>
2927
+ </div>
2928
+ </a>
2929
+ </div>
2930
+ </div>
2931
+ `;