@newskit-render/core 1.49.0 → 1.54.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +114 -0
- package/__tests__/pages/[articleSlug].test.tsx +6 -0
- package/__tests__/pages/__snapshots__/home.test.tsx.snap +241 -1846
- package/__tests__/pages/home.test.tsx +6 -0
- package/components/article/__tests__/__snapshots__/index.test.tsx.snap +316 -3265
- package/components/common/BackToHomepage.tsx +36 -0
- package/components/footer/__snapshots__/index.test.tsx.snap +37 -271
- package/components/header/index.tsx +7 -0
- package/components/section/index.tsx +2 -0
- package/components/section/layouts/__tests__/__snapshots__/Lead.test.tsx.snap +36 -530
- package/components/section/layouts/__tests__/__snapshots__/SectionTitle.test.tsx.snap +42 -766
- package/cypress/e2e/account/account-subscription.spec.js +9 -8
- package/cypress/e2e/account/payment-failer.spec.js +3 -3
- package/cypress/support/commands.js +2 -2
- package/helpers/__tests__/getUser.test.ts +7 -8
- package/helpers/setupTests.ts +4 -0
- package/infrastructure/.circleci/config.yml +1 -0
- package/jest.config.js +21 -19
- package/package.json +8 -8
- package/pages/api/feed.ts +8 -2
- package/pages/help-hub/[id]/index.tsx +11 -0
- package/pages/help-hub/index.tsx +11 -0
- package/public/icon.png +0 -0
|
@@ -2,441 +2,36 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`Article should render tile and sub title 1`] = `
|
|
4
4
|
<DocumentFragment>
|
|
5
|
-
|
|
6
|
-
|
|
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="
|
|
9
|
+
class="css-8atxkm"
|
|
415
10
|
>
|
|
416
11
|
<div
|
|
417
|
-
class="
|
|
12
|
+
class="css-1w88buo"
|
|
418
13
|
data-testid="PageLayout"
|
|
419
14
|
>
|
|
420
15
|
<div
|
|
421
|
-
class="
|
|
16
|
+
class="css-18d6eiw"
|
|
422
17
|
data-testid="PageLayout"
|
|
423
18
|
>
|
|
424
19
|
<div
|
|
425
|
-
class="
|
|
20
|
+
class="css-5zodda"
|
|
426
21
|
>
|
|
427
22
|
<a
|
|
428
23
|
aria-label="Logo Link"
|
|
429
|
-
class="
|
|
24
|
+
class="css-71f8au"
|
|
430
25
|
href="/"
|
|
431
26
|
>
|
|
432
27
|
<span
|
|
433
|
-
class="
|
|
28
|
+
class="css-7eo7xt"
|
|
434
29
|
>
|
|
435
30
|
<div
|
|
436
|
-
class="
|
|
31
|
+
class="css-1nlep1q"
|
|
437
32
|
>
|
|
438
33
|
<svg
|
|
439
|
-
class="
|
|
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="
|
|
62
|
+
class="css-1k3e0au"
|
|
468
63
|
>
|
|
469
64
|
<svg
|
|
470
|
-
class="
|
|
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="
|
|
91
|
+
class="css-1d6ks21"
|
|
497
92
|
>
|
|
498
93
|
<div
|
|
499
|
-
class="
|
|
94
|
+
class="css-1q7p9do"
|
|
500
95
|
data-testid="NavigationContainer"
|
|
501
96
|
>
|
|
502
97
|
<div
|
|
503
|
-
class="
|
|
98
|
+
class="css-rk1vtl"
|
|
504
99
|
data-testid="Navigation"
|
|
505
100
|
>
|
|
506
101
|
<span
|
|
507
|
-
class="
|
|
102
|
+
class="css-nch37y"
|
|
508
103
|
>
|
|
509
104
|
<a
|
|
510
105
|
aria-label="Section One Link"
|
|
511
|
-
class="
|
|
106
|
+
class="css-71f8au"
|
|
512
107
|
href="/section-one"
|
|
513
108
|
>
|
|
514
109
|
<span
|
|
515
|
-
class="
|
|
110
|
+
class="css-7eo7xt"
|
|
516
111
|
>
|
|
517
112
|
<span
|
|
518
|
-
class="
|
|
113
|
+
class="css-b741cy"
|
|
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="
|
|
121
|
+
class="css-nch37y"
|
|
527
122
|
>
|
|
528
123
|
<a
|
|
529
124
|
aria-label="Section Two Link"
|
|
530
|
-
class="
|
|
125
|
+
class="css-71f8au"
|
|
531
126
|
href="/section-two"
|
|
532
127
|
>
|
|
533
128
|
<span
|
|
534
|
-
class="
|
|
129
|
+
class="css-7eo7xt"
|
|
535
130
|
>
|
|
536
131
|
<span
|
|
537
|
-
class="
|
|
132
|
+
class="css-b741cy"
|
|
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="
|
|
140
|
+
class="css-nch37y"
|
|
546
141
|
>
|
|
547
142
|
<a
|
|
548
143
|
aria-label="Section Three Link"
|
|
549
|
-
class="
|
|
144
|
+
class="css-71f8au"
|
|
550
145
|
href="/section-three"
|
|
551
146
|
>
|
|
552
147
|
<span
|
|
553
|
-
class="
|
|
148
|
+
class="css-7eo7xt"
|
|
554
149
|
>
|
|
555
150
|
<span
|
|
556
|
-
class="
|
|
151
|
+
class="css-b741cy"
|
|
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="
|
|
161
|
+
class="css-1k3e0au"
|
|
567
162
|
>
|
|
568
163
|
<div
|
|
569
|
-
class="
|
|
164
|
+
class="css-ecgvh"
|
|
570
165
|
>
|
|
571
166
|
<svg
|
|
572
167
|
aria-hidden="true"
|
|
573
168
|
aria-label="Mobile Menu Button"
|
|
574
|
-
class="
|
|
169
|
+
class="css-9dd1dr-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
|
-
|
|
600
|
-
|
|
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="
|
|
198
|
+
class="css-8atxkm"
|
|
2914
199
|
>
|
|
2915
200
|
<div
|
|
2916
|
-
class="
|
|
201
|
+
class="css-11sfip2"
|
|
2917
202
|
data-testid="PageLayout"
|
|
2918
203
|
>
|
|
2919
204
|
<div
|
|
2920
|
-
class="
|
|
205
|
+
class="css-18d6eiw"
|
|
2921
206
|
data-testid="PageLayout"
|
|
2922
207
|
>
|
|
2923
208
|
<div
|
|
2924
|
-
class="
|
|
209
|
+
class="css-1fizrom"
|
|
2925
210
|
/>
|
|
2926
211
|
</div>
|
|
2927
212
|
<div
|
|
2928
|
-
class="
|
|
213
|
+
class="css-1hoolz9"
|
|
2929
214
|
data-testid="PageLayout"
|
|
2930
215
|
>
|
|
2931
216
|
<div
|
|
2932
|
-
class="
|
|
217
|
+
class="css-q8gelu"
|
|
2933
218
|
data-testid="HeadLine"
|
|
2934
219
|
>
|
|
2935
220
|
<section
|
|
2936
|
-
class="
|
|
221
|
+
class="css-1wf58dm"
|
|
2937
222
|
>
|
|
2938
223
|
<h1
|
|
2939
|
-
class="nk-headline-heading
|
|
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="
|
|
231
|
+
class="css-idfkwh"
|
|
2947
232
|
data-testid="Kicker"
|
|
2948
233
|
>
|
|
2949
234
|
<section
|
|
2950
|
-
class="
|
|
235
|
+
class="css-k0zmqb"
|
|
2951
236
|
>
|
|
2952
237
|
<h2
|
|
2953
|
-
class="nk-headline-heading
|
|
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="
|
|
245
|
+
class="css-2b5u83"
|
|
2961
246
|
>
|
|
2962
247
|
<div
|
|
2963
|
-
class="
|
|
248
|
+
class="css-1k3e0au"
|
|
2964
249
|
>
|
|
2965
250
|
<div
|
|
2966
|
-
class="
|
|
251
|
+
class="css-1ppuxwp"
|
|
2967
252
|
>
|
|
2968
253
|
<div
|
|
2969
|
-
class="
|
|
254
|
+
class="css-151qm6o"
|
|
2970
255
|
>
|
|
2971
256
|
<div
|
|
2972
|
-
class="
|
|
257
|
+
class="css-u4uevr"
|
|
2973
258
|
>
|
|
2974
259
|
<div
|
|
2975
|
-
class="
|
|
260
|
+
class="css-1penzzz"
|
|
2976
261
|
>
|
|
2977
262
|
<span
|
|
2978
|
-
class="
|
|
263
|
+
class="css-iwghfi"
|
|
2979
264
|
>
|
|
2980
265
|
<a
|
|
2981
266
|
aria-label="more by John Smith"
|
|
2982
|
-
class="
|
|
267
|
+
class="css-1qy53qr"
|
|
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="
|
|
273
|
+
class="css-lmlygy"
|
|
2989
274
|
>
|
|
2990
275
|
<span
|
|
2991
|
-
class="
|
|
276
|
+
class="css-14dqn90"
|
|
2992
277
|
>
|
|
2993
278
|
<span
|
|
2994
|
-
class="
|
|
279
|
+
class="css-1aaw8tt"
|
|
2995
280
|
>
|
|
2996
281
|
John Smith
|
|
2997
282
|
</span>
|
|
2998
283
|
</span>
|
|
2999
284
|
<span
|
|
3000
|
-
class="
|
|
285
|
+
class="css-14dqn90"
|
|
3001
286
|
>
|
|
3002
287
|
<svg
|
|
3003
|
-
class="
|
|
288
|
+
class="css-1wvnngw-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="
|
|
311
|
+
class="css-iwghfi"
|
|
3027
312
|
>
|
|
3028
313
|
,
|
|
3029
314
|
</span>
|
|
@@ -3032,11 +317,11 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3032
317
|
</div>
|
|
3033
318
|
</div>
|
|
3034
319
|
<div
|
|
3035
|
-
class="
|
|
320
|
+
class="css-151qm6o"
|
|
3036
321
|
>
|
|
3037
322
|
<time>
|
|
3038
323
|
<span
|
|
3039
|
-
class="
|
|
324
|
+
class="css-5lez0w"
|
|
3040
325
|
>
|
|
3041
326
|
Thu February 14 2019, 12:37am
|
|
3042
327
|
</span>
|
|
@@ -3045,31 +330,31 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3045
330
|
</div>
|
|
3046
331
|
</div>
|
|
3047
332
|
<div
|
|
3048
|
-
class="
|
|
333
|
+
class="css-1ppuxwp"
|
|
3049
334
|
>
|
|
3050
335
|
<hr
|
|
3051
336
|
aria-hidden="true"
|
|
3052
|
-
class="
|
|
337
|
+
class="css-1aqwza0"
|
|
3053
338
|
data-testid="divider"
|
|
3054
339
|
/>
|
|
3055
340
|
</div>
|
|
3056
341
|
<div
|
|
3057
|
-
class="
|
|
342
|
+
class="css-q8gelu"
|
|
3058
343
|
>
|
|
3059
344
|
<a
|
|
3060
|
-
class="
|
|
345
|
+
class="css-1wgsrld"
|
|
3061
346
|
data-testid="buttonLink"
|
|
3062
347
|
href="https://www.newskit.co.uk/"
|
|
3063
348
|
>
|
|
3064
349
|
<div
|
|
3065
|
-
class="
|
|
350
|
+
class="css-17xj1lu"
|
|
3066
351
|
>
|
|
3067
352
|
<div
|
|
3068
|
-
class="
|
|
353
|
+
class="css-1yztr03"
|
|
3069
354
|
>
|
|
3070
355
|
<svg
|
|
3071
356
|
aria-hidden="true"
|
|
3072
|
-
class="
|
|
357
|
+
class="css-gafy9h-EmotionIconBase ex0cdmw0"
|
|
3073
358
|
fill="currentColor"
|
|
3074
359
|
focusable="false"
|
|
3075
360
|
viewBox="0 0 24 24"
|
|
@@ -3085,10 +370,10 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3085
370
|
</svg>
|
|
3086
371
|
</div>
|
|
3087
372
|
<div
|
|
3088
|
-
class="
|
|
373
|
+
class="css-1yztr03"
|
|
3089
374
|
>
|
|
3090
375
|
<span
|
|
3091
|
-
class="
|
|
376
|
+
class="css-k22dit"
|
|
3092
377
|
>
|
|
3093
378
|
Share
|
|
3094
379
|
</span>
|
|
@@ -3098,48 +383,48 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3098
383
|
</div>
|
|
3099
384
|
</div>
|
|
3100
385
|
<div
|
|
3101
|
-
class="
|
|
386
|
+
class="css-1nlep1q"
|
|
3102
387
|
>
|
|
3103
388
|
<div
|
|
3104
|
-
class="
|
|
389
|
+
class="css-tv9jan"
|
|
3105
390
|
data-testid="MetaBox"
|
|
3106
391
|
>
|
|
3107
392
|
<div
|
|
3108
|
-
class="
|
|
393
|
+
class="css-151qm6o"
|
|
3109
394
|
>
|
|
3110
395
|
<div
|
|
3111
|
-
class="
|
|
396
|
+
class="css-u4uevr"
|
|
3112
397
|
>
|
|
3113
398
|
<div
|
|
3114
|
-
class="
|
|
399
|
+
class="css-1penzzz"
|
|
3115
400
|
>
|
|
3116
401
|
<span
|
|
3117
|
-
class="
|
|
402
|
+
class="css-iwghfi"
|
|
3118
403
|
>
|
|
3119
404
|
<a
|
|
3120
405
|
aria-label="more by John Smith"
|
|
3121
|
-
class="
|
|
406
|
+
class="css-1qy53qr"
|
|
3122
407
|
data-author="John Smith"
|
|
3123
408
|
href="https://www.newskit.co.uk/components/navigation/link"
|
|
3124
409
|
rel="author"
|
|
3125
410
|
>
|
|
3126
411
|
<span
|
|
3127
|
-
class="
|
|
412
|
+
class="css-lmlygy"
|
|
3128
413
|
>
|
|
3129
414
|
<span
|
|
3130
|
-
class="
|
|
415
|
+
class="css-14dqn90"
|
|
3131
416
|
>
|
|
3132
417
|
<span
|
|
3133
|
-
class="
|
|
418
|
+
class="css-1aaw8tt"
|
|
3134
419
|
>
|
|
3135
420
|
John Smith
|
|
3136
421
|
</span>
|
|
3137
422
|
</span>
|
|
3138
423
|
<span
|
|
3139
|
-
class="
|
|
424
|
+
class="css-14dqn90"
|
|
3140
425
|
>
|
|
3141
426
|
<svg
|
|
3142
|
-
class="
|
|
427
|
+
class="css-1wvnngw-EmotionIconBase ex0cdmw0"
|
|
3143
428
|
fill="currentColor"
|
|
3144
429
|
focusable="false"
|
|
3145
430
|
role="img"
|
|
@@ -3162,7 +447,7 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3162
447
|
</a>
|
|
3163
448
|
<span
|
|
3164
449
|
aria-hidden="true"
|
|
3165
|
-
class="
|
|
450
|
+
class="css-iwghfi"
|
|
3166
451
|
>
|
|
3167
452
|
,
|
|
3168
453
|
</span>
|
|
@@ -3171,11 +456,11 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3171
456
|
</div>
|
|
3172
457
|
</div>
|
|
3173
458
|
<div
|
|
3174
|
-
class="
|
|
459
|
+
class="css-151qm6o"
|
|
3175
460
|
>
|
|
3176
461
|
<time>
|
|
3177
462
|
<span
|
|
3178
|
-
class="
|
|
463
|
+
class="css-5lez0w"
|
|
3179
464
|
>
|
|
3180
465
|
Thu February 14 2019, 12:37am
|
|
3181
466
|
</span>
|
|
@@ -3183,28 +468,28 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3183
468
|
</div>
|
|
3184
469
|
</div>
|
|
3185
470
|
<div
|
|
3186
|
-
class="
|
|
471
|
+
class="css-1rjn7y8"
|
|
3187
472
|
>
|
|
3188
473
|
<div
|
|
3189
|
-
class="
|
|
474
|
+
class="css-yiywr4"
|
|
3190
475
|
orientation="horizontal"
|
|
3191
476
|
role="region"
|
|
3192
477
|
>
|
|
3193
478
|
<span
|
|
3194
|
-
class="
|
|
479
|
+
class="css-1e1hg9i"
|
|
3195
480
|
orientation="horizontal"
|
|
3196
481
|
>
|
|
3197
482
|
Share
|
|
3198
483
|
</span>
|
|
3199
484
|
<div
|
|
3200
|
-
class="
|
|
485
|
+
class="css-1klizll"
|
|
3201
486
|
>
|
|
3202
487
|
<div
|
|
3203
|
-
class="
|
|
488
|
+
class="css-5ou914"
|
|
3204
489
|
>
|
|
3205
490
|
<svg
|
|
3206
491
|
aria-hidden="true"
|
|
3207
|
-
class="
|
|
492
|
+
class="css-rrygko-EmotionIconBase ex0cdmw0"
|
|
3208
493
|
fill="currentColor"
|
|
3209
494
|
focusable="false"
|
|
3210
495
|
viewBox="0 0 24 24"
|
|
@@ -3220,11 +505,11 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3220
505
|
</svg>
|
|
3221
506
|
</div>
|
|
3222
507
|
<div
|
|
3223
|
-
class="
|
|
508
|
+
class="css-5ou914"
|
|
3224
509
|
>
|
|
3225
510
|
<svg
|
|
3226
511
|
aria-hidden="true"
|
|
3227
|
-
class="
|
|
512
|
+
class="css-1da0aqc"
|
|
3228
513
|
fill="currentColor"
|
|
3229
514
|
viewBox="0 0 24 24"
|
|
3230
515
|
xmlns="http://www.w3.org/2000/svg"
|
|
@@ -3236,11 +521,11 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3236
521
|
</svg>
|
|
3237
522
|
</div>
|
|
3238
523
|
<div
|
|
3239
|
-
class="
|
|
524
|
+
class="css-5ou914"
|
|
3240
525
|
>
|
|
3241
526
|
<svg
|
|
3242
527
|
aria-hidden="true"
|
|
3243
|
-
class="
|
|
528
|
+
class="css-1da0aqc"
|
|
3244
529
|
fill="currentColor"
|
|
3245
530
|
viewBox="0 0 24 24"
|
|
3246
531
|
xmlns="http://www.w3.org/2000/svg"
|
|
@@ -3252,11 +537,11 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3252
537
|
</svg>
|
|
3253
538
|
</div>
|
|
3254
539
|
<div
|
|
3255
|
-
class="
|
|
540
|
+
class="css-5ou914"
|
|
3256
541
|
>
|
|
3257
542
|
<svg
|
|
3258
543
|
aria-hidden="true"
|
|
3259
|
-
class="
|
|
544
|
+
class="css-rrygko-EmotionIconBase ex0cdmw0"
|
|
3260
545
|
fill="currentColor"
|
|
3261
546
|
focusable="false"
|
|
3262
547
|
viewBox="0 0 24 24"
|
|
@@ -3278,99 +563,99 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3278
563
|
</div>
|
|
3279
564
|
</div>
|
|
3280
565
|
<div
|
|
3281
|
-
class="
|
|
566
|
+
class="css-162ql4v"
|
|
3282
567
|
>
|
|
3283
568
|
<figure
|
|
3284
|
-
class="
|
|
569
|
+
class="css-r44k6v"
|
|
3285
570
|
>
|
|
3286
571
|
<picture
|
|
3287
|
-
class="
|
|
572
|
+
class="css-1tors5"
|
|
3288
573
|
>
|
|
3289
574
|
<div
|
|
3290
|
-
class="
|
|
575
|
+
class="css-5pczz7"
|
|
3291
576
|
/>
|
|
3292
577
|
<img
|
|
3293
578
|
alt="testIMG"
|
|
3294
|
-
class="
|
|
579
|
+
class="css-1qgqq71"
|
|
3295
580
|
src="img//url"
|
|
3296
581
|
/>
|
|
3297
582
|
</picture>
|
|
3298
583
|
</figure>
|
|
3299
584
|
</div>
|
|
3300
585
|
<div
|
|
3301
|
-
class="
|
|
586
|
+
class="css-1ifl48z"
|
|
3302
587
|
data-testid="ArticleContent"
|
|
3303
588
|
>
|
|
3304
589
|
<div
|
|
3305
|
-
class="
|
|
590
|
+
class="css-1ljmsbl"
|
|
3306
591
|
data-testid="ArticleParagraph"
|
|
3307
592
|
>
|
|
3308
593
|
<p
|
|
3309
|
-
class="
|
|
594
|
+
class="css-1g3t9yj"
|
|
3310
595
|
>
|
|
3311
596
|
paragraph one
|
|
3312
597
|
</p>
|
|
3313
598
|
</div>
|
|
3314
599
|
<div
|
|
3315
|
-
class="
|
|
600
|
+
class="css-1ljmsbl"
|
|
3316
601
|
data-testid="ArticleParagraph"
|
|
3317
602
|
>
|
|
3318
603
|
<p
|
|
3319
|
-
class="
|
|
604
|
+
class="css-1g3t9yj"
|
|
3320
605
|
>
|
|
3321
606
|
paragraph two
|
|
3322
607
|
</p>
|
|
3323
608
|
</div>
|
|
3324
609
|
<div
|
|
3325
|
-
class="
|
|
610
|
+
class="css-1ljmsbl"
|
|
3326
611
|
data-testid="ArticleParagraph"
|
|
3327
612
|
>
|
|
3328
613
|
<p
|
|
3329
|
-
class="
|
|
614
|
+
class="css-1g3t9yj"
|
|
3330
615
|
>
|
|
3331
616
|
paragraph three
|
|
3332
617
|
</p>
|
|
3333
618
|
</div>
|
|
3334
619
|
<div
|
|
3335
|
-
class="
|
|
620
|
+
class="css-1ljmsbl"
|
|
3336
621
|
data-testid="ArticleParagraph"
|
|
3337
622
|
>
|
|
3338
623
|
<p
|
|
3339
|
-
class="
|
|
624
|
+
class="css-1g3t9yj"
|
|
3340
625
|
>
|
|
3341
626
|
paragraph four
|
|
3342
627
|
</p>
|
|
3343
628
|
</div>
|
|
3344
629
|
</div>
|
|
3345
630
|
<div
|
|
3346
|
-
class="
|
|
631
|
+
class="css-1k3e0au"
|
|
3347
632
|
>
|
|
3348
633
|
<div
|
|
3349
|
-
class="
|
|
634
|
+
class="css-q8gelu"
|
|
3350
635
|
>
|
|
3351
636
|
<hr
|
|
3352
637
|
aria-hidden="true"
|
|
3353
|
-
class="
|
|
638
|
+
class="css-1aqwza0"
|
|
3354
639
|
data-testid="divider"
|
|
3355
640
|
/>
|
|
3356
641
|
</div>
|
|
3357
642
|
<div
|
|
3358
|
-
class="
|
|
643
|
+
class="css-101282f"
|
|
3359
644
|
>
|
|
3360
645
|
<a
|
|
3361
|
-
class="
|
|
646
|
+
class="css-1wgsrld"
|
|
3362
647
|
data-testid="buttonLink"
|
|
3363
648
|
href="https://www.newskit.co.uk/"
|
|
3364
649
|
>
|
|
3365
650
|
<div
|
|
3366
|
-
class="
|
|
651
|
+
class="css-17xj1lu"
|
|
3367
652
|
>
|
|
3368
653
|
<div
|
|
3369
|
-
class="
|
|
654
|
+
class="css-1yztr03"
|
|
3370
655
|
>
|
|
3371
656
|
<svg
|
|
3372
657
|
aria-hidden="true"
|
|
3373
|
-
class="
|
|
658
|
+
class="css-gafy9h-EmotionIconBase ex0cdmw0"
|
|
3374
659
|
fill="currentColor"
|
|
3375
660
|
focusable="false"
|
|
3376
661
|
viewBox="0 0 24 24"
|
|
@@ -3386,10 +671,10 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3386
671
|
</svg>
|
|
3387
672
|
</div>
|
|
3388
673
|
<div
|
|
3389
|
-
class="
|
|
674
|
+
class="css-1yztr03"
|
|
3390
675
|
>
|
|
3391
676
|
<span
|
|
3392
|
-
class="
|
|
677
|
+
class="css-k22dit"
|
|
3393
678
|
>
|
|
3394
679
|
Share
|
|
3395
680
|
</span>
|
|
@@ -3399,46 +684,46 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3399
684
|
</div>
|
|
3400
685
|
</div>
|
|
3401
686
|
<div
|
|
3402
|
-
class="
|
|
687
|
+
class="css-1nlep1q"
|
|
3403
688
|
>
|
|
3404
689
|
<div
|
|
3405
|
-
class="
|
|
690
|
+
class="css-q8gelu"
|
|
3406
691
|
>
|
|
3407
692
|
<hr
|
|
3408
693
|
aria-hidden="true"
|
|
3409
|
-
class="
|
|
694
|
+
class="css-1aqwza0"
|
|
3410
695
|
data-testid="divider"
|
|
3411
696
|
/>
|
|
3412
697
|
</div>
|
|
3413
698
|
<div
|
|
3414
|
-
class="
|
|
699
|
+
class="css-101282f"
|
|
3415
700
|
>
|
|
3416
701
|
<div
|
|
3417
|
-
class="
|
|
702
|
+
class="css-1n4vwuy"
|
|
3418
703
|
>
|
|
3419
704
|
<div
|
|
3420
|
-
class="
|
|
705
|
+
class="css-xnj4zj"
|
|
3421
706
|
>
|
|
3422
707
|
<div
|
|
3423
|
-
class="
|
|
708
|
+
class="css-yiywr4"
|
|
3424
709
|
orientation="horizontal"
|
|
3425
710
|
role="region"
|
|
3426
711
|
>
|
|
3427
712
|
<span
|
|
3428
|
-
class="
|
|
713
|
+
class="css-1e1hg9i"
|
|
3429
714
|
orientation="horizontal"
|
|
3430
715
|
>
|
|
3431
716
|
Share
|
|
3432
717
|
</span>
|
|
3433
718
|
<div
|
|
3434
|
-
class="
|
|
719
|
+
class="css-1klizll"
|
|
3435
720
|
>
|
|
3436
721
|
<div
|
|
3437
|
-
class="
|
|
722
|
+
class="css-5ou914"
|
|
3438
723
|
>
|
|
3439
724
|
<svg
|
|
3440
725
|
aria-hidden="true"
|
|
3441
|
-
class="
|
|
726
|
+
class="css-rrygko-EmotionIconBase ex0cdmw0"
|
|
3442
727
|
fill="currentColor"
|
|
3443
728
|
focusable="false"
|
|
3444
729
|
viewBox="0 0 24 24"
|
|
@@ -3454,11 +739,11 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3454
739
|
</svg>
|
|
3455
740
|
</div>
|
|
3456
741
|
<div
|
|
3457
|
-
class="
|
|
742
|
+
class="css-5ou914"
|
|
3458
743
|
>
|
|
3459
744
|
<svg
|
|
3460
745
|
aria-hidden="true"
|
|
3461
|
-
class="
|
|
746
|
+
class="css-1da0aqc"
|
|
3462
747
|
fill="currentColor"
|
|
3463
748
|
viewBox="0 0 24 24"
|
|
3464
749
|
xmlns="http://www.w3.org/2000/svg"
|
|
@@ -3470,11 +755,11 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3470
755
|
</svg>
|
|
3471
756
|
</div>
|
|
3472
757
|
<div
|
|
3473
|
-
class="
|
|
758
|
+
class="css-5ou914"
|
|
3474
759
|
>
|
|
3475
760
|
<svg
|
|
3476
761
|
aria-hidden="true"
|
|
3477
|
-
class="
|
|
762
|
+
class="css-1da0aqc"
|
|
3478
763
|
fill="currentColor"
|
|
3479
764
|
viewBox="0 0 24 24"
|
|
3480
765
|
xmlns="http://www.w3.org/2000/svg"
|
|
@@ -3486,11 +771,11 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3486
771
|
</svg>
|
|
3487
772
|
</div>
|
|
3488
773
|
<div
|
|
3489
|
-
class="
|
|
774
|
+
class="css-5ou914"
|
|
3490
775
|
>
|
|
3491
776
|
<svg
|
|
3492
777
|
aria-hidden="true"
|
|
3493
|
-
class="
|
|
778
|
+
class="css-rrygko-EmotionIconBase ex0cdmw0"
|
|
3494
779
|
fill="currentColor"
|
|
3495
780
|
focusable="false"
|
|
3496
781
|
viewBox="0 0 24 24"
|
|
@@ -3512,46 +797,46 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3512
797
|
</div>
|
|
3513
798
|
</div>
|
|
3514
799
|
<div
|
|
3515
|
-
class="
|
|
800
|
+
class="css-151qm6o"
|
|
3516
801
|
>
|
|
3517
802
|
<div
|
|
3518
|
-
class="
|
|
803
|
+
class="css-q8gelu"
|
|
3519
804
|
>
|
|
3520
805
|
<section
|
|
3521
|
-
class="
|
|
806
|
+
class="css-qv96ce"
|
|
3522
807
|
>
|
|
3523
808
|
<h1
|
|
3524
|
-
class="nk-headline-heading
|
|
809
|
+
class="nk-headline-heading css-1qhitfs"
|
|
3525
810
|
>
|
|
3526
811
|
Related topics
|
|
3527
812
|
</h1>
|
|
3528
813
|
</section>
|
|
3529
814
|
</div>
|
|
3530
815
|
<div
|
|
3531
|
-
class="
|
|
816
|
+
class="css-1r3hoet"
|
|
3532
817
|
>
|
|
3533
818
|
<div
|
|
3534
|
-
class="
|
|
819
|
+
class="css-1sf3m7m"
|
|
3535
820
|
data-testid="RelatedTopics"
|
|
3536
821
|
>
|
|
3537
822
|
<div
|
|
3538
|
-
class="
|
|
823
|
+
class="css-1jnyopt"
|
|
3539
824
|
>
|
|
3540
825
|
<div
|
|
3541
|
-
class="
|
|
826
|
+
class="css-1gojmfd"
|
|
3542
827
|
>
|
|
3543
828
|
<div
|
|
3544
|
-
class="
|
|
829
|
+
class="css-1qpsdoo"
|
|
3545
830
|
data-testid="tag"
|
|
3546
831
|
>
|
|
3547
832
|
<div
|
|
3548
|
-
class="
|
|
833
|
+
class="css-1v5gk4t"
|
|
3549
834
|
>
|
|
3550
835
|
<div
|
|
3551
|
-
class="
|
|
836
|
+
class="css-14dqn90"
|
|
3552
837
|
>
|
|
3553
838
|
<span
|
|
3554
|
-
class="
|
|
839
|
+
class="css-2hmyi9"
|
|
3555
840
|
>
|
|
3556
841
|
Some topic one
|
|
3557
842
|
</span>
|
|
@@ -3561,23 +846,23 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3561
846
|
</div>
|
|
3562
847
|
</div>
|
|
3563
848
|
<div
|
|
3564
|
-
class="
|
|
849
|
+
class="css-1jnyopt"
|
|
3565
850
|
>
|
|
3566
851
|
<div
|
|
3567
|
-
class="
|
|
852
|
+
class="css-1gojmfd"
|
|
3568
853
|
>
|
|
3569
854
|
<div
|
|
3570
|
-
class="
|
|
855
|
+
class="css-1qpsdoo"
|
|
3571
856
|
data-testid="tag"
|
|
3572
857
|
>
|
|
3573
858
|
<div
|
|
3574
|
-
class="
|
|
859
|
+
class="css-1v5gk4t"
|
|
3575
860
|
>
|
|
3576
861
|
<div
|
|
3577
|
-
class="
|
|
862
|
+
class="css-14dqn90"
|
|
3578
863
|
>
|
|
3579
864
|
<span
|
|
3580
|
-
class="
|
|
865
|
+
class="css-2hmyi9"
|
|
3581
866
|
>
|
|
3582
867
|
Some topic one
|
|
3583
868
|
</span>
|
|
@@ -3589,94 +874,94 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3589
874
|
</div>
|
|
3590
875
|
</div>
|
|
3591
876
|
<div
|
|
3592
|
-
class="
|
|
877
|
+
class="css-idfkwh"
|
|
3593
878
|
>
|
|
3594
879
|
<hr
|
|
3595
880
|
aria-hidden="true"
|
|
3596
|
-
class="
|
|
881
|
+
class="css-1aqwza0"
|
|
3597
882
|
data-testid="divider"
|
|
3598
883
|
/>
|
|
3599
884
|
</div>
|
|
3600
885
|
</div>
|
|
3601
886
|
</div>
|
|
3602
887
|
<div
|
|
3603
|
-
class="
|
|
888
|
+
class="css-1qobz4o"
|
|
3604
889
|
data-testid="PageLayout"
|
|
3605
890
|
>
|
|
3606
891
|
<div
|
|
3607
|
-
class="
|
|
892
|
+
class="css-bixr8l"
|
|
3608
893
|
data-testid="Ads"
|
|
3609
894
|
>
|
|
3610
895
|
<div
|
|
3611
|
-
class="
|
|
896
|
+
class="css-1dl2ysh"
|
|
3612
897
|
id="advert-article-sidebar"
|
|
3613
898
|
/>
|
|
3614
899
|
</div>
|
|
3615
900
|
<div
|
|
3616
|
-
class="
|
|
901
|
+
class="css-1r3hoet"
|
|
3617
902
|
data-testid="Highlights"
|
|
3618
903
|
>
|
|
3619
904
|
<div
|
|
3620
|
-
class="
|
|
905
|
+
class="css-1r3hoet"
|
|
3621
906
|
>
|
|
3622
907
|
<div
|
|
3623
|
-
class="
|
|
908
|
+
class="css-1ujq44n"
|
|
3624
909
|
>
|
|
3625
910
|
<section
|
|
3626
|
-
class="
|
|
911
|
+
class="css-r3v25s"
|
|
3627
912
|
>
|
|
3628
913
|
<h1
|
|
3629
|
-
class="nk-headline-heading
|
|
914
|
+
class="nk-headline-heading css-5gd387"
|
|
3630
915
|
>
|
|
3631
916
|
Highlights
|
|
3632
917
|
</h1>
|
|
3633
918
|
</section>
|
|
3634
919
|
</div>
|
|
3635
920
|
<div
|
|
3636
|
-
class="
|
|
921
|
+
class="css-1uo5aiw"
|
|
3637
922
|
>
|
|
3638
923
|
<div
|
|
3639
|
-
class="
|
|
924
|
+
class="css-rkp1z9"
|
|
3640
925
|
>
|
|
3641
926
|
<div
|
|
3642
|
-
class="
|
|
927
|
+
class="css-1tdjaxu"
|
|
3643
928
|
>
|
|
3644
929
|
<section
|
|
3645
|
-
class="
|
|
930
|
+
class="css-r3v25s"
|
|
3646
931
|
>
|
|
3647
932
|
<h3
|
|
3648
|
-
class="nk-headline-heading
|
|
933
|
+
class="nk-headline-heading css-5gd387"
|
|
3649
934
|
>
|
|
3650
935
|
Highlights
|
|
3651
936
|
</h3>
|
|
3652
937
|
</section>
|
|
3653
938
|
</div>
|
|
3654
939
|
<div
|
|
3655
|
-
class="
|
|
940
|
+
class="css-1h0bvuz"
|
|
3656
941
|
>
|
|
3657
942
|
<a
|
|
3658
|
-
class="
|
|
943
|
+
class="css-y6f0jc"
|
|
3659
944
|
data-testid="buttonLink"
|
|
3660
945
|
href="/"
|
|
3661
946
|
>
|
|
3662
947
|
<div
|
|
3663
|
-
class="
|
|
948
|
+
class="css-17xj1lu"
|
|
3664
949
|
>
|
|
3665
950
|
<div
|
|
3666
|
-
class="
|
|
951
|
+
class="css-1yztr03"
|
|
3667
952
|
>
|
|
3668
953
|
<span
|
|
3669
|
-
class="
|
|
954
|
+
class="css-72tcch"
|
|
3670
955
|
>
|
|
3671
956
|
View all
|
|
3672
957
|
</span>
|
|
3673
958
|
</div>
|
|
3674
959
|
<div
|
|
3675
|
-
class="
|
|
960
|
+
class="css-1yztr03"
|
|
3676
961
|
>
|
|
3677
962
|
<svg
|
|
3678
963
|
aria-hidden="true"
|
|
3679
|
-
class="
|
|
964
|
+
class="css-xi2rbi-EmotionIconBase ex0cdmw0"
|
|
3680
965
|
fill="currentColor"
|
|
3681
966
|
focusable="false"
|
|
3682
967
|
viewBox="0 0 24 24"
|
|
@@ -3698,55 +983,55 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3698
983
|
</div>
|
|
3699
984
|
</div>
|
|
3700
985
|
<div
|
|
3701
|
-
class="
|
|
986
|
+
class="css-1gojmfd"
|
|
3702
987
|
>
|
|
3703
988
|
<div
|
|
3704
|
-
class="
|
|
989
|
+
class="css-8atxkm"
|
|
3705
990
|
>
|
|
3706
991
|
<div
|
|
3707
|
-
class="
|
|
992
|
+
class="css-1ji12ea"
|
|
3708
993
|
>
|
|
3709
994
|
<div
|
|
3710
|
-
class="
|
|
995
|
+
class="css-3jmwfs"
|
|
3711
996
|
>
|
|
3712
997
|
<div
|
|
3713
|
-
class="
|
|
998
|
+
class="css-1gojmfd"
|
|
3714
999
|
data-testid="HighlightsHorizontalCard"
|
|
3715
1000
|
>
|
|
3716
1001
|
<div
|
|
3717
|
-
class="
|
|
1002
|
+
class="css-51dsvu"
|
|
3718
1003
|
>
|
|
3719
1004
|
<div
|
|
3720
|
-
class="
|
|
1005
|
+
class="css-1awrwca"
|
|
3721
1006
|
>
|
|
3722
1007
|
<picture
|
|
3723
|
-
class="
|
|
1008
|
+
class="css-1a8w4l6"
|
|
3724
1009
|
>
|
|
3725
1010
|
<div
|
|
3726
|
-
class="
|
|
1011
|
+
class="css-5pczz7"
|
|
3727
1012
|
/>
|
|
3728
1013
|
<img
|
|
3729
1014
|
alt="Card Media"
|
|
3730
|
-
class="
|
|
1015
|
+
class="css-n57idg"
|
|
3731
1016
|
src="https://plchldr.co/i/50x50"
|
|
3732
1017
|
/>
|
|
3733
1018
|
</picture>
|
|
3734
1019
|
</div>
|
|
3735
1020
|
<div
|
|
3736
|
-
class="
|
|
1021
|
+
class="css-1r2lt0d"
|
|
3737
1022
|
>
|
|
3738
1023
|
<div
|
|
3739
|
-
class="
|
|
1024
|
+
class="css-bw3bp5"
|
|
3740
1025
|
>
|
|
3741
1026
|
<a
|
|
3742
|
-
class="nk-card-link
|
|
3743
|
-
href="
|
|
1027
|
+
class="nk-card-link css-1cq1vxv"
|
|
1028
|
+
href="https://newskit-render.ceng-dev.newsuk.tech"
|
|
3744
1029
|
>
|
|
3745
1030
|
<section
|
|
3746
|
-
class="
|
|
1031
|
+
class="css-1mwgn7o"
|
|
3747
1032
|
>
|
|
3748
1033
|
<h4
|
|
3749
|
-
class="nk-headline-heading
|
|
1034
|
+
class="nk-headline-heading css-10swdqn"
|
|
3750
1035
|
>
|
|
3751
1036
|
Test Box
|
|
3752
1037
|
</h4>
|
|
@@ -3758,46 +1043,46 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3758
1043
|
</div>
|
|
3759
1044
|
</div>
|
|
3760
1045
|
<div
|
|
3761
|
-
class="
|
|
1046
|
+
class="css-3jmwfs"
|
|
3762
1047
|
>
|
|
3763
1048
|
<div
|
|
3764
|
-
class="
|
|
1049
|
+
class="css-1gojmfd"
|
|
3765
1050
|
data-testid="HighlightsHorizontalCard"
|
|
3766
1051
|
>
|
|
3767
1052
|
<div
|
|
3768
|
-
class="
|
|
1053
|
+
class="css-51dsvu"
|
|
3769
1054
|
>
|
|
3770
1055
|
<div
|
|
3771
|
-
class="
|
|
1056
|
+
class="css-1awrwca"
|
|
3772
1057
|
>
|
|
3773
1058
|
<picture
|
|
3774
|
-
class="
|
|
1059
|
+
class="css-1a8w4l6"
|
|
3775
1060
|
>
|
|
3776
1061
|
<div
|
|
3777
|
-
class="
|
|
1062
|
+
class="css-5pczz7"
|
|
3778
1063
|
/>
|
|
3779
1064
|
<img
|
|
3780
1065
|
alt="Card Media"
|
|
3781
|
-
class="
|
|
1066
|
+
class="css-n57idg"
|
|
3782
1067
|
src="https://plchldr.co/i/50x50"
|
|
3783
1068
|
/>
|
|
3784
1069
|
</picture>
|
|
3785
1070
|
</div>
|
|
3786
1071
|
<div
|
|
3787
|
-
class="
|
|
1072
|
+
class="css-1r2lt0d"
|
|
3788
1073
|
>
|
|
3789
1074
|
<div
|
|
3790
|
-
class="
|
|
1075
|
+
class="css-bw3bp5"
|
|
3791
1076
|
>
|
|
3792
1077
|
<a
|
|
3793
|
-
class="nk-card-link
|
|
3794
|
-
href="
|
|
1078
|
+
class="nk-card-link css-1cq1vxv"
|
|
1079
|
+
href="https://newskit-render.ceng-dev.newsuk.tech"
|
|
3795
1080
|
>
|
|
3796
1081
|
<section
|
|
3797
|
-
class="
|
|
1082
|
+
class="css-1mwgn7o"
|
|
3798
1083
|
>
|
|
3799
1084
|
<h4
|
|
3800
|
-
class="nk-headline-heading
|
|
1085
|
+
class="nk-headline-heading css-10swdqn"
|
|
3801
1086
|
>
|
|
3802
1087
|
Prince Harry
|
|
3803
1088
|
</h4>
|
|
@@ -3809,45 +1094,45 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3809
1094
|
</div>
|
|
3810
1095
|
</div>
|
|
3811
1096
|
<div
|
|
3812
|
-
class="
|
|
1097
|
+
class="css-6gys8z"
|
|
3813
1098
|
>
|
|
3814
1099
|
<div
|
|
3815
|
-
class="
|
|
1100
|
+
class="css-1ujq44n"
|
|
3816
1101
|
>
|
|
3817
1102
|
<hr
|
|
3818
1103
|
aria-hidden="true"
|
|
3819
|
-
class="
|
|
1104
|
+
class="css-1aqwza0"
|
|
3820
1105
|
data-testid="divider"
|
|
3821
1106
|
/>
|
|
3822
1107
|
<div
|
|
3823
|
-
class="
|
|
1108
|
+
class="css-uz8772"
|
|
3824
1109
|
>
|
|
3825
1110
|
<div
|
|
3826
|
-
class="
|
|
1111
|
+
class="css-le9csr"
|
|
3827
1112
|
>
|
|
3828
1113
|
<a
|
|
3829
|
-
class="
|
|
1114
|
+
class="css-y6f0jc"
|
|
3830
1115
|
data-testid="buttonLink"
|
|
3831
1116
|
href="/"
|
|
3832
1117
|
>
|
|
3833
1118
|
<div
|
|
3834
|
-
class="
|
|
1119
|
+
class="css-17xj1lu"
|
|
3835
1120
|
>
|
|
3836
1121
|
<div
|
|
3837
|
-
class="
|
|
1122
|
+
class="css-1yztr03"
|
|
3838
1123
|
>
|
|
3839
1124
|
<span
|
|
3840
|
-
class="
|
|
1125
|
+
class="css-72tcch"
|
|
3841
1126
|
>
|
|
3842
1127
|
View all
|
|
3843
1128
|
</span>
|
|
3844
1129
|
</div>
|
|
3845
1130
|
<div
|
|
3846
|
-
class="
|
|
1131
|
+
class="css-1yztr03"
|
|
3847
1132
|
>
|
|
3848
1133
|
<svg
|
|
3849
1134
|
aria-hidden="true"
|
|
3850
|
-
class="
|
|
1135
|
+
class="css-xi2rbi-EmotionIconBase ex0cdmw0"
|
|
3851
1136
|
fill="currentColor"
|
|
3852
1137
|
focusable="false"
|
|
3853
1138
|
viewBox="0 0 24 24"
|
|
@@ -3867,7 +1152,7 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3867
1152
|
</div>
|
|
3868
1153
|
<hr
|
|
3869
1154
|
aria-hidden="true"
|
|
3870
|
-
class="
|
|
1155
|
+
class="css-1aqwza0"
|
|
3871
1156
|
data-testid="divider"
|
|
3872
1157
|
/>
|
|
3873
1158
|
</div>
|
|
@@ -3879,58 +1164,58 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3879
1164
|
</div>
|
|
3880
1165
|
</div>
|
|
3881
1166
|
<div
|
|
3882
|
-
class="
|
|
1167
|
+
class="css-18d6eiw"
|
|
3883
1168
|
data-testid="PageLayout"
|
|
3884
1169
|
>
|
|
3885
1170
|
<div
|
|
3886
|
-
class="
|
|
1171
|
+
class="css-151qm6o"
|
|
3887
1172
|
data-testid="RelatedArticles"
|
|
3888
1173
|
>
|
|
3889
1174
|
<div
|
|
3890
|
-
class="
|
|
1175
|
+
class="css-idfkwh"
|
|
3891
1176
|
>
|
|
3892
1177
|
<div
|
|
3893
|
-
class="
|
|
1178
|
+
class="css-rkp1z9"
|
|
3894
1179
|
>
|
|
3895
1180
|
<div
|
|
3896
|
-
class="
|
|
1181
|
+
class="css-1tdjaxu"
|
|
3897
1182
|
>
|
|
3898
1183
|
<section
|
|
3899
|
-
class="
|
|
1184
|
+
class="css-148i9wz"
|
|
3900
1185
|
>
|
|
3901
1186
|
<h3
|
|
3902
|
-
class="nk-headline-heading
|
|
1187
|
+
class="nk-headline-heading css-5gd387"
|
|
3903
1188
|
>
|
|
3904
1189
|
Related
|
|
3905
1190
|
</h3>
|
|
3906
1191
|
</section>
|
|
3907
1192
|
</div>
|
|
3908
1193
|
<div
|
|
3909
|
-
class="
|
|
1194
|
+
class="css-1h0bvuz"
|
|
3910
1195
|
>
|
|
3911
1196
|
<a
|
|
3912
|
-
class="
|
|
1197
|
+
class="css-y6f0jc"
|
|
3913
1198
|
data-testid="buttonLink"
|
|
3914
1199
|
href="/"
|
|
3915
1200
|
>
|
|
3916
1201
|
<div
|
|
3917
|
-
class="
|
|
1202
|
+
class="css-17xj1lu"
|
|
3918
1203
|
>
|
|
3919
1204
|
<div
|
|
3920
|
-
class="
|
|
1205
|
+
class="css-1yztr03"
|
|
3921
1206
|
>
|
|
3922
1207
|
<span
|
|
3923
|
-
class="
|
|
1208
|
+
class="css-72tcch"
|
|
3924
1209
|
>
|
|
3925
1210
|
View all
|
|
3926
1211
|
</span>
|
|
3927
1212
|
</div>
|
|
3928
1213
|
<div
|
|
3929
|
-
class="
|
|
1214
|
+
class="css-1yztr03"
|
|
3930
1215
|
>
|
|
3931
1216
|
<svg
|
|
3932
1217
|
aria-hidden="true"
|
|
3933
|
-
class="
|
|
1218
|
+
class="css-xi2rbi-EmotionIconBase ex0cdmw0"
|
|
3934
1219
|
fill="currentColor"
|
|
3935
1220
|
focusable="false"
|
|
3936
1221
|
viewBox="0 0 24 24"
|
|
@@ -3951,55 +1236,55 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
3951
1236
|
</div>
|
|
3952
1237
|
</div>
|
|
3953
1238
|
<div
|
|
3954
|
-
class="
|
|
1239
|
+
class="css-8atxkm"
|
|
3955
1240
|
>
|
|
3956
1241
|
<div
|
|
3957
|
-
class="
|
|
1242
|
+
class="css-1ji12ea"
|
|
3958
1243
|
>
|
|
3959
1244
|
<div
|
|
3960
|
-
class="
|
|
1245
|
+
class="css-1iblf0o"
|
|
3961
1246
|
data-testid="RelatedArticlesVerticalCard"
|
|
3962
1247
|
>
|
|
3963
1248
|
<div
|
|
3964
|
-
class="
|
|
1249
|
+
class="css-syq769"
|
|
3965
1250
|
>
|
|
3966
1251
|
<div
|
|
3967
|
-
class="
|
|
1252
|
+
class="css-o2ha8s"
|
|
3968
1253
|
>
|
|
3969
1254
|
<picture
|
|
3970
|
-
class="
|
|
1255
|
+
class="css-1t36qhh"
|
|
3971
1256
|
>
|
|
3972
1257
|
<div
|
|
3973
|
-
class="
|
|
1258
|
+
class="css-5pczz7"
|
|
3974
1259
|
/>
|
|
3975
1260
|
<img
|
|
3976
1261
|
alt="Prince Harry"
|
|
3977
|
-
class="
|
|
1262
|
+
class="css-1qgqq71"
|
|
3978
1263
|
src="https://plchldr.co/i/70x50"
|
|
3979
1264
|
/>
|
|
3980
1265
|
</picture>
|
|
3981
1266
|
</div>
|
|
3982
1267
|
<div
|
|
3983
|
-
class="
|
|
1268
|
+
class="css-1shocxe"
|
|
3984
1269
|
>
|
|
3985
1270
|
<div
|
|
3986
|
-
class="
|
|
1271
|
+
class="css-1a2irou"
|
|
3987
1272
|
>
|
|
3988
1273
|
<div
|
|
3989
|
-
class="
|
|
1274
|
+
class="css-1r3hoet"
|
|
3990
1275
|
>
|
|
3991
1276
|
<div
|
|
3992
|
-
class="
|
|
1277
|
+
class="css-15nllf9"
|
|
3993
1278
|
>
|
|
3994
1279
|
<a
|
|
3995
|
-
class="nk-card-link
|
|
3996
|
-
href="
|
|
1280
|
+
class="nk-card-link css-1cq1vxv"
|
|
1281
|
+
href="https://newskit-render.ceng-dev.newsuk.tech"
|
|
3997
1282
|
>
|
|
3998
1283
|
<section
|
|
3999
|
-
class="
|
|
1284
|
+
class="css-zs57uu"
|
|
4000
1285
|
>
|
|
4001
1286
|
<h6
|
|
4002
|
-
class="nk-headline-heading
|
|
1287
|
+
class="nk-headline-heading css-10swdqn"
|
|
4003
1288
|
>
|
|
4004
1289
|
Prince Harry
|
|
4005
1290
|
</h6>
|
|
@@ -4007,10 +1292,10 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
4007
1292
|
</a>
|
|
4008
1293
|
</div>
|
|
4009
1294
|
<div
|
|
4010
|
-
class="
|
|
1295
|
+
class="css-15nllf9"
|
|
4011
1296
|
>
|
|
4012
1297
|
<p
|
|
4013
|
-
class="
|
|
1298
|
+
class="css-1t9lxz1"
|
|
4014
1299
|
>
|
|
4015
1300
|
news
|
|
4016
1301
|
</p>
|
|
@@ -4021,49 +1306,49 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
4021
1306
|
</div>
|
|
4022
1307
|
</div>
|
|
4023
1308
|
<div
|
|
4024
|
-
class="
|
|
1309
|
+
class="css-1iblf0o"
|
|
4025
1310
|
data-testid="RelatedArticlesVerticalCard"
|
|
4026
1311
|
>
|
|
4027
1312
|
<div
|
|
4028
|
-
class="
|
|
1313
|
+
class="css-syq769"
|
|
4029
1314
|
>
|
|
4030
1315
|
<div
|
|
4031
|
-
class="
|
|
1316
|
+
class="css-o2ha8s"
|
|
4032
1317
|
>
|
|
4033
1318
|
<picture
|
|
4034
|
-
class="
|
|
1319
|
+
class="css-1t36qhh"
|
|
4035
1320
|
>
|
|
4036
1321
|
<div
|
|
4037
|
-
class="
|
|
1322
|
+
class="css-5pczz7"
|
|
4038
1323
|
/>
|
|
4039
1324
|
<img
|
|
4040
1325
|
alt="Meghan Markle"
|
|
4041
|
-
class="
|
|
1326
|
+
class="css-1qgqq71"
|
|
4042
1327
|
src="https://plchldr.co/i/70x50"
|
|
4043
1328
|
/>
|
|
4044
1329
|
</picture>
|
|
4045
1330
|
</div>
|
|
4046
1331
|
<div
|
|
4047
|
-
class="
|
|
1332
|
+
class="css-1shocxe"
|
|
4048
1333
|
>
|
|
4049
1334
|
<div
|
|
4050
|
-
class="
|
|
1335
|
+
class="css-1a2irou"
|
|
4051
1336
|
>
|
|
4052
1337
|
<div
|
|
4053
|
-
class="
|
|
1338
|
+
class="css-1r3hoet"
|
|
4054
1339
|
>
|
|
4055
1340
|
<div
|
|
4056
|
-
class="
|
|
1341
|
+
class="css-15nllf9"
|
|
4057
1342
|
>
|
|
4058
1343
|
<a
|
|
4059
|
-
class="nk-card-link
|
|
4060
|
-
href="
|
|
1344
|
+
class="nk-card-link css-1cq1vxv"
|
|
1345
|
+
href="https://newskit-render.ceng-dev.newsuk.tech"
|
|
4061
1346
|
>
|
|
4062
1347
|
<section
|
|
4063
|
-
class="
|
|
1348
|
+
class="css-zs57uu"
|
|
4064
1349
|
>
|
|
4065
1350
|
<h6
|
|
4066
|
-
class="nk-headline-heading
|
|
1351
|
+
class="nk-headline-heading css-10swdqn"
|
|
4067
1352
|
>
|
|
4068
1353
|
Meghan Markle
|
|
4069
1354
|
</h6>
|
|
@@ -4071,10 +1356,10 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
4071
1356
|
</a>
|
|
4072
1357
|
</div>
|
|
4073
1358
|
<div
|
|
4074
|
-
class="
|
|
1359
|
+
class="css-15nllf9"
|
|
4075
1360
|
>
|
|
4076
1361
|
<p
|
|
4077
|
-
class="
|
|
1362
|
+
class="css-1t9lxz1"
|
|
4078
1363
|
>
|
|
4079
1364
|
news
|
|
4080
1365
|
</p>
|
|
@@ -4085,45 +1370,45 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
4085
1370
|
</div>
|
|
4086
1371
|
</div>
|
|
4087
1372
|
<div
|
|
4088
|
-
class="
|
|
1373
|
+
class="css-6gys8z"
|
|
4089
1374
|
>
|
|
4090
1375
|
<div
|
|
4091
|
-
class="
|
|
1376
|
+
class="css-75g92e"
|
|
4092
1377
|
>
|
|
4093
1378
|
<hr
|
|
4094
1379
|
aria-hidden="true"
|
|
4095
|
-
class="
|
|
1380
|
+
class="css-1aqwza0"
|
|
4096
1381
|
data-testid="divider"
|
|
4097
1382
|
/>
|
|
4098
1383
|
<div
|
|
4099
|
-
class="
|
|
1384
|
+
class="css-uz8772"
|
|
4100
1385
|
>
|
|
4101
1386
|
<div
|
|
4102
|
-
class="
|
|
1387
|
+
class="css-le9csr"
|
|
4103
1388
|
>
|
|
4104
1389
|
<a
|
|
4105
|
-
class="
|
|
1390
|
+
class="css-y6f0jc"
|
|
4106
1391
|
data-testid="buttonLink"
|
|
4107
1392
|
href="/"
|
|
4108
1393
|
>
|
|
4109
1394
|
<div
|
|
4110
|
-
class="
|
|
1395
|
+
class="css-17xj1lu"
|
|
4111
1396
|
>
|
|
4112
1397
|
<div
|
|
4113
|
-
class="
|
|
1398
|
+
class="css-1yztr03"
|
|
4114
1399
|
>
|
|
4115
1400
|
<span
|
|
4116
|
-
class="
|
|
1401
|
+
class="css-72tcch"
|
|
4117
1402
|
>
|
|
4118
1403
|
View all
|
|
4119
1404
|
</span>
|
|
4120
1405
|
</div>
|
|
4121
1406
|
<div
|
|
4122
|
-
class="
|
|
1407
|
+
class="css-1yztr03"
|
|
4123
1408
|
>
|
|
4124
1409
|
<svg
|
|
4125
1410
|
aria-hidden="true"
|
|
4126
|
-
class="
|
|
1411
|
+
class="css-xi2rbi-EmotionIconBase ex0cdmw0"
|
|
4127
1412
|
fill="currentColor"
|
|
4128
1413
|
focusable="false"
|
|
4129
1414
|
viewBox="0 0 24 24"
|
|
@@ -4143,7 +1428,7 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
4143
1428
|
</div>
|
|
4144
1429
|
<hr
|
|
4145
1430
|
aria-hidden="true"
|
|
4146
|
-
class="
|
|
1431
|
+
class="css-1aqwza0"
|
|
4147
1432
|
data-testid="divider"
|
|
4148
1433
|
/>
|
|
4149
1434
|
</div>
|
|
@@ -4154,269 +1439,35 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
4154
1439
|
</div>
|
|
4155
1440
|
</div>
|
|
4156
1441
|
<div
|
|
4157
|
-
class="
|
|
1442
|
+
class="css-18d6eiw"
|
|
4158
1443
|
data-testid="PageLayout"
|
|
4159
1444
|
>
|
|
4160
1445
|
<div
|
|
4161
|
-
class="
|
|
1446
|
+
class="css-ipuk5"
|
|
4162
1447
|
/>
|
|
4163
1448
|
</div>
|
|
4164
1449
|
</div>
|
|
4165
1450
|
</div>
|
|
4166
1451
|
</div>
|
|
4167
|
-
|
|
4168
|
-
|
|
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"
|
|
1452
|
+
<div
|
|
1453
|
+
class="css-1p8e12n"
|
|
4403
1454
|
>
|
|
4404
1455
|
<div
|
|
4405
|
-
class="
|
|
1456
|
+
class="css-8atxkm"
|
|
4406
1457
|
>
|
|
4407
1458
|
<div
|
|
4408
|
-
class="
|
|
1459
|
+
class="css-1w88buo"
|
|
4409
1460
|
data-testid="PageLayout"
|
|
4410
1461
|
>
|
|
4411
1462
|
<div
|
|
4412
|
-
class="
|
|
1463
|
+
class="css-18d6eiw"
|
|
4413
1464
|
data-testid="PageLayout"
|
|
4414
1465
|
>
|
|
4415
1466
|
<div
|
|
4416
|
-
class="
|
|
1467
|
+
class="css-1nj1cp8"
|
|
4417
1468
|
>
|
|
4418
1469
|
<svg
|
|
4419
|
-
class="
|
|
1470
|
+
class="css-kgdu16"
|
|
4420
1471
|
height="48px"
|
|
4421
1472
|
viewBox="0 0 244 40"
|
|
4422
1473
|
>
|
|
@@ -4440,30 +1491,30 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
4440
1491
|
</svg>
|
|
4441
1492
|
</div>
|
|
4442
1493
|
<div
|
|
4443
|
-
class="
|
|
1494
|
+
class="css-1nj1cp8"
|
|
4444
1495
|
>
|
|
4445
1496
|
<hr
|
|
4446
1497
|
aria-hidden="true"
|
|
4447
|
-
class="
|
|
1498
|
+
class="css-ucwznq"
|
|
4448
1499
|
data-testid="divider"
|
|
4449
1500
|
/>
|
|
4450
1501
|
</div>
|
|
4451
1502
|
<div
|
|
4452
|
-
class="
|
|
1503
|
+
class="css-hx18jh"
|
|
4453
1504
|
>
|
|
4454
1505
|
<span
|
|
4455
|
-
class="
|
|
1506
|
+
class="css-zkhuqg"
|
|
4456
1507
|
>
|
|
4457
1508
|
<a
|
|
4458
1509
|
aria-label="NavLink One"
|
|
4459
|
-
class="
|
|
1510
|
+
class="css-71f8au"
|
|
4460
1511
|
href="/link-one"
|
|
4461
1512
|
>
|
|
4462
1513
|
<span
|
|
4463
|
-
class="
|
|
1514
|
+
class="css-7eo7xt"
|
|
4464
1515
|
>
|
|
4465
1516
|
<span
|
|
4466
|
-
class="
|
|
1517
|
+
class="css-b741cy"
|
|
4467
1518
|
>
|
|
4468
1519
|
NavLink One
|
|
4469
1520
|
</span>
|
|
@@ -4471,18 +1522,18 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
4471
1522
|
</a>
|
|
4472
1523
|
</span>
|
|
4473
1524
|
<span
|
|
4474
|
-
class="
|
|
1525
|
+
class="css-zkhuqg"
|
|
4475
1526
|
>
|
|
4476
1527
|
<a
|
|
4477
1528
|
aria-label="NavLink Two"
|
|
4478
|
-
class="
|
|
1529
|
+
class="css-71f8au"
|
|
4479
1530
|
href="/link-two"
|
|
4480
1531
|
>
|
|
4481
1532
|
<span
|
|
4482
|
-
class="
|
|
1533
|
+
class="css-7eo7xt"
|
|
4483
1534
|
>
|
|
4484
1535
|
<span
|
|
4485
|
-
class="
|
|
1536
|
+
class="css-b741cy"
|
|
4486
1537
|
>
|
|
4487
1538
|
NavLink Two
|
|
4488
1539
|
</span>
|
|
@@ -4490,18 +1541,18 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
4490
1541
|
</a>
|
|
4491
1542
|
</span>
|
|
4492
1543
|
<span
|
|
4493
|
-
class="
|
|
1544
|
+
class="css-zkhuqg"
|
|
4494
1545
|
>
|
|
4495
1546
|
<a
|
|
4496
1547
|
aria-label="NavLink Three"
|
|
4497
|
-
class="
|
|
1548
|
+
class="css-71f8au"
|
|
4498
1549
|
href="/link-three"
|
|
4499
1550
|
>
|
|
4500
1551
|
<span
|
|
4501
|
-
class="
|
|
1552
|
+
class="css-7eo7xt"
|
|
4502
1553
|
>
|
|
4503
1554
|
<span
|
|
4504
|
-
class="
|
|
1555
|
+
class="css-b741cy"
|
|
4505
1556
|
>
|
|
4506
1557
|
NavLink Three
|
|
4507
1558
|
</span>
|
|
@@ -4509,18 +1560,18 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
4509
1560
|
</a>
|
|
4510
1561
|
</span>
|
|
4511
1562
|
<span
|
|
4512
|
-
class="
|
|
1563
|
+
class="css-zkhuqg"
|
|
4513
1564
|
>
|
|
4514
1565
|
<a
|
|
4515
1566
|
aria-label="NavLink Four"
|
|
4516
|
-
class="
|
|
1567
|
+
class="css-71f8au"
|
|
4517
1568
|
href="/link-four"
|
|
4518
1569
|
>
|
|
4519
1570
|
<span
|
|
4520
|
-
class="
|
|
1571
|
+
class="css-7eo7xt"
|
|
4521
1572
|
>
|
|
4522
1573
|
<span
|
|
4523
|
-
class="
|
|
1574
|
+
class="css-b741cy"
|
|
4524
1575
|
>
|
|
4525
1576
|
NavLink Four
|
|
4526
1577
|
</span>
|
|
@@ -4528,18 +1579,18 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
4528
1579
|
</a>
|
|
4529
1580
|
</span>
|
|
4530
1581
|
<span
|
|
4531
|
-
class="
|
|
1582
|
+
class="css-zkhuqg"
|
|
4532
1583
|
>
|
|
4533
1584
|
<a
|
|
4534
1585
|
aria-label="NavLink Five"
|
|
4535
|
-
class="
|
|
1586
|
+
class="css-71f8au"
|
|
4536
1587
|
href="/link-five"
|
|
4537
1588
|
>
|
|
4538
1589
|
<span
|
|
4539
|
-
class="
|
|
1590
|
+
class="css-7eo7xt"
|
|
4540
1591
|
>
|
|
4541
1592
|
<span
|
|
4542
|
-
class="
|
|
1593
|
+
class="css-b741cy"
|
|
4543
1594
|
>
|
|
4544
1595
|
NavLink Five
|
|
4545
1596
|
</span>
|
|
@@ -4547,18 +1598,18 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
4547
1598
|
</a>
|
|
4548
1599
|
</span>
|
|
4549
1600
|
<span
|
|
4550
|
-
class="
|
|
1601
|
+
class="css-zkhuqg"
|
|
4551
1602
|
>
|
|
4552
1603
|
<a
|
|
4553
1604
|
aria-label="NavLink Six"
|
|
4554
|
-
class="
|
|
1605
|
+
class="css-71f8au"
|
|
4555
1606
|
href="/link-six"
|
|
4556
1607
|
>
|
|
4557
1608
|
<span
|
|
4558
|
-
class="
|
|
1609
|
+
class="css-7eo7xt"
|
|
4559
1610
|
>
|
|
4560
1611
|
<span
|
|
4561
|
-
class="
|
|
1612
|
+
class="css-b741cy"
|
|
4562
1613
|
>
|
|
4563
1614
|
NavLink Six
|
|
4564
1615
|
</span>
|
|
@@ -4567,16 +1618,16 @@ exports[`Article should render tile and sub title 1`] = `
|
|
|
4567
1618
|
</span>
|
|
4568
1619
|
</div>
|
|
4569
1620
|
<div
|
|
4570
|
-
class="
|
|
1621
|
+
class="css-1nj1cp8"
|
|
4571
1622
|
>
|
|
4572
1623
|
<hr
|
|
4573
1624
|
aria-hidden="true"
|
|
4574
|
-
class="
|
|
1625
|
+
class="css-ucwznq"
|
|
4575
1626
|
data-testid="divider"
|
|
4576
1627
|
/>
|
|
4577
1628
|
</div>
|
|
4578
1629
|
<p
|
|
4579
|
-
class="
|
|
1630
|
+
class="css-1rn2unv"
|
|
4580
1631
|
>
|
|
4581
1632
|
Copyright © YYYY News Corp. All rights reserved.
|
|
4582
1633
|
</p>
|