@newskit-render/core 1.50.1 → 1.63.2

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 (50) hide show
  1. package/CHANGELOG.md +324 -0
  2. package/__pacts__/spec/newskitApi.consumer.pact.ts +19 -32
  3. package/__tests__/pages/[articleSlug].test.tsx +12 -8
  4. package/__tests__/pages/__snapshots__/brightcove.test.tsx.snap +20 -0
  5. package/__tests__/pages/__snapshots__/home.test.tsx.snap +241 -1846
  6. package/__tests__/pages/brightcove.test.tsx +34 -0
  7. package/__tests__/pages/home.test.tsx +22 -12
  8. package/__tests__/pages/mocks.ts +29 -0
  9. package/__tests__/pages/relatedArticles.test.tsx +76 -0
  10. package/components/article/RelatedArticles.tsx +48 -55
  11. package/components/article/__tests__/__snapshots__/index.test.tsx.snap +414 -3366
  12. package/components/article/__tests__/index.test.tsx +46 -2
  13. package/components/article/index.tsx +28 -15
  14. package/components/footer/__snapshots__/index.test.tsx.snap +37 -271
  15. package/components/header/index.tsx +7 -0
  16. package/components/section/layouts/Rows.tsx +36 -17
  17. package/components/section/layouts/__tests__/Rows.test.tsx +12 -0
  18. package/components/section/layouts/__tests__/__snapshots__/Lead.test.tsx.snap +36 -530
  19. package/components/section/layouts/__tests__/__snapshots__/SectionTitle.test.tsx.snap +42 -766
  20. package/components/section/layouts/types.ts +3 -0
  21. package/config/index.ts +85 -0
  22. package/constants/index.ts +3 -1
  23. package/cypress/e2e/account/accessibility.spec.js +14 -17
  24. package/cypress/e2e/account/account-subscription.spec.js +9 -8
  25. package/cypress/e2e/account/payment-failer.spec.js +3 -3
  26. package/cypress/support/commands.js +2 -2
  27. package/helpers/__tests__/getUser.test.ts +7 -8
  28. package/helpers/logger.ts +3 -1
  29. package/helpers/mocks/articleMock.ts +1 -1
  30. package/helpers/mocks/getUniversalArticleMock.ts +13 -0
  31. package/helpers/setupTests.ts +4 -0
  32. package/jest.config.js +22 -19
  33. package/package.json +11 -11
  34. package/pages/[section]/[articleId]/[articleSlug].tsx +9 -4
  35. package/pages/[section]/[articleId]/relatedArticles.tsx +85 -0
  36. package/pages/_app.tsx +4 -3
  37. package/pages/_document.tsx +17 -18
  38. package/pages/api/auth/[...nextauth].ts +2 -3
  39. package/pages/api/feed.ts +7 -3
  40. package/pages/api/news-sitemap.ts +4 -6
  41. package/pages/api/sitemap.ts +10 -7
  42. package/pages/help-hub/[id]/index.tsx +11 -0
  43. package/pages/help-hub/index.tsx +11 -0
  44. package/pages/index.tsx +1 -0
  45. package/pages/player/brightcove.tsx +19 -0
  46. package/pages/preview/[articleId]/version/[versionId]/index.tsx +9 -4
  47. package/public/icon.png +0 -0
  48. package/queries/getRadioPosts.ts +1 -1
  49. package/queries/getUniversalArticle.ts +13 -0
  50. package/temp/header.tsx +7 -0
@@ -2,441 +2,36 @@
2
2
 
3
3
  exports[`Article should render tile and sub title 1`] = `
4
4
  <DocumentFragment>
5
- .emotion-0 {
6
- height: 80px;
7
- background-color: #3358CC;
8
- }
9
-
10
- .emotion-0 a,
11
- .emotion-0 a:visited:not(:disabled) {
12
- color: #FFFFFF;
13
- font-weight: bold;
14
- line-height: 1.5;
15
- }
16
-
17
- @media screen {
18
- .emotion-0 {
19
- padding-top: 16px;
20
- padding-bottom: 16px;
21
- padding-left: 0;
22
- padding-right: 0;
23
- }
24
- }
25
-
26
- @media screen and (min-width: 1024px) {
27
- .emotion-0 {
28
- padding-top: 16px;
29
- padding-bottom: 16px;
30
- padding-left: 64px;
31
- padding-right: 64px;
32
- }
33
- }
34
-
35
- .emotion-1 {
36
- width: 100%;
37
- max-width: 1920px;
38
- margin: 0 auto;
39
- }
40
-
41
- .emotion-2 {
42
- box-sizing: border-box;
43
- -webkit-background-clip: padding-box;
44
- background-clip: padding-box;
45
- display: -webkit-box;
46
- display: -webkit-flex;
47
- display: -ms-flexbox;
48
- display: flex;
49
- -webkit-box-flex-wrap: wrap;
50
- -webkit-flex-wrap: wrap;
51
- -ms-flex-wrap: wrap;
52
- flex-wrap: wrap;
53
- -webkit-flex-direction: row;
54
- -ms-flex-direction: row;
55
- flex-direction: row;
56
- }
57
-
58
- @media screen {
59
- .emotion-2 {
60
- margin: -0px 8px 0 8px;
61
- }
62
- }
63
-
64
- @media screen and (min-width: 480px) {
65
- .emotion-2 {
66
- margin: -0px 8px 0 8px;
67
- }
68
- }
69
-
70
- @media screen and (min-width: 768px) {
71
- .emotion-2 {
72
- margin: -0px 16px 0 16px;
73
- }
74
- }
75
-
76
- @media screen and (min-width: 1024px) {
77
- .emotion-2 {
78
- margin: -0px 16px 0 16px;
79
- }
80
- }
81
-
82
- @media screen and (min-width: 1440px) {
83
- .emotion-2 {
84
- margin: -0px 16px 0 16px;
85
- }
86
- }
87
-
88
- .emotion-3 {
89
- box-sizing: border-box;
90
- -webkit-background-clip: padding-box;
91
- background-clip: padding-box;
92
- -webkit-flex: 1 0 auto;
93
- -ms-flex: 1 0 auto;
94
- flex: 1 0 auto;
95
- }
96
-
97
- @media screen {
98
- .emotion-3 {
99
- padding: 0 8px;
100
- -webkit-flex-basis: 100%;
101
- -ms-flex-preferred-size: 100%;
102
- flex-basis: 100%;
103
- max-width: 100%;
104
- }
105
- }
106
-
107
- .emotion-4 {
108
- display: -webkit-box;
109
- display: -webkit-flex;
110
- display: -ms-flexbox;
111
- display: flex;
112
- height: 100%;
113
- -webkit-align-items: center;
114
- -webkit-box-align: center;
115
- -ms-flex-align: center;
116
- align-items: center;
117
- -webkit-align-content: center;
118
- -ms-flex-line-pack: center;
119
- align-content: center;
120
- -webkit-box-flex-wrap: nowrap;
121
- -webkit-flex-wrap: nowrap;
122
- -ms-flex-wrap: nowrap;
123
- flex-wrap: nowrap;
124
- -webkit-flex-direction: row;
125
- -ms-flex-direction: row;
126
- flex-direction: row;
127
- -webkit-box-pack: justify;
128
- -webkit-justify-content: space-between;
129
- justify-content: space-between;
130
- }
131
-
132
- .emotion-5 {
133
- display: inline-block;
134
- transition-property: color;
135
- transition-duration: 200ms;
136
- transition-timing-function: cubic-bezier(0, 0, .5, 1);
137
- color: #FFFFFF;
138
- -webkit-text-decoration: none;
139
- text-decoration: none;
140
- }
141
-
142
- .emotion-5 svg {
143
- fill: #FFFFFF;
144
- }
145
-
146
- .emotion-5:hover:not(:disabled) {
147
- color: #FFFFFF;
148
- -webkit-text-decoration: underline;
149
- text-decoration: underline;
150
- }
151
-
152
- .emotion-5:hover:not(:disabled) svg {
153
- fill: #FFFFFF;
154
- }
155
-
156
- .emotion-5:active:not(:disabled) {
157
- color: #FFFFFF;
158
- -webkit-text-decoration: underline;
159
- text-decoration: underline;
160
- }
161
-
162
- .emotion-5:active:not(:disabled) svg {
163
- fill: #FFFFFF;
164
- }
165
-
166
- .emotion-6 {
167
- display: -webkit-box;
168
- display: -webkit-flex;
169
- display: -ms-flexbox;
170
- display: flex;
171
- height: 100%;
172
- -webkit-align-items: center;
173
- -webkit-box-align: center;
174
- -ms-flex-align: center;
175
- align-items: center;
176
- -webkit-flex-direction: row;
177
- -ms-flex-direction: row;
178
- flex-direction: row;
179
- -webkit-box-pack: start;
180
- -ms-flex-pack: start;
181
- -webkit-justify-content: flex-start;
182
- justify-content: flex-start;
183
- }
184
-
185
- @media screen {
186
- .emotion-7 {
187
- display: none;
188
- }
189
- }
190
-
191
- @media screen and (min-width: 480px) {
192
- .emotion-7 {
193
- display: none;
194
- }
195
- }
196
-
197
- @media screen and (min-width: 768px) {
198
- .emotion-7 {
199
- display: block;
200
- }
201
- }
202
-
203
- @media screen and (min-width: 1024px) {
204
- .emotion-7 {
205
- display: block;
206
- }
207
- }
208
-
209
- @media screen and (min-width: 1440px) {
210
- .emotion-7 {
211
- display: block;
212
- }
213
- }
214
-
215
- .emotion-8 {
216
- display: inline-block;
217
- fill: #FFFFFF;
218
- color: #FFFFFF;
219
- width: 160px;
220
- }
221
-
222
- @media screen {
223
- .emotion-9 {
224
- display: block;
225
- }
226
- }
227
-
228
- @media screen and (min-width: 480px) {
229
- .emotion-9 {
230
- display: block;
231
- }
232
- }
233
-
234
- @media screen and (min-width: 768px) {
235
- .emotion-9 {
236
- display: none;
237
- }
238
- }
239
-
240
- @media screen and (min-width: 1024px) {
241
- .emotion-9 {
242
- display: none;
243
- }
244
- }
245
-
246
- @media screen and (min-width: 1440px) {
247
- .emotion-9 {
248
- display: none;
249
- }
250
- }
251
-
252
- .emotion-11 {
253
- display: -webkit-box;
254
- display: -webkit-flex;
255
- display: -ms-flexbox;
256
- display: flex;
257
- height: 100%;
258
- -webkit-align-items: center;
259
- -webkit-box-align: center;
260
- -ms-flex-align: center;
261
- align-items: center;
262
- -webkit-align-content: center;
263
- -ms-flex-line-pack: center;
264
- align-content: center;
265
- -webkit-box-flex-wrap: nowrap;
266
- -webkit-flex-wrap: nowrap;
267
- -ms-flex-wrap: nowrap;
268
- flex-wrap: nowrap;
269
- -webkit-flex-direction: row;
270
- -ms-flex-direction: row;
271
- flex-direction: row;
272
- -webkit-box-pack: end;
273
- -ms-flex-pack: end;
274
- -webkit-justify-content: flex-end;
275
- justify-content: flex-end;
276
- }
277
-
278
- .emotion-12 {
279
- position: fixed;
280
- overflow: auto;
281
- width: 100%;
282
- min-height: 100vh;
283
- background-color: #3358CC;
284
- left: 0;
285
- top: 80px;
286
- z-index: 2;
287
- display: none;
288
- }
289
-
290
- @media screen and (min-width: 768px) {
291
- .emotion-12 {
292
- display: -webkit-box;
293
- display: -webkit-flex;
294
- display: -ms-flexbox;
295
- display: flex;
296
- position: relative;
297
- overflow: hidden;
298
- width: initial;
299
- min-height: initial;
300
- background-color: initial;
301
- left: initial;
302
- top: initial;
303
- z-index: 1;
304
- height: 48px;
305
- }
306
- }
307
-
308
- .emotion-13 {
309
- display: -webkit-box;
310
- display: -webkit-flex;
311
- display: -ms-flexbox;
312
- display: flex;
313
- -webkit-box-flex-flow: row wrap;
314
- -webkit-flex-flow: row wrap;
315
- -ms-flex-flow: row wrap;
316
- flex-flow: row wrap;
317
- -webkit-box-pack: justify;
318
- -webkit-justify-content: space-between;
319
- justify-content: space-between;
320
- -webkit-flex-direction: column;
321
- -ms-flex-direction: column;
322
- flex-direction: column;
323
- -webkit-align-items: center;
324
- -webkit-box-align: center;
325
- -ms-flex-align: center;
326
- align-items: center;
327
- }
328
-
329
- @media screen and (min-width: 768px) {
330
- .emotion-13 {
331
- -webkit-box-pack: end;
332
- -ms-flex-pack: end;
333
- -webkit-justify-content: flex-end;
334
- justify-content: flex-end;
335
- -webkit-flex-direction: row;
336
- -ms-flex-direction: row;
337
- flex-direction: row;
338
- }
339
- }
340
-
341
- @media screen and (max-width: 767px) {
342
- .emotion-14 {
343
- margin-right: 0;
344
- }
345
- }
346
-
347
- @media screen and (min-width: 768px) {
348
- .emotion-14 {
349
- margin-right: 16px;
350
- }
351
- }
352
-
353
- @media screen and (max-width: 767px) {
354
- .emotion-14 {
355
- margin-bottom: 24px;
356
- }
357
- }
358
-
359
- @media screen and (min-width: 768px) {
360
- .emotion-14 {
361
- margin-bottom: 0;
362
- }
363
- }
364
-
365
- .emotion-17 {
366
- margin: 0;
367
- font-family: "DM Sans",sans-serif;
368
- font-size: 14px;
369
- line-height: 21px;
370
- font-weight: 500;
371
- letter-spacing: 0;
372
- padding: 0.5px 0px;
373
- display: inline-block;
374
- display: block;
375
- }
376
-
377
- .emotion-17::before {
378
- content: '';
379
- margin-bottom: -0.391em;
380
- display: block;
381
- }
382
-
383
- .emotion-17::after {
384
- content: '';
385
- margin-top: -0.409em;
386
- display: block;
387
- }
388
-
389
- .emotion-27 {
390
- margin-right: 24px;
391
- }
392
-
393
- .emotion-28 {
394
- display: inline-block;
395
- vertical-align: middle;
396
- overflow: hidden;
397
- color: #FFFFFF;
398
- fill: #FFFFFF;
399
- vertical-align: unset;
400
- display: inline-block;
401
- }
402
-
403
- .emotion-28.emotion-28 {
404
- width: 32px;
405
- height: 32px;
406
- color: #FFFFFF;
407
- fill: #FFFFFF;
408
- }
409
-
410
- <div
411
- class="emotion-0"
5
+ <div
6
+ class="css-166vhks"
412
7
  >
413
8
  <div
414
- class="emotion-1"
9
+ class="css-8atxkm"
415
10
  >
416
11
  <div
417
- class="emotion-2"
12
+ class="css-1w88buo"
418
13
  data-testid="PageLayout"
419
14
  >
420
15
  <div
421
- class="emotion-3"
16
+ class="css-18d6eiw"
422
17
  data-testid="PageLayout"
423
18
  >
424
19
  <div
425
- class="emotion-4"
20
+ class="css-jl4h98"
426
21
  >
427
22
  <a
428
23
  aria-label="Logo Link"
429
- class="emotion-5"
24
+ class="css-e43kyg"
430
25
  href="/"
431
26
  >
432
27
  <span
433
- class="emotion-6"
28
+ class="css-17x5lw"
434
29
  >
435
30
  <div
436
- class="emotion-7"
31
+ class="css-1nlep1q"
437
32
  >
438
33
  <svg
439
- class="emotion-8"
34
+ class="css-kgdu16"
440
35
  height="40px"
441
36
  viewBox="0 0 244 40"
442
37
  >
@@ -464,10 +59,10 @@ exports[`Article should render tile and sub title 1`] = `
464
59
  </svg>
465
60
  </div>
466
61
  <div
467
- class="emotion-9"
62
+ class="css-1k3e0au"
468
63
  >
469
64
  <svg
470
- class="emotion-8"
65
+ class="css-kgdu16"
471
66
  height="48px"
472
67
  viewBox="0 0 244 40"
473
68
  >
@@ -493,29 +88,29 @@ exports[`Article should render tile and sub title 1`] = `
493
88
  </span>
494
89
  </a>
495
90
  <div
496
- class="emotion-11"
91
+ class="css-12mm2yp"
497
92
  >
498
93
  <div
499
- class="emotion-12"
94
+ class="css-1q7p9do"
500
95
  data-testid="NavigationContainer"
501
96
  >
502
97
  <div
503
- class="emotion-13"
98
+ class="css-rk1vtl"
504
99
  data-testid="Navigation"
505
100
  >
506
101
  <span
507
- class="emotion-14"
102
+ class="css-10bwu4j"
508
103
  >
509
104
  <a
510
105
  aria-label="Section One Link"
511
- class="emotion-5"
106
+ class="css-e43kyg"
512
107
  href="/section-one"
513
108
  >
514
109
  <span
515
- class="emotion-6"
110
+ class="css-17x5lw"
516
111
  >
517
112
  <span
518
- class="emotion-17"
113
+ class="css-kxo08d"
519
114
  >
520
115
  Section One
521
116
  </span>
@@ -523,18 +118,18 @@ exports[`Article should render tile and sub title 1`] = `
523
118
  </a>
524
119
  </span>
525
120
  <span
526
- class="emotion-14"
121
+ class="css-10bwu4j"
527
122
  >
528
123
  <a
529
124
  aria-label="Section Two Link"
530
- class="emotion-5"
125
+ class="css-e43kyg"
531
126
  href="/section-two"
532
127
  >
533
128
  <span
534
- class="emotion-6"
129
+ class="css-17x5lw"
535
130
  >
536
131
  <span
537
- class="emotion-17"
132
+ class="css-kxo08d"
538
133
  >
539
134
  Section Two
540
135
  </span>
@@ -542,18 +137,18 @@ exports[`Article should render tile and sub title 1`] = `
542
137
  </a>
543
138
  </span>
544
139
  <span
545
- class="emotion-14"
140
+ class="css-10bwu4j"
546
141
  >
547
142
  <a
548
143
  aria-label="Section Three Link"
549
- class="emotion-5"
144
+ class="css-e43kyg"
550
145
  href="/section-three"
551
146
  >
552
147
  <span
553
- class="emotion-6"
148
+ class="css-17x5lw"
554
149
  >
555
150
  <span
556
- class="emotion-17"
151
+ class="css-kxo08d"
557
152
  >
558
153
  Section Three
559
154
  </span>
@@ -563,15 +158,15 @@ exports[`Article should render tile and sub title 1`] = `
563
158
  </div>
564
159
  </div>
565
160
  <div
566
- class="emotion-9"
161
+ class="css-1k3e0au"
567
162
  >
568
163
  <div
569
- class="emotion-27"
164
+ class="css-qzhw9i"
570
165
  >
571
166
  <svg
572
167
  aria-hidden="true"
573
168
  aria-label="Mobile Menu Button"
574
- class="emotion-28 emotion-29"
169
+ class="css-yyp9n-EmotionIconBase ex0cdmw0"
575
170
  data-testid="mobile-menu-btn"
576
171
  fill="currentColor"
577
172
  focusable="false"
@@ -596,2411 +191,101 @@ exports[`Article should render tile and sub title 1`] = `
596
191
  </div>
597
192
  </div>
598
193
  </div>
599
- @media screen {
600
- .emotion-0 {
601
- background-color: #FFFFFF;
602
- }
603
- }
604
-
605
- .emotion-1 {
606
- width: 100%;
607
- max-width: 1920px;
608
- margin: 0 auto;
609
- }
610
-
611
- .emotion-2 {
612
- box-sizing: border-box;
613
- -webkit-background-clip: padding-box;
614
- background-clip: padding-box;
615
- display: -webkit-box;
616
- display: -webkit-flex;
617
- display: -ms-flexbox;
618
- display: flex;
619
- -webkit-box-flex-wrap: wrap;
620
- -webkit-flex-wrap: wrap;
621
- -ms-flex-wrap: wrap;
622
- flex-wrap: wrap;
623
- -webkit-flex-direction: row;
624
- -ms-flex-direction: row;
625
- flex-direction: row;
626
- }
627
-
628
- @media screen {
629
- .emotion-2 {
630
- margin: -0px 8px 0 8px;
631
- }
632
- }
633
-
634
- @media screen and (min-width: 480px) {
635
- .emotion-2 {
636
- margin: -0px 8px 0 8px;
637
- }
638
- }
639
-
640
- @media screen and (min-width: 768px) {
641
- .emotion-2 {
642
- margin: -0px 16px 0 16px;
643
- }
644
- }
645
-
646
- @media screen and (min-width: 1024px) {
647
- .emotion-2 {
648
- margin: -0px 16px 0 16px;
649
- }
650
- }
651
-
652
- @media screen and (min-width: 1440px) {
653
- .emotion-2 {
654
- margin: -0px 16px 0 16px;
655
- }
656
- }
657
-
658
- .emotion-3 {
659
- box-sizing: border-box;
660
- -webkit-background-clip: padding-box;
661
- background-clip: padding-box;
662
- -webkit-flex: 1 0 auto;
663
- -ms-flex: 1 0 auto;
664
- flex: 1 0 auto;
665
- }
666
-
667
- @media screen {
668
- .emotion-3 {
669
- padding: 0 8px;
670
- -webkit-flex-basis: 100%;
671
- -ms-flex-preferred-size: 100%;
672
- flex-basis: 100%;
673
- max-width: 100%;
674
- }
675
- }
676
-
677
- @media screen and (max-width: 1023px) {
678
- .emotion-4 {
679
- margin-bottom: 40px;
680
- }
681
- }
682
-
683
- @media screen and (min-width: 1024px) {
684
- .emotion-4 {
685
- margin-bottom: 48px;
686
- }
687
- }
688
-
689
- .emotion-5 {
690
- box-sizing: border-box;
691
- -webkit-background-clip: padding-box;
692
- background-clip: padding-box;
693
- -webkit-flex: 1 0 auto;
694
- -ms-flex: 1 0 auto;
695
- flex: 1 0 auto;
696
- }
697
-
698
- @media screen {
699
- .emotion-5 {
700
- padding: 0 8px;
701
- -webkit-flex-basis: 100%;
702
- -ms-flex-preferred-size: 100%;
703
- flex-basis: 100%;
704
- max-width: 100%;
705
- }
706
- }
707
-
708
- @media screen and (min-width: 768px) {
709
- .emotion-5 {
710
- margin-left: 8.333333333333334%;
711
- -webkit-flex-basis: 83.33333333333334%;
712
- -ms-flex-preferred-size: 83.33333333333334%;
713
- flex-basis: 83.33333333333334%;
714
- max-width: 83.33333333333334%;
715
- }
716
- }
717
-
718
- @media screen and (min-width: 1024px) {
719
- .emotion-5 {
720
- -webkit-flex-basis: 58.333333333333336%;
721
- -ms-flex-preferred-size: 58.333333333333336%;
722
- flex-basis: 58.333333333333336%;
723
- max-width: 58.333333333333336%;
724
- }
725
- }
726
-
727
- .emotion-6 {
728
- margin-bottom: 24px;
729
- }
730
-
731
- @media screen and (max-width: 767px) {
732
- .emotion-7 {
733
- font-family: "Bitter",serif;
734
- font-size: 28px;
735
- line-height: 31.5px;
736
- font-weight: 500;
737
- letter-spacing: 0;
738
- padding: 0.5px 0px;
739
- }
740
-
741
- .emotion-7::before {
742
- content: '';
743
- margin-bottom: -0.2055em;
744
- display: block;
745
- }
746
-
747
- .emotion-7::after {
748
- content: '';
749
- margin-top: -0.2275em;
750
- display: block;
751
- }
752
- }
753
-
754
- @media screen and (min-width: 768px) and (max-width: 1023px) {
755
- .emotion-7 {
756
- font-family: "Bitter",serif;
757
- font-size: 36px;
758
- line-height: 40.5px;
759
- font-weight: 500;
760
- letter-spacing: 0;
761
- padding: 0.5px 0px;
762
- }
763
-
764
- .emotion-7::before {
765
- content: '';
766
- margin-bottom: -0.2055em;
767
- display: block;
768
- }
769
-
770
- .emotion-7::after {
771
- content: '';
772
- margin-top: -0.2275em;
773
- display: block;
774
- }
775
- }
776
-
777
- @media screen and (min-width: 1024px) and (max-width: 1439px) {
778
- .emotion-7 {
779
- font-family: "Bitter",serif;
780
- font-size: 36px;
781
- line-height: 40.5px;
782
- font-weight: 500;
783
- letter-spacing: 0;
784
- padding: 0.5px 0px;
785
- }
786
-
787
- .emotion-7::before {
788
- content: '';
789
- margin-bottom: -0.2055em;
790
- display: block;
791
- }
792
-
793
- .emotion-7::after {
794
- content: '';
795
- margin-top: -0.2275em;
796
- display: block;
797
- }
798
- }
799
-
800
- @media screen and (min-width: 1440px) {
801
- .emotion-7 {
802
- font-family: "Bitter",serif;
803
- font-size: 40px;
804
- line-height: 45px;
805
- font-weight: 500;
806
- letter-spacing: 0;
807
- padding: 0.5px 0px;
808
- }
809
-
810
- .emotion-7::before {
811
- content: '';
812
- margin-bottom: -0.2055em;
813
- display: block;
814
- }
815
-
816
- .emotion-7::after {
817
- content: '';
818
- margin-top: -0.2275em;
819
- display: block;
820
- }
821
- }
822
-
823
- .emotion-8 {
824
- display: inline;
825
- font: inherit;
826
- margin: 0;
827
- color: #0A0A0A;
828
- }
829
-
830
- .emotion-8 svg {
831
- fill: #0A0A0A;
832
- }
833
-
834
- .emotion-9 {
835
- margin-bottom: 48px;
836
- }
837
-
838
- @media screen and (max-width: 767px) {
839
- .emotion-10 {
840
- font-family: "Bitter",serif;
841
- font-size: 20px;
842
- line-height: 22.5px;
843
- font-weight: 400;
844
- letter-spacing: 0;
845
- padding: 0.5px 0px;
846
- }
847
-
848
- .emotion-10::before {
849
- content: '';
850
- margin-bottom: -0.2055em;
851
- display: block;
852
- }
853
-
854
- .emotion-10::after {
855
- content: '';
856
- margin-top: -0.2275em;
857
- display: block;
858
- }
859
- }
860
-
861
- @media screen and (min-width: 768px) and (max-width: 1023px) {
862
- .emotion-10 {
863
- font-family: "Bitter",serif;
864
- font-size: 24px;
865
- line-height: 27px;
866
- font-weight: 400;
867
- letter-spacing: 0;
868
- padding: 0.5px 0px;
869
- }
870
-
871
- .emotion-10::before {
872
- content: '';
873
- margin-bottom: -0.2055em;
874
- display: block;
875
- }
876
-
877
- .emotion-10::after {
878
- content: '';
879
- margin-top: -0.2275em;
880
- display: block;
881
- }
882
- }
883
-
884
- @media screen and (min-width: 1024px) and (max-width: 1439px) {
885
- .emotion-10 {
886
- font-family: "Bitter",serif;
887
- font-size: 24px;
888
- line-height: 27px;
889
- font-weight: 400;
890
- letter-spacing: 0;
891
- padding: 0.5px 0px;
892
- }
893
-
894
- .emotion-10::before {
895
- content: '';
896
- margin-bottom: -0.2055em;
897
- display: block;
898
- }
899
-
900
- .emotion-10::after {
901
- content: '';
902
- margin-top: -0.2275em;
903
- display: block;
904
- }
905
- }
906
-
907
- @media screen and (min-width: 1440px) {
908
- .emotion-10 {
909
- font-family: "Bitter",serif;
910
- font-size: 28px;
911
- line-height: 31.5px;
912
- font-weight: 400;
913
- letter-spacing: 0;
914
- padding: 0.5px 0px;
915
- }
916
-
917
- .emotion-10::before {
918
- content: '';
919
- margin-bottom: -0.2055em;
920
- display: block;
921
- }
922
-
923
- .emotion-10::after {
924
- content: '';
925
- margin-top: -0.2275em;
926
- display: block;
927
- }
928
- }
929
-
930
- .emotion-11 {
931
- display: inline;
932
- font: inherit;
933
- margin: 0;
934
- color: #2E2E2E;
935
- }
936
-
937
- .emotion-11 svg {
938
- fill: #2E2E2E;
939
- }
940
-
941
- @media screen and (max-width: 767px) {
942
- .emotion-12 {
943
- margin-bottom: 16px;
944
- }
945
- }
946
-
947
- @media screen and (min-width: 768px) {
948
- .emotion-12 {
949
- margin-bottom: 48px;
950
- }
951
- }
952
-
953
- @media screen {
954
- .emotion-13 {
955
- display: block;
956
- }
957
- }
958
-
959
- @media screen and (min-width: 480px) {
960
- .emotion-13 {
961
- display: block;
962
- }
963
- }
964
-
965
- @media screen and (min-width: 768px) {
966
- .emotion-13 {
967
- display: none;
968
- }
969
- }
970
-
971
- @media screen and (min-width: 1024px) {
972
- .emotion-13 {
973
- display: none;
974
- }
975
- }
976
-
977
- @media screen and (min-width: 1440px) {
978
- .emotion-13 {
979
- display: none;
980
- }
981
- }
982
-
983
- @media screen {
984
- .emotion-14 {
985
- margin-bottom: 16px;
986
- }
987
- }
988
-
989
- .emotion-16 {
990
- display: -webkit-inline-box;
991
- display: -webkit-inline-flex;
992
- display: -ms-inline-flexbox;
993
- display: inline-flex;
994
- height: 100%;
995
- -webkit-align-items: center;
996
- -webkit-box-align: center;
997
- -ms-flex-align: center;
998
- align-items: center;
999
- -webkit-align-content: center;
1000
- -ms-flex-line-pack: center;
1001
- align-content: center;
1002
- -webkit-box-flex-wrap: wrap;
1003
- -webkit-flex-wrap: wrap;
1004
- -ms-flex-wrap: wrap;
1005
- flex-wrap: wrap;
1006
- -webkit-flex-direction: row;
1007
- -ms-flex-direction: row;
1008
- flex-direction: row;
1009
- -webkit-box-pack: start;
1010
- -ms-flex-pack: start;
1011
- -webkit-justify-content: flex-start;
1012
- justify-content: flex-start;
1013
- margin-top: calc(-8px/2);
1014
- margin-bottom: calc(-8px/2);
1015
- }
1016
-
1017
- .emotion-17 {
1018
- display: -webkit-inline-box;
1019
- display: -webkit-inline-flex;
1020
- display: -ms-inline-flexbox;
1021
- display: inline-flex;
1022
- margin-top: calc(8px/2);
1023
- margin-bottom: calc(8px/2);
1024
- }
1025
-
1026
- .emotion-18 {
1027
- margin: 0;
1028
- color: #2E2E2E;
1029
- font-family: "DM Sans",sans-serif;
1030
- font-size: 14px;
1031
- line-height: 21px;
1032
- font-weight: 500;
1033
- letter-spacing: 0;
1034
- padding: 0.5px 0px;
1035
- display: inline-block;
1036
- }
1037
-
1038
- .emotion-18 svg {
1039
- fill: #2E2E2E;
1040
- }
1041
-
1042
- .emotion-18::before {
1043
- content: '';
1044
- margin-bottom: -0.391em;
1045
- display: block;
1046
- }
1047
-
1048
- .emotion-18::after {
1049
- content: '';
1050
- margin-top: -0.409em;
1051
- display: block;
1052
- }
1053
-
1054
- .emotion-19 {
1055
- display: inline-block;
1056
- transition-property: color;
1057
- transition-duration: 200ms;
1058
- transition-timing-function: cubic-bezier(0, 0, .5, 1);
1059
- }
1060
-
1061
- .emotion-20 {
1062
- display: -webkit-box;
1063
- display: -webkit-flex;
1064
- display: -ms-flexbox;
1065
- display: flex;
1066
- height: 100%;
1067
- -webkit-align-items: center;
1068
- -webkit-box-align: center;
1069
- -ms-flex-align: center;
1070
- align-items: center;
1071
- -webkit-flex-direction: row;
1072
- -ms-flex-direction: row;
1073
- flex-direction: row;
1074
- -webkit-box-pack: start;
1075
- -ms-flex-pack: start;
1076
- -webkit-justify-content: flex-start;
1077
- justify-content: flex-start;
1078
- margin-left: calc(-4px/2);
1079
- margin-right: calc(-4px/2);
1080
- }
1081
-
1082
- .emotion-21 {
1083
- display: -webkit-inline-box;
1084
- display: -webkit-inline-flex;
1085
- display: -ms-inline-flexbox;
1086
- display: inline-flex;
1087
- margin-left: calc(4px/2);
1088
- margin-right: calc(4px/2);
1089
- }
1090
-
1091
- .emotion-22 {
1092
- margin: 0;
1093
- font-family: "DM Sans",sans-serif;
1094
- font-size: 14px;
1095
- line-height: 1.5;
1096
- font-weight: 500;
1097
- letter-spacing: 0;
1098
- display: block;
1099
- }
1100
-
1101
- .emotion-24 {
1102
- display: inline-block;
1103
- vertical-align: middle;
1104
- overflow: hidden;
1105
- fill: #2E2E2E;
1106
- vertical-align: unset;
1107
- display: inline-block;
1108
- }
1109
-
1110
- .emotion-24.emotion-24 {
1111
- width: 16px;
1112
- height: 16px;
1113
- }
1114
-
1115
- .emotion-28 {
1116
- margin: 0;
1117
- color: #2E2E2E;
1118
- font-family: "DM Sans",sans-serif;
1119
- font-size: 12px;
1120
- line-height: 18px;
1121
- font-weight: 400;
1122
- letter-spacing: 0;
1123
- padding: 0.5px 0px;
1124
- display: inline-block;
1125
- white-space: pre;
1126
- }
1127
-
1128
- .emotion-28 svg {
1129
- fill: #2E2E2E;
1130
- }
1131
-
1132
- .emotion-28::before {
1133
- content: '';
1134
- margin-bottom: -0.391em;
1135
- display: block;
1136
- }
1137
-
1138
- .emotion-28::after {
1139
- content: '';
1140
- margin-top: -0.409em;
1141
- display: block;
1142
- }
1143
-
1144
- .emotion-28:before,
1145
- .emotion-28:after {
1146
- white-space: normal;
1147
- }
1148
-
1149
- .emotion-30 {
1150
- border-style: solid;
1151
- border-color: #DEDEDE;
1152
- border-width: 1px;
1153
- border-width: 0px;
1154
- margin: 0;
1155
- border-top-width: 1px;
1156
- width: 100%;
1157
- }
1158
-
1159
- .emotion-32 {
1160
- box-sizing: border-box;
1161
- display: -webkit-inline-box;
1162
- display: -webkit-inline-flex;
1163
- display: -ms-inline-flexbox;
1164
- display: inline-flex;
1165
- -webkit-box-pack: center;
1166
- -ms-flex-pack: center;
1167
- -webkit-justify-content: center;
1168
- justify-content: center;
1169
- -webkit-align-items: center;
1170
- -webkit-box-align: center;
1171
- -ms-flex-align: center;
1172
- align-items: center;
1173
- -webkit-text-decoration: none;
1174
- text-decoration: none;
1175
- min-height: 32px;
1176
- min-width: 64px;
1177
- padding: 8px 12px;
1178
- cursor: default;
1179
- overflow: hidden;
1180
- border: none;
1181
- -webkit-appearance: none;
1182
- -moz-appearance: none;
1183
- -ms-appearance: none;
1184
- appearance: none;
1185
- background-color: transparent;
1186
- border-style: solid;
1187
- border-color: #3358CC;
1188
- border-width: 1px;
1189
- border-radius: 8px;
1190
- color: #3358CC;
1191
- margin: 0;
1192
- transition-property: background-color;
1193
- transition-duration: 200ms;
1194
- transition-timing-function: cubic-bezier(0, 0, .5, 1);
1195
- cursor: pointer;
1196
- }
1197
-
1198
- .emotion-32 svg {
1199
- width: 16px;
1200
- height: 16px;
1201
- }
1202
-
1203
- .emotion-32 svg {
1204
- fill: #3358CC;
1205
- }
1206
-
1207
- .emotion-32:hover:not(:disabled) {
1208
- background-color: #E0E7FF;
1209
- border-color: #2B4AAB;
1210
- }
1211
-
1212
- .emotion-32:active:not(:disabled) {
1213
- background-color: #AEBFFF;
1214
- border-color: #213A82;
1215
- }
1216
-
1217
- .emotion-32:disabled {
1218
- border-color: #F4F4F4;
1219
- color: #C0C0C0;
1220
- }
1221
-
1222
- .emotion-32:disabled svg {
1223
- fill: #C0C0C0;
1224
- }
1225
-
1226
- .emotion-33 {
1227
- display: -webkit-box;
1228
- display: -webkit-flex;
1229
- display: -ms-flexbox;
1230
- display: flex;
1231
- height: 100%;
1232
- -webkit-align-items: center;
1233
- -webkit-box-align: center;
1234
- -ms-flex-align: center;
1235
- align-items: center;
1236
- -webkit-flex-direction: row;
1237
- -ms-flex-direction: row;
1238
- flex-direction: row;
1239
- -webkit-box-pack: center;
1240
- -ms-flex-pack: center;
1241
- -webkit-justify-content: center;
1242
- justify-content: center;
1243
- margin-left: calc(-8px/2);
1244
- margin-right: calc(-8px/2);
1245
- }
1246
-
1247
- .emotion-34 {
1248
- display: -webkit-inline-box;
1249
- display: -webkit-inline-flex;
1250
- display: -ms-inline-flexbox;
1251
- display: inline-flex;
1252
- margin-left: calc(8px/2);
1253
- margin-right: calc(8px/2);
1254
- }
1255
-
1256
- .emotion-35 {
1257
- display: inline-block;
1258
- vertical-align: middle;
1259
- overflow: hidden;
1260
- fill: #2E2E2E;
1261
- vertical-align: unset;
1262
- display: inline-block;
1263
- }
1264
-
1265
- .emotion-38 {
1266
- margin: 0;
1267
- font-family: "Poppins",sans-serif;
1268
- font-size: 12px;
1269
- line-height: 18px;
1270
- font-weight: 500;
1271
- letter-spacing: 0;
1272
- padding: 0.5px 0px;
1273
- display: inline-block;
1274
- }
1275
-
1276
- .emotion-38::before {
1277
- content: '';
1278
- margin-bottom: -0.403em;
1279
- display: block;
1280
- }
1281
-
1282
- .emotion-38::after {
1283
- content: '';
1284
- margin-top: -0.4em;
1285
- display: block;
1286
- }
1287
-
1288
- @media screen {
1289
- .emotion-39 {
1290
- display: none;
1291
- }
1292
- }
1293
-
1294
- @media screen and (min-width: 480px) {
1295
- .emotion-39 {
1296
- display: none;
1297
- }
1298
- }
1299
-
1300
- @media screen and (min-width: 768px) {
1301
- .emotion-39 {
1302
- display: block;
1303
- }
1304
- }
1305
-
1306
- @media screen and (min-width: 1024px) {
1307
- .emotion-39 {
1308
- display: block;
1309
- }
1310
- }
1311
-
1312
- @media screen and (min-width: 1440px) {
1313
- .emotion-39 {
1314
- display: block;
1315
- }
1316
- }
1317
-
1318
- .emotion-40 {
1319
- display: -webkit-box;
1320
- display: -webkit-flex;
1321
- display: -ms-flexbox;
1322
- display: flex;
1323
- height: 100%;
1324
- -webkit-align-items: flex-end;
1325
- -webkit-box-align: flex-end;
1326
- -ms-flex-align: flex-end;
1327
- align-items: flex-end;
1328
- -webkit-align-content: flex-end;
1329
- -ms-flex-line-pack: flex-end;
1330
- align-content: flex-end;
1331
- -webkit-box-flex-wrap: nowrap;
1332
- -webkit-flex-wrap: nowrap;
1333
- -ms-flex-wrap: nowrap;
1334
- flex-wrap: nowrap;
1335
- -webkit-flex-direction: row;
1336
- -ms-flex-direction: row;
1337
- flex-direction: row;
1338
- -webkit-box-pack: justify;
1339
- -webkit-justify-content: space-between;
1340
- justify-content: space-between;
1341
- }
1342
-
1343
- .emotion-55 {
1344
- display: -webkit-inline-box;
1345
- display: -webkit-inline-flex;
1346
- display: -ms-inline-flexbox;
1347
- display: inline-flex;
1348
- -webkit-align-self: flex-end;
1349
- -ms-flex-item-align: flex-end;
1350
- align-self: flex-end;
1351
- }
1352
-
1353
- .emotion-56 {
1354
- display: -webkit-box;
1355
- display: -webkit-flex;
1356
- display: -ms-flexbox;
1357
- display: flex;
1358
- height: 100%;
1359
- -webkit-align-items: center;
1360
- -webkit-box-align: center;
1361
- -ms-flex-align: center;
1362
- align-items: center;
1363
- -webkit-flex-direction: row;
1364
- -ms-flex-direction: row;
1365
- flex-direction: row;
1366
- -webkit-box-pack: start;
1367
- -ms-flex-pack: start;
1368
- -webkit-justify-content: flex-start;
1369
- justify-content: flex-start;
1370
- }
1371
-
1372
- .emotion-57 {
1373
- font-family: "Poppins",sans-serif;
1374
- font-size: 14px;
1375
- line-height: 21px;
1376
- font-weight: 500;
1377
- letter-spacing: 0;
1378
- padding: 0.5px 0px;
1379
- color: #2E2E2E;
1380
- margin-right: 24px;
1381
- }
1382
-
1383
- .emotion-57::before {
1384
- content: '';
1385
- margin-bottom: -0.403em;
1386
- display: block;
1387
- }
1388
-
1389
- .emotion-57::after {
1390
- content: '';
1391
- margin-top: -0.4em;
1392
- display: block;
1393
- }
1394
-
1395
- .emotion-57 svg {
1396
- fill: #2E2E2E;
1397
- }
1398
-
1399
- .emotion-58 {
1400
- display: -webkit-box;
1401
- display: -webkit-flex;
1402
- display: -ms-flexbox;
1403
- display: flex;
1404
- height: 100%;
1405
- -webkit-align-items: center;
1406
- -webkit-box-align: center;
1407
- -ms-flex-align: center;
1408
- align-items: center;
1409
- -webkit-flex-direction: row;
1410
- -ms-flex-direction: row;
1411
- flex-direction: row;
1412
- -webkit-box-pack: start;
1413
- -ms-flex-pack: start;
1414
- -webkit-justify-content: flex-start;
1415
- justify-content: flex-start;
1416
- margin-left: calc(-24px/2);
1417
- margin-right: calc(-24px/2);
1418
- }
1419
-
1420
- .emotion-59 {
1421
- display: -webkit-inline-box;
1422
- display: -webkit-inline-flex;
1423
- display: -ms-inline-flexbox;
1424
- display: inline-flex;
1425
- margin-left: calc(24px/2);
1426
- margin-right: calc(24px/2);
1427
- }
1428
-
1429
- .emotion-60 {
1430
- display: inline-block;
1431
- vertical-align: middle;
1432
- overflow: hidden;
1433
- color: #3358CC;
1434
- fill: #3358CC;
1435
- vertical-align: unset;
1436
- display: inline-block;
1437
- }
1438
-
1439
- .emotion-60.emotion-60 {
1440
- width: 24px;
1441
- height: 24px;
1442
- color: #3358CC;
1443
- fill: #3358CC;
1444
- }
1445
-
1446
- .emotion-63 {
1447
- color: #3358CC;
1448
- fill: #3358CC;
1449
- vertical-align: unset;
1450
- display: inline-block;
1451
- }
1452
-
1453
- .emotion-63.emotion-63 {
1454
- width: 24px;
1455
- height: 24px;
1456
- color: #3358CC;
1457
- fill: #3358CC;
1458
- }
1459
-
1460
- @media screen and (max-width: 1023px) {
1461
- .emotion-69 {
1462
- margin-bottom: 32px;
1463
- }
1464
- }
1465
-
1466
- @media screen and (min-width: 1024px) {
1467
- .emotion-69 {
1468
- margin-bottom: 40px;
1469
- }
1470
- }
1471
-
1472
- .emotion-70 {
1473
- margin: 0;
1474
- }
1475
-
1476
- .emotion-71 {
1477
- position: relative;
1478
- width: 100%;
1479
- display: block;
1480
- padding-top: 0;
1481
- height: 0;
1482
- width: 100%;
1483
- border-radius: 0;
1484
- background-color: #F4F4F4;
1485
- }
1486
-
1487
- .emotion-71 svg {
1488
- fill: #C0C0C0;
1489
- }
1490
-
1491
- .emotion-72 {
1492
- top: 0;
1493
- left: 0;
1494
- position: absolute;
1495
- display: -webkit-box;
1496
- display: -webkit-flex;
1497
- display: -ms-flexbox;
1498
- display: flex;
1499
- -webkit-flex-direction: column;
1500
- -ms-flex-direction: column;
1501
- flex-direction: column;
1502
- -webkit-box-pack: center;
1503
- -ms-flex-pack: center;
1504
- -webkit-justify-content: center;
1505
- justify-content: center;
1506
- width: 100%;
1507
- height: 100%;
1508
- margin: 0;
1509
- }
1510
-
1511
- .emotion-73 {
1512
- opacity: 0;
1513
- display: block;
1514
- border-radius: inherit;
1515
- height: auto;
1516
- width: 100%;
1517
- top: 0;
1518
- left: 0;
1519
- position: absolute;
1520
- }
1521
-
1522
- @media screen and (max-width: 767px) {
1523
- .emotion-74 {
1524
- margin-bottom: 32px;
1525
- }
1526
- }
1527
-
1528
- @media screen and (min-width: 768px) and (max-width: 1023px) {
1529
- .emotion-74 {
1530
- margin-bottom: 48px;
1531
- }
1532
- }
1533
-
1534
- @media screen and (min-width: 1024px) {
1535
- .emotion-74 {
1536
- margin-bottom: 80px;
1537
- }
1538
- }
1539
-
1540
- @media screen and (max-width: 1023px) {
1541
- .emotion-75 {
1542
- margin-bottom: 24px;
1543
- }
1544
- }
1545
-
1546
- @media screen and (min-width: 1024px) {
1547
- .emotion-75 {
1548
- margin-bottom: 40px;
1549
- }
1550
- }
1551
-
1552
- .emotion-76 {
1553
- margin: 0;
1554
- color: #0A0A0A;
1555
- }
1556
-
1557
- .emotion-76 svg {
1558
- fill: #0A0A0A;
1559
- }
1560
-
1561
- @media screen and (max-width: 767px) {
1562
- .emotion-76 {
1563
- font-family: "DM Sans",sans-serif;
1564
- font-size: 14px;
1565
- line-height: 21px;
1566
- font-weight: 400;
1567
- letter-spacing: 0;
1568
- padding: 0.5px 0px;
1569
- }
1570
-
1571
- .emotion-76::before {
1572
- content: '';
1573
- margin-bottom: -0.391em;
1574
- display: block;
1575
- }
1576
-
1577
- .emotion-76::after {
1578
- content: '';
1579
- margin-top: -0.409em;
1580
- display: block;
1581
- }
1582
- }
1583
-
1584
- @media screen and (min-width: 768px) and (max-width: 1439px) {
1585
- .emotion-76 {
1586
- font-family: "DM Sans",sans-serif;
1587
- font-size: 16px;
1588
- line-height: 24px;
1589
- font-weight: 400;
1590
- letter-spacing: 0;
1591
- padding: 0.5px 0px;
1592
- }
1593
-
1594
- .emotion-76::before {
1595
- content: '';
1596
- margin-bottom: -0.391em;
1597
- display: block;
1598
- }
1599
-
1600
- .emotion-76::after {
1601
- content: '';
1602
- margin-top: -0.409em;
1603
- display: block;
1604
- }
1605
- }
1606
-
1607
- @media screen and (min-width: 1440px) {
1608
- .emotion-76 {
1609
- font-family: "DM Sans",sans-serif;
1610
- font-size: 18px;
1611
- line-height: 27px;
1612
- font-weight: 400;
1613
- letter-spacing: 0;
1614
- padding: 0.5px 0px;
1615
- }
1616
-
1617
- .emotion-76::before {
1618
- content: '';
1619
- margin-bottom: -0.391em;
1620
- display: block;
1621
- }
1622
-
1623
- .emotion-76::after {
1624
- content: '';
1625
- margin-top: -0.409em;
1626
- display: block;
1627
- }
1628
- }
1629
-
1630
- .emotion-86 {
1631
- margin-bottom: 80px;
1632
- }
1633
-
1634
- .emotion-98 {
1635
- display: -webkit-box;
1636
- display: -webkit-flex;
1637
- display: -ms-flexbox;
1638
- display: flex;
1639
- height: 100%;
1640
- -webkit-align-items: flex-end;
1641
- -webkit-box-align: flex-end;
1642
- -ms-flex-align: flex-end;
1643
- align-items: flex-end;
1644
- -webkit-align-content: flex-end;
1645
- -ms-flex-line-pack: flex-end;
1646
- align-content: flex-end;
1647
- -webkit-box-flex-wrap: nowrap;
1648
- -webkit-flex-wrap: nowrap;
1649
- -ms-flex-wrap: nowrap;
1650
- flex-wrap: nowrap;
1651
- -webkit-flex-direction: row;
1652
- -ms-flex-direction: row;
1653
- flex-direction: row;
1654
- -webkit-box-pack: end;
1655
- -ms-flex-pack: end;
1656
- -webkit-justify-content: flex-end;
1657
- justify-content: flex-end;
1658
- margin-left: calc(-32px/2);
1659
- margin-right: calc(-32px/2);
1660
- }
1661
-
1662
- .emotion-99 {
1663
- display: -webkit-inline-box;
1664
- display: -webkit-inline-flex;
1665
- display: -ms-inline-flexbox;
1666
- display: inline-flex;
1667
- margin-left: calc(32px/2);
1668
- margin-right: calc(32px/2);
1669
- }
1670
-
1671
- @media screen and (max-width: 767px) {
1672
- .emotion-115 {
1673
- font-family: "Bitter",serif;
1674
- font-size: 20px;
1675
- line-height: 22.5px;
1676
- font-weight: 500;
1677
- letter-spacing: 0;
1678
- padding: 0.5px 0px;
1679
- }
1680
-
1681
- .emotion-115::before {
1682
- content: '';
1683
- margin-bottom: -0.2055em;
1684
- display: block;
1685
- }
1686
-
1687
- .emotion-115::after {
1688
- content: '';
1689
- margin-top: -0.2275em;
1690
- display: block;
1691
- }
1692
- }
1693
-
1694
- @media screen and (min-width: 768px) and (max-width: 1023px) {
1695
- .emotion-115 {
1696
- font-family: "Bitter",serif;
1697
- font-size: 22px;
1698
- line-height: 24.75px;
1699
- font-weight: 500;
1700
- letter-spacing: 0;
1701
- padding: 0.5px 0px;
1702
- }
1703
-
1704
- .emotion-115::before {
1705
- content: '';
1706
- margin-bottom: -0.2055em;
1707
- display: block;
1708
- }
1709
-
1710
- .emotion-115::after {
1711
- content: '';
1712
- margin-top: -0.2275em;
1713
- display: block;
1714
- }
1715
- }
1716
-
1717
- @media screen and (min-width: 1024px) {
1718
- .emotion-115 {
1719
- font-family: "Bitter",serif;
1720
- font-size: 24px;
1721
- line-height: 27px;
1722
- font-weight: 500;
1723
- letter-spacing: 0;
1724
- padding: 0.5px 0px;
1725
- }
1726
-
1727
- .emotion-115::before {
1728
- content: '';
1729
- margin-bottom: -0.2055em;
1730
- display: block;
1731
- }
1732
-
1733
- .emotion-115::after {
1734
- content: '';
1735
- margin-top: -0.2275em;
1736
- display: block;
1737
- }
1738
- }
1739
-
1740
- .emotion-117 {
1741
- margin-bottom: 32px;
1742
- }
1743
-
1744
- .emotion-118 {
1745
- display: -webkit-box;
1746
- display: -webkit-flex;
1747
- display: -ms-flexbox;
1748
- display: flex;
1749
- height: 100%;
1750
- -webkit-align-items: center;
1751
- -webkit-box-align: center;
1752
- -ms-flex-align: center;
1753
- align-items: center;
1754
- -webkit-align-content: center;
1755
- -ms-flex-line-pack: center;
1756
- align-content: center;
1757
- -webkit-box-flex-wrap: wrap;
1758
- -webkit-flex-wrap: wrap;
1759
- -ms-flex-wrap: wrap;
1760
- flex-wrap: wrap;
1761
- -webkit-flex-direction: row;
1762
- -ms-flex-direction: row;
1763
- flex-direction: row;
1764
- -webkit-box-pack: start;
1765
- -ms-flex-pack: start;
1766
- -webkit-justify-content: flex-start;
1767
- justify-content: flex-start;
1768
- margin-left: calc(-16px/2);
1769
- margin-right: calc(-16px/2);
1770
- }
1771
-
1772
- .emotion-119 {
1773
- display: -webkit-inline-box;
1774
- display: -webkit-inline-flex;
1775
- display: -ms-inline-flexbox;
1776
- display: inline-flex;
1777
- margin-left: calc(16px/2);
1778
- margin-right: calc(16px/2);
1779
- }
1780
-
1781
- .emotion-120 {
1782
- margin-bottom: 16px;
1783
- }
1784
-
1785
- .emotion-121 {
1786
- box-sizing: border-box;
1787
- display: -webkit-inline-box;
1788
- display: -webkit-inline-flex;
1789
- display: -ms-inline-flexbox;
1790
- display: inline-flex;
1791
- -webkit-box-pack: center;
1792
- -ms-flex-pack: center;
1793
- -webkit-justify-content: center;
1794
- justify-content: center;
1795
- -webkit-align-items: center;
1796
- -webkit-box-align: center;
1797
- -ms-flex-align: center;
1798
- align-items: center;
1799
- -webkit-text-decoration: none;
1800
- text-decoration: none;
1801
- min-height: 32px;
1802
- padding: 8px 12px;
1803
- cursor: default;
1804
- overflow: hidden;
1805
- border: none;
1806
- -webkit-appearance: none;
1807
- -moz-appearance: none;
1808
- -ms-appearance: none;
1809
- appearance: none;
1810
- background-color: transparent;
1811
- border-style: solid;
1812
- border-color: #535353;
1813
- border-width: 1px;
1814
- color: #2E2E2E;
1815
- border-radius: 0;
1816
- }
1817
-
1818
- .emotion-121 svg {
1819
- width: 16px;
1820
- height: 16px;
1821
- }
1822
-
1823
- .emotion-121 svg {
1824
- fill: #2E2E2E;
1825
- }
1826
-
1827
- .emotion-121:hover:not(:disabled) {
1828
- background-color: #F4F4F4;
1829
- }
1830
-
1831
- .emotion-121:active:not(:disabled) {
1832
- border-width: 1px;
1833
- }
1834
-
1835
- .emotion-122 {
1836
- display: -webkit-box;
1837
- display: -webkit-flex;
1838
- display: -ms-flexbox;
1839
- display: flex;
1840
- height: 100%;
1841
- -webkit-align-items: center;
1842
- -webkit-box-align: center;
1843
- -ms-flex-align: center;
1844
- align-items: center;
1845
- -webkit-flex-direction: row;
1846
- -ms-flex-direction: row;
1847
- flex-direction: row;
1848
- -webkit-box-pack: center;
1849
- -ms-flex-pack: center;
1850
- -webkit-justify-content: center;
1851
- justify-content: center;
1852
- margin-left: calc(-4px/2);
1853
- margin-right: calc(-4px/2);
1854
- }
1855
-
1856
- .emotion-124 {
1857
- margin: 0;
1858
- display: inline-block;
1859
- }
1860
-
1861
- @media screen and (max-width: 767px) {
1862
- .emotion-124 {
1863
- font-family: "Poppins",sans-serif;
1864
- font-size: 12px;
1865
- line-height: 18px;
1866
- font-weight: 500;
1867
- letter-spacing: 0;
1868
- padding: 0.5px 0px;
1869
- }
1870
-
1871
- .emotion-124::before {
1872
- content: '';
1873
- margin-bottom: -0.403em;
1874
- display: block;
1875
- }
1876
-
1877
- .emotion-124::after {
1878
- content: '';
1879
- margin-top: -0.4em;
1880
- display: block;
1881
- }
1882
- }
1883
-
1884
- @media screen and (min-width: 768px) and (max-width: 1439px) {
1885
- .emotion-124 {
1886
- font-family: "Poppins",sans-serif;
1887
- font-size: 14px;
1888
- line-height: 21px;
1889
- font-weight: 500;
1890
- letter-spacing: 0;
1891
- padding: 0.5px 0px;
1892
- }
1893
-
1894
- .emotion-124::before {
1895
- content: '';
1896
- margin-bottom: -0.403em;
1897
- display: block;
1898
- }
1899
-
1900
- .emotion-124::after {
1901
- content: '';
1902
- margin-top: -0.4em;
1903
- display: block;
1904
- }
1905
- }
1906
-
1907
- @media screen and (min-width: 1440px) {
1908
- .emotion-124 {
1909
- font-family: "Poppins",sans-serif;
1910
- font-size: 16px;
1911
- line-height: 24px;
1912
- font-weight: 500;
1913
- letter-spacing: 0;
1914
- padding: 0.5px 0px;
1915
- }
1916
-
1917
- .emotion-124::before {
1918
- content: '';
1919
- margin-bottom: -0.403em;
1920
- display: block;
1921
- }
1922
-
1923
- .emotion-124::after {
1924
- content: '';
1925
- margin-top: -0.4em;
1926
- display: block;
1927
- }
1928
- }
1929
-
1930
- .emotion-133 {
1931
- box-sizing: border-box;
1932
- -webkit-background-clip: padding-box;
1933
- background-clip: padding-box;
1934
- -webkit-flex: 1 0 auto;
1935
- -ms-flex: 1 0 auto;
1936
- flex: 1 0 auto;
1937
- }
1938
-
1939
- @media screen {
1940
- .emotion-133 {
1941
- padding: 0 8px;
1942
- -webkit-flex-basis: 100%;
1943
- -ms-flex-preferred-size: 100%;
1944
- flex-basis: 100%;
1945
- max-width: 100%;
1946
- }
1947
- }
1948
-
1949
- @media screen and (min-width: 1024px) {
1950
- .emotion-133 {
1951
- margin-left: 8.333333333333334%;
1952
- -webkit-flex-basis: 25%;
1953
- -ms-flex-preferred-size: 25%;
1954
- flex-basis: 25%;
1955
- max-width: 25%;
1956
- }
1957
- }
1958
-
1959
- .emotion-134 {
1960
- padding: 8px 12px;
1961
- }
1962
-
1963
- @media screen and (max-width: 1023px) {
1964
- .emotion-134 {
1965
- margin-bottom: 40px;
1966
- }
1967
- }
1968
-
1969
- @media screen and (min-width: 1024px) {
1970
- .emotion-134 {
1971
- margin-bottom: 24px;
1972
- }
1973
- }
1974
-
1975
- .emotion-135 {
1976
- height: 250px;
1977
- max-width: 300px;
1978
- width: 100%;
1979
- margin: 0 auto;
1980
- }
1981
-
1982
- @media screen {
1983
- .emotion-138 {
1984
- display: block;
1985
- }
1986
- }
1987
-
1988
- @media screen and (min-width: 480px) {
1989
- .emotion-138 {
1990
- display: none;
1991
- }
1992
- }
1993
-
1994
- @media screen and (min-width: 768px) {
1995
- .emotion-138 {
1996
- display: none;
1997
- }
1998
- }
1999
-
2000
- @media screen and (min-width: 1024px) {
2001
- .emotion-138 {
2002
- display: block;
2003
- }
2004
- }
2005
-
2006
- @media screen and (min-width: 1440px) {
2007
- .emotion-138 {
2008
- display: block;
2009
- }
2010
- }
2011
-
2012
- @media screen and (max-width: 1439px) {
2013
- .emotion-139 {
2014
- font-family: "Bitter",serif;
2015
- font-size: 24px;
2016
- line-height: 27px;
2017
- font-weight: 500;
2018
- letter-spacing: 0;
2019
- padding: 0.5px 0px;
2020
- }
2021
-
2022
- .emotion-139::before {
2023
- content: '';
2024
- margin-bottom: -0.2055em;
2025
- display: block;
2026
- }
2027
-
2028
- .emotion-139::after {
2029
- content: '';
2030
- margin-top: -0.2275em;
2031
- display: block;
2032
- }
2033
- }
2034
-
2035
- @media screen and (min-width: 1440px) {
2036
- .emotion-139 {
2037
- font-family: "Bitter",serif;
2038
- font-size: 28px;
2039
- line-height: 31.5px;
2040
- font-weight: 500;
2041
- letter-spacing: 0;
2042
- padding: 0.5px 0px;
2043
- }
2044
-
2045
- .emotion-139::before {
2046
- content: '';
2047
- margin-bottom: -0.2055em;
2048
- display: block;
2049
- }
2050
-
2051
- .emotion-139::after {
2052
- content: '';
2053
- margin-top: -0.2275em;
2054
- display: block;
2055
- }
2056
- }
2057
-
2058
- @media screen {
2059
- .emotion-141 {
2060
- display: none;
2061
- }
2062
- }
2063
-
2064
- @media screen and (min-width: 480px) {
2065
- .emotion-141 {
2066
- display: block;
2067
- }
2068
- }
2069
-
2070
- @media screen and (min-width: 768px) {
2071
- .emotion-141 {
2072
- display: block;
2073
- }
2074
- }
2075
-
2076
- @media screen and (min-width: 1024px) {
2077
- .emotion-141 {
2078
- display: none;
2079
- }
2080
- }
2081
-
2082
- @media screen and (min-width: 1440px) {
2083
- .emotion-141 {
2084
- display: none;
2085
- }
2086
- }
2087
-
2088
- .emotion-142 {
2089
- display: -webkit-box;
2090
- display: -webkit-flex;
2091
- display: -ms-flexbox;
2092
- display: flex;
2093
- height: 100%;
2094
- -webkit-align-items: center;
2095
- -webkit-box-align: center;
2096
- -ms-flex-align: center;
2097
- align-items: center;
2098
- -webkit-flex-direction: row;
2099
- -ms-flex-direction: row;
2100
- flex-direction: row;
2101
- -webkit-box-pack: justify;
2102
- -webkit-justify-content: space-between;
2103
- justify-content: space-between;
2104
- background-color: transparent;
2105
- }
2106
-
2107
- @media screen {
2108
- .emotion-142 {
2109
- padding: 0;
2110
- }
2111
- }
2112
-
2113
- .emotion-143 {
2114
- margin-right: 16px;
2115
- -webkit-box-flex: 1;
2116
- -webkit-flex-grow: 1;
2117
- -ms-flex-positive: 1;
2118
- flex-grow: 1;
2119
- }
2120
-
2121
- @media screen {
2122
- .emotion-146 {
2123
- display: none;
2124
- }
2125
- }
2126
-
2127
- @media screen and (min-width: 480px) {
2128
- .emotion-146 {
2129
- display: block;
2130
- }
2131
- }
2132
-
2133
- @media screen and (min-width: 768px) {
2134
- .emotion-146 {
2135
- display: block;
2136
- }
2137
- }
2138
-
2139
- @media screen and (min-width: 1024px) {
2140
- .emotion-146 {
2141
- display: block;
2142
- }
2143
- }
2144
-
2145
- @media screen and (min-width: 1440px) {
2146
- .emotion-146 {
2147
- display: block;
2148
- }
2149
- }
2150
-
2151
- .emotion-147 {
2152
- box-sizing: border-box;
2153
- display: -webkit-inline-box;
2154
- display: -webkit-inline-flex;
2155
- display: -ms-inline-flexbox;
2156
- display: inline-flex;
2157
- -webkit-box-pack: center;
2158
- -ms-flex-pack: center;
2159
- -webkit-justify-content: center;
2160
- justify-content: center;
2161
- -webkit-align-items: center;
2162
- -webkit-box-align: center;
2163
- -ms-flex-align: center;
2164
- align-items: center;
2165
- -webkit-text-decoration: none;
2166
- text-decoration: none;
2167
- min-height: 48px;
2168
- min-width: 80px;
2169
- padding: 12px 16px;
2170
- cursor: default;
2171
- overflow: hidden;
2172
- border: none;
2173
- -webkit-appearance: none;
2174
- -moz-appearance: none;
2175
- -ms-appearance: none;
2176
- appearance: none;
2177
- color: #3358CC;
2178
- margin: 0;
2179
- transition-property: background-color;
2180
- transition-duration: 200ms;
2181
- transition-timing-function: cubic-bezier(0, 0, .5, 1);
2182
- cursor: pointer;
2183
- }
2184
-
2185
- .emotion-147 svg {
2186
- width: 24px;
2187
- height: 24px;
2188
- }
2189
-
2190
- .emotion-147 svg {
2191
- fill: #3358CC;
2192
- }
2193
-
2194
- .emotion-150 {
2195
- margin: 0;
2196
- font-family: "Poppins",sans-serif;
2197
- font-size: 14px;
2198
- line-height: 21px;
2199
- font-weight: 500;
2200
- letter-spacing: 0;
2201
- padding: 0.5px 0px;
2202
- display: inline-block;
2203
- }
2204
-
2205
- .emotion-150::before {
2206
- content: '';
2207
- margin-bottom: -0.403em;
2208
- display: block;
2209
- }
2210
-
2211
- .emotion-150::after {
2212
- content: '';
2213
- margin-top: -0.4em;
2214
- display: block;
2215
- }
2216
-
2217
- .emotion-152 {
2218
- display: inline-block;
2219
- vertical-align: middle;
2220
- overflow: hidden;
2221
- fill: #2E2E2E;
2222
- vertical-align: unset;
2223
- display: inline-block;
2224
- }
2225
-
2226
- .emotion-152.emotion-152 {
2227
- width: 24px;
2228
- height: 24px;
2229
- }
2230
-
2231
- .emotion-156 {
2232
- box-sizing: border-box;
2233
- -webkit-background-clip: padding-box;
2234
- background-clip: padding-box;
2235
- display: -webkit-box;
2236
- display: -webkit-flex;
2237
- display: -ms-flexbox;
2238
- display: flex;
2239
- -webkit-box-flex-wrap: wrap;
2240
- -webkit-flex-wrap: wrap;
2241
- -ms-flex-wrap: wrap;
2242
- flex-wrap: wrap;
2243
- -webkit-flex-direction: row;
2244
- -ms-flex-direction: row;
2245
- flex-direction: row;
2246
- }
2247
-
2248
- @media screen {
2249
- .emotion-156 {
2250
- margin: -16px -8px 0 -8px;
2251
- }
2252
- }
2253
-
2254
- @media screen and (min-width: 480px) {
2255
- .emotion-156 {
2256
- margin: -16px -8px 0 -8px;
2257
- }
2258
- }
2259
-
2260
- @media screen and (min-width: 768px) {
2261
- .emotion-156 {
2262
- margin: -16px -8px 0 -8px;
2263
- }
2264
- }
2265
-
2266
- @media screen and (min-width: 1024px) {
2267
- .emotion-156 {
2268
- margin: -24px -12px 0 -12px;
2269
- }
2270
- }
2271
-
2272
- @media screen and (min-width: 1440px) {
2273
- .emotion-156 {
2274
- margin: -24px -12px 0 -12px;
2275
- }
2276
- }
2277
-
2278
- .emotion-157 {
2279
- box-sizing: border-box;
2280
- -webkit-background-clip: padding-box;
2281
- background-clip: padding-box;
2282
- -webkit-flex: 1 0 auto;
2283
- -ms-flex: 1 0 auto;
2284
- flex: 1 0 auto;
2285
- }
2286
-
2287
- @media screen {
2288
- .emotion-157 {
2289
- padding: 0 8px;
2290
- margin-top: 16px;
2291
- -webkit-flex-basis: 100%;
2292
- -ms-flex-preferred-size: 100%;
2293
- flex-basis: 100%;
2294
- max-width: 100%;
2295
- }
2296
- }
2297
-
2298
- @media screen and (min-width: 480px) {
2299
- .emotion-157 {
2300
- -webkit-flex-basis: 50%;
2301
- -ms-flex-preferred-size: 50%;
2302
- flex-basis: 50%;
2303
- max-width: 50%;
2304
- }
2305
- }
2306
-
2307
- @media screen and (min-width: 1024px) {
2308
- .emotion-157 {
2309
- padding: 0 12px;
2310
- margin-top: 24px;
2311
- -webkit-flex-basis: 100%;
2312
- -ms-flex-preferred-size: 100%;
2313
- flex-basis: 100%;
2314
- max-width: 100%;
2315
- }
2316
- }
2317
-
2318
- .emotion-159 {
2319
- box-sizing: border-box;
2320
- overflow: hidden;
2321
- color: #2E2E2E;
2322
- background-color: #FFFFFF;
2323
- position: relative;
2324
- display: -webkit-box;
2325
- display: -webkit-flex;
2326
- display: -ms-flexbox;
2327
- display: flex;
2328
- -webkit-flex-direction: rowfalse;
2329
- -ms-flex-direction: rowfalse;
2330
- flex-direction: rowfalse;
2331
- }
2332
-
2333
- .emotion-160 {
2334
- box-sizing: border-box;
2335
- display: block;
2336
- position: relative;
2337
- -webkit-flex: 1;
2338
- -ms-flex: 1;
2339
- flex: 1;
2340
- margin-right: 12px;
2341
- }
2342
-
2343
- .emotion-161 {
2344
- position: relative;
2345
- width: 100%;
2346
- display: block;
2347
- width: 150px;
2348
- height: 100px;
2349
- border-radius: 0;
2350
- background-color: #F4F4F4;
2351
- }
2352
-
2353
- .emotion-161 svg {
2354
- fill: #C0C0C0;
2355
- }
2356
-
2357
- .emotion-163 {
2358
- opacity: 0;
2359
- display: block;
2360
- border-radius: inherit;
2361
- height: 100px;
2362
- width: 150px;
2363
- top: 0;
2364
- left: 0;
2365
- position: absolute;
2366
- }
2367
-
2368
- .emotion-164 {
2369
- box-sizing: border-box;
2370
- display: -webkit-box;
2371
- display: -webkit-flex;
2372
- display: -ms-flexbox;
2373
- display: flex;
2374
- -webkit-flex-direction: column;
2375
- -ms-flex-direction: column;
2376
- flex-direction: column;
2377
- -webkit-flex: 1;
2378
- -ms-flex: 1;
2379
- flex: 1;
2380
- }
2381
-
2382
- .emotion-165 {
2383
- box-sizing: border-box;
2384
- -webkit-flex: 1;
2385
- -ms-flex: 1;
2386
- flex: 1;
2387
- padding: 0;
2388
- }
2389
-
2390
- .emotion-165 a:not(.nk-card-link) {
2391
- z-index: 2;
2392
- position: relative;
2393
- }
2394
-
2395
- .emotion-166 {
2396
- -webkit-text-decoration: none;
2397
- text-decoration: none;
2398
- border: none;
2399
- }
2400
-
2401
- .emotion-166 .nk-headline-kicker {
2402
- color: #3358CC;
2403
- }
2404
-
2405
- .emotion-166:hover:not(:disabled) .nk-headline-kicker {
2406
- color: #2B4AAB;
2407
- -webkit-text-decoration: underline;
2408
- text-decoration: underline;
2409
- }
2410
-
2411
- .emotion-166:active:not(:disabled) .nk-headline-kicker {
2412
- color: #213A82;
2413
- -webkit-text-decoration: underline;
2414
- text-decoration: underline;
2415
- }
2416
-
2417
- .emotion-166:visited:not(:disabled) .nk-headline-kicker {
2418
- color: #5E44E4;
2419
- }
2420
-
2421
- .emotion-166 .nk-headline-heading {
2422
- color: #2E2E2E;
2423
- }
2424
-
2425
- .emotion-166:hover:not(:disabled) .nk-headline-heading {
2426
- color: #2B4AAB;
2427
- -webkit-text-decoration: underline;
2428
- text-decoration: underline;
2429
- }
2430
-
2431
- .emotion-166:active:not(:disabled) .nk-headline-heading {
2432
- color: #213A82;
2433
- -webkit-text-decoration: underline;
2434
- text-decoration: underline;
2435
- }
2436
-
2437
- .emotion-166:visited:not(:disabled) .nk-headline-heading {
2438
- color: #5E44E4;
2439
- }
2440
-
2441
- .emotion-166:before {
2442
- content: '';
2443
- top: 0;
2444
- right: 0;
2445
- bottom: 0;
2446
- left: 0;
2447
- overflow: hidden;
2448
- position: absolute;
2449
- z-index: 1;
2450
- }
2451
-
2452
- @media screen and (max-width: 1439px) {
2453
- .emotion-167 {
2454
- font-family: "Bitter",serif;
2455
- font-size: 24px;
2456
- line-height: 27px;
2457
- font-weight: 500;
2458
- letter-spacing: 0;
2459
- padding: 0.5px 0px;
2460
- }
2461
-
2462
- .emotion-167::before {
2463
- content: '';
2464
- margin-bottom: -0.2055em;
2465
- display: block;
2466
- }
2467
-
2468
- .emotion-167::after {
2469
- content: '';
2470
- margin-top: -0.2275em;
2471
- display: block;
2472
- }
2473
- }
2474
-
2475
- @media screen and (min-width: 1440px) {
2476
- .emotion-167 {
2477
- font-family: "Bitter",serif;
2478
- font-size: 20px;
2479
- line-height: 22.5px;
2480
- font-weight: 500;
2481
- letter-spacing: 0;
2482
- padding: 0.5px 0px;
2483
- }
2484
-
2485
- .emotion-167::before {
2486
- content: '';
2487
- margin-bottom: -0.2055em;
2488
- display: block;
2489
- }
2490
-
2491
- .emotion-167::after {
2492
- content: '';
2493
- margin-top: -0.2275em;
2494
- display: block;
2495
- }
2496
- }
2497
-
2498
- .emotion-168 {
2499
- display: inline;
2500
- font: inherit;
2501
- margin: 0;
2502
- color: #2E2E2E;
2503
- }
2504
-
2505
- .emotion-168:hover:not(:disabled) {
2506
- color: #2B4AAB;
2507
- -webkit-text-decoration: underline;
2508
- text-decoration: underline;
2509
- }
2510
-
2511
- .emotion-168:active:not(:disabled) {
2512
- color: #213A82;
2513
- -webkit-text-decoration: underline;
2514
- text-decoration: underline;
2515
- }
2516
-
2517
- .emotion-168:visited:not(:disabled) {
2518
- color: #5E44E4;
2519
- }
2520
-
2521
- .emotion-181 {
2522
- box-sizing: border-box;
2523
- -webkit-background-clip: padding-box;
2524
- background-clip: padding-box;
2525
- -webkit-flex: 1 0 auto;
2526
- -ms-flex: 1 0 auto;
2527
- flex: 1 0 auto;
2528
- }
2529
-
2530
- @media screen {
2531
- .emotion-181 {
2532
- padding: 0 8px;
2533
- margin-top: 16px;
2534
- -webkit-flex-basis: 100%;
2535
- -ms-flex-preferred-size: 100%;
2536
- flex-basis: 100%;
2537
- max-width: 100%;
2538
- }
2539
- }
2540
-
2541
- @media screen and (min-width: 1024px) {
2542
- .emotion-181 {
2543
- padding: 0 12px;
2544
- margin-top: 24px;
2545
- }
2546
- }
2547
-
2548
- .emotion-184 {
2549
- display: -webkit-box;
2550
- display: -webkit-flex;
2551
- display: -ms-flexbox;
2552
- display: flex;
2553
- height: 100%;
2554
- -webkit-align-items: flex-start;
2555
- -webkit-box-align: flex-start;
2556
- -ms-flex-align: flex-start;
2557
- align-items: flex-start;
2558
- -webkit-flex-direction: column;
2559
- -ms-flex-direction: column;
2560
- flex-direction: column;
2561
- -webkit-box-pack: start;
2562
- -ms-flex-pack: start;
2563
- -webkit-justify-content: flex-start;
2564
- justify-content: flex-start;
2565
- }
2566
-
2567
- .emotion-185 {
2568
- display: -webkit-inline-box;
2569
- display: -webkit-inline-flex;
2570
- display: -ms-inline-flexbox;
2571
- display: inline-flex;
2572
- -webkit-align-self: center;
2573
- -ms-flex-item-align: center;
2574
- align-self: center;
2575
- }
2576
-
2577
- @media screen and (max-width: 767px) {
2578
- .emotion-199 {
2579
- font-family: "Bitter",serif;
2580
- font-size: 28px;
2581
- line-height: 31.5px;
2582
- font-weight: 500;
2583
- letter-spacing: 0;
2584
- padding: 0.5px 0px;
2585
- }
2586
-
2587
- .emotion-199::before {
2588
- content: '';
2589
- margin-bottom: -0.2055em;
2590
- display: block;
2591
- }
2592
-
2593
- .emotion-199::after {
2594
- content: '';
2595
- margin-top: -0.2275em;
2596
- display: block;
2597
- }
2598
- }
2599
-
2600
- @media screen and (min-width: 768px) and (max-width: 1439px) {
2601
- .emotion-199 {
2602
- font-family: "Bitter",serif;
2603
- font-size: 32px;
2604
- line-height: 36px;
2605
- font-weight: 500;
2606
- letter-spacing: 0;
2607
- padding: 0.5px 0px;
2608
- }
2609
-
2610
- .emotion-199::before {
2611
- content: '';
2612
- margin-bottom: -0.2055em;
2613
- display: block;
2614
- }
2615
-
2616
- .emotion-199::after {
2617
- content: '';
2618
- margin-top: -0.2275em;
2619
- display: block;
2620
- }
2621
- }
2622
-
2623
- @media screen and (min-width: 1440px) {
2624
- .emotion-199 {
2625
- font-family: "Bitter",serif;
2626
- font-size: 36px;
2627
- line-height: 40.5px;
2628
- font-weight: 500;
2629
- letter-spacing: 0;
2630
- padding: 0.5px 0px;
2631
- }
2632
-
2633
- .emotion-199::before {
2634
- content: '';
2635
- margin-bottom: -0.2055em;
2636
- display: block;
2637
- }
2638
-
2639
- .emotion-199::after {
2640
- content: '';
2641
- margin-top: -0.2275em;
2642
- display: block;
2643
- }
2644
- }
2645
-
2646
- .emotion-211 {
2647
- box-sizing: border-box;
2648
- -webkit-background-clip: padding-box;
2649
- background-clip: padding-box;
2650
- -webkit-flex: 1 0 auto;
2651
- -ms-flex: 1 0 auto;
2652
- flex: 1 0 auto;
2653
- }
2654
-
2655
- @media screen {
2656
- .emotion-211 {
2657
- padding: 0 8px;
2658
- margin-top: 16px;
2659
- -webkit-flex-basis: 100%;
2660
- -ms-flex-preferred-size: 100%;
2661
- flex-basis: 100%;
2662
- max-width: 100%;
2663
- }
2664
- }
2665
-
2666
- @media screen and (min-width: 480px) {
2667
- .emotion-211 {
2668
- -webkit-flex-basis: 50%;
2669
- -ms-flex-preferred-size: 50%;
2670
- flex-basis: 50%;
2671
- max-width: 50%;
2672
- }
2673
- }
2674
-
2675
- @media screen and (min-width: 1024px) {
2676
- .emotion-211 {
2677
- padding: 0 12px;
2678
- margin-top: 24px;
2679
- -webkit-flex-basis: 25%;
2680
- -ms-flex-preferred-size: 25%;
2681
- flex-basis: 25%;
2682
- max-width: 25%;
2683
- }
2684
- }
2685
-
2686
- .emotion-212 {
2687
- box-sizing: border-box;
2688
- overflow: hidden;
2689
- color: #2E2E2E;
2690
- background-color: #FFFFFF;
2691
- position: relative;
2692
- display: -webkit-box;
2693
- display: -webkit-flex;
2694
- display: -ms-flexbox;
2695
- display: flex;
2696
- -webkit-flex-direction: column;
2697
- -ms-flex-direction: column;
2698
- flex-direction: column;
2699
- }
2700
-
2701
- .emotion-213 {
2702
- box-sizing: border-box;
2703
- display: block;
2704
- position: relative;
2705
- margin-bottom: 12px;
2706
- }
2707
-
2708
- .emotion-214 {
2709
- position: relative;
2710
- width: 100%;
2711
- display: block;
2712
- padding-top: 66%;
2713
- height: 0;
2714
- width: 100%;
2715
- border-radius: 0;
2716
- background-color: #F4F4F4;
2717
- }
2718
-
2719
- .emotion-214 svg {
2720
- fill: #C0C0C0;
2721
- }
2722
-
2723
- .emotion-217 {
2724
- box-sizing: border-box;
2725
- }
2726
-
2727
- .emotion-218 {
2728
- box-sizing: border-box;
2729
- padding: 0;
2730
- }
2731
-
2732
- .emotion-218 a:not(.nk-card-link) {
2733
- z-index: 2;
2734
- position: relative;
2735
- }
2736
-
2737
- @media screen and (max-width: 767px) {
2738
- .emotion-220 {
2739
- margin-bottom: 16px;
2740
- }
2741
- }
2742
-
2743
- @media screen and (min-width: 768px) {
2744
- .emotion-220 {
2745
- margin-bottom: 24px;
2746
- }
2747
- }
2748
-
2749
- @media screen and (max-width: 767px) {
2750
- .emotion-222 {
2751
- font-family: "Bitter",serif;
2752
- font-size: 20px;
2753
- line-height: 22.5px;
2754
- font-weight: 500;
2755
- letter-spacing: 0;
2756
- padding: 0.5px 0px;
2757
- }
2758
-
2759
- .emotion-222::before {
2760
- content: '';
2761
- margin-bottom: -0.2055em;
2762
- display: block;
2763
- }
2764
-
2765
- .emotion-222::after {
2766
- content: '';
2767
- margin-top: -0.2275em;
2768
- display: block;
2769
- }
2770
- }
2771
-
2772
- @media screen and (min-width: 768px) and (max-width: 1439px) {
2773
- .emotion-222 {
2774
- font-family: "Bitter",serif;
2775
- font-size: 22px;
2776
- line-height: 24.75px;
2777
- font-weight: 500;
2778
- letter-spacing: 0;
2779
- padding: 0.5px 0px;
2780
- }
2781
-
2782
- .emotion-222::before {
2783
- content: '';
2784
- margin-bottom: -0.2055em;
2785
- display: block;
2786
- }
2787
-
2788
- .emotion-222::after {
2789
- content: '';
2790
- margin-top: -0.2275em;
2791
- display: block;
2792
- }
2793
- }
2794
-
2795
- @media screen and (min-width: 1440px) {
2796
- .emotion-222 {
2797
- font-family: "Bitter",serif;
2798
- font-size: 24px;
2799
- line-height: 27px;
2800
- font-weight: 500;
2801
- letter-spacing: 0;
2802
- padding: 0.5px 0px;
2803
- }
2804
-
2805
- .emotion-222::before {
2806
- content: '';
2807
- margin-bottom: -0.2055em;
2808
- display: block;
2809
- }
2810
-
2811
- .emotion-222::after {
2812
- content: '';
2813
- margin-top: -0.2275em;
2814
- display: block;
2815
- }
2816
- }
2817
-
2818
- .emotion-225 {
2819
- margin: 0;
2820
- color: #0A0A0A;
2821
- }
2822
-
2823
- .emotion-225 svg {
2824
- fill: #0A0A0A;
2825
- }
2826
-
2827
- @media screen and (max-width: 767px) {
2828
- .emotion-225 {
2829
- font-family: "DM Sans",sans-serif;
2830
- font-size: 14px;
2831
- line-height: 21px;
2832
- font-weight: 400;
2833
- letter-spacing: 0;
2834
- padding: 0.5px 0px;
2835
- }
2836
-
2837
- .emotion-225::before {
2838
- content: '';
2839
- margin-bottom: -0.391em;
2840
- display: block;
2841
- }
2842
-
2843
- .emotion-225::after {
2844
- content: '';
2845
- margin-top: -0.409em;
2846
- display: block;
2847
- }
2848
- }
2849
-
2850
- @media screen and (min-width: 768px) {
2851
- .emotion-225 {
2852
- font-family: "DM Sans",sans-serif;
2853
- font-size: 16px;
2854
- line-height: 24px;
2855
- font-weight: 400;
2856
- letter-spacing: 0;
2857
- padding: 0.5px 0px;
2858
- }
2859
-
2860
- .emotion-225::before {
2861
- content: '';
2862
- margin-bottom: -0.391em;
2863
- display: block;
2864
- }
2865
-
2866
- .emotion-225::after {
2867
- content: '';
2868
- margin-top: -0.409em;
2869
- display: block;
2870
- }
2871
- }
2872
-
2873
- @media screen {
2874
- .emotion-242 {
2875
- display: block;
2876
- }
2877
- }
2878
-
2879
- @media screen and (min-width: 480px) {
2880
- .emotion-242 {
2881
- display: none;
2882
- }
2883
- }
2884
-
2885
- @media screen and (min-width: 768px) {
2886
- .emotion-242 {
2887
- display: none;
2888
- }
2889
- }
2890
-
2891
- @media screen and (min-width: 1024px) {
2892
- .emotion-242 {
2893
- display: block;
2894
- }
2895
- }
2896
-
2897
- @media screen and (min-width: 1440px) {
2898
- .emotion-242 {
2899
- display: none;
2900
- }
2901
- }
2902
-
2903
- @media screen {
2904
- .emotion-255 {
2905
- margin-bottom: 64px;
2906
- }
2907
- }
2908
-
2909
- <div
2910
- class="emotion-0"
194
+ <div
195
+ class="css-1ce0b49"
2911
196
  >
2912
197
  <div
2913
- class="emotion-1"
198
+ class="css-8atxkm"
2914
199
  >
2915
200
  <div
2916
- class="emotion-2"
201
+ class="css-11sfip2"
2917
202
  data-testid="PageLayout"
2918
203
  >
2919
204
  <div
2920
- class="emotion-3"
205
+ class="css-18d6eiw"
2921
206
  data-testid="PageLayout"
2922
207
  >
2923
208
  <div
2924
- class="emotion-4"
209
+ class="css-ywgq8m"
2925
210
  />
2926
211
  </div>
2927
212
  <div
2928
- class="emotion-5"
213
+ class="css-1hoolz9"
2929
214
  data-testid="PageLayout"
2930
215
  >
2931
216
  <div
2932
- class="emotion-6"
217
+ class="css-16in0m0"
2933
218
  data-testid="HeadLine"
2934
219
  >
2935
220
  <section
2936
- class="emotion-7"
221
+ class="css-1wf58dm"
2937
222
  >
2938
223
  <h1
2939
- class="nk-headline-heading emotion-8"
224
+ class="nk-headline-heading css-5gd387"
2940
225
  >
2941
226
  Mock Article: Lorem ipsum dolor sit amet consectetur adipiscing elit
2942
227
  </h1>
2943
228
  </section>
2944
229
  </div>
2945
230
  <div
2946
- class="emotion-9"
231
+ class="css-gxh9kv"
2947
232
  data-testid="Kicker"
2948
233
  >
2949
234
  <section
2950
- class="emotion-10"
235
+ class="css-k0zmqb"
2951
236
  >
2952
237
  <h2
2953
- class="nk-headline-heading emotion-11"
238
+ class="nk-headline-heading css-1qhitfs"
2954
239
  >
2955
240
  Kicker title
2956
241
  </h2>
2957
242
  </section>
2958
243
  </div>
2959
244
  <div
2960
- class="emotion-12"
245
+ class="css-1wffvjk"
2961
246
  >
2962
247
  <div
2963
- class="emotion-13"
248
+ class="css-1k3e0au"
2964
249
  >
2965
250
  <div
2966
- class="emotion-14"
251
+ class="css-1fmioha"
2967
252
  >
2968
253
  <div
2969
- class="emotion-15"
254
+ class="css-30qa7x"
2970
255
  >
2971
256
  <div
2972
- class="emotion-16"
257
+ class="css-1jjwo6p"
2973
258
  >
2974
259
  <div
2975
- class="emotion-17"
260
+ class="css-1penzzz"
2976
261
  >
2977
262
  <span
2978
- class="emotion-18"
263
+ class="css-1p5w9xw"
2979
264
  >
2980
265
  <a
2981
266
  aria-label="more by John Smith"
2982
- class="emotion-19"
267
+ class="css-14yas4a"
2983
268
  data-author="John Smith"
2984
269
  href="https://www.newskit.co.uk/components/navigation/link"
2985
270
  rel="author"
2986
271
  >
2987
272
  <span
2988
- class="emotion-20"
273
+ class="css-pqzzby"
2989
274
  >
2990
275
  <span
2991
- class="emotion-21"
276
+ class="css-14dqn90"
2992
277
  >
2993
278
  <span
2994
- class="emotion-22"
279
+ class="css-muj8w6"
2995
280
  >
2996
281
  John Smith
2997
282
  </span>
2998
283
  </span>
2999
284
  <span
3000
- class="emotion-21"
285
+ class="css-14dqn90"
3001
286
  >
3002
287
  <svg
3003
- class="emotion-24 emotion-25"
288
+ class="css-19fc6y7-EmotionIconBase ex0cdmw0"
3004
289
  fill="currentColor"
3005
290
  focusable="false"
3006
291
  role="img"
@@ -3023,7 +308,7 @@ exports[`Article should render tile and sub title 1`] = `
3023
308
  </a>
3024
309
  <span
3025
310
  aria-hidden="true"
3026
- class="emotion-18"
311
+ class="css-1p5w9xw"
3027
312
  >
3028
313
 
3029
314
  </span>
@@ -3032,11 +317,13 @@ exports[`Article should render tile and sub title 1`] = `
3032
317
  </div>
3033
318
  </div>
3034
319
  <div
3035
- class="emotion-15"
320
+ class="css-30qa7x"
3036
321
  >
3037
- <time>
322
+ <time
323
+ class="css-k9ha2f"
324
+ >
3038
325
  <span
3039
- class="emotion-28"
326
+ class="css-1khiq05"
3040
327
  >
3041
328
  Thu February 14 2019, 12:37am
3042
329
  </span>
@@ -3045,31 +332,31 @@ exports[`Article should render tile and sub title 1`] = `
3045
332
  </div>
3046
333
  </div>
3047
334
  <div
3048
- class="emotion-14"
335
+ class="css-1fmioha"
3049
336
  >
3050
337
  <hr
3051
338
  aria-hidden="true"
3052
- class="emotion-30"
339
+ class="css-633um5"
3053
340
  data-testid="divider"
3054
341
  />
3055
342
  </div>
3056
343
  <div
3057
- class="emotion-6"
344
+ class="css-16in0m0"
3058
345
  >
3059
346
  <a
3060
- class="emotion-32"
347
+ class="css-1fgc81t"
3061
348
  data-testid="buttonLink"
3062
349
  href="https://www.newskit.co.uk/"
3063
350
  >
3064
351
  <div
3065
- class="emotion-33"
352
+ class="css-bptyib"
3066
353
  >
3067
354
  <div
3068
- class="emotion-34"
355
+ class="css-1yztr03"
3069
356
  >
3070
357
  <svg
3071
358
  aria-hidden="true"
3072
- class="emotion-35 emotion-25"
359
+ class="css-tf5kji-EmotionIconBase ex0cdmw0"
3073
360
  fill="currentColor"
3074
361
  focusable="false"
3075
362
  viewBox="0 0 24 24"
@@ -3085,10 +372,10 @@ exports[`Article should render tile and sub title 1`] = `
3085
372
  </svg>
3086
373
  </div>
3087
374
  <div
3088
- class="emotion-34"
375
+ class="css-1yztr03"
3089
376
  >
3090
377
  <span
3091
- class="emotion-38"
378
+ class="css-1v8h4au"
3092
379
  >
3093
380
  Share
3094
381
  </span>
@@ -3098,48 +385,48 @@ exports[`Article should render tile and sub title 1`] = `
3098
385
  </div>
3099
386
  </div>
3100
387
  <div
3101
- class="emotion-39"
388
+ class="css-1nlep1q"
3102
389
  >
3103
390
  <div
3104
- class="emotion-40"
391
+ class="css-15zrtsn"
3105
392
  data-testid="MetaBox"
3106
393
  >
3107
394
  <div
3108
- class="emotion-15"
395
+ class="css-30qa7x"
3109
396
  >
3110
397
  <div
3111
- class="emotion-16"
398
+ class="css-1jjwo6p"
3112
399
  >
3113
400
  <div
3114
- class="emotion-17"
401
+ class="css-1penzzz"
3115
402
  >
3116
403
  <span
3117
- class="emotion-18"
404
+ class="css-1p5w9xw"
3118
405
  >
3119
406
  <a
3120
407
  aria-label="more by John Smith"
3121
- class="emotion-19"
408
+ class="css-14yas4a"
3122
409
  data-author="John Smith"
3123
410
  href="https://www.newskit.co.uk/components/navigation/link"
3124
411
  rel="author"
3125
412
  >
3126
413
  <span
3127
- class="emotion-20"
414
+ class="css-pqzzby"
3128
415
  >
3129
416
  <span
3130
- class="emotion-21"
417
+ class="css-14dqn90"
3131
418
  >
3132
419
  <span
3133
- class="emotion-22"
420
+ class="css-muj8w6"
3134
421
  >
3135
422
  John Smith
3136
423
  </span>
3137
424
  </span>
3138
425
  <span
3139
- class="emotion-21"
426
+ class="css-14dqn90"
3140
427
  >
3141
428
  <svg
3142
- class="emotion-24 emotion-25"
429
+ class="css-19fc6y7-EmotionIconBase ex0cdmw0"
3143
430
  fill="currentColor"
3144
431
  focusable="false"
3145
432
  role="img"
@@ -3162,7 +449,7 @@ exports[`Article should render tile and sub title 1`] = `
3162
449
  </a>
3163
450
  <span
3164
451
  aria-hidden="true"
3165
- class="emotion-18"
452
+ class="css-1p5w9xw"
3166
453
  >
3167
454
 
3168
455
  </span>
@@ -3171,11 +458,13 @@ exports[`Article should render tile and sub title 1`] = `
3171
458
  </div>
3172
459
  </div>
3173
460
  <div
3174
- class="emotion-15"
461
+ class="css-30qa7x"
3175
462
  >
3176
- <time>
463
+ <time
464
+ class="css-k9ha2f"
465
+ >
3177
466
  <span
3178
- class="emotion-28"
467
+ class="css-1khiq05"
3179
468
  >
3180
469
  Thu February 14 2019, 12:37am
3181
470
  </span>
@@ -3183,28 +472,28 @@ exports[`Article should render tile and sub title 1`] = `
3183
472
  </div>
3184
473
  </div>
3185
474
  <div
3186
- class="emotion-55"
475
+ class="css-1rjn7y8"
3187
476
  >
3188
477
  <div
3189
- class="emotion-56"
478
+ class="css-1mvna34"
3190
479
  orientation="horizontal"
3191
480
  role="region"
3192
481
  >
3193
482
  <span
3194
- class="emotion-57"
483
+ class="css-1e1hg9i"
3195
484
  orientation="horizontal"
3196
485
  >
3197
486
  Share
3198
487
  </span>
3199
488
  <div
3200
- class="emotion-58"
489
+ class="css-18bz6hs"
3201
490
  >
3202
491
  <div
3203
- class="emotion-59"
492
+ class="css-5ou914"
3204
493
  >
3205
494
  <svg
3206
495
  aria-hidden="true"
3207
- class="emotion-60 emotion-25"
496
+ class="css-2blx0a-EmotionIconBase ex0cdmw0"
3208
497
  fill="currentColor"
3209
498
  focusable="false"
3210
499
  viewBox="0 0 24 24"
@@ -3220,11 +509,11 @@ exports[`Article should render tile and sub title 1`] = `
3220
509
  </svg>
3221
510
  </div>
3222
511
  <div
3223
- class="emotion-59"
512
+ class="css-5ou914"
3224
513
  >
3225
514
  <svg
3226
515
  aria-hidden="true"
3227
- class="emotion-63"
516
+ class="css-144awdp"
3228
517
  fill="currentColor"
3229
518
  viewBox="0 0 24 24"
3230
519
  xmlns="http://www.w3.org/2000/svg"
@@ -3236,11 +525,11 @@ exports[`Article should render tile and sub title 1`] = `
3236
525
  </svg>
3237
526
  </div>
3238
527
  <div
3239
- class="emotion-59"
528
+ class="css-5ou914"
3240
529
  >
3241
530
  <svg
3242
531
  aria-hidden="true"
3243
- class="emotion-63"
532
+ class="css-144awdp"
3244
533
  fill="currentColor"
3245
534
  viewBox="0 0 24 24"
3246
535
  xmlns="http://www.w3.org/2000/svg"
@@ -3252,11 +541,11 @@ exports[`Article should render tile and sub title 1`] = `
3252
541
  </svg>
3253
542
  </div>
3254
543
  <div
3255
- class="emotion-59"
544
+ class="css-5ou914"
3256
545
  >
3257
546
  <svg
3258
547
  aria-hidden="true"
3259
- class="emotion-60 emotion-25"
548
+ class="css-2blx0a-EmotionIconBase ex0cdmw0"
3260
549
  fill="currentColor"
3261
550
  focusable="false"
3262
551
  viewBox="0 0 24 24"
@@ -3278,99 +567,99 @@ exports[`Article should render tile and sub title 1`] = `
3278
567
  </div>
3279
568
  </div>
3280
569
  <div
3281
- class="emotion-69"
570
+ class="css-nvrg5u"
3282
571
  >
3283
572
  <figure
3284
- class="emotion-70"
573
+ class="css-r44k6v"
3285
574
  >
3286
575
  <picture
3287
- class="emotion-71"
576
+ class="css-1tors5"
3288
577
  >
3289
578
  <div
3290
- class="emotion-72"
579
+ class="css-5pczz7"
3291
580
  />
3292
581
  <img
3293
582
  alt="testIMG"
3294
- class="emotion-73"
583
+ class="css-1qgqq71"
3295
584
  src="img//url"
3296
585
  />
3297
586
  </picture>
3298
587
  </figure>
3299
588
  </div>
3300
589
  <div
3301
- class="emotion-74"
590
+ class="css-1vdrff9"
3302
591
  data-testid="ArticleContent"
3303
592
  >
3304
593
  <div
3305
- class="emotion-75"
594
+ class="css-lcu8j4"
3306
595
  data-testid="ArticleParagraph"
3307
596
  >
3308
597
  <p
3309
- class="emotion-76"
598
+ class="css-77jvx4"
3310
599
  >
3311
600
  paragraph one
3312
601
  </p>
3313
602
  </div>
3314
603
  <div
3315
- class="emotion-75"
604
+ class="css-lcu8j4"
3316
605
  data-testid="ArticleParagraph"
3317
606
  >
3318
607
  <p
3319
- class="emotion-76"
608
+ class="css-77jvx4"
3320
609
  >
3321
610
  paragraph two
3322
611
  </p>
3323
612
  </div>
3324
613
  <div
3325
- class="emotion-75"
614
+ class="css-lcu8j4"
3326
615
  data-testid="ArticleParagraph"
3327
616
  >
3328
617
  <p
3329
- class="emotion-76"
618
+ class="css-77jvx4"
3330
619
  >
3331
620
  paragraph three
3332
621
  </p>
3333
622
  </div>
3334
623
  <div
3335
- class="emotion-75"
624
+ class="css-lcu8j4"
3336
625
  data-testid="ArticleParagraph"
3337
626
  >
3338
627
  <p
3339
- class="emotion-76"
628
+ class="css-77jvx4"
3340
629
  >
3341
630
  paragraph four
3342
631
  </p>
3343
632
  </div>
3344
633
  </div>
3345
634
  <div
3346
- class="emotion-13"
635
+ class="css-1k3e0au"
3347
636
  >
3348
637
  <div
3349
- class="emotion-6"
638
+ class="css-16in0m0"
3350
639
  >
3351
640
  <hr
3352
641
  aria-hidden="true"
3353
- class="emotion-30"
642
+ class="css-633um5"
3354
643
  data-testid="divider"
3355
644
  />
3356
645
  </div>
3357
646
  <div
3358
- class="emotion-86"
647
+ class="css-bmafgm"
3359
648
  >
3360
649
  <a
3361
- class="emotion-32"
650
+ class="css-1fgc81t"
3362
651
  data-testid="buttonLink"
3363
652
  href="https://www.newskit.co.uk/"
3364
653
  >
3365
654
  <div
3366
- class="emotion-33"
655
+ class="css-bptyib"
3367
656
  >
3368
657
  <div
3369
- class="emotion-34"
658
+ class="css-1yztr03"
3370
659
  >
3371
660
  <svg
3372
661
  aria-hidden="true"
3373
- class="emotion-35 emotion-25"
662
+ class="css-tf5kji-EmotionIconBase ex0cdmw0"
3374
663
  fill="currentColor"
3375
664
  focusable="false"
3376
665
  viewBox="0 0 24 24"
@@ -3386,10 +675,10 @@ exports[`Article should render tile and sub title 1`] = `
3386
675
  </svg>
3387
676
  </div>
3388
677
  <div
3389
- class="emotion-34"
678
+ class="css-1yztr03"
3390
679
  >
3391
680
  <span
3392
- class="emotion-38"
681
+ class="css-1v8h4au"
3393
682
  >
3394
683
  Share
3395
684
  </span>
@@ -3399,46 +688,46 @@ exports[`Article should render tile and sub title 1`] = `
3399
688
  </div>
3400
689
  </div>
3401
690
  <div
3402
- class="emotion-39"
691
+ class="css-1nlep1q"
3403
692
  >
3404
693
  <div
3405
- class="emotion-6"
694
+ class="css-16in0m0"
3406
695
  >
3407
696
  <hr
3408
697
  aria-hidden="true"
3409
- class="emotion-30"
698
+ class="css-633um5"
3410
699
  data-testid="divider"
3411
700
  />
3412
701
  </div>
3413
702
  <div
3414
- class="emotion-86"
703
+ class="css-bmafgm"
3415
704
  >
3416
705
  <div
3417
- class="emotion-98"
706
+ class="css-1pbg2cs"
3418
707
  >
3419
708
  <div
3420
- class="emotion-99"
709
+ class="css-xnj4zj"
3421
710
  >
3422
711
  <div
3423
- class="emotion-56"
712
+ class="css-1mvna34"
3424
713
  orientation="horizontal"
3425
714
  role="region"
3426
715
  >
3427
716
  <span
3428
- class="emotion-57"
717
+ class="css-1e1hg9i"
3429
718
  orientation="horizontal"
3430
719
  >
3431
720
  Share
3432
721
  </span>
3433
722
  <div
3434
- class="emotion-58"
723
+ class="css-18bz6hs"
3435
724
  >
3436
725
  <div
3437
- class="emotion-59"
726
+ class="css-5ou914"
3438
727
  >
3439
728
  <svg
3440
729
  aria-hidden="true"
3441
- class="emotion-60 emotion-25"
730
+ class="css-2blx0a-EmotionIconBase ex0cdmw0"
3442
731
  fill="currentColor"
3443
732
  focusable="false"
3444
733
  viewBox="0 0 24 24"
@@ -3454,11 +743,11 @@ exports[`Article should render tile and sub title 1`] = `
3454
743
  </svg>
3455
744
  </div>
3456
745
  <div
3457
- class="emotion-59"
746
+ class="css-5ou914"
3458
747
  >
3459
748
  <svg
3460
749
  aria-hidden="true"
3461
- class="emotion-63"
750
+ class="css-144awdp"
3462
751
  fill="currentColor"
3463
752
  viewBox="0 0 24 24"
3464
753
  xmlns="http://www.w3.org/2000/svg"
@@ -3470,11 +759,11 @@ exports[`Article should render tile and sub title 1`] = `
3470
759
  </svg>
3471
760
  </div>
3472
761
  <div
3473
- class="emotion-59"
762
+ class="css-5ou914"
3474
763
  >
3475
764
  <svg
3476
765
  aria-hidden="true"
3477
- class="emotion-63"
766
+ class="css-144awdp"
3478
767
  fill="currentColor"
3479
768
  viewBox="0 0 24 24"
3480
769
  xmlns="http://www.w3.org/2000/svg"
@@ -3486,11 +775,11 @@ exports[`Article should render tile and sub title 1`] = `
3486
775
  </svg>
3487
776
  </div>
3488
777
  <div
3489
- class="emotion-59"
778
+ class="css-5ou914"
3490
779
  >
3491
780
  <svg
3492
781
  aria-hidden="true"
3493
- class="emotion-60 emotion-25"
782
+ class="css-2blx0a-EmotionIconBase ex0cdmw0"
3494
783
  fill="currentColor"
3495
784
  focusable="false"
3496
785
  viewBox="0 0 24 24"
@@ -3512,46 +801,46 @@ exports[`Article should render tile and sub title 1`] = `
3512
801
  </div>
3513
802
  </div>
3514
803
  <div
3515
- class="emotion-15"
804
+ class="css-30qa7x"
3516
805
  >
3517
806
  <div
3518
- class="emotion-6"
807
+ class="css-16in0m0"
3519
808
  >
3520
809
  <section
3521
- class="emotion-115"
810
+ class="css-qv96ce"
3522
811
  >
3523
812
  <h1
3524
- class="nk-headline-heading emotion-11"
813
+ class="nk-headline-heading css-1qhitfs"
3525
814
  >
3526
815
  Related topics
3527
816
  </h1>
3528
817
  </section>
3529
818
  </div>
3530
819
  <div
3531
- class="emotion-117"
820
+ class="css-38y4ob"
3532
821
  >
3533
822
  <div
3534
- class="emotion-118"
823
+ class="css-mdhsjw"
3535
824
  data-testid="RelatedTopics"
3536
825
  >
3537
826
  <div
3538
- class="emotion-119"
827
+ class="css-1jnyopt"
3539
828
  >
3540
829
  <div
3541
- class="emotion-120"
830
+ class="css-14xhfxi"
3542
831
  >
3543
832
  <div
3544
- class="emotion-121"
833
+ class="css-1oe1rpd"
3545
834
  data-testid="tag"
3546
835
  >
3547
836
  <div
3548
- class="emotion-122"
837
+ class="css-m556v"
3549
838
  >
3550
839
  <div
3551
- class="emotion-21"
840
+ class="css-14dqn90"
3552
841
  >
3553
842
  <span
3554
- class="emotion-124"
843
+ class="css-1erkh45"
3555
844
  >
3556
845
  Some topic one
3557
846
  </span>
@@ -3561,23 +850,23 @@ exports[`Article should render tile and sub title 1`] = `
3561
850
  </div>
3562
851
  </div>
3563
852
  <div
3564
- class="emotion-119"
853
+ class="css-1jnyopt"
3565
854
  >
3566
855
  <div
3567
- class="emotion-120"
856
+ class="css-14xhfxi"
3568
857
  >
3569
858
  <div
3570
- class="emotion-121"
859
+ class="css-1oe1rpd"
3571
860
  data-testid="tag"
3572
861
  >
3573
862
  <div
3574
- class="emotion-122"
863
+ class="css-m556v"
3575
864
  >
3576
865
  <div
3577
- class="emotion-21"
866
+ class="css-14dqn90"
3578
867
  >
3579
868
  <span
3580
- class="emotion-124"
869
+ class="css-1erkh45"
3581
870
  >
3582
871
  Some topic one
3583
872
  </span>
@@ -3589,94 +878,94 @@ exports[`Article should render tile and sub title 1`] = `
3589
878
  </div>
3590
879
  </div>
3591
880
  <div
3592
- class="emotion-9"
881
+ class="css-gxh9kv"
3593
882
  >
3594
883
  <hr
3595
884
  aria-hidden="true"
3596
- class="emotion-30"
885
+ class="css-633um5"
3597
886
  data-testid="divider"
3598
887
  />
3599
888
  </div>
3600
889
  </div>
3601
890
  </div>
3602
891
  <div
3603
- class="emotion-133"
892
+ class="css-1qobz4o"
3604
893
  data-testid="PageLayout"
3605
894
  >
3606
895
  <div
3607
- class="emotion-134"
896
+ class="css-ezeoqu"
3608
897
  data-testid="Ads"
3609
898
  >
3610
899
  <div
3611
- class="emotion-135"
900
+ class="css-1dl2ysh"
3612
901
  id="advert-article-sidebar"
3613
902
  />
3614
903
  </div>
3615
904
  <div
3616
- class="emotion-117"
905
+ class="css-38y4ob"
3617
906
  data-testid="Highlights"
3618
907
  >
3619
908
  <div
3620
- class="emotion-117"
909
+ class="css-38y4ob"
3621
910
  >
3622
911
  <div
3623
- class="emotion-138"
912
+ class="css-1ujq44n"
3624
913
  >
3625
914
  <section
3626
- class="emotion-139"
915
+ class="css-r3v25s"
3627
916
  >
3628
917
  <h1
3629
- class="nk-headline-heading emotion-8"
918
+ class="nk-headline-heading css-5gd387"
3630
919
  >
3631
920
  Highlights
3632
921
  </h1>
3633
922
  </section>
3634
923
  </div>
3635
924
  <div
3636
- class="emotion-141"
925
+ class="css-1uo5aiw"
3637
926
  >
3638
927
  <div
3639
- class="emotion-142"
928
+ class="css-ar93hv"
3640
929
  >
3641
930
  <div
3642
- class="emotion-143"
931
+ class="css-krscqv"
3643
932
  >
3644
933
  <section
3645
- class="emotion-139"
934
+ class="css-r3v25s"
3646
935
  >
3647
936
  <h3
3648
- class="nk-headline-heading emotion-8"
937
+ class="nk-headline-heading css-5gd387"
3649
938
  >
3650
939
  Highlights
3651
940
  </h3>
3652
941
  </section>
3653
942
  </div>
3654
943
  <div
3655
- class="emotion-146"
944
+ class="css-1h0bvuz"
3656
945
  >
3657
946
  <a
3658
- class="emotion-147"
947
+ class="css-1jv78aa"
3659
948
  data-testid="buttonLink"
3660
949
  href="/"
3661
950
  >
3662
951
  <div
3663
- class="emotion-33"
952
+ class="css-bptyib"
3664
953
  >
3665
954
  <div
3666
- class="emotion-34"
955
+ class="css-1yztr03"
3667
956
  >
3668
957
  <span
3669
- class="emotion-150"
958
+ class="css-3kpoql"
3670
959
  >
3671
960
  View all
3672
961
  </span>
3673
962
  </div>
3674
963
  <div
3675
- class="emotion-34"
964
+ class="css-1yztr03"
3676
965
  >
3677
966
  <svg
3678
967
  aria-hidden="true"
3679
- class="emotion-152 emotion-25"
968
+ class="css-by9y3d-EmotionIconBase ex0cdmw0"
3680
969
  fill="currentColor"
3681
970
  focusable="false"
3682
971
  viewBox="0 0 24 24"
@@ -3698,55 +987,55 @@ exports[`Article should render tile and sub title 1`] = `
3698
987
  </div>
3699
988
  </div>
3700
989
  <div
3701
- class="emotion-120"
990
+ class="css-14xhfxi"
3702
991
  >
3703
992
  <div
3704
- class="emotion-1"
993
+ class="css-8atxkm"
3705
994
  >
3706
995
  <div
3707
- class="emotion-156"
996
+ class="css-1ji12ea"
3708
997
  >
3709
998
  <div
3710
- class="emotion-157"
999
+ class="css-3jmwfs"
3711
1000
  >
3712
1001
  <div
3713
- class="emotion-120"
1002
+ class="css-14xhfxi"
3714
1003
  data-testid="HighlightsHorizontalCard"
3715
1004
  >
3716
1005
  <div
3717
- class="emotion-159"
1006
+ class="css-6c0oh5"
3718
1007
  >
3719
1008
  <div
3720
- class="emotion-160"
1009
+ class="css-14avdtw"
3721
1010
  >
3722
1011
  <picture
3723
- class="emotion-161"
1012
+ class="css-1a8w4l6"
3724
1013
  >
3725
1014
  <div
3726
- class="emotion-72"
1015
+ class="css-5pczz7"
3727
1016
  />
3728
1017
  <img
3729
1018
  alt="Card Media"
3730
- class="emotion-163"
1019
+ class="css-n57idg"
3731
1020
  src="https://plchldr.co/i/50x50"
3732
1021
  />
3733
1022
  </picture>
3734
1023
  </div>
3735
1024
  <div
3736
- class="emotion-164"
1025
+ class="css-1r2lt0d"
3737
1026
  >
3738
1027
  <div
3739
- class="emotion-165"
1028
+ class="css-h6wt93"
3740
1029
  >
3741
1030
  <a
3742
- class="nk-card-link emotion-166"
3743
- href="undefined"
1031
+ class="nk-card-link css-1cq1vxv"
1032
+ href="https://newskit-render.ceng-dev.newsuk.tech"
3744
1033
  >
3745
1034
  <section
3746
- class="emotion-167"
1035
+ class="css-1mwgn7o"
3747
1036
  >
3748
1037
  <h4
3749
- class="nk-headline-heading emotion-168"
1038
+ class="nk-headline-heading css-10swdqn"
3750
1039
  >
3751
1040
  Test Box
3752
1041
  </h4>
@@ -3758,46 +1047,46 @@ exports[`Article should render tile and sub title 1`] = `
3758
1047
  </div>
3759
1048
  </div>
3760
1049
  <div
3761
- class="emotion-157"
1050
+ class="css-3jmwfs"
3762
1051
  >
3763
1052
  <div
3764
- class="emotion-120"
1053
+ class="css-14xhfxi"
3765
1054
  data-testid="HighlightsHorizontalCard"
3766
1055
  >
3767
1056
  <div
3768
- class="emotion-159"
1057
+ class="css-6c0oh5"
3769
1058
  >
3770
1059
  <div
3771
- class="emotion-160"
1060
+ class="css-14avdtw"
3772
1061
  >
3773
1062
  <picture
3774
- class="emotion-161"
1063
+ class="css-1a8w4l6"
3775
1064
  >
3776
1065
  <div
3777
- class="emotion-72"
1066
+ class="css-5pczz7"
3778
1067
  />
3779
1068
  <img
3780
1069
  alt="Card Media"
3781
- class="emotion-163"
1070
+ class="css-n57idg"
3782
1071
  src="https://plchldr.co/i/50x50"
3783
1072
  />
3784
1073
  </picture>
3785
1074
  </div>
3786
1075
  <div
3787
- class="emotion-164"
1076
+ class="css-1r2lt0d"
3788
1077
  >
3789
1078
  <div
3790
- class="emotion-165"
1079
+ class="css-h6wt93"
3791
1080
  >
3792
1081
  <a
3793
- class="nk-card-link emotion-166"
3794
- href="undefined"
1082
+ class="nk-card-link css-1cq1vxv"
1083
+ href="https://newskit-render.ceng-dev.newsuk.tech"
3795
1084
  >
3796
1085
  <section
3797
- class="emotion-167"
1086
+ class="css-1mwgn7o"
3798
1087
  >
3799
1088
  <h4
3800
- class="nk-headline-heading emotion-168"
1089
+ class="nk-headline-heading css-10swdqn"
3801
1090
  >
3802
1091
  Prince Harry
3803
1092
  </h4>
@@ -3809,45 +1098,45 @@ exports[`Article should render tile and sub title 1`] = `
3809
1098
  </div>
3810
1099
  </div>
3811
1100
  <div
3812
- class="emotion-181"
1101
+ class="css-6gys8z"
3813
1102
  >
3814
1103
  <div
3815
- class="emotion-138"
1104
+ class="css-1ujq44n"
3816
1105
  >
3817
1106
  <hr
3818
1107
  aria-hidden="true"
3819
- class="emotion-30"
1108
+ class="css-633um5"
3820
1109
  data-testid="divider"
3821
1110
  />
3822
1111
  <div
3823
- class="emotion-184"
1112
+ class="css-1c2ypzx"
3824
1113
  >
3825
1114
  <div
3826
- class="emotion-185"
1115
+ class="css-le9csr"
3827
1116
  >
3828
1117
  <a
3829
- class="emotion-147"
1118
+ class="css-1jv78aa"
3830
1119
  data-testid="buttonLink"
3831
1120
  href="/"
3832
1121
  >
3833
1122
  <div
3834
- class="emotion-33"
1123
+ class="css-bptyib"
3835
1124
  >
3836
1125
  <div
3837
- class="emotion-34"
1126
+ class="css-1yztr03"
3838
1127
  >
3839
1128
  <span
3840
- class="emotion-150"
1129
+ class="css-3kpoql"
3841
1130
  >
3842
1131
  View all
3843
1132
  </span>
3844
1133
  </div>
3845
1134
  <div
3846
- class="emotion-34"
1135
+ class="css-1yztr03"
3847
1136
  >
3848
1137
  <svg
3849
1138
  aria-hidden="true"
3850
- class="emotion-152 emotion-25"
1139
+ class="css-by9y3d-EmotionIconBase ex0cdmw0"
3851
1140
  fill="currentColor"
3852
1141
  focusable="false"
3853
1142
  viewBox="0 0 24 24"
@@ -3867,7 +1156,7 @@ exports[`Article should render tile and sub title 1`] = `
3867
1156
  </div>
3868
1157
  <hr
3869
1158
  aria-hidden="true"
3870
- class="emotion-30"
1159
+ class="css-633um5"
3871
1160
  data-testid="divider"
3872
1161
  />
3873
1162
  </div>
@@ -3879,58 +1168,58 @@ exports[`Article should render tile and sub title 1`] = `
3879
1168
  </div>
3880
1169
  </div>
3881
1170
  <div
3882
- class="emotion-3"
1171
+ class="css-18d6eiw"
3883
1172
  data-testid="PageLayout"
3884
1173
  >
3885
1174
  <div
3886
- class="emotion-15"
1175
+ class="css-30qa7x"
3887
1176
  data-testid="RelatedArticles"
3888
1177
  >
3889
1178
  <div
3890
- class="emotion-9"
1179
+ class="css-gxh9kv"
3891
1180
  >
3892
1181
  <div
3893
- class="emotion-142"
1182
+ class="css-ar93hv"
3894
1183
  >
3895
1184
  <div
3896
- class="emotion-143"
1185
+ class="css-krscqv"
3897
1186
  >
3898
1187
  <section
3899
- class="emotion-199"
1188
+ class="css-148i9wz"
3900
1189
  >
3901
1190
  <h3
3902
- class="nk-headline-heading emotion-8"
1191
+ class="nk-headline-heading css-5gd387"
3903
1192
  >
3904
1193
  Related
3905
1194
  </h3>
3906
1195
  </section>
3907
1196
  </div>
3908
1197
  <div
3909
- class="emotion-146"
1198
+ class="css-1h0bvuz"
3910
1199
  >
3911
1200
  <a
3912
- class="emotion-147"
1201
+ class="css-1jv78aa"
3913
1202
  data-testid="buttonLink"
3914
- href="/"
1203
+ href="/relatedArticles"
3915
1204
  >
3916
1205
  <div
3917
- class="emotion-33"
1206
+ class="css-bptyib"
3918
1207
  >
3919
1208
  <div
3920
- class="emotion-34"
1209
+ class="css-1yztr03"
3921
1210
  >
3922
1211
  <span
3923
- class="emotion-150"
1212
+ class="css-3kpoql"
3924
1213
  >
3925
1214
  View all
3926
1215
  </span>
3927
1216
  </div>
3928
1217
  <div
3929
- class="emotion-34"
1218
+ class="css-1yztr03"
3930
1219
  >
3931
1220
  <svg
3932
1221
  aria-hidden="true"
3933
- class="emotion-152 emotion-25"
1222
+ class="css-by9y3d-EmotionIconBase ex0cdmw0"
3934
1223
  fill="currentColor"
3935
1224
  focusable="false"
3936
1225
  viewBox="0 0 24 24"
@@ -3951,472 +1240,231 @@ exports[`Article should render tile and sub title 1`] = `
3951
1240
  </div>
3952
1241
  </div>
3953
1242
  <div
3954
- class="emotion-1"
1243
+ class="css-34i7av"
1244
+ data-testid="RelatedArticlesVerticalCard"
3955
1245
  >
3956
1246
  <div
3957
- class="emotion-156"
1247
+ class="css-16in0m0"
1248
+ data-testid="articleRec-0"
3958
1249
  >
3959
1250
  <div
3960
- class="emotion-211"
3961
- data-testid="RelatedArticlesVerticalCard"
1251
+ class="css-1opc7jp"
3962
1252
  >
3963
1253
  <div
3964
- class="emotion-212"
1254
+ class="css-b5xivb"
3965
1255
  >
3966
- <div
3967
- class="emotion-213"
1256
+ <picture
1257
+ class="css-1t36qhh"
3968
1258
  >
3969
- <picture
3970
- class="emotion-214"
3971
- >
3972
- <div
3973
- class="emotion-72"
3974
- />
3975
- <img
3976
- alt="Prince Harry"
3977
- class="emotion-73"
3978
- src="https://plchldr.co/i/70x50"
3979
- />
3980
- </picture>
3981
- </div>
1259
+ <div
1260
+ class="css-5pczz7"
1261
+ />
1262
+ <img
1263
+ alt="Prince Harry"
1264
+ class="css-1qgqq71"
1265
+ src="https://plchldr.co/i/70x50"
1266
+ />
1267
+ </picture>
1268
+ </div>
1269
+ <div
1270
+ class="css-1shocxe"
1271
+ >
3982
1272
  <div
3983
- class="emotion-217"
1273
+ class="css-u3mic"
3984
1274
  >
3985
1275
  <div
3986
- class="emotion-218"
1276
+ class="css-38y4ob"
3987
1277
  >
3988
1278
  <div
3989
- class="emotion-117"
1279
+ class="css-1vjcmlt"
3990
1280
  >
3991
- <div
3992
- class="emotion-220"
1281
+ <a
1282
+ class="nk-card-link css-1cq1vxv"
1283
+ href="https://newskit-render.ceng-dev.newsuk.tech"
3993
1284
  >
3994
- <a
3995
- class="nk-card-link emotion-166"
3996
- href="undefined"
1285
+ <section
1286
+ class="css-zs57uu"
3997
1287
  >
3998
- <section
3999
- class="emotion-222"
1288
+ <h6
1289
+ class="nk-headline-heading css-10swdqn"
4000
1290
  >
4001
- <h6
4002
- class="nk-headline-heading emotion-168"
4003
- >
4004
- Prince Harry
4005
- </h6>
4006
- </section>
4007
- </a>
4008
- </div>
4009
- <div
4010
- class="emotion-220"
1291
+ Prince Harry
1292
+ </h6>
1293
+ </section>
1294
+ </a>
1295
+ </div>
1296
+ <div
1297
+ class="css-1vjcmlt"
1298
+ >
1299
+ <p
1300
+ class="css-14u46jx"
4011
1301
  >
4012
- <p
4013
- class="emotion-225"
4014
- >
4015
- news
4016
- </p>
4017
- </div>
1302
+ news
1303
+ </p>
4018
1304
  </div>
4019
1305
  </div>
4020
1306
  </div>
4021
1307
  </div>
4022
1308
  </div>
1309
+ </div>
1310
+ <div
1311
+ class="css-16in0m0"
1312
+ data-testid="articleRec-1"
1313
+ >
4023
1314
  <div
4024
- class="emotion-211"
4025
- data-testid="RelatedArticlesVerticalCard"
1315
+ class="css-1opc7jp"
4026
1316
  >
4027
1317
  <div
4028
- class="emotion-212"
1318
+ class="css-b5xivb"
4029
1319
  >
4030
- <div
4031
- class="emotion-213"
1320
+ <picture
1321
+ class="css-1t36qhh"
4032
1322
  >
4033
- <picture
4034
- class="emotion-214"
4035
- >
4036
- <div
4037
- class="emotion-72"
4038
- />
4039
- <img
4040
- alt="Meghan Markle"
4041
- class="emotion-73"
4042
- src="https://plchldr.co/i/70x50"
4043
- />
4044
- </picture>
4045
- </div>
1323
+ <div
1324
+ class="css-5pczz7"
1325
+ />
1326
+ <img
1327
+ alt="Meghan Markle"
1328
+ class="css-1qgqq71"
1329
+ src="https://plchldr.co/i/70x50"
1330
+ />
1331
+ </picture>
1332
+ </div>
1333
+ <div
1334
+ class="css-1shocxe"
1335
+ >
4046
1336
  <div
4047
- class="emotion-217"
1337
+ class="css-u3mic"
4048
1338
  >
4049
1339
  <div
4050
- class="emotion-218"
1340
+ class="css-38y4ob"
4051
1341
  >
4052
1342
  <div
4053
- class="emotion-117"
1343
+ class="css-1vjcmlt"
4054
1344
  >
4055
- <div
4056
- class="emotion-220"
1345
+ <a
1346
+ class="nk-card-link css-1cq1vxv"
1347
+ href="https://newskit-render.ceng-dev.newsuk.tech"
4057
1348
  >
4058
- <a
4059
- class="nk-card-link emotion-166"
4060
- href="undefined"
1349
+ <section
1350
+ class="css-zs57uu"
4061
1351
  >
4062
- <section
4063
- class="emotion-222"
1352
+ <h6
1353
+ class="nk-headline-heading css-10swdqn"
4064
1354
  >
4065
- <h6
4066
- class="nk-headline-heading emotion-168"
4067
- >
4068
- Meghan Markle
4069
- </h6>
4070
- </section>
4071
- </a>
4072
- </div>
4073
- <div
4074
- class="emotion-220"
1355
+ Meghan Markle
1356
+ </h6>
1357
+ </section>
1358
+ </a>
1359
+ </div>
1360
+ <div
1361
+ class="css-1vjcmlt"
1362
+ >
1363
+ <p
1364
+ class="css-14u46jx"
4075
1365
  >
4076
- <p
4077
- class="emotion-225"
4078
- >
4079
- news
4080
- </p>
4081
- </div>
1366
+ news
1367
+ </p>
4082
1368
  </div>
4083
1369
  </div>
4084
1370
  </div>
4085
1371
  </div>
4086
1372
  </div>
1373
+ </div>
1374
+ </div>
1375
+ <div
1376
+ class="css-75g92e"
1377
+ >
1378
+ <hr
1379
+ aria-hidden="true"
1380
+ class="css-633um5"
1381
+ data-testid="divider"
1382
+ />
1383
+ <div
1384
+ class="css-1c2ypzx"
1385
+ >
4087
1386
  <div
4088
- class="emotion-181"
1387
+ class="css-le9csr"
4089
1388
  >
4090
- <div
4091
- class="emotion-242"
1389
+ <a
1390
+ class="css-1jv78aa"
1391
+ data-testid="buttonLink"
1392
+ href="/relatedArticles"
4092
1393
  >
4093
- <hr
4094
- aria-hidden="true"
4095
- class="emotion-30"
4096
- data-testid="divider"
4097
- />
4098
1394
  <div
4099
- class="emotion-184"
1395
+ class="css-bptyib"
4100
1396
  >
4101
1397
  <div
4102
- class="emotion-185"
1398
+ class="css-1yztr03"
4103
1399
  >
4104
- <a
4105
- class="emotion-147"
4106
- data-testid="buttonLink"
4107
- href="/"
1400
+ <span
1401
+ class="css-3kpoql"
4108
1402
  >
4109
- <div
4110
- class="emotion-33"
4111
- >
4112
- <div
4113
- class="emotion-34"
4114
- >
4115
- <span
4116
- class="emotion-150"
4117
- >
4118
- View all
4119
- </span>
4120
- </div>
4121
- <div
4122
- class="emotion-34"
4123
- >
4124
- <svg
4125
- aria-hidden="true"
4126
- class="emotion-152 emotion-25"
4127
- fill="currentColor"
4128
- focusable="false"
4129
- viewBox="0 0 24 24"
4130
- xmlns="http://www.w3.org/2000/svg"
4131
- >
4132
- <path
4133
- d="M0 0h24v24H0z"
4134
- fill="none"
4135
- />
4136
- <path
4137
- d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"
4138
- />
4139
- </svg>
4140
- </div>
4141
- </div>
4142
- </a>
1403
+ View all
1404
+ </span>
1405
+ </div>
1406
+ <div
1407
+ class="css-1yztr03"
1408
+ >
1409
+ <svg
1410
+ aria-hidden="true"
1411
+ class="css-by9y3d-EmotionIconBase ex0cdmw0"
1412
+ fill="currentColor"
1413
+ focusable="false"
1414
+ viewBox="0 0 24 24"
1415
+ xmlns="http://www.w3.org/2000/svg"
1416
+ >
1417
+ <path
1418
+ d="M0 0h24v24H0z"
1419
+ fill="none"
1420
+ />
1421
+ <path
1422
+ d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"
1423
+ />
1424
+ </svg>
4143
1425
  </div>
4144
- <hr
4145
- aria-hidden="true"
4146
- class="emotion-30"
4147
- data-testid="divider"
4148
- />
4149
1426
  </div>
4150
- </div>
1427
+ </a>
4151
1428
  </div>
1429
+ <hr
1430
+ aria-hidden="true"
1431
+ class="css-633um5"
1432
+ data-testid="divider"
1433
+ />
4152
1434
  </div>
4153
1435
  </div>
4154
1436
  </div>
4155
1437
  </div>
4156
1438
  <div
4157
- class="emotion-3"
1439
+ class="css-18d6eiw"
4158
1440
  data-testid="PageLayout"
4159
1441
  >
4160
1442
  <div
4161
- class="emotion-255"
1443
+ class="css-1jnx2t2"
4162
1444
  />
4163
1445
  </div>
4164
1446
  </div>
4165
1447
  </div>
4166
1448
  </div>
4167
- .emotion-0 {
4168
- background-color: #0A0A0A;
4169
- width: 100%;
4170
- bottom: 0;
4171
- display: block;
4172
- padding: 12px;
4173
- }
4174
-
4175
- .emotion-1 {
4176
- width: 100%;
4177
- max-width: 1920px;
4178
- margin: 0 auto;
4179
- }
4180
-
4181
- .emotion-2 {
4182
- box-sizing: border-box;
4183
- -webkit-background-clip: padding-box;
4184
- background-clip: padding-box;
4185
- display: -webkit-box;
4186
- display: -webkit-flex;
4187
- display: -ms-flexbox;
4188
- display: flex;
4189
- -webkit-box-flex-wrap: wrap;
4190
- -webkit-flex-wrap: wrap;
4191
- -ms-flex-wrap: wrap;
4192
- flex-wrap: wrap;
4193
- -webkit-flex-direction: row;
4194
- -ms-flex-direction: row;
4195
- flex-direction: row;
4196
- }
4197
-
4198
- @media screen {
4199
- .emotion-2 {
4200
- margin: -0px 8px 0 8px;
4201
- }
4202
- }
4203
-
4204
- @media screen and (min-width: 480px) {
4205
- .emotion-2 {
4206
- margin: -0px 8px 0 8px;
4207
- }
4208
- }
4209
-
4210
- @media screen and (min-width: 768px) {
4211
- .emotion-2 {
4212
- margin: -0px 16px 0 16px;
4213
- }
4214
- }
4215
-
4216
- @media screen and (min-width: 1024px) {
4217
- .emotion-2 {
4218
- margin: -0px 16px 0 16px;
4219
- }
4220
- }
4221
-
4222
- @media screen and (min-width: 1440px) {
4223
- .emotion-2 {
4224
- margin: -0px 16px 0 16px;
4225
- }
4226
- }
4227
-
4228
- .emotion-3 {
4229
- box-sizing: border-box;
4230
- -webkit-background-clip: padding-box;
4231
- background-clip: padding-box;
4232
- -webkit-flex: 1 0 auto;
4233
- -ms-flex: 1 0 auto;
4234
- flex: 1 0 auto;
4235
- }
4236
-
4237
- @media screen {
4238
- .emotion-3 {
4239
- padding: 0 8px;
4240
- -webkit-flex-basis: 100%;
4241
- -ms-flex-preferred-size: 100%;
4242
- flex-basis: 100%;
4243
- max-width: 100%;
4244
- }
4245
- }
4246
-
4247
- .emotion-4 {
4248
- margin-bottom: 12px;
4249
- }
4250
-
4251
- .emotion-5 {
4252
- display: inline-block;
4253
- fill: #FFFFFF;
4254
- color: #FFFFFF;
4255
- width: 160px;
4256
- }
4257
-
4258
- .emotion-7 {
4259
- border-width: 0px;
4260
- margin: 0;
4261
- width: 100%;
4262
- }
4263
-
4264
- .emotion-8 {
4265
- display: -webkit-box;
4266
- display: -webkit-flex;
4267
- display: -ms-flexbox;
4268
- display: flex;
4269
- -webkit-box-flex-flow: row wrap;
4270
- -webkit-flex-flow: row wrap;
4271
- -ms-flex-flow: row wrap;
4272
- flex-flow: row wrap;
4273
- -webkit-box-pack: justify;
4274
- -webkit-justify-content: space-between;
4275
- justify-content: space-between;
4276
- -webkit-flex-direction: column;
4277
- -ms-flex-direction: column;
4278
- flex-direction: column;
4279
- margin-bottom: 24px;
4280
- }
4281
-
4282
- @media screen and (min-width: 768px) {
4283
- .emotion-8 {
4284
- -webkit-box-pack: start;
4285
- -ms-flex-pack: start;
4286
- -webkit-justify-content: flex-start;
4287
- justify-content: flex-start;
4288
- -webkit-flex-direction: row;
4289
- -ms-flex-direction: row;
4290
- flex-direction: row;
4291
- }
4292
- }
4293
-
4294
- .emotion-9 {
4295
- margin-bottom: 16px;
4296
- }
4297
-
4298
- @media screen and (max-width: 767px) {
4299
- .emotion-9 {
4300
- margin-right: 0;
4301
- }
4302
- }
4303
-
4304
- @media screen and (min-width: 768px) {
4305
- .emotion-9 {
4306
- margin-right: 64px;
4307
- }
4308
- }
4309
-
4310
- .emotion-10 {
4311
- display: inline-block;
4312
- transition-property: color;
4313
- transition-duration: 200ms;
4314
- transition-timing-function: cubic-bezier(0, 0, .5, 1);
4315
- color: #FFFFFF;
4316
- -webkit-text-decoration: none;
4317
- text-decoration: none;
4318
- }
4319
-
4320
- .emotion-10 svg {
4321
- fill: #FFFFFF;
4322
- }
4323
-
4324
- .emotion-10:hover:not(:disabled) {
4325
- color: #FFFFFF;
4326
- -webkit-text-decoration: underline;
4327
- text-decoration: underline;
4328
- }
4329
-
4330
- .emotion-10:hover:not(:disabled) svg {
4331
- fill: #FFFFFF;
4332
- }
4333
-
4334
- .emotion-10:active:not(:disabled) {
4335
- color: #FFFFFF;
4336
- -webkit-text-decoration: underline;
4337
- text-decoration: underline;
4338
- }
4339
-
4340
- .emotion-10:active:not(:disabled) svg {
4341
- fill: #FFFFFF;
4342
- }
4343
-
4344
- .emotion-11 {
4345
- display: -webkit-box;
4346
- display: -webkit-flex;
4347
- display: -ms-flexbox;
4348
- display: flex;
4349
- height: 100%;
4350
- -webkit-align-items: center;
4351
- -webkit-box-align: center;
4352
- -ms-flex-align: center;
4353
- align-items: center;
4354
- -webkit-flex-direction: row;
4355
- -ms-flex-direction: row;
4356
- flex-direction: row;
4357
- -webkit-box-pack: start;
4358
- -ms-flex-pack: start;
4359
- -webkit-justify-content: flex-start;
4360
- justify-content: flex-start;
4361
- }
4362
-
4363
- .emotion-12 {
4364
- margin: 0;
4365
- font-family: "DM Sans",sans-serif;
4366
- font-size: 14px;
4367
- line-height: 21px;
4368
- font-weight: 500;
4369
- letter-spacing: 0;
4370
- padding: 0.5px 0px;
4371
- display: inline-block;
4372
- display: block;
4373
- }
4374
-
4375
- .emotion-12::before {
4376
- content: '';
4377
- margin-bottom: -0.391em;
4378
- display: block;
4379
- }
4380
-
4381
- .emotion-12::after {
4382
- content: '';
4383
- margin-top: -0.409em;
4384
- display: block;
4385
- }
4386
-
4387
- .emotion-35 {
4388
- margin: 0;
4389
- color: #535353;
4390
- font-family: "DM Sans",sans-serif;
4391
- font-size: 14px;
4392
- line-height: 1.5;
4393
- font-weight: 500;
4394
- letter-spacing: 0;
4395
- }
4396
-
4397
- .emotion-35 svg {
4398
- fill: #535353;
4399
- }
4400
-
4401
- <div
4402
- class="emotion-0"
1449
+ <div
1450
+ class="css-1p8e12n"
4403
1451
  >
4404
1452
  <div
4405
- class="emotion-1"
1453
+ class="css-8atxkm"
4406
1454
  >
4407
1455
  <div
4408
- class="emotion-2"
1456
+ class="css-1w88buo"
4409
1457
  data-testid="PageLayout"
4410
1458
  >
4411
1459
  <div
4412
- class="emotion-3"
1460
+ class="css-18d6eiw"
4413
1461
  data-testid="PageLayout"
4414
1462
  >
4415
1463
  <div
4416
- class="emotion-4"
1464
+ class="css-a1yn46"
4417
1465
  >
4418
1466
  <svg
4419
- class="emotion-5"
1467
+ class="css-kgdu16"
4420
1468
  height="48px"
4421
1469
  viewBox="0 0 244 40"
4422
1470
  >
@@ -4440,30 +1488,30 @@ exports[`Article should render tile and sub title 1`] = `
4440
1488
  </svg>
4441
1489
  </div>
4442
1490
  <div
4443
- class="emotion-4"
1491
+ class="css-a1yn46"
4444
1492
  >
4445
1493
  <hr
4446
1494
  aria-hidden="true"
4447
- class="emotion-7"
1495
+ class="css-13iiewa"
4448
1496
  data-testid="divider"
4449
1497
  />
4450
1498
  </div>
4451
1499
  <div
4452
- class="emotion-8"
1500
+ class="css-hx18jh"
4453
1501
  >
4454
1502
  <span
4455
- class="emotion-9"
1503
+ class="css-1v0p1qz"
4456
1504
  >
4457
1505
  <a
4458
1506
  aria-label="NavLink One"
4459
- class="emotion-10"
1507
+ class="css-e43kyg"
4460
1508
  href="/link-one"
4461
1509
  >
4462
1510
  <span
4463
- class="emotion-11"
1511
+ class="css-17x5lw"
4464
1512
  >
4465
1513
  <span
4466
- class="emotion-12"
1514
+ class="css-kxo08d"
4467
1515
  >
4468
1516
  NavLink One
4469
1517
  </span>
@@ -4471,18 +1519,18 @@ exports[`Article should render tile and sub title 1`] = `
4471
1519
  </a>
4472
1520
  </span>
4473
1521
  <span
4474
- class="emotion-9"
1522
+ class="css-1v0p1qz"
4475
1523
  >
4476
1524
  <a
4477
1525
  aria-label="NavLink Two"
4478
- class="emotion-10"
1526
+ class="css-e43kyg"
4479
1527
  href="/link-two"
4480
1528
  >
4481
1529
  <span
4482
- class="emotion-11"
1530
+ class="css-17x5lw"
4483
1531
  >
4484
1532
  <span
4485
- class="emotion-12"
1533
+ class="css-kxo08d"
4486
1534
  >
4487
1535
  NavLink Two
4488
1536
  </span>
@@ -4490,18 +1538,18 @@ exports[`Article should render tile and sub title 1`] = `
4490
1538
  </a>
4491
1539
  </span>
4492
1540
  <span
4493
- class="emotion-9"
1541
+ class="css-1v0p1qz"
4494
1542
  >
4495
1543
  <a
4496
1544
  aria-label="NavLink Three"
4497
- class="emotion-10"
1545
+ class="css-e43kyg"
4498
1546
  href="/link-three"
4499
1547
  >
4500
1548
  <span
4501
- class="emotion-11"
1549
+ class="css-17x5lw"
4502
1550
  >
4503
1551
  <span
4504
- class="emotion-12"
1552
+ class="css-kxo08d"
4505
1553
  >
4506
1554
  NavLink Three
4507
1555
  </span>
@@ -4509,18 +1557,18 @@ exports[`Article should render tile and sub title 1`] = `
4509
1557
  </a>
4510
1558
  </span>
4511
1559
  <span
4512
- class="emotion-9"
1560
+ class="css-1v0p1qz"
4513
1561
  >
4514
1562
  <a
4515
1563
  aria-label="NavLink Four"
4516
- class="emotion-10"
1564
+ class="css-e43kyg"
4517
1565
  href="/link-four"
4518
1566
  >
4519
1567
  <span
4520
- class="emotion-11"
1568
+ class="css-17x5lw"
4521
1569
  >
4522
1570
  <span
4523
- class="emotion-12"
1571
+ class="css-kxo08d"
4524
1572
  >
4525
1573
  NavLink Four
4526
1574
  </span>
@@ -4528,18 +1576,18 @@ exports[`Article should render tile and sub title 1`] = `
4528
1576
  </a>
4529
1577
  </span>
4530
1578
  <span
4531
- class="emotion-9"
1579
+ class="css-1v0p1qz"
4532
1580
  >
4533
1581
  <a
4534
1582
  aria-label="NavLink Five"
4535
- class="emotion-10"
1583
+ class="css-e43kyg"
4536
1584
  href="/link-five"
4537
1585
  >
4538
1586
  <span
4539
- class="emotion-11"
1587
+ class="css-17x5lw"
4540
1588
  >
4541
1589
  <span
4542
- class="emotion-12"
1590
+ class="css-kxo08d"
4543
1591
  >
4544
1592
  NavLink Five
4545
1593
  </span>
@@ -4547,18 +1595,18 @@ exports[`Article should render tile and sub title 1`] = `
4547
1595
  </a>
4548
1596
  </span>
4549
1597
  <span
4550
- class="emotion-9"
1598
+ class="css-1v0p1qz"
4551
1599
  >
4552
1600
  <a
4553
1601
  aria-label="NavLink Six"
4554
- class="emotion-10"
1602
+ class="css-e43kyg"
4555
1603
  href="/link-six"
4556
1604
  >
4557
1605
  <span
4558
- class="emotion-11"
1606
+ class="css-17x5lw"
4559
1607
  >
4560
1608
  <span
4561
- class="emotion-12"
1609
+ class="css-kxo08d"
4562
1610
  >
4563
1611
  NavLink Six
4564
1612
  </span>
@@ -4567,16 +1615,16 @@ exports[`Article should render tile and sub title 1`] = `
4567
1615
  </span>
4568
1616
  </div>
4569
1617
  <div
4570
- class="emotion-4"
1618
+ class="css-a1yn46"
4571
1619
  >
4572
1620
  <hr
4573
1621
  aria-hidden="true"
4574
- class="emotion-7"
1622
+ class="css-13iiewa"
4575
1623
  data-testid="divider"
4576
1624
  />
4577
1625
  </div>
4578
1626
  <p
4579
- class="emotion-35"
1627
+ class="css-1rn2unv"
4580
1628
  >
4581
1629
  Copyright © YYYY News Corp. All rights reserved.
4582
1630
  </p>