@newskit-render/core 1.2.3 → 1.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +140 -0
- package/__tests__/pages/[articleSlug].test.tsx +0 -9
- package/__tests__/pages/__snapshots__/home.test.tsx.snap +738 -250
- package/__tests__/pages/home.test.tsx +0 -9
- package/components/article/__tests__/__snapshots__/index.test.tsx.snap +383 -97
- package/components/article/__tests__/index.test.tsx +0 -9
- package/components/footer/__snapshots__/index.test.tsx.snap +144 -9
- package/components/footer/index.test.tsx +0 -9
- package/components/header/index.test.tsx +0 -9
- package/components/header/index.tsx +1 -1
- package/components/section/__tests__/ArticleSlice.test.tsx +2 -10
- package/components/section/layouts/__tests__/SectionRow.test.tsx +0 -9
- package/components/section/layouts/__tests__/__snapshots__/SectionRow.test.tsx.snap +854 -506
- package/next.config.js +0 -13
- package/package.json +16 -14
- package/pages/account/payment/index.tsx +18 -0
- package/pages/checkout/index.tsx +7 -0
- package/temp/header.tsx +76 -76
- package/pages/api/account/zuora/generate-rsa.ts +0 -5
|
@@ -170,6 +170,76 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
170
170
|
}
|
|
171
171
|
|
|
172
172
|
.emotion-7 {
|
|
173
|
+
display: inline-block;
|
|
174
|
+
transition-property: color;
|
|
175
|
+
transition-duration: 200ms;
|
|
176
|
+
transition-timing-function: cubic-bezier(0, 0, .5, 1);
|
|
177
|
+
color: #0A0A0A;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.emotion-7 svg {
|
|
181
|
+
fill: #0A0A0A;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.emotion-8 {
|
|
185
|
+
display: -webkit-box;
|
|
186
|
+
display: -webkit-flex;
|
|
187
|
+
display: -ms-flexbox;
|
|
188
|
+
display: flex;
|
|
189
|
+
height: 100%;
|
|
190
|
+
-webkit-align-items: center;
|
|
191
|
+
-webkit-box-align: center;
|
|
192
|
+
-ms-flex-align: center;
|
|
193
|
+
align-items: center;
|
|
194
|
+
-webkit-flex-direction: row;
|
|
195
|
+
-ms-flex-direction: row;
|
|
196
|
+
flex-direction: row;
|
|
197
|
+
-webkit-box-pack: start;
|
|
198
|
+
-ms-flex-pack: start;
|
|
199
|
+
-webkit-justify-content: flex-start;
|
|
200
|
+
justify-content: flex-start;
|
|
201
|
+
margin-left: calc(-8px/2);
|
|
202
|
+
margin-right: calc(-8px/2);
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.emotion-9 {
|
|
206
|
+
display: -webkit-inline-box;
|
|
207
|
+
display: -webkit-inline-flex;
|
|
208
|
+
display: -ms-inline-flexbox;
|
|
209
|
+
display: inline-flex;
|
|
210
|
+
margin-left: calc(8px/2);
|
|
211
|
+
margin-right: calc(8px/2);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.emotion-10 {
|
|
215
|
+
margin: 0;
|
|
216
|
+
padding: 1px 0;
|
|
217
|
+
font-family: "Poppins",sans-serif;
|
|
218
|
+
font-size: 14px;
|
|
219
|
+
line-height: 1.4285714285714286;
|
|
220
|
+
font-weight: 500;
|
|
221
|
+
letter-spacing: -0.5px;
|
|
222
|
+
display: inline-block;
|
|
223
|
+
display: block;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.emotion-10::before {
|
|
227
|
+
content: '';
|
|
228
|
+
display: block;
|
|
229
|
+
height: 0;
|
|
230
|
+
width: 0;
|
|
231
|
+
margin-bottom: -0.3955357142857143em;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.emotion-10::after {
|
|
235
|
+
content: '';
|
|
236
|
+
display: block;
|
|
237
|
+
height: 0;
|
|
238
|
+
width: 0;
|
|
239
|
+
margin-top: -0.3955357142857143em;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.emotion-12 {
|
|
173
243
|
display: inline-block;
|
|
174
244
|
vertical-align: middle;
|
|
175
245
|
overflow: hidden;
|
|
@@ -180,22 +250,22 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
180
250
|
position: relative;
|
|
181
251
|
}
|
|
182
252
|
|
|
183
|
-
.emotion-
|
|
253
|
+
.emotion-12.emotion-12 {
|
|
184
254
|
width: 24px;
|
|
185
255
|
height: 24px;
|
|
186
256
|
}
|
|
187
257
|
|
|
188
|
-
.emotion-
|
|
258
|
+
.emotion-14 {
|
|
189
259
|
margin-bottom: 40px;
|
|
190
260
|
}
|
|
191
261
|
|
|
192
|
-
.emotion-
|
|
262
|
+
.emotion-15 {
|
|
193
263
|
width: 100%;
|
|
194
264
|
max-width: 1920px;
|
|
195
265
|
margin: 0 auto;
|
|
196
266
|
}
|
|
197
267
|
|
|
198
|
-
.emotion-
|
|
268
|
+
.emotion-16 {
|
|
199
269
|
box-sizing: border-box;
|
|
200
270
|
-webkit-background-clip: padding-box;
|
|
201
271
|
background-clip: padding-box;
|
|
@@ -213,36 +283,36 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
213
283
|
}
|
|
214
284
|
|
|
215
285
|
@media screen {
|
|
216
|
-
.emotion-
|
|
286
|
+
.emotion-16 {
|
|
217
287
|
margin: -40px 8px 0 8px;
|
|
218
288
|
}
|
|
219
289
|
}
|
|
220
290
|
|
|
221
291
|
@media screen and (min-width: 480px) {
|
|
222
|
-
.emotion-
|
|
292
|
+
.emotion-16 {
|
|
223
293
|
margin: -40px 8px 0 8px;
|
|
224
294
|
}
|
|
225
295
|
}
|
|
226
296
|
|
|
227
297
|
@media screen and (min-width: 768px) {
|
|
228
|
-
.emotion-
|
|
298
|
+
.emotion-16 {
|
|
229
299
|
margin: -32px 8px 0 8px;
|
|
230
300
|
}
|
|
231
301
|
}
|
|
232
302
|
|
|
233
303
|
@media screen and (min-width: 1024px) {
|
|
234
|
-
.emotion-
|
|
304
|
+
.emotion-16 {
|
|
235
305
|
margin: -32px 12px 0 12px;
|
|
236
306
|
}
|
|
237
307
|
}
|
|
238
308
|
|
|
239
309
|
@media screen and (min-width: 1440px) {
|
|
240
|
-
.emotion-
|
|
310
|
+
.emotion-16 {
|
|
241
311
|
margin: -0px 12px 0 12px;
|
|
242
312
|
}
|
|
243
313
|
}
|
|
244
314
|
|
|
245
|
-
.emotion-
|
|
315
|
+
.emotion-17 {
|
|
246
316
|
box-sizing: border-box;
|
|
247
317
|
-webkit-background-clip: padding-box;
|
|
248
318
|
background-clip: padding-box;
|
|
@@ -252,7 +322,7 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
252
322
|
}
|
|
253
323
|
|
|
254
324
|
@media screen {
|
|
255
|
-
.emotion-
|
|
325
|
+
.emotion-17 {
|
|
256
326
|
padding: 0 8px;
|
|
257
327
|
margin-top: 40px;
|
|
258
328
|
-webkit-flex-basis: 100%;
|
|
@@ -263,7 +333,7 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
263
333
|
}
|
|
264
334
|
|
|
265
335
|
@media screen and (min-width: 768px) {
|
|
266
|
-
.emotion-
|
|
336
|
+
.emotion-17 {
|
|
267
337
|
margin-top: 32px;
|
|
268
338
|
-webkit-flex-basis: 50%;
|
|
269
339
|
-ms-flex-preferred-size: 50%;
|
|
@@ -273,13 +343,13 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
273
343
|
}
|
|
274
344
|
|
|
275
345
|
@media screen and (min-width: 1024px) {
|
|
276
|
-
.emotion-
|
|
346
|
+
.emotion-17 {
|
|
277
347
|
padding: 0 12px;
|
|
278
348
|
}
|
|
279
349
|
}
|
|
280
350
|
|
|
281
351
|
@media screen and (min-width: 1440px) {
|
|
282
|
-
.emotion-
|
|
352
|
+
.emotion-17 {
|
|
283
353
|
margin-top: 0;
|
|
284
354
|
-webkit-flex-basis: 25%;
|
|
285
355
|
-ms-flex-preferred-size: 25%;
|
|
@@ -288,7 +358,7 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
288
358
|
}
|
|
289
359
|
}
|
|
290
360
|
|
|
291
|
-
.emotion-
|
|
361
|
+
.emotion-18 {
|
|
292
362
|
box-sizing: border-box;
|
|
293
363
|
overflow: hidden;
|
|
294
364
|
color: #2E2E2E;
|
|
@@ -303,14 +373,14 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
303
373
|
flex-direction: column;
|
|
304
374
|
}
|
|
305
375
|
|
|
306
|
-
.emotion-
|
|
376
|
+
.emotion-19 {
|
|
307
377
|
box-sizing: border-box;
|
|
308
378
|
display: block;
|
|
309
379
|
position: relative;
|
|
310
380
|
margin-bottom: 20px;
|
|
311
381
|
}
|
|
312
382
|
|
|
313
|
-
.emotion-
|
|
383
|
+
.emotion-20 {
|
|
314
384
|
position: relative;
|
|
315
385
|
width: 100%;
|
|
316
386
|
display: block;
|
|
@@ -321,11 +391,11 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
321
391
|
background-color: #F4F4F4;
|
|
322
392
|
}
|
|
323
393
|
|
|
324
|
-
.emotion-
|
|
394
|
+
.emotion-20 svg {
|
|
325
395
|
fill: #C0C0C0;
|
|
326
396
|
}
|
|
327
397
|
|
|
328
|
-
.emotion-
|
|
398
|
+
.emotion-21 {
|
|
329
399
|
top: 0;
|
|
330
400
|
left: 0;
|
|
331
401
|
position: absolute;
|
|
@@ -345,7 +415,7 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
345
415
|
margin: 0;
|
|
346
416
|
}
|
|
347
417
|
|
|
348
|
-
.emotion-
|
|
418
|
+
.emotion-22 {
|
|
349
419
|
opacity: 0;
|
|
350
420
|
display: block;
|
|
351
421
|
border-radius: inherit;
|
|
@@ -356,67 +426,67 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
356
426
|
position: absolute;
|
|
357
427
|
}
|
|
358
428
|
|
|
359
|
-
.emotion-
|
|
429
|
+
.emotion-23 {
|
|
360
430
|
box-sizing: border-box;
|
|
361
431
|
}
|
|
362
432
|
|
|
363
|
-
.emotion-
|
|
433
|
+
.emotion-24 {
|
|
364
434
|
box-sizing: border-box;
|
|
365
435
|
padding: 0;
|
|
366
436
|
}
|
|
367
437
|
|
|
368
|
-
.emotion-
|
|
438
|
+
.emotion-24 a:not(.nk-card-link) {
|
|
369
439
|
z-index: 2;
|
|
370
440
|
position: relative;
|
|
371
441
|
}
|
|
372
442
|
|
|
373
|
-
.emotion-
|
|
443
|
+
.emotion-25 {
|
|
374
444
|
-webkit-text-decoration: none;
|
|
375
445
|
text-decoration: none;
|
|
376
446
|
border: none;
|
|
377
447
|
}
|
|
378
448
|
|
|
379
|
-
.emotion-
|
|
449
|
+
.emotion-25 .nk-headline-kicker {
|
|
380
450
|
color: #3358CC;
|
|
381
451
|
}
|
|
382
452
|
|
|
383
|
-
.emotion-
|
|
453
|
+
.emotion-25:hover:not(:disabled) .nk-headline-kicker {
|
|
384
454
|
color: #2B4AAB;
|
|
385
455
|
-webkit-text-decoration: underline;
|
|
386
456
|
text-decoration: underline;
|
|
387
457
|
}
|
|
388
458
|
|
|
389
|
-
.emotion-
|
|
459
|
+
.emotion-25:active:not(:disabled) .nk-headline-kicker {
|
|
390
460
|
color: #213A82;
|
|
391
461
|
-webkit-text-decoration: underline;
|
|
392
462
|
text-decoration: underline;
|
|
393
463
|
}
|
|
394
464
|
|
|
395
|
-
.emotion-
|
|
465
|
+
.emotion-25:visited:not(:disabled) .nk-headline-kicker {
|
|
396
466
|
color: #5E44E4;
|
|
397
467
|
}
|
|
398
468
|
|
|
399
|
-
.emotion-
|
|
469
|
+
.emotion-25 .nk-headline-heading {
|
|
400
470
|
color: #2E2E2E;
|
|
401
471
|
}
|
|
402
472
|
|
|
403
|
-
.emotion-
|
|
473
|
+
.emotion-25:hover:not(:disabled) .nk-headline-heading {
|
|
404
474
|
color: #2B4AAB;
|
|
405
475
|
-webkit-text-decoration: underline;
|
|
406
476
|
text-decoration: underline;
|
|
407
477
|
}
|
|
408
478
|
|
|
409
|
-
.emotion-
|
|
479
|
+
.emotion-25:active:not(:disabled) .nk-headline-heading {
|
|
410
480
|
color: #213A82;
|
|
411
481
|
-webkit-text-decoration: underline;
|
|
412
482
|
text-decoration: underline;
|
|
413
483
|
}
|
|
414
484
|
|
|
415
|
-
.emotion-
|
|
485
|
+
.emotion-25:visited:not(:disabled) .nk-headline-heading {
|
|
416
486
|
color: #5E44E4;
|
|
417
487
|
}
|
|
418
488
|
|
|
419
|
-
.emotion-
|
|
489
|
+
.emotion-25:before {
|
|
420
490
|
content: '';
|
|
421
491
|
top: 0;
|
|
422
492
|
right: 0;
|
|
@@ -427,22 +497,22 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
427
497
|
z-index: 1;
|
|
428
498
|
}
|
|
429
499
|
|
|
430
|
-
.emotion-
|
|
500
|
+
.emotion-26 {
|
|
431
501
|
margin-bottom: 20px;
|
|
432
502
|
}
|
|
433
503
|
|
|
434
|
-
.emotion-
|
|
504
|
+
.emotion-27 {
|
|
435
505
|
margin: 0;
|
|
436
506
|
padding: 1px 0;
|
|
437
507
|
color: #0A0A0A;
|
|
438
508
|
}
|
|
439
509
|
|
|
440
|
-
.emotion-
|
|
510
|
+
.emotion-27 svg {
|
|
441
511
|
fill: #0A0A0A;
|
|
442
512
|
}
|
|
443
513
|
|
|
444
514
|
@media screen and (max-width: 767px) {
|
|
445
|
-
.emotion-
|
|
515
|
+
.emotion-27 {
|
|
446
516
|
font-family: "Bitter",serif;
|
|
447
517
|
font-size: 20px;
|
|
448
518
|
line-height: 1.2;
|
|
@@ -450,7 +520,7 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
450
520
|
letter-spacing: -0.5px;
|
|
451
521
|
}
|
|
452
522
|
|
|
453
|
-
.emotion-
|
|
523
|
+
.emotion-27::before {
|
|
454
524
|
content: '';
|
|
455
525
|
display: block;
|
|
456
526
|
height: 0;
|
|
@@ -458,7 +528,7 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
458
528
|
margin-bottom: -0.25em;
|
|
459
529
|
}
|
|
460
530
|
|
|
461
|
-
.emotion-
|
|
531
|
+
.emotion-27::after {
|
|
462
532
|
content: '';
|
|
463
533
|
display: block;
|
|
464
534
|
height: 0;
|
|
@@ -468,7 +538,7 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
468
538
|
}
|
|
469
539
|
|
|
470
540
|
@media screen and (min-width: 768px) and (max-width: 1439px) {
|
|
471
|
-
.emotion-
|
|
541
|
+
.emotion-27 {
|
|
472
542
|
font-family: "Bitter",serif;
|
|
473
543
|
font-size: 22px;
|
|
474
544
|
line-height: 1.0909090909090908;
|
|
@@ -476,7 +546,7 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
476
546
|
letter-spacing: -0.5px;
|
|
477
547
|
}
|
|
478
548
|
|
|
479
|
-
.emotion-
|
|
549
|
+
.emotion-27::before {
|
|
480
550
|
content: '';
|
|
481
551
|
display: block;
|
|
482
552
|
height: 0;
|
|
@@ -484,7 +554,7 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
484
554
|
margin-bottom: -0.19545454545454544em;
|
|
485
555
|
}
|
|
486
556
|
|
|
487
|
-
.emotion-
|
|
557
|
+
.emotion-27::after {
|
|
488
558
|
content: '';
|
|
489
559
|
display: block;
|
|
490
560
|
height: 0;
|
|
@@ -494,7 +564,7 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
494
564
|
}
|
|
495
565
|
|
|
496
566
|
@media screen and (min-width: 1440px) {
|
|
497
|
-
.emotion-
|
|
567
|
+
.emotion-27 {
|
|
498
568
|
font-family: "Bitter",serif;
|
|
499
569
|
font-size: 24px;
|
|
500
570
|
line-height: 1.1666666666666667;
|
|
@@ -502,7 +572,7 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
502
572
|
letter-spacing: -0.5px;
|
|
503
573
|
}
|
|
504
574
|
|
|
505
|
-
.emotion-
|
|
575
|
+
.emotion-27::before {
|
|
506
576
|
content: '';
|
|
507
577
|
display: block;
|
|
508
578
|
height: 0;
|
|
@@ -510,7 +580,7 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
510
580
|
margin-bottom: -0.2333333333333334em;
|
|
511
581
|
}
|
|
512
582
|
|
|
513
|
-
.emotion-
|
|
583
|
+
.emotion-27::after {
|
|
514
584
|
content: '';
|
|
515
585
|
display: block;
|
|
516
586
|
height: 0;
|
|
@@ -519,22 +589,22 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
519
589
|
}
|
|
520
590
|
}
|
|
521
591
|
|
|
522
|
-
.emotion-
|
|
592
|
+
.emotion-28 {
|
|
523
593
|
margin-bottom: 12px;
|
|
524
594
|
}
|
|
525
595
|
|
|
526
|
-
.emotion-
|
|
596
|
+
.emotion-29 {
|
|
527
597
|
margin: 0;
|
|
528
598
|
padding: 1px 0;
|
|
529
599
|
color: #0A0A0A;
|
|
530
600
|
}
|
|
531
601
|
|
|
532
|
-
.emotion-
|
|
602
|
+
.emotion-29 svg {
|
|
533
603
|
fill: #0A0A0A;
|
|
534
604
|
}
|
|
535
605
|
|
|
536
606
|
@media screen and (max-width: 767px) {
|
|
537
|
-
.emotion-
|
|
607
|
+
.emotion-29 {
|
|
538
608
|
font-family: "DM Sans",sans-serif;
|
|
539
609
|
font-size: 14px;
|
|
540
610
|
line-height: 1.4285714285714286;
|
|
@@ -542,7 +612,7 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
542
612
|
letter-spacing: -0.5px;
|
|
543
613
|
}
|
|
544
614
|
|
|
545
|
-
.emotion-
|
|
615
|
+
.emotion-29::before {
|
|
546
616
|
content: '';
|
|
547
617
|
display: block;
|
|
548
618
|
height: 0;
|
|
@@ -550,7 +620,7 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
550
620
|
margin-bottom: -0.3955357142857143em;
|
|
551
621
|
}
|
|
552
622
|
|
|
553
|
-
.emotion-
|
|
623
|
+
.emotion-29::after {
|
|
554
624
|
content: '';
|
|
555
625
|
display: block;
|
|
556
626
|
height: 0;
|
|
@@ -560,7 +630,7 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
560
630
|
}
|
|
561
631
|
|
|
562
632
|
@media screen and (min-width: 768px) {
|
|
563
|
-
.emotion-
|
|
633
|
+
.emotion-29 {
|
|
564
634
|
font-family: "DM Sans",sans-serif;
|
|
565
635
|
font-size: 16px;
|
|
566
636
|
line-height: 1.5;
|
|
@@ -568,7 +638,7 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
568
638
|
letter-spacing: -0.5px;
|
|
569
639
|
}
|
|
570
640
|
|
|
571
|
-
.emotion-
|
|
641
|
+
.emotion-29::before {
|
|
572
642
|
content: '';
|
|
573
643
|
display: block;
|
|
574
644
|
height: 0;
|
|
@@ -576,7 +646,7 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
576
646
|
margin-bottom: -0.43125em;
|
|
577
647
|
}
|
|
578
648
|
|
|
579
|
-
.emotion-
|
|
649
|
+
.emotion-29::after {
|
|
580
650
|
content: '';
|
|
581
651
|
display: block;
|
|
582
652
|
height: 0;
|
|
@@ -585,7 +655,7 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
585
655
|
}
|
|
586
656
|
}
|
|
587
657
|
|
|
588
|
-
.emotion-
|
|
658
|
+
.emotion-69 {
|
|
589
659
|
border-style: solid;
|
|
590
660
|
border-color: #DEDEDE;
|
|
591
661
|
border-width: 1px;
|
|
@@ -622,86 +692,103 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
622
692
|
class="emotion-6"
|
|
623
693
|
>
|
|
624
694
|
<a
|
|
695
|
+
class="emotion-7"
|
|
625
696
|
href="/section-one"
|
|
626
697
|
>
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
aria-hidden="true"
|
|
630
|
-
class="emotion-7 emotion-8"
|
|
631
|
-
fill="currentColor"
|
|
632
|
-
focusable="false"
|
|
633
|
-
viewBox="0 0 24 24"
|
|
634
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
698
|
+
<span
|
|
699
|
+
class="emotion-8"
|
|
635
700
|
>
|
|
636
|
-
<
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
701
|
+
<span
|
|
702
|
+
class="emotion-9"
|
|
703
|
+
>
|
|
704
|
+
<span
|
|
705
|
+
class="emotion-10"
|
|
706
|
+
>
|
|
707
|
+
Link
|
|
708
|
+
</span>
|
|
709
|
+
</span>
|
|
710
|
+
<span
|
|
711
|
+
class="emotion-9"
|
|
712
|
+
>
|
|
713
|
+
<svg
|
|
714
|
+
aria-hidden="true"
|
|
715
|
+
class="emotion-12 emotion-13"
|
|
716
|
+
fill="currentColor"
|
|
717
|
+
focusable="false"
|
|
718
|
+
viewBox="0 0 24 24"
|
|
719
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
720
|
+
>
|
|
721
|
+
<path
|
|
722
|
+
d="M0 0h24v24H0z"
|
|
723
|
+
fill="none"
|
|
724
|
+
/>
|
|
725
|
+
<path
|
|
726
|
+
d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"
|
|
727
|
+
/>
|
|
728
|
+
</svg>
|
|
729
|
+
</span>
|
|
730
|
+
</span>
|
|
644
731
|
</a>
|
|
645
732
|
</div>
|
|
646
733
|
</div>
|
|
647
734
|
</div>
|
|
648
735
|
<div
|
|
649
|
-
class="emotion-
|
|
736
|
+
class="emotion-14"
|
|
650
737
|
>
|
|
651
738
|
<div
|
|
652
|
-
class="emotion-
|
|
739
|
+
class="emotion-15"
|
|
653
740
|
>
|
|
654
741
|
<div
|
|
655
|
-
class="emotion-
|
|
742
|
+
class="emotion-16"
|
|
656
743
|
data-testid="SECONDARY_4-Grid"
|
|
657
744
|
>
|
|
658
745
|
<div
|
|
659
|
-
class="emotion-
|
|
746
|
+
class="emotion-17"
|
|
660
747
|
data-testid="titleTeaserVertical-0"
|
|
661
748
|
>
|
|
662
749
|
<div
|
|
663
|
-
class="emotion-
|
|
750
|
+
class="emotion-18"
|
|
664
751
|
>
|
|
665
752
|
<div
|
|
666
|
-
class="emotion-
|
|
753
|
+
class="emotion-19"
|
|
667
754
|
>
|
|
668
755
|
<picture
|
|
669
|
-
class="emotion-
|
|
756
|
+
class="emotion-20"
|
|
670
757
|
>
|
|
671
758
|
<div
|
|
672
|
-
class="emotion-
|
|
759
|
+
class="emotion-21"
|
|
673
760
|
/>
|
|
674
761
|
<img
|
|
675
762
|
alt="image alt"
|
|
676
|
-
class="emotion-
|
|
763
|
+
class="emotion-22"
|
|
677
764
|
src="some-url-to-image"
|
|
678
765
|
/>
|
|
679
766
|
</picture>
|
|
680
767
|
</div>
|
|
681
768
|
<div
|
|
682
|
-
class="emotion-
|
|
769
|
+
class="emotion-23"
|
|
683
770
|
>
|
|
684
771
|
<div
|
|
685
|
-
class="emotion-
|
|
772
|
+
class="emotion-24"
|
|
686
773
|
>
|
|
687
774
|
<a
|
|
688
|
-
class="nk-card-link emotion-
|
|
775
|
+
class="nk-card-link emotion-25"
|
|
689
776
|
href="catagory-one/demo-1/test-headline"
|
|
690
777
|
>
|
|
691
778
|
<div
|
|
692
|
-
class="emotion-
|
|
779
|
+
class="emotion-26"
|
|
693
780
|
>
|
|
694
781
|
<h3
|
|
695
|
-
class="emotion-
|
|
782
|
+
class="emotion-27"
|
|
696
783
|
>
|
|
697
784
|
test headline
|
|
698
785
|
</h3>
|
|
699
786
|
</div>
|
|
700
787
|
<div
|
|
701
|
-
class="emotion-
|
|
788
|
+
class="emotion-28"
|
|
702
789
|
>
|
|
703
790
|
<p
|
|
704
|
-
class="emotion-
|
|
791
|
+
class="emotion-29"
|
|
705
792
|
>
|
|
706
793
|
teaser test text
|
|
707
794
|
</p>
|
|
@@ -712,52 +799,52 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
712
799
|
</div>
|
|
713
800
|
</div>
|
|
714
801
|
<div
|
|
715
|
-
class="emotion-
|
|
802
|
+
class="emotion-17"
|
|
716
803
|
data-testid="titleTeaserVertical-1"
|
|
717
804
|
>
|
|
718
805
|
<div
|
|
719
|
-
class="emotion-
|
|
806
|
+
class="emotion-18"
|
|
720
807
|
>
|
|
721
808
|
<div
|
|
722
|
-
class="emotion-
|
|
809
|
+
class="emotion-19"
|
|
723
810
|
>
|
|
724
811
|
<picture
|
|
725
|
-
class="emotion-
|
|
812
|
+
class="emotion-20"
|
|
726
813
|
>
|
|
727
814
|
<div
|
|
728
|
-
class="emotion-
|
|
815
|
+
class="emotion-21"
|
|
729
816
|
/>
|
|
730
817
|
<img
|
|
731
818
|
alt="image alt 2"
|
|
732
|
-
class="emotion-
|
|
819
|
+
class="emotion-22"
|
|
733
820
|
src="some-url-to-image"
|
|
734
821
|
/>
|
|
735
822
|
</picture>
|
|
736
823
|
</div>
|
|
737
824
|
<div
|
|
738
|
-
class="emotion-
|
|
825
|
+
class="emotion-23"
|
|
739
826
|
>
|
|
740
827
|
<div
|
|
741
|
-
class="emotion-
|
|
828
|
+
class="emotion-24"
|
|
742
829
|
>
|
|
743
830
|
<a
|
|
744
|
-
class="nk-card-link emotion-
|
|
831
|
+
class="nk-card-link emotion-25"
|
|
745
832
|
href="catagory-two/demo-2/test-headline-2"
|
|
746
833
|
>
|
|
747
834
|
<div
|
|
748
|
-
class="emotion-
|
|
835
|
+
class="emotion-26"
|
|
749
836
|
>
|
|
750
837
|
<h3
|
|
751
|
-
class="emotion-
|
|
838
|
+
class="emotion-27"
|
|
752
839
|
>
|
|
753
840
|
test headline 2
|
|
754
841
|
</h3>
|
|
755
842
|
</div>
|
|
756
843
|
<div
|
|
757
|
-
class="emotion-
|
|
844
|
+
class="emotion-28"
|
|
758
845
|
>
|
|
759
846
|
<p
|
|
760
|
-
class="emotion-
|
|
847
|
+
class="emotion-29"
|
|
761
848
|
>
|
|
762
849
|
teaser test text 2
|
|
763
850
|
</p>
|
|
@@ -768,52 +855,52 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
768
855
|
</div>
|
|
769
856
|
</div>
|
|
770
857
|
<div
|
|
771
|
-
class="emotion-
|
|
858
|
+
class="emotion-17"
|
|
772
859
|
data-testid="titleTeaserVertical-2"
|
|
773
860
|
>
|
|
774
861
|
<div
|
|
775
|
-
class="emotion-
|
|
862
|
+
class="emotion-18"
|
|
776
863
|
>
|
|
777
864
|
<div
|
|
778
|
-
class="emotion-
|
|
865
|
+
class="emotion-19"
|
|
779
866
|
>
|
|
780
867
|
<picture
|
|
781
|
-
class="emotion-
|
|
868
|
+
class="emotion-20"
|
|
782
869
|
>
|
|
783
870
|
<div
|
|
784
|
-
class="emotion-
|
|
871
|
+
class="emotion-21"
|
|
785
872
|
/>
|
|
786
873
|
<img
|
|
787
874
|
alt="image alt 3"
|
|
788
|
-
class="emotion-
|
|
875
|
+
class="emotion-22"
|
|
789
876
|
src="some-url-to-image"
|
|
790
877
|
/>
|
|
791
878
|
</picture>
|
|
792
879
|
</div>
|
|
793
880
|
<div
|
|
794
|
-
class="emotion-
|
|
881
|
+
class="emotion-23"
|
|
795
882
|
>
|
|
796
883
|
<div
|
|
797
|
-
class="emotion-
|
|
884
|
+
class="emotion-24"
|
|
798
885
|
>
|
|
799
886
|
<a
|
|
800
|
-
class="nk-card-link emotion-
|
|
887
|
+
class="nk-card-link emotion-25"
|
|
801
888
|
href="catagory-three/demo-3/test-headline-3"
|
|
802
889
|
>
|
|
803
890
|
<div
|
|
804
|
-
class="emotion-
|
|
891
|
+
class="emotion-26"
|
|
805
892
|
>
|
|
806
893
|
<h3
|
|
807
|
-
class="emotion-
|
|
894
|
+
class="emotion-27"
|
|
808
895
|
>
|
|
809
896
|
test headline 3
|
|
810
897
|
</h3>
|
|
811
898
|
</div>
|
|
812
899
|
<div
|
|
813
|
-
class="emotion-
|
|
900
|
+
class="emotion-28"
|
|
814
901
|
>
|
|
815
902
|
<p
|
|
816
|
-
class="emotion-
|
|
903
|
+
class="emotion-29"
|
|
817
904
|
>
|
|
818
905
|
teaser test text 3
|
|
819
906
|
</p>
|
|
@@ -824,52 +911,52 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
824
911
|
</div>
|
|
825
912
|
</div>
|
|
826
913
|
<div
|
|
827
|
-
class="emotion-
|
|
914
|
+
class="emotion-17"
|
|
828
915
|
data-testid="titleTeaserVertical-3"
|
|
829
916
|
>
|
|
830
917
|
<div
|
|
831
|
-
class="emotion-
|
|
918
|
+
class="emotion-18"
|
|
832
919
|
>
|
|
833
920
|
<div
|
|
834
|
-
class="emotion-
|
|
921
|
+
class="emotion-19"
|
|
835
922
|
>
|
|
836
923
|
<picture
|
|
837
|
-
class="emotion-
|
|
924
|
+
class="emotion-20"
|
|
838
925
|
>
|
|
839
926
|
<div
|
|
840
|
-
class="emotion-
|
|
927
|
+
class="emotion-21"
|
|
841
928
|
/>
|
|
842
929
|
<img
|
|
843
930
|
alt="image alt 3"
|
|
844
|
-
class="emotion-
|
|
931
|
+
class="emotion-22"
|
|
845
932
|
src="some-url-to-image"
|
|
846
933
|
/>
|
|
847
934
|
</picture>
|
|
848
935
|
</div>
|
|
849
936
|
<div
|
|
850
|
-
class="emotion-
|
|
937
|
+
class="emotion-23"
|
|
851
938
|
>
|
|
852
939
|
<div
|
|
853
|
-
class="emotion-
|
|
940
|
+
class="emotion-24"
|
|
854
941
|
>
|
|
855
942
|
<a
|
|
856
|
-
class="nk-card-link emotion-
|
|
943
|
+
class="nk-card-link emotion-25"
|
|
857
944
|
href="catagory-four/demo-4/test-headline-4"
|
|
858
945
|
>
|
|
859
946
|
<div
|
|
860
|
-
class="emotion-
|
|
947
|
+
class="emotion-26"
|
|
861
948
|
>
|
|
862
949
|
<h3
|
|
863
|
-
class="emotion-
|
|
950
|
+
class="emotion-27"
|
|
864
951
|
>
|
|
865
952
|
test headline 4
|
|
866
953
|
</h3>
|
|
867
954
|
</div>
|
|
868
955
|
<div
|
|
869
|
-
class="emotion-
|
|
956
|
+
class="emotion-28"
|
|
870
957
|
>
|
|
871
958
|
<p
|
|
872
|
-
class="emotion-
|
|
959
|
+
class="emotion-29"
|
|
873
960
|
>
|
|
874
961
|
teaser test text 4
|
|
875
962
|
</p>
|
|
@@ -884,7 +971,7 @@ exports[`SectionRow SectionRow alternative titlebar 1`] = `
|
|
|
884
971
|
</div>
|
|
885
972
|
<hr
|
|
886
973
|
aria-hidden="true"
|
|
887
|
-
class="emotion-
|
|
974
|
+
class="emotion-69"
|
|
888
975
|
data-testid="divider"
|
|
889
976
|
/>
|
|
890
977
|
</div>
|
|
@@ -1061,6 +1148,76 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1061
1148
|
}
|
|
1062
1149
|
|
|
1063
1150
|
.emotion-7 {
|
|
1151
|
+
display: inline-block;
|
|
1152
|
+
transition-property: color;
|
|
1153
|
+
transition-duration: 200ms;
|
|
1154
|
+
transition-timing-function: cubic-bezier(0, 0, .5, 1);
|
|
1155
|
+
color: #FFFFFF;
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
.emotion-7 svg {
|
|
1159
|
+
fill: #FFFFFF;
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
.emotion-8 {
|
|
1163
|
+
display: -webkit-box;
|
|
1164
|
+
display: -webkit-flex;
|
|
1165
|
+
display: -ms-flexbox;
|
|
1166
|
+
display: flex;
|
|
1167
|
+
height: 100%;
|
|
1168
|
+
-webkit-align-items: center;
|
|
1169
|
+
-webkit-box-align: center;
|
|
1170
|
+
-ms-flex-align: center;
|
|
1171
|
+
align-items: center;
|
|
1172
|
+
-webkit-flex-direction: row;
|
|
1173
|
+
-ms-flex-direction: row;
|
|
1174
|
+
flex-direction: row;
|
|
1175
|
+
-webkit-box-pack: start;
|
|
1176
|
+
-ms-flex-pack: start;
|
|
1177
|
+
-webkit-justify-content: flex-start;
|
|
1178
|
+
justify-content: flex-start;
|
|
1179
|
+
margin-left: calc(-8px/2);
|
|
1180
|
+
margin-right: calc(-8px/2);
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
.emotion-9 {
|
|
1184
|
+
display: -webkit-inline-box;
|
|
1185
|
+
display: -webkit-inline-flex;
|
|
1186
|
+
display: -ms-inline-flexbox;
|
|
1187
|
+
display: inline-flex;
|
|
1188
|
+
margin-left: calc(8px/2);
|
|
1189
|
+
margin-right: calc(8px/2);
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
.emotion-10 {
|
|
1193
|
+
margin: 0;
|
|
1194
|
+
padding: 1px 0;
|
|
1195
|
+
font-family: "Poppins",sans-serif;
|
|
1196
|
+
font-size: 14px;
|
|
1197
|
+
line-height: 1.4285714285714286;
|
|
1198
|
+
font-weight: 500;
|
|
1199
|
+
letter-spacing: -0.5px;
|
|
1200
|
+
display: inline-block;
|
|
1201
|
+
display: block;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
.emotion-10::before {
|
|
1205
|
+
content: '';
|
|
1206
|
+
display: block;
|
|
1207
|
+
height: 0;
|
|
1208
|
+
width: 0;
|
|
1209
|
+
margin-bottom: -0.3955357142857143em;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
.emotion-10::after {
|
|
1213
|
+
content: '';
|
|
1214
|
+
display: block;
|
|
1215
|
+
height: 0;
|
|
1216
|
+
width: 0;
|
|
1217
|
+
margin-top: -0.3955357142857143em;
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
.emotion-12 {
|
|
1064
1221
|
display: inline-block;
|
|
1065
1222
|
vertical-align: middle;
|
|
1066
1223
|
overflow: hidden;
|
|
@@ -1071,22 +1228,22 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1071
1228
|
position: relative;
|
|
1072
1229
|
}
|
|
1073
1230
|
|
|
1074
|
-
.emotion-
|
|
1231
|
+
.emotion-12.emotion-12 {
|
|
1075
1232
|
width: 24px;
|
|
1076
1233
|
height: 24px;
|
|
1077
1234
|
}
|
|
1078
1235
|
|
|
1079
|
-
.emotion-
|
|
1236
|
+
.emotion-14 {
|
|
1080
1237
|
margin-bottom: 40px;
|
|
1081
1238
|
}
|
|
1082
1239
|
|
|
1083
|
-
.emotion-
|
|
1240
|
+
.emotion-15 {
|
|
1084
1241
|
width: 100%;
|
|
1085
1242
|
max-width: 1920px;
|
|
1086
1243
|
margin: 0 auto;
|
|
1087
1244
|
}
|
|
1088
1245
|
|
|
1089
|
-
.emotion-
|
|
1246
|
+
.emotion-16 {
|
|
1090
1247
|
box-sizing: border-box;
|
|
1091
1248
|
-webkit-background-clip: padding-box;
|
|
1092
1249
|
background-clip: padding-box;
|
|
@@ -1104,36 +1261,36 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1104
1261
|
}
|
|
1105
1262
|
|
|
1106
1263
|
@media screen {
|
|
1107
|
-
.emotion-
|
|
1264
|
+
.emotion-16 {
|
|
1108
1265
|
margin: -40px 8px 0 8px;
|
|
1109
1266
|
}
|
|
1110
1267
|
}
|
|
1111
1268
|
|
|
1112
1269
|
@media screen and (min-width: 480px) {
|
|
1113
|
-
.emotion-
|
|
1270
|
+
.emotion-16 {
|
|
1114
1271
|
margin: -40px 8px 0 8px;
|
|
1115
1272
|
}
|
|
1116
1273
|
}
|
|
1117
1274
|
|
|
1118
1275
|
@media screen and (min-width: 768px) {
|
|
1119
|
-
.emotion-
|
|
1276
|
+
.emotion-16 {
|
|
1120
1277
|
margin: -32px 8px 0 8px;
|
|
1121
1278
|
}
|
|
1122
1279
|
}
|
|
1123
1280
|
|
|
1124
1281
|
@media screen and (min-width: 1024px) {
|
|
1125
|
-
.emotion-
|
|
1282
|
+
.emotion-16 {
|
|
1126
1283
|
margin: -32px 12px 0 12px;
|
|
1127
1284
|
}
|
|
1128
1285
|
}
|
|
1129
1286
|
|
|
1130
1287
|
@media screen and (min-width: 1440px) {
|
|
1131
|
-
.emotion-
|
|
1288
|
+
.emotion-16 {
|
|
1132
1289
|
margin: -0px 12px 0 12px;
|
|
1133
1290
|
}
|
|
1134
1291
|
}
|
|
1135
1292
|
|
|
1136
|
-
.emotion-
|
|
1293
|
+
.emotion-17 {
|
|
1137
1294
|
box-sizing: border-box;
|
|
1138
1295
|
-webkit-background-clip: padding-box;
|
|
1139
1296
|
background-clip: padding-box;
|
|
@@ -1143,7 +1300,7 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1143
1300
|
}
|
|
1144
1301
|
|
|
1145
1302
|
@media screen {
|
|
1146
|
-
.emotion-
|
|
1303
|
+
.emotion-17 {
|
|
1147
1304
|
padding: 0 8px;
|
|
1148
1305
|
margin-top: 40px;
|
|
1149
1306
|
-webkit-flex-basis: 100%;
|
|
@@ -1154,7 +1311,7 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1154
1311
|
}
|
|
1155
1312
|
|
|
1156
1313
|
@media screen and (min-width: 768px) {
|
|
1157
|
-
.emotion-
|
|
1314
|
+
.emotion-17 {
|
|
1158
1315
|
margin-top: 32px;
|
|
1159
1316
|
-webkit-flex-basis: 50%;
|
|
1160
1317
|
-ms-flex-preferred-size: 50%;
|
|
@@ -1164,13 +1321,13 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1164
1321
|
}
|
|
1165
1322
|
|
|
1166
1323
|
@media screen and (min-width: 1024px) {
|
|
1167
|
-
.emotion-
|
|
1324
|
+
.emotion-17 {
|
|
1168
1325
|
padding: 0 12px;
|
|
1169
1326
|
}
|
|
1170
1327
|
}
|
|
1171
1328
|
|
|
1172
1329
|
@media screen and (min-width: 1440px) {
|
|
1173
|
-
.emotion-
|
|
1330
|
+
.emotion-17 {
|
|
1174
1331
|
margin-top: 0;
|
|
1175
1332
|
-webkit-flex-basis: 25%;
|
|
1176
1333
|
-ms-flex-preferred-size: 25%;
|
|
@@ -1179,7 +1336,7 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1179
1336
|
}
|
|
1180
1337
|
}
|
|
1181
1338
|
|
|
1182
|
-
.emotion-
|
|
1339
|
+
.emotion-18 {
|
|
1183
1340
|
box-sizing: border-box;
|
|
1184
1341
|
overflow: hidden;
|
|
1185
1342
|
color: #2E2E2E;
|
|
@@ -1194,14 +1351,14 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1194
1351
|
flex-direction: column;
|
|
1195
1352
|
}
|
|
1196
1353
|
|
|
1197
|
-
.emotion-
|
|
1354
|
+
.emotion-19 {
|
|
1198
1355
|
box-sizing: border-box;
|
|
1199
1356
|
display: block;
|
|
1200
1357
|
position: relative;
|
|
1201
1358
|
margin-bottom: 20px;
|
|
1202
1359
|
}
|
|
1203
1360
|
|
|
1204
|
-
.emotion-
|
|
1361
|
+
.emotion-20 {
|
|
1205
1362
|
position: relative;
|
|
1206
1363
|
width: 100%;
|
|
1207
1364
|
display: block;
|
|
@@ -1212,11 +1369,11 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1212
1369
|
background-color: #F4F4F4;
|
|
1213
1370
|
}
|
|
1214
1371
|
|
|
1215
|
-
.emotion-
|
|
1372
|
+
.emotion-20 svg {
|
|
1216
1373
|
fill: #C0C0C0;
|
|
1217
1374
|
}
|
|
1218
1375
|
|
|
1219
|
-
.emotion-
|
|
1376
|
+
.emotion-21 {
|
|
1220
1377
|
top: 0;
|
|
1221
1378
|
left: 0;
|
|
1222
1379
|
position: absolute;
|
|
@@ -1236,7 +1393,7 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1236
1393
|
margin: 0;
|
|
1237
1394
|
}
|
|
1238
1395
|
|
|
1239
|
-
.emotion-
|
|
1396
|
+
.emotion-22 {
|
|
1240
1397
|
opacity: 0;
|
|
1241
1398
|
display: block;
|
|
1242
1399
|
border-radius: inherit;
|
|
@@ -1247,67 +1404,67 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1247
1404
|
position: absolute;
|
|
1248
1405
|
}
|
|
1249
1406
|
|
|
1250
|
-
.emotion-
|
|
1407
|
+
.emotion-23 {
|
|
1251
1408
|
box-sizing: border-box;
|
|
1252
1409
|
}
|
|
1253
1410
|
|
|
1254
|
-
.emotion-
|
|
1411
|
+
.emotion-24 {
|
|
1255
1412
|
box-sizing: border-box;
|
|
1256
1413
|
padding: 0;
|
|
1257
1414
|
}
|
|
1258
1415
|
|
|
1259
|
-
.emotion-
|
|
1416
|
+
.emotion-24 a:not(.nk-card-link) {
|
|
1260
1417
|
z-index: 2;
|
|
1261
1418
|
position: relative;
|
|
1262
1419
|
}
|
|
1263
1420
|
|
|
1264
|
-
.emotion-
|
|
1421
|
+
.emotion-25 {
|
|
1265
1422
|
-webkit-text-decoration: none;
|
|
1266
1423
|
text-decoration: none;
|
|
1267
1424
|
border: none;
|
|
1268
1425
|
}
|
|
1269
1426
|
|
|
1270
|
-
.emotion-
|
|
1427
|
+
.emotion-25 .nk-headline-kicker {
|
|
1271
1428
|
color: #3358CC;
|
|
1272
1429
|
}
|
|
1273
1430
|
|
|
1274
|
-
.emotion-
|
|
1431
|
+
.emotion-25:hover:not(:disabled) .nk-headline-kicker {
|
|
1275
1432
|
color: #2B4AAB;
|
|
1276
1433
|
-webkit-text-decoration: underline;
|
|
1277
1434
|
text-decoration: underline;
|
|
1278
1435
|
}
|
|
1279
1436
|
|
|
1280
|
-
.emotion-
|
|
1437
|
+
.emotion-25:active:not(:disabled) .nk-headline-kicker {
|
|
1281
1438
|
color: #213A82;
|
|
1282
1439
|
-webkit-text-decoration: underline;
|
|
1283
1440
|
text-decoration: underline;
|
|
1284
1441
|
}
|
|
1285
1442
|
|
|
1286
|
-
.emotion-
|
|
1443
|
+
.emotion-25:visited:not(:disabled) .nk-headline-kicker {
|
|
1287
1444
|
color: #5E44E4;
|
|
1288
1445
|
}
|
|
1289
1446
|
|
|
1290
|
-
.emotion-
|
|
1447
|
+
.emotion-25 .nk-headline-heading {
|
|
1291
1448
|
color: #2E2E2E;
|
|
1292
1449
|
}
|
|
1293
1450
|
|
|
1294
|
-
.emotion-
|
|
1451
|
+
.emotion-25:hover:not(:disabled) .nk-headline-heading {
|
|
1295
1452
|
color: #2B4AAB;
|
|
1296
1453
|
-webkit-text-decoration: underline;
|
|
1297
1454
|
text-decoration: underline;
|
|
1298
1455
|
}
|
|
1299
1456
|
|
|
1300
|
-
.emotion-
|
|
1457
|
+
.emotion-25:active:not(:disabled) .nk-headline-heading {
|
|
1301
1458
|
color: #213A82;
|
|
1302
1459
|
-webkit-text-decoration: underline;
|
|
1303
1460
|
text-decoration: underline;
|
|
1304
1461
|
}
|
|
1305
1462
|
|
|
1306
|
-
.emotion-
|
|
1463
|
+
.emotion-25:visited:not(:disabled) .nk-headline-heading {
|
|
1307
1464
|
color: #5E44E4;
|
|
1308
1465
|
}
|
|
1309
1466
|
|
|
1310
|
-
.emotion-
|
|
1467
|
+
.emotion-25:before {
|
|
1311
1468
|
content: '';
|
|
1312
1469
|
top: 0;
|
|
1313
1470
|
right: 0;
|
|
@@ -1318,22 +1475,22 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1318
1475
|
z-index: 1;
|
|
1319
1476
|
}
|
|
1320
1477
|
|
|
1321
|
-
.emotion-
|
|
1478
|
+
.emotion-26 {
|
|
1322
1479
|
margin-bottom: 20px;
|
|
1323
1480
|
}
|
|
1324
1481
|
|
|
1325
|
-
.emotion-
|
|
1482
|
+
.emotion-27 {
|
|
1326
1483
|
margin: 0;
|
|
1327
1484
|
padding: 1px 0;
|
|
1328
1485
|
color: #0A0A0A;
|
|
1329
1486
|
}
|
|
1330
1487
|
|
|
1331
|
-
.emotion-
|
|
1488
|
+
.emotion-27 svg {
|
|
1332
1489
|
fill: #0A0A0A;
|
|
1333
1490
|
}
|
|
1334
1491
|
|
|
1335
1492
|
@media screen and (max-width: 767px) {
|
|
1336
|
-
.emotion-
|
|
1493
|
+
.emotion-27 {
|
|
1337
1494
|
font-family: "Bitter",serif;
|
|
1338
1495
|
font-size: 20px;
|
|
1339
1496
|
line-height: 1.2;
|
|
@@ -1341,7 +1498,7 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1341
1498
|
letter-spacing: -0.5px;
|
|
1342
1499
|
}
|
|
1343
1500
|
|
|
1344
|
-
.emotion-
|
|
1501
|
+
.emotion-27::before {
|
|
1345
1502
|
content: '';
|
|
1346
1503
|
display: block;
|
|
1347
1504
|
height: 0;
|
|
@@ -1349,7 +1506,7 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1349
1506
|
margin-bottom: -0.25em;
|
|
1350
1507
|
}
|
|
1351
1508
|
|
|
1352
|
-
.emotion-
|
|
1509
|
+
.emotion-27::after {
|
|
1353
1510
|
content: '';
|
|
1354
1511
|
display: block;
|
|
1355
1512
|
height: 0;
|
|
@@ -1359,7 +1516,7 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1359
1516
|
}
|
|
1360
1517
|
|
|
1361
1518
|
@media screen and (min-width: 768px) and (max-width: 1439px) {
|
|
1362
|
-
.emotion-
|
|
1519
|
+
.emotion-27 {
|
|
1363
1520
|
font-family: "Bitter",serif;
|
|
1364
1521
|
font-size: 22px;
|
|
1365
1522
|
line-height: 1.0909090909090908;
|
|
@@ -1367,7 +1524,7 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1367
1524
|
letter-spacing: -0.5px;
|
|
1368
1525
|
}
|
|
1369
1526
|
|
|
1370
|
-
.emotion-
|
|
1527
|
+
.emotion-27::before {
|
|
1371
1528
|
content: '';
|
|
1372
1529
|
display: block;
|
|
1373
1530
|
height: 0;
|
|
@@ -1375,7 +1532,7 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1375
1532
|
margin-bottom: -0.19545454545454544em;
|
|
1376
1533
|
}
|
|
1377
1534
|
|
|
1378
|
-
.emotion-
|
|
1535
|
+
.emotion-27::after {
|
|
1379
1536
|
content: '';
|
|
1380
1537
|
display: block;
|
|
1381
1538
|
height: 0;
|
|
@@ -1385,7 +1542,7 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1385
1542
|
}
|
|
1386
1543
|
|
|
1387
1544
|
@media screen and (min-width: 1440px) {
|
|
1388
|
-
.emotion-
|
|
1545
|
+
.emotion-27 {
|
|
1389
1546
|
font-family: "Bitter",serif;
|
|
1390
1547
|
font-size: 24px;
|
|
1391
1548
|
line-height: 1.1666666666666667;
|
|
@@ -1393,7 +1550,7 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1393
1550
|
letter-spacing: -0.5px;
|
|
1394
1551
|
}
|
|
1395
1552
|
|
|
1396
|
-
.emotion-
|
|
1553
|
+
.emotion-27::before {
|
|
1397
1554
|
content: '';
|
|
1398
1555
|
display: block;
|
|
1399
1556
|
height: 0;
|
|
@@ -1401,7 +1558,7 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1401
1558
|
margin-bottom: -0.2333333333333334em;
|
|
1402
1559
|
}
|
|
1403
1560
|
|
|
1404
|
-
.emotion-
|
|
1561
|
+
.emotion-27::after {
|
|
1405
1562
|
content: '';
|
|
1406
1563
|
display: block;
|
|
1407
1564
|
height: 0;
|
|
@@ -1410,22 +1567,22 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1410
1567
|
}
|
|
1411
1568
|
}
|
|
1412
1569
|
|
|
1413
|
-
.emotion-
|
|
1570
|
+
.emotion-28 {
|
|
1414
1571
|
margin-bottom: 12px;
|
|
1415
1572
|
}
|
|
1416
1573
|
|
|
1417
|
-
.emotion-
|
|
1574
|
+
.emotion-29 {
|
|
1418
1575
|
margin: 0;
|
|
1419
1576
|
padding: 1px 0;
|
|
1420
1577
|
color: #0A0A0A;
|
|
1421
1578
|
}
|
|
1422
1579
|
|
|
1423
|
-
.emotion-
|
|
1580
|
+
.emotion-29 svg {
|
|
1424
1581
|
fill: #0A0A0A;
|
|
1425
1582
|
}
|
|
1426
1583
|
|
|
1427
1584
|
@media screen and (max-width: 767px) {
|
|
1428
|
-
.emotion-
|
|
1585
|
+
.emotion-29 {
|
|
1429
1586
|
font-family: "DM Sans",sans-serif;
|
|
1430
1587
|
font-size: 14px;
|
|
1431
1588
|
line-height: 1.4285714285714286;
|
|
@@ -1433,7 +1590,7 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1433
1590
|
letter-spacing: -0.5px;
|
|
1434
1591
|
}
|
|
1435
1592
|
|
|
1436
|
-
.emotion-
|
|
1593
|
+
.emotion-29::before {
|
|
1437
1594
|
content: '';
|
|
1438
1595
|
display: block;
|
|
1439
1596
|
height: 0;
|
|
@@ -1441,7 +1598,7 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1441
1598
|
margin-bottom: -0.3955357142857143em;
|
|
1442
1599
|
}
|
|
1443
1600
|
|
|
1444
|
-
.emotion-
|
|
1601
|
+
.emotion-29::after {
|
|
1445
1602
|
content: '';
|
|
1446
1603
|
display: block;
|
|
1447
1604
|
height: 0;
|
|
@@ -1451,7 +1608,7 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1451
1608
|
}
|
|
1452
1609
|
|
|
1453
1610
|
@media screen and (min-width: 768px) {
|
|
1454
|
-
.emotion-
|
|
1611
|
+
.emotion-29 {
|
|
1455
1612
|
font-family: "DM Sans",sans-serif;
|
|
1456
1613
|
font-size: 16px;
|
|
1457
1614
|
line-height: 1.5;
|
|
@@ -1459,7 +1616,7 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1459
1616
|
letter-spacing: -0.5px;
|
|
1460
1617
|
}
|
|
1461
1618
|
|
|
1462
|
-
.emotion-
|
|
1619
|
+
.emotion-29::before {
|
|
1463
1620
|
content: '';
|
|
1464
1621
|
display: block;
|
|
1465
1622
|
height: 0;
|
|
@@ -1467,7 +1624,7 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1467
1624
|
margin-bottom: -0.43125em;
|
|
1468
1625
|
}
|
|
1469
1626
|
|
|
1470
|
-
.emotion-
|
|
1627
|
+
.emotion-29::after {
|
|
1471
1628
|
content: '';
|
|
1472
1629
|
display: block;
|
|
1473
1630
|
height: 0;
|
|
@@ -1476,7 +1633,7 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1476
1633
|
}
|
|
1477
1634
|
}
|
|
1478
1635
|
|
|
1479
|
-
.emotion-
|
|
1636
|
+
.emotion-69 {
|
|
1480
1637
|
border-style: solid;
|
|
1481
1638
|
border-color: #DEDEDE;
|
|
1482
1639
|
border-width: 1px;
|
|
@@ -1513,86 +1670,103 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1513
1670
|
class="emotion-6"
|
|
1514
1671
|
>
|
|
1515
1672
|
<a
|
|
1673
|
+
class="emotion-7"
|
|
1516
1674
|
href="/section-one"
|
|
1517
1675
|
>
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
aria-hidden="true"
|
|
1521
|
-
class="emotion-7 emotion-8"
|
|
1522
|
-
fill="currentColor"
|
|
1523
|
-
focusable="false"
|
|
1524
|
-
viewBox="0 0 24 24"
|
|
1525
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
1676
|
+
<span
|
|
1677
|
+
class="emotion-8"
|
|
1526
1678
|
>
|
|
1527
|
-
<
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1679
|
+
<span
|
|
1680
|
+
class="emotion-9"
|
|
1681
|
+
>
|
|
1682
|
+
<span
|
|
1683
|
+
class="emotion-10"
|
|
1684
|
+
>
|
|
1685
|
+
Link
|
|
1686
|
+
</span>
|
|
1687
|
+
</span>
|
|
1688
|
+
<span
|
|
1689
|
+
class="emotion-9"
|
|
1690
|
+
>
|
|
1691
|
+
<svg
|
|
1692
|
+
aria-hidden="true"
|
|
1693
|
+
class="emotion-12 emotion-13"
|
|
1694
|
+
fill="currentColor"
|
|
1695
|
+
focusable="false"
|
|
1696
|
+
viewBox="0 0 24 24"
|
|
1697
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1698
|
+
>
|
|
1699
|
+
<path
|
|
1700
|
+
d="M0 0h24v24H0z"
|
|
1701
|
+
fill="none"
|
|
1702
|
+
/>
|
|
1703
|
+
<path
|
|
1704
|
+
d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"
|
|
1705
|
+
/>
|
|
1706
|
+
</svg>
|
|
1707
|
+
</span>
|
|
1708
|
+
</span>
|
|
1535
1709
|
</a>
|
|
1536
1710
|
</div>
|
|
1537
1711
|
</div>
|
|
1538
1712
|
</div>
|
|
1539
1713
|
<div
|
|
1540
|
-
class="emotion-
|
|
1714
|
+
class="emotion-14"
|
|
1541
1715
|
>
|
|
1542
1716
|
<div
|
|
1543
|
-
class="emotion-
|
|
1717
|
+
class="emotion-15"
|
|
1544
1718
|
>
|
|
1545
1719
|
<div
|
|
1546
|
-
class="emotion-
|
|
1720
|
+
class="emotion-16"
|
|
1547
1721
|
data-testid="SECONDARY_4-Grid"
|
|
1548
1722
|
>
|
|
1549
1723
|
<div
|
|
1550
|
-
class="emotion-
|
|
1724
|
+
class="emotion-17"
|
|
1551
1725
|
data-testid="titleTeaserVertical-0"
|
|
1552
1726
|
>
|
|
1553
1727
|
<div
|
|
1554
|
-
class="emotion-
|
|
1728
|
+
class="emotion-18"
|
|
1555
1729
|
>
|
|
1556
1730
|
<div
|
|
1557
|
-
class="emotion-
|
|
1731
|
+
class="emotion-19"
|
|
1558
1732
|
>
|
|
1559
1733
|
<picture
|
|
1560
|
-
class="emotion-
|
|
1734
|
+
class="emotion-20"
|
|
1561
1735
|
>
|
|
1562
1736
|
<div
|
|
1563
|
-
class="emotion-
|
|
1737
|
+
class="emotion-21"
|
|
1564
1738
|
/>
|
|
1565
1739
|
<img
|
|
1566
1740
|
alt="image alt"
|
|
1567
|
-
class="emotion-
|
|
1741
|
+
class="emotion-22"
|
|
1568
1742
|
src="some-url-to-image"
|
|
1569
1743
|
/>
|
|
1570
1744
|
</picture>
|
|
1571
1745
|
</div>
|
|
1572
1746
|
<div
|
|
1573
|
-
class="emotion-
|
|
1747
|
+
class="emotion-23"
|
|
1574
1748
|
>
|
|
1575
1749
|
<div
|
|
1576
|
-
class="emotion-
|
|
1750
|
+
class="emotion-24"
|
|
1577
1751
|
>
|
|
1578
1752
|
<a
|
|
1579
|
-
class="nk-card-link emotion-
|
|
1753
|
+
class="nk-card-link emotion-25"
|
|
1580
1754
|
href="catagory-one/demo-1/test-headline"
|
|
1581
1755
|
>
|
|
1582
1756
|
<div
|
|
1583
|
-
class="emotion-
|
|
1757
|
+
class="emotion-26"
|
|
1584
1758
|
>
|
|
1585
1759
|
<h3
|
|
1586
|
-
class="emotion-
|
|
1760
|
+
class="emotion-27"
|
|
1587
1761
|
>
|
|
1588
1762
|
test headline
|
|
1589
1763
|
</h3>
|
|
1590
1764
|
</div>
|
|
1591
1765
|
<div
|
|
1592
|
-
class="emotion-
|
|
1766
|
+
class="emotion-28"
|
|
1593
1767
|
>
|
|
1594
1768
|
<p
|
|
1595
|
-
class="emotion-
|
|
1769
|
+
class="emotion-29"
|
|
1596
1770
|
>
|
|
1597
1771
|
teaser test text
|
|
1598
1772
|
</p>
|
|
@@ -1603,52 +1777,52 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1603
1777
|
</div>
|
|
1604
1778
|
</div>
|
|
1605
1779
|
<div
|
|
1606
|
-
class="emotion-
|
|
1780
|
+
class="emotion-17"
|
|
1607
1781
|
data-testid="titleTeaserVertical-1"
|
|
1608
1782
|
>
|
|
1609
1783
|
<div
|
|
1610
|
-
class="emotion-
|
|
1784
|
+
class="emotion-18"
|
|
1611
1785
|
>
|
|
1612
1786
|
<div
|
|
1613
|
-
class="emotion-
|
|
1787
|
+
class="emotion-19"
|
|
1614
1788
|
>
|
|
1615
1789
|
<picture
|
|
1616
|
-
class="emotion-
|
|
1790
|
+
class="emotion-20"
|
|
1617
1791
|
>
|
|
1618
1792
|
<div
|
|
1619
|
-
class="emotion-
|
|
1793
|
+
class="emotion-21"
|
|
1620
1794
|
/>
|
|
1621
1795
|
<img
|
|
1622
1796
|
alt="image alt 2"
|
|
1623
|
-
class="emotion-
|
|
1797
|
+
class="emotion-22"
|
|
1624
1798
|
src="some-url-to-image"
|
|
1625
1799
|
/>
|
|
1626
1800
|
</picture>
|
|
1627
1801
|
</div>
|
|
1628
1802
|
<div
|
|
1629
|
-
class="emotion-
|
|
1803
|
+
class="emotion-23"
|
|
1630
1804
|
>
|
|
1631
1805
|
<div
|
|
1632
|
-
class="emotion-
|
|
1806
|
+
class="emotion-24"
|
|
1633
1807
|
>
|
|
1634
1808
|
<a
|
|
1635
|
-
class="nk-card-link emotion-
|
|
1809
|
+
class="nk-card-link emotion-25"
|
|
1636
1810
|
href="catagory-two/demo-2/test-headline-2"
|
|
1637
1811
|
>
|
|
1638
1812
|
<div
|
|
1639
|
-
class="emotion-
|
|
1813
|
+
class="emotion-26"
|
|
1640
1814
|
>
|
|
1641
1815
|
<h3
|
|
1642
|
-
class="emotion-
|
|
1816
|
+
class="emotion-27"
|
|
1643
1817
|
>
|
|
1644
1818
|
test headline 2
|
|
1645
1819
|
</h3>
|
|
1646
1820
|
</div>
|
|
1647
1821
|
<div
|
|
1648
|
-
class="emotion-
|
|
1822
|
+
class="emotion-28"
|
|
1649
1823
|
>
|
|
1650
1824
|
<p
|
|
1651
|
-
class="emotion-
|
|
1825
|
+
class="emotion-29"
|
|
1652
1826
|
>
|
|
1653
1827
|
teaser test text 2
|
|
1654
1828
|
</p>
|
|
@@ -1659,52 +1833,52 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1659
1833
|
</div>
|
|
1660
1834
|
</div>
|
|
1661
1835
|
<div
|
|
1662
|
-
class="emotion-
|
|
1836
|
+
class="emotion-17"
|
|
1663
1837
|
data-testid="titleTeaserVertical-2"
|
|
1664
1838
|
>
|
|
1665
1839
|
<div
|
|
1666
|
-
class="emotion-
|
|
1840
|
+
class="emotion-18"
|
|
1667
1841
|
>
|
|
1668
1842
|
<div
|
|
1669
|
-
class="emotion-
|
|
1843
|
+
class="emotion-19"
|
|
1670
1844
|
>
|
|
1671
1845
|
<picture
|
|
1672
|
-
class="emotion-
|
|
1846
|
+
class="emotion-20"
|
|
1673
1847
|
>
|
|
1674
1848
|
<div
|
|
1675
|
-
class="emotion-
|
|
1849
|
+
class="emotion-21"
|
|
1676
1850
|
/>
|
|
1677
1851
|
<img
|
|
1678
1852
|
alt="image alt 3"
|
|
1679
|
-
class="emotion-
|
|
1853
|
+
class="emotion-22"
|
|
1680
1854
|
src="some-url-to-image"
|
|
1681
1855
|
/>
|
|
1682
1856
|
</picture>
|
|
1683
1857
|
</div>
|
|
1684
1858
|
<div
|
|
1685
|
-
class="emotion-
|
|
1859
|
+
class="emotion-23"
|
|
1686
1860
|
>
|
|
1687
1861
|
<div
|
|
1688
|
-
class="emotion-
|
|
1862
|
+
class="emotion-24"
|
|
1689
1863
|
>
|
|
1690
1864
|
<a
|
|
1691
|
-
class="nk-card-link emotion-
|
|
1865
|
+
class="nk-card-link emotion-25"
|
|
1692
1866
|
href="catagory-three/demo-3/test-headline-3"
|
|
1693
1867
|
>
|
|
1694
1868
|
<div
|
|
1695
|
-
class="emotion-
|
|
1869
|
+
class="emotion-26"
|
|
1696
1870
|
>
|
|
1697
1871
|
<h3
|
|
1698
|
-
class="emotion-
|
|
1872
|
+
class="emotion-27"
|
|
1699
1873
|
>
|
|
1700
1874
|
test headline 3
|
|
1701
1875
|
</h3>
|
|
1702
1876
|
</div>
|
|
1703
1877
|
<div
|
|
1704
|
-
class="emotion-
|
|
1878
|
+
class="emotion-28"
|
|
1705
1879
|
>
|
|
1706
1880
|
<p
|
|
1707
|
-
class="emotion-
|
|
1881
|
+
class="emotion-29"
|
|
1708
1882
|
>
|
|
1709
1883
|
teaser test text 3
|
|
1710
1884
|
</p>
|
|
@@ -1715,52 +1889,52 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1715
1889
|
</div>
|
|
1716
1890
|
</div>
|
|
1717
1891
|
<div
|
|
1718
|
-
class="emotion-
|
|
1892
|
+
class="emotion-17"
|
|
1719
1893
|
data-testid="titleTeaserVertical-3"
|
|
1720
1894
|
>
|
|
1721
1895
|
<div
|
|
1722
|
-
class="emotion-
|
|
1896
|
+
class="emotion-18"
|
|
1723
1897
|
>
|
|
1724
1898
|
<div
|
|
1725
|
-
class="emotion-
|
|
1899
|
+
class="emotion-19"
|
|
1726
1900
|
>
|
|
1727
1901
|
<picture
|
|
1728
|
-
class="emotion-
|
|
1902
|
+
class="emotion-20"
|
|
1729
1903
|
>
|
|
1730
1904
|
<div
|
|
1731
|
-
class="emotion-
|
|
1905
|
+
class="emotion-21"
|
|
1732
1906
|
/>
|
|
1733
1907
|
<img
|
|
1734
1908
|
alt="image alt 3"
|
|
1735
|
-
class="emotion-
|
|
1909
|
+
class="emotion-22"
|
|
1736
1910
|
src="some-url-to-image"
|
|
1737
1911
|
/>
|
|
1738
1912
|
</picture>
|
|
1739
1913
|
</div>
|
|
1740
1914
|
<div
|
|
1741
|
-
class="emotion-
|
|
1915
|
+
class="emotion-23"
|
|
1742
1916
|
>
|
|
1743
1917
|
<div
|
|
1744
|
-
class="emotion-
|
|
1918
|
+
class="emotion-24"
|
|
1745
1919
|
>
|
|
1746
1920
|
<a
|
|
1747
|
-
class="nk-card-link emotion-
|
|
1921
|
+
class="nk-card-link emotion-25"
|
|
1748
1922
|
href="catagory-four/demo-4/test-headline-4"
|
|
1749
1923
|
>
|
|
1750
1924
|
<div
|
|
1751
|
-
class="emotion-
|
|
1925
|
+
class="emotion-26"
|
|
1752
1926
|
>
|
|
1753
1927
|
<h3
|
|
1754
|
-
class="emotion-
|
|
1928
|
+
class="emotion-27"
|
|
1755
1929
|
>
|
|
1756
1930
|
test headline 4
|
|
1757
1931
|
</h3>
|
|
1758
1932
|
</div>
|
|
1759
1933
|
<div
|
|
1760
|
-
class="emotion-
|
|
1934
|
+
class="emotion-28"
|
|
1761
1935
|
>
|
|
1762
1936
|
<p
|
|
1763
|
-
class="emotion-
|
|
1937
|
+
class="emotion-29"
|
|
1764
1938
|
>
|
|
1765
1939
|
teaser test text 4
|
|
1766
1940
|
</p>
|
|
@@ -1775,7 +1949,7 @@ exports[`SectionRow SectionRow isDarkBackground 1`] = `
|
|
|
1775
1949
|
</div>
|
|
1776
1950
|
<hr
|
|
1777
1951
|
aria-hidden="true"
|
|
1778
|
-
class="emotion-
|
|
1952
|
+
class="emotion-69"
|
|
1779
1953
|
data-testid="divider"
|
|
1780
1954
|
/>
|
|
1781
1955
|
</div>
|
|
@@ -1952,6 +2126,76 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
1952
2126
|
}
|
|
1953
2127
|
|
|
1954
2128
|
.emotion-7 {
|
|
2129
|
+
display: inline-block;
|
|
2130
|
+
transition-property: color;
|
|
2131
|
+
transition-duration: 200ms;
|
|
2132
|
+
transition-timing-function: cubic-bezier(0, 0, .5, 1);
|
|
2133
|
+
color: #FFFFFF;
|
|
2134
|
+
}
|
|
2135
|
+
|
|
2136
|
+
.emotion-7 svg {
|
|
2137
|
+
fill: #FFFFFF;
|
|
2138
|
+
}
|
|
2139
|
+
|
|
2140
|
+
.emotion-8 {
|
|
2141
|
+
display: -webkit-box;
|
|
2142
|
+
display: -webkit-flex;
|
|
2143
|
+
display: -ms-flexbox;
|
|
2144
|
+
display: flex;
|
|
2145
|
+
height: 100%;
|
|
2146
|
+
-webkit-align-items: center;
|
|
2147
|
+
-webkit-box-align: center;
|
|
2148
|
+
-ms-flex-align: center;
|
|
2149
|
+
align-items: center;
|
|
2150
|
+
-webkit-flex-direction: row;
|
|
2151
|
+
-ms-flex-direction: row;
|
|
2152
|
+
flex-direction: row;
|
|
2153
|
+
-webkit-box-pack: start;
|
|
2154
|
+
-ms-flex-pack: start;
|
|
2155
|
+
-webkit-justify-content: flex-start;
|
|
2156
|
+
justify-content: flex-start;
|
|
2157
|
+
margin-left: calc(-8px/2);
|
|
2158
|
+
margin-right: calc(-8px/2);
|
|
2159
|
+
}
|
|
2160
|
+
|
|
2161
|
+
.emotion-9 {
|
|
2162
|
+
display: -webkit-inline-box;
|
|
2163
|
+
display: -webkit-inline-flex;
|
|
2164
|
+
display: -ms-inline-flexbox;
|
|
2165
|
+
display: inline-flex;
|
|
2166
|
+
margin-left: calc(8px/2);
|
|
2167
|
+
margin-right: calc(8px/2);
|
|
2168
|
+
}
|
|
2169
|
+
|
|
2170
|
+
.emotion-10 {
|
|
2171
|
+
margin: 0;
|
|
2172
|
+
padding: 1px 0;
|
|
2173
|
+
font-family: "Poppins",sans-serif;
|
|
2174
|
+
font-size: 14px;
|
|
2175
|
+
line-height: 1.4285714285714286;
|
|
2176
|
+
font-weight: 500;
|
|
2177
|
+
letter-spacing: -0.5px;
|
|
2178
|
+
display: inline-block;
|
|
2179
|
+
display: block;
|
|
2180
|
+
}
|
|
2181
|
+
|
|
2182
|
+
.emotion-10::before {
|
|
2183
|
+
content: '';
|
|
2184
|
+
display: block;
|
|
2185
|
+
height: 0;
|
|
2186
|
+
width: 0;
|
|
2187
|
+
margin-bottom: -0.3955357142857143em;
|
|
2188
|
+
}
|
|
2189
|
+
|
|
2190
|
+
.emotion-10::after {
|
|
2191
|
+
content: '';
|
|
2192
|
+
display: block;
|
|
2193
|
+
height: 0;
|
|
2194
|
+
width: 0;
|
|
2195
|
+
margin-top: -0.3955357142857143em;
|
|
2196
|
+
}
|
|
2197
|
+
|
|
2198
|
+
.emotion-12 {
|
|
1955
2199
|
display: inline-block;
|
|
1956
2200
|
vertical-align: middle;
|
|
1957
2201
|
overflow: hidden;
|
|
@@ -1962,22 +2206,22 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
1962
2206
|
position: relative;
|
|
1963
2207
|
}
|
|
1964
2208
|
|
|
1965
|
-
.emotion-
|
|
2209
|
+
.emotion-12.emotion-12 {
|
|
1966
2210
|
width: 24px;
|
|
1967
2211
|
height: 24px;
|
|
1968
2212
|
}
|
|
1969
2213
|
|
|
1970
|
-
.emotion-
|
|
2214
|
+
.emotion-14 {
|
|
1971
2215
|
margin-bottom: 40px;
|
|
1972
2216
|
}
|
|
1973
2217
|
|
|
1974
|
-
.emotion-
|
|
2218
|
+
.emotion-15 {
|
|
1975
2219
|
width: 100%;
|
|
1976
2220
|
max-width: 1920px;
|
|
1977
2221
|
margin: 0 auto;
|
|
1978
2222
|
}
|
|
1979
2223
|
|
|
1980
|
-
.emotion-
|
|
2224
|
+
.emotion-16 {
|
|
1981
2225
|
box-sizing: border-box;
|
|
1982
2226
|
-webkit-background-clip: padding-box;
|
|
1983
2227
|
background-clip: padding-box;
|
|
@@ -1995,36 +2239,36 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
1995
2239
|
}
|
|
1996
2240
|
|
|
1997
2241
|
@media screen {
|
|
1998
|
-
.emotion-
|
|
2242
|
+
.emotion-16 {
|
|
1999
2243
|
margin: -40px 8px 0 8px;
|
|
2000
2244
|
}
|
|
2001
2245
|
}
|
|
2002
2246
|
|
|
2003
2247
|
@media screen and (min-width: 480px) {
|
|
2004
|
-
.emotion-
|
|
2248
|
+
.emotion-16 {
|
|
2005
2249
|
margin: -40px 8px 0 8px;
|
|
2006
2250
|
}
|
|
2007
2251
|
}
|
|
2008
2252
|
|
|
2009
2253
|
@media screen and (min-width: 768px) {
|
|
2010
|
-
.emotion-
|
|
2254
|
+
.emotion-16 {
|
|
2011
2255
|
margin: -32px 8px 0 8px;
|
|
2012
2256
|
}
|
|
2013
2257
|
}
|
|
2014
2258
|
|
|
2015
2259
|
@media screen and (min-width: 1024px) {
|
|
2016
|
-
.emotion-
|
|
2260
|
+
.emotion-16 {
|
|
2017
2261
|
margin: -32px 12px 0 12px;
|
|
2018
2262
|
}
|
|
2019
2263
|
}
|
|
2020
2264
|
|
|
2021
2265
|
@media screen and (min-width: 1440px) {
|
|
2022
|
-
.emotion-
|
|
2266
|
+
.emotion-16 {
|
|
2023
2267
|
margin: -0px 12px 0 12px;
|
|
2024
2268
|
}
|
|
2025
2269
|
}
|
|
2026
2270
|
|
|
2027
|
-
.emotion-
|
|
2271
|
+
.emotion-17 {
|
|
2028
2272
|
box-sizing: border-box;
|
|
2029
2273
|
-webkit-background-clip: padding-box;
|
|
2030
2274
|
background-clip: padding-box;
|
|
@@ -2034,7 +2278,7 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2034
2278
|
}
|
|
2035
2279
|
|
|
2036
2280
|
@media screen {
|
|
2037
|
-
.emotion-
|
|
2281
|
+
.emotion-17 {
|
|
2038
2282
|
padding: 0 8px;
|
|
2039
2283
|
margin-top: 40px;
|
|
2040
2284
|
-webkit-flex-basis: 100%;
|
|
@@ -2045,7 +2289,7 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2045
2289
|
}
|
|
2046
2290
|
|
|
2047
2291
|
@media screen and (min-width: 768px) {
|
|
2048
|
-
.emotion-
|
|
2292
|
+
.emotion-17 {
|
|
2049
2293
|
margin-top: 32px;
|
|
2050
2294
|
-webkit-flex-basis: 50%;
|
|
2051
2295
|
-ms-flex-preferred-size: 50%;
|
|
@@ -2055,13 +2299,13 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2055
2299
|
}
|
|
2056
2300
|
|
|
2057
2301
|
@media screen and (min-width: 1024px) {
|
|
2058
|
-
.emotion-
|
|
2302
|
+
.emotion-17 {
|
|
2059
2303
|
padding: 0 12px;
|
|
2060
2304
|
}
|
|
2061
2305
|
}
|
|
2062
2306
|
|
|
2063
2307
|
@media screen and (min-width: 1440px) {
|
|
2064
|
-
.emotion-
|
|
2308
|
+
.emotion-17 {
|
|
2065
2309
|
margin-top: 0;
|
|
2066
2310
|
-webkit-flex-basis: 25%;
|
|
2067
2311
|
-ms-flex-preferred-size: 25%;
|
|
@@ -2070,7 +2314,7 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2070
2314
|
}
|
|
2071
2315
|
}
|
|
2072
2316
|
|
|
2073
|
-
.emotion-
|
|
2317
|
+
.emotion-18 {
|
|
2074
2318
|
box-sizing: border-box;
|
|
2075
2319
|
overflow: hidden;
|
|
2076
2320
|
color: #2E2E2E;
|
|
@@ -2085,14 +2329,14 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2085
2329
|
flex-direction: column;
|
|
2086
2330
|
}
|
|
2087
2331
|
|
|
2088
|
-
.emotion-
|
|
2332
|
+
.emotion-19 {
|
|
2089
2333
|
box-sizing: border-box;
|
|
2090
2334
|
display: block;
|
|
2091
2335
|
position: relative;
|
|
2092
2336
|
margin-bottom: 20px;
|
|
2093
2337
|
}
|
|
2094
2338
|
|
|
2095
|
-
.emotion-
|
|
2339
|
+
.emotion-20 {
|
|
2096
2340
|
position: relative;
|
|
2097
2341
|
width: 100%;
|
|
2098
2342
|
display: block;
|
|
@@ -2103,11 +2347,11 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2103
2347
|
background-color: #F4F4F4;
|
|
2104
2348
|
}
|
|
2105
2349
|
|
|
2106
|
-
.emotion-
|
|
2350
|
+
.emotion-20 svg {
|
|
2107
2351
|
fill: #C0C0C0;
|
|
2108
2352
|
}
|
|
2109
2353
|
|
|
2110
|
-
.emotion-
|
|
2354
|
+
.emotion-21 {
|
|
2111
2355
|
top: 0;
|
|
2112
2356
|
left: 0;
|
|
2113
2357
|
position: absolute;
|
|
@@ -2127,7 +2371,7 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2127
2371
|
margin: 0;
|
|
2128
2372
|
}
|
|
2129
2373
|
|
|
2130
|
-
.emotion-
|
|
2374
|
+
.emotion-22 {
|
|
2131
2375
|
opacity: 0;
|
|
2132
2376
|
display: block;
|
|
2133
2377
|
border-radius: inherit;
|
|
@@ -2138,67 +2382,67 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2138
2382
|
position: absolute;
|
|
2139
2383
|
}
|
|
2140
2384
|
|
|
2141
|
-
.emotion-
|
|
2385
|
+
.emotion-23 {
|
|
2142
2386
|
box-sizing: border-box;
|
|
2143
2387
|
}
|
|
2144
2388
|
|
|
2145
|
-
.emotion-
|
|
2389
|
+
.emotion-24 {
|
|
2146
2390
|
box-sizing: border-box;
|
|
2147
2391
|
padding: 0;
|
|
2148
2392
|
}
|
|
2149
2393
|
|
|
2150
|
-
.emotion-
|
|
2394
|
+
.emotion-24 a:not(.nk-card-link) {
|
|
2151
2395
|
z-index: 2;
|
|
2152
2396
|
position: relative;
|
|
2153
2397
|
}
|
|
2154
2398
|
|
|
2155
|
-
.emotion-
|
|
2399
|
+
.emotion-25 {
|
|
2156
2400
|
-webkit-text-decoration: none;
|
|
2157
2401
|
text-decoration: none;
|
|
2158
2402
|
border: none;
|
|
2159
2403
|
}
|
|
2160
2404
|
|
|
2161
|
-
.emotion-
|
|
2405
|
+
.emotion-25 .nk-headline-kicker {
|
|
2162
2406
|
color: #3358CC;
|
|
2163
2407
|
}
|
|
2164
2408
|
|
|
2165
|
-
.emotion-
|
|
2409
|
+
.emotion-25:hover:not(:disabled) .nk-headline-kicker {
|
|
2166
2410
|
color: #2B4AAB;
|
|
2167
2411
|
-webkit-text-decoration: underline;
|
|
2168
2412
|
text-decoration: underline;
|
|
2169
2413
|
}
|
|
2170
2414
|
|
|
2171
|
-
.emotion-
|
|
2415
|
+
.emotion-25:active:not(:disabled) .nk-headline-kicker {
|
|
2172
2416
|
color: #213A82;
|
|
2173
2417
|
-webkit-text-decoration: underline;
|
|
2174
2418
|
text-decoration: underline;
|
|
2175
2419
|
}
|
|
2176
2420
|
|
|
2177
|
-
.emotion-
|
|
2421
|
+
.emotion-25:visited:not(:disabled) .nk-headline-kicker {
|
|
2178
2422
|
color: #5E44E4;
|
|
2179
2423
|
}
|
|
2180
2424
|
|
|
2181
|
-
.emotion-
|
|
2425
|
+
.emotion-25 .nk-headline-heading {
|
|
2182
2426
|
color: #2E2E2E;
|
|
2183
2427
|
}
|
|
2184
2428
|
|
|
2185
|
-
.emotion-
|
|
2429
|
+
.emotion-25:hover:not(:disabled) .nk-headline-heading {
|
|
2186
2430
|
color: #2B4AAB;
|
|
2187
2431
|
-webkit-text-decoration: underline;
|
|
2188
2432
|
text-decoration: underline;
|
|
2189
2433
|
}
|
|
2190
2434
|
|
|
2191
|
-
.emotion-
|
|
2435
|
+
.emotion-25:active:not(:disabled) .nk-headline-heading {
|
|
2192
2436
|
color: #213A82;
|
|
2193
2437
|
-webkit-text-decoration: underline;
|
|
2194
2438
|
text-decoration: underline;
|
|
2195
2439
|
}
|
|
2196
2440
|
|
|
2197
|
-
.emotion-
|
|
2441
|
+
.emotion-25:visited:not(:disabled) .nk-headline-heading {
|
|
2198
2442
|
color: #5E44E4;
|
|
2199
2443
|
}
|
|
2200
2444
|
|
|
2201
|
-
.emotion-
|
|
2445
|
+
.emotion-25:before {
|
|
2202
2446
|
content: '';
|
|
2203
2447
|
top: 0;
|
|
2204
2448
|
right: 0;
|
|
@@ -2209,22 +2453,22 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2209
2453
|
z-index: 1;
|
|
2210
2454
|
}
|
|
2211
2455
|
|
|
2212
|
-
.emotion-
|
|
2456
|
+
.emotion-26 {
|
|
2213
2457
|
margin-bottom: 20px;
|
|
2214
2458
|
}
|
|
2215
2459
|
|
|
2216
|
-
.emotion-
|
|
2460
|
+
.emotion-27 {
|
|
2217
2461
|
margin: 0;
|
|
2218
2462
|
padding: 1px 0;
|
|
2219
2463
|
color: #0A0A0A;
|
|
2220
2464
|
}
|
|
2221
2465
|
|
|
2222
|
-
.emotion-
|
|
2466
|
+
.emotion-27 svg {
|
|
2223
2467
|
fill: #0A0A0A;
|
|
2224
2468
|
}
|
|
2225
2469
|
|
|
2226
2470
|
@media screen and (max-width: 767px) {
|
|
2227
|
-
.emotion-
|
|
2471
|
+
.emotion-27 {
|
|
2228
2472
|
font-family: "Bitter",serif;
|
|
2229
2473
|
font-size: 20px;
|
|
2230
2474
|
line-height: 1.2;
|
|
@@ -2232,7 +2476,7 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2232
2476
|
letter-spacing: -0.5px;
|
|
2233
2477
|
}
|
|
2234
2478
|
|
|
2235
|
-
.emotion-
|
|
2479
|
+
.emotion-27::before {
|
|
2236
2480
|
content: '';
|
|
2237
2481
|
display: block;
|
|
2238
2482
|
height: 0;
|
|
@@ -2240,7 +2484,7 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2240
2484
|
margin-bottom: -0.25em;
|
|
2241
2485
|
}
|
|
2242
2486
|
|
|
2243
|
-
.emotion-
|
|
2487
|
+
.emotion-27::after {
|
|
2244
2488
|
content: '';
|
|
2245
2489
|
display: block;
|
|
2246
2490
|
height: 0;
|
|
@@ -2250,7 +2494,7 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2250
2494
|
}
|
|
2251
2495
|
|
|
2252
2496
|
@media screen and (min-width: 768px) and (max-width: 1439px) {
|
|
2253
|
-
.emotion-
|
|
2497
|
+
.emotion-27 {
|
|
2254
2498
|
font-family: "Bitter",serif;
|
|
2255
2499
|
font-size: 22px;
|
|
2256
2500
|
line-height: 1.0909090909090908;
|
|
@@ -2258,7 +2502,7 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2258
2502
|
letter-spacing: -0.5px;
|
|
2259
2503
|
}
|
|
2260
2504
|
|
|
2261
|
-
.emotion-
|
|
2505
|
+
.emotion-27::before {
|
|
2262
2506
|
content: '';
|
|
2263
2507
|
display: block;
|
|
2264
2508
|
height: 0;
|
|
@@ -2266,7 +2510,7 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2266
2510
|
margin-bottom: -0.19545454545454544em;
|
|
2267
2511
|
}
|
|
2268
2512
|
|
|
2269
|
-
.emotion-
|
|
2513
|
+
.emotion-27::after {
|
|
2270
2514
|
content: '';
|
|
2271
2515
|
display: block;
|
|
2272
2516
|
height: 0;
|
|
@@ -2276,7 +2520,7 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2276
2520
|
}
|
|
2277
2521
|
|
|
2278
2522
|
@media screen and (min-width: 1440px) {
|
|
2279
|
-
.emotion-
|
|
2523
|
+
.emotion-27 {
|
|
2280
2524
|
font-family: "Bitter",serif;
|
|
2281
2525
|
font-size: 24px;
|
|
2282
2526
|
line-height: 1.1666666666666667;
|
|
@@ -2284,7 +2528,7 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2284
2528
|
letter-spacing: -0.5px;
|
|
2285
2529
|
}
|
|
2286
2530
|
|
|
2287
|
-
.emotion-
|
|
2531
|
+
.emotion-27::before {
|
|
2288
2532
|
content: '';
|
|
2289
2533
|
display: block;
|
|
2290
2534
|
height: 0;
|
|
@@ -2292,7 +2536,7 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2292
2536
|
margin-bottom: -0.2333333333333334em;
|
|
2293
2537
|
}
|
|
2294
2538
|
|
|
2295
|
-
.emotion-
|
|
2539
|
+
.emotion-27::after {
|
|
2296
2540
|
content: '';
|
|
2297
2541
|
display: block;
|
|
2298
2542
|
height: 0;
|
|
@@ -2301,22 +2545,22 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2301
2545
|
}
|
|
2302
2546
|
}
|
|
2303
2547
|
|
|
2304
|
-
.emotion-
|
|
2548
|
+
.emotion-28 {
|
|
2305
2549
|
margin-bottom: 12px;
|
|
2306
2550
|
}
|
|
2307
2551
|
|
|
2308
|
-
.emotion-
|
|
2552
|
+
.emotion-29 {
|
|
2309
2553
|
margin: 0;
|
|
2310
2554
|
padding: 1px 0;
|
|
2311
2555
|
color: #0A0A0A;
|
|
2312
2556
|
}
|
|
2313
2557
|
|
|
2314
|
-
.emotion-
|
|
2558
|
+
.emotion-29 svg {
|
|
2315
2559
|
fill: #0A0A0A;
|
|
2316
2560
|
}
|
|
2317
2561
|
|
|
2318
2562
|
@media screen and (max-width: 767px) {
|
|
2319
|
-
.emotion-
|
|
2563
|
+
.emotion-29 {
|
|
2320
2564
|
font-family: "DM Sans",sans-serif;
|
|
2321
2565
|
font-size: 14px;
|
|
2322
2566
|
line-height: 1.4285714285714286;
|
|
@@ -2324,7 +2568,7 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2324
2568
|
letter-spacing: -0.5px;
|
|
2325
2569
|
}
|
|
2326
2570
|
|
|
2327
|
-
.emotion-
|
|
2571
|
+
.emotion-29::before {
|
|
2328
2572
|
content: '';
|
|
2329
2573
|
display: block;
|
|
2330
2574
|
height: 0;
|
|
@@ -2332,7 +2576,7 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2332
2576
|
margin-bottom: -0.3955357142857143em;
|
|
2333
2577
|
}
|
|
2334
2578
|
|
|
2335
|
-
.emotion-
|
|
2579
|
+
.emotion-29::after {
|
|
2336
2580
|
content: '';
|
|
2337
2581
|
display: block;
|
|
2338
2582
|
height: 0;
|
|
@@ -2342,7 +2586,7 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2342
2586
|
}
|
|
2343
2587
|
|
|
2344
2588
|
@media screen and (min-width: 768px) {
|
|
2345
|
-
.emotion-
|
|
2589
|
+
.emotion-29 {
|
|
2346
2590
|
font-family: "DM Sans",sans-serif;
|
|
2347
2591
|
font-size: 16px;
|
|
2348
2592
|
line-height: 1.5;
|
|
@@ -2350,7 +2594,7 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2350
2594
|
letter-spacing: -0.5px;
|
|
2351
2595
|
}
|
|
2352
2596
|
|
|
2353
|
-
.emotion-
|
|
2597
|
+
.emotion-29::before {
|
|
2354
2598
|
content: '';
|
|
2355
2599
|
display: block;
|
|
2356
2600
|
height: 0;
|
|
@@ -2358,7 +2602,7 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2358
2602
|
margin-bottom: -0.43125em;
|
|
2359
2603
|
}
|
|
2360
2604
|
|
|
2361
|
-
.emotion-
|
|
2605
|
+
.emotion-29::after {
|
|
2362
2606
|
content: '';
|
|
2363
2607
|
display: block;
|
|
2364
2608
|
height: 0;
|
|
@@ -2367,7 +2611,7 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2367
2611
|
}
|
|
2368
2612
|
}
|
|
2369
2613
|
|
|
2370
|
-
.emotion-
|
|
2614
|
+
.emotion-69 {
|
|
2371
2615
|
border-style: solid;
|
|
2372
2616
|
border-color: #DEDEDE;
|
|
2373
2617
|
border-width: 1px;
|
|
@@ -2404,86 +2648,103 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2404
2648
|
class="emotion-6"
|
|
2405
2649
|
>
|
|
2406
2650
|
<a
|
|
2651
|
+
class="emotion-7"
|
|
2407
2652
|
href="/section-one"
|
|
2408
2653
|
>
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
aria-hidden="true"
|
|
2412
|
-
class="emotion-7 emotion-8"
|
|
2413
|
-
fill="currentColor"
|
|
2414
|
-
focusable="false"
|
|
2415
|
-
viewBox="0 0 24 24"
|
|
2416
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
2654
|
+
<span
|
|
2655
|
+
class="emotion-8"
|
|
2417
2656
|
>
|
|
2418
|
-
<
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2657
|
+
<span
|
|
2658
|
+
class="emotion-9"
|
|
2659
|
+
>
|
|
2660
|
+
<span
|
|
2661
|
+
class="emotion-10"
|
|
2662
|
+
>
|
|
2663
|
+
Link
|
|
2664
|
+
</span>
|
|
2665
|
+
</span>
|
|
2666
|
+
<span
|
|
2667
|
+
class="emotion-9"
|
|
2668
|
+
>
|
|
2669
|
+
<svg
|
|
2670
|
+
aria-hidden="true"
|
|
2671
|
+
class="emotion-12 emotion-13"
|
|
2672
|
+
fill="currentColor"
|
|
2673
|
+
focusable="false"
|
|
2674
|
+
viewBox="0 0 24 24"
|
|
2675
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
2676
|
+
>
|
|
2677
|
+
<path
|
|
2678
|
+
d="M0 0h24v24H0z"
|
|
2679
|
+
fill="none"
|
|
2680
|
+
/>
|
|
2681
|
+
<path
|
|
2682
|
+
d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"
|
|
2683
|
+
/>
|
|
2684
|
+
</svg>
|
|
2685
|
+
</span>
|
|
2686
|
+
</span>
|
|
2426
2687
|
</a>
|
|
2427
2688
|
</div>
|
|
2428
2689
|
</div>
|
|
2429
2690
|
</div>
|
|
2430
2691
|
<div
|
|
2431
|
-
class="emotion-
|
|
2692
|
+
class="emotion-14"
|
|
2432
2693
|
>
|
|
2433
2694
|
<div
|
|
2434
|
-
class="emotion-
|
|
2695
|
+
class="emotion-15"
|
|
2435
2696
|
>
|
|
2436
2697
|
<div
|
|
2437
|
-
class="emotion-
|
|
2698
|
+
class="emotion-16"
|
|
2438
2699
|
data-testid="SECONDARY_4-Grid"
|
|
2439
2700
|
>
|
|
2440
2701
|
<div
|
|
2441
|
-
class="emotion-
|
|
2702
|
+
class="emotion-17"
|
|
2442
2703
|
data-testid="titleTeaserVertical-0"
|
|
2443
2704
|
>
|
|
2444
2705
|
<div
|
|
2445
|
-
class="emotion-
|
|
2706
|
+
class="emotion-18"
|
|
2446
2707
|
>
|
|
2447
2708
|
<div
|
|
2448
|
-
class="emotion-
|
|
2709
|
+
class="emotion-19"
|
|
2449
2710
|
>
|
|
2450
2711
|
<picture
|
|
2451
|
-
class="emotion-
|
|
2712
|
+
class="emotion-20"
|
|
2452
2713
|
>
|
|
2453
2714
|
<div
|
|
2454
|
-
class="emotion-
|
|
2715
|
+
class="emotion-21"
|
|
2455
2716
|
/>
|
|
2456
2717
|
<img
|
|
2457
2718
|
alt="image alt"
|
|
2458
|
-
class="emotion-
|
|
2719
|
+
class="emotion-22"
|
|
2459
2720
|
src="some-url-to-image"
|
|
2460
2721
|
/>
|
|
2461
2722
|
</picture>
|
|
2462
2723
|
</div>
|
|
2463
2724
|
<div
|
|
2464
|
-
class="emotion-
|
|
2725
|
+
class="emotion-23"
|
|
2465
2726
|
>
|
|
2466
2727
|
<div
|
|
2467
|
-
class="emotion-
|
|
2728
|
+
class="emotion-24"
|
|
2468
2729
|
>
|
|
2469
2730
|
<a
|
|
2470
|
-
class="nk-card-link emotion-
|
|
2731
|
+
class="nk-card-link emotion-25"
|
|
2471
2732
|
href="catagory-one/demo-1/test-headline"
|
|
2472
2733
|
>
|
|
2473
2734
|
<div
|
|
2474
|
-
class="emotion-
|
|
2735
|
+
class="emotion-26"
|
|
2475
2736
|
>
|
|
2476
2737
|
<h3
|
|
2477
|
-
class="emotion-
|
|
2738
|
+
class="emotion-27"
|
|
2478
2739
|
>
|
|
2479
2740
|
test headline
|
|
2480
2741
|
</h3>
|
|
2481
2742
|
</div>
|
|
2482
2743
|
<div
|
|
2483
|
-
class="emotion-
|
|
2744
|
+
class="emotion-28"
|
|
2484
2745
|
>
|
|
2485
2746
|
<p
|
|
2486
|
-
class="emotion-
|
|
2747
|
+
class="emotion-29"
|
|
2487
2748
|
>
|
|
2488
2749
|
teaser test text
|
|
2489
2750
|
</p>
|
|
@@ -2494,52 +2755,52 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2494
2755
|
</div>
|
|
2495
2756
|
</div>
|
|
2496
2757
|
<div
|
|
2497
|
-
class="emotion-
|
|
2758
|
+
class="emotion-17"
|
|
2498
2759
|
data-testid="titleTeaserVertical-1"
|
|
2499
2760
|
>
|
|
2500
2761
|
<div
|
|
2501
|
-
class="emotion-
|
|
2762
|
+
class="emotion-18"
|
|
2502
2763
|
>
|
|
2503
2764
|
<div
|
|
2504
|
-
class="emotion-
|
|
2765
|
+
class="emotion-19"
|
|
2505
2766
|
>
|
|
2506
2767
|
<picture
|
|
2507
|
-
class="emotion-
|
|
2768
|
+
class="emotion-20"
|
|
2508
2769
|
>
|
|
2509
2770
|
<div
|
|
2510
|
-
class="emotion-
|
|
2771
|
+
class="emotion-21"
|
|
2511
2772
|
/>
|
|
2512
2773
|
<img
|
|
2513
2774
|
alt="image alt 2"
|
|
2514
|
-
class="emotion-
|
|
2775
|
+
class="emotion-22"
|
|
2515
2776
|
src="some-url-to-image"
|
|
2516
2777
|
/>
|
|
2517
2778
|
</picture>
|
|
2518
2779
|
</div>
|
|
2519
2780
|
<div
|
|
2520
|
-
class="emotion-
|
|
2781
|
+
class="emotion-23"
|
|
2521
2782
|
>
|
|
2522
2783
|
<div
|
|
2523
|
-
class="emotion-
|
|
2784
|
+
class="emotion-24"
|
|
2524
2785
|
>
|
|
2525
2786
|
<a
|
|
2526
|
-
class="nk-card-link emotion-
|
|
2787
|
+
class="nk-card-link emotion-25"
|
|
2527
2788
|
href="catagory-two/demo-2/test-headline-2"
|
|
2528
2789
|
>
|
|
2529
2790
|
<div
|
|
2530
|
-
class="emotion-
|
|
2791
|
+
class="emotion-26"
|
|
2531
2792
|
>
|
|
2532
2793
|
<h3
|
|
2533
|
-
class="emotion-
|
|
2794
|
+
class="emotion-27"
|
|
2534
2795
|
>
|
|
2535
2796
|
test headline 2
|
|
2536
2797
|
</h3>
|
|
2537
2798
|
</div>
|
|
2538
2799
|
<div
|
|
2539
|
-
class="emotion-
|
|
2800
|
+
class="emotion-28"
|
|
2540
2801
|
>
|
|
2541
2802
|
<p
|
|
2542
|
-
class="emotion-
|
|
2803
|
+
class="emotion-29"
|
|
2543
2804
|
>
|
|
2544
2805
|
teaser test text 2
|
|
2545
2806
|
</p>
|
|
@@ -2550,52 +2811,52 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2550
2811
|
</div>
|
|
2551
2812
|
</div>
|
|
2552
2813
|
<div
|
|
2553
|
-
class="emotion-
|
|
2814
|
+
class="emotion-17"
|
|
2554
2815
|
data-testid="titleTeaserVertical-2"
|
|
2555
2816
|
>
|
|
2556
2817
|
<div
|
|
2557
|
-
class="emotion-
|
|
2818
|
+
class="emotion-18"
|
|
2558
2819
|
>
|
|
2559
2820
|
<div
|
|
2560
|
-
class="emotion-
|
|
2821
|
+
class="emotion-19"
|
|
2561
2822
|
>
|
|
2562
2823
|
<picture
|
|
2563
|
-
class="emotion-
|
|
2824
|
+
class="emotion-20"
|
|
2564
2825
|
>
|
|
2565
2826
|
<div
|
|
2566
|
-
class="emotion-
|
|
2827
|
+
class="emotion-21"
|
|
2567
2828
|
/>
|
|
2568
2829
|
<img
|
|
2569
2830
|
alt="image alt 3"
|
|
2570
|
-
class="emotion-
|
|
2831
|
+
class="emotion-22"
|
|
2571
2832
|
src="some-url-to-image"
|
|
2572
2833
|
/>
|
|
2573
2834
|
</picture>
|
|
2574
2835
|
</div>
|
|
2575
2836
|
<div
|
|
2576
|
-
class="emotion-
|
|
2837
|
+
class="emotion-23"
|
|
2577
2838
|
>
|
|
2578
2839
|
<div
|
|
2579
|
-
class="emotion-
|
|
2840
|
+
class="emotion-24"
|
|
2580
2841
|
>
|
|
2581
2842
|
<a
|
|
2582
|
-
class="nk-card-link emotion-
|
|
2843
|
+
class="nk-card-link emotion-25"
|
|
2583
2844
|
href="catagory-three/demo-3/test-headline-3"
|
|
2584
2845
|
>
|
|
2585
2846
|
<div
|
|
2586
|
-
class="emotion-
|
|
2847
|
+
class="emotion-26"
|
|
2587
2848
|
>
|
|
2588
2849
|
<h3
|
|
2589
|
-
class="emotion-
|
|
2850
|
+
class="emotion-27"
|
|
2590
2851
|
>
|
|
2591
2852
|
test headline 3
|
|
2592
2853
|
</h3>
|
|
2593
2854
|
</div>
|
|
2594
2855
|
<div
|
|
2595
|
-
class="emotion-
|
|
2856
|
+
class="emotion-28"
|
|
2596
2857
|
>
|
|
2597
2858
|
<p
|
|
2598
|
-
class="emotion-
|
|
2859
|
+
class="emotion-29"
|
|
2599
2860
|
>
|
|
2600
2861
|
teaser test text 3
|
|
2601
2862
|
</p>
|
|
@@ -2606,52 +2867,52 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2606
2867
|
</div>
|
|
2607
2868
|
</div>
|
|
2608
2869
|
<div
|
|
2609
|
-
class="emotion-
|
|
2870
|
+
class="emotion-17"
|
|
2610
2871
|
data-testid="titleTeaserVertical-3"
|
|
2611
2872
|
>
|
|
2612
2873
|
<div
|
|
2613
|
-
class="emotion-
|
|
2874
|
+
class="emotion-18"
|
|
2614
2875
|
>
|
|
2615
2876
|
<div
|
|
2616
|
-
class="emotion-
|
|
2877
|
+
class="emotion-19"
|
|
2617
2878
|
>
|
|
2618
2879
|
<picture
|
|
2619
|
-
class="emotion-
|
|
2880
|
+
class="emotion-20"
|
|
2620
2881
|
>
|
|
2621
2882
|
<div
|
|
2622
|
-
class="emotion-
|
|
2883
|
+
class="emotion-21"
|
|
2623
2884
|
/>
|
|
2624
2885
|
<img
|
|
2625
2886
|
alt="image alt 3"
|
|
2626
|
-
class="emotion-
|
|
2887
|
+
class="emotion-22"
|
|
2627
2888
|
src="some-url-to-image"
|
|
2628
2889
|
/>
|
|
2629
2890
|
</picture>
|
|
2630
2891
|
</div>
|
|
2631
2892
|
<div
|
|
2632
|
-
class="emotion-
|
|
2893
|
+
class="emotion-23"
|
|
2633
2894
|
>
|
|
2634
2895
|
<div
|
|
2635
|
-
class="emotion-
|
|
2896
|
+
class="emotion-24"
|
|
2636
2897
|
>
|
|
2637
2898
|
<a
|
|
2638
|
-
class="nk-card-link emotion-
|
|
2899
|
+
class="nk-card-link emotion-25"
|
|
2639
2900
|
href="catagory-four/demo-4/test-headline-4"
|
|
2640
2901
|
>
|
|
2641
2902
|
<div
|
|
2642
|
-
class="emotion-
|
|
2903
|
+
class="emotion-26"
|
|
2643
2904
|
>
|
|
2644
2905
|
<h3
|
|
2645
|
-
class="emotion-
|
|
2906
|
+
class="emotion-27"
|
|
2646
2907
|
>
|
|
2647
2908
|
test headline 4
|
|
2648
2909
|
</h3>
|
|
2649
2910
|
</div>
|
|
2650
2911
|
<div
|
|
2651
|
-
class="emotion-
|
|
2912
|
+
class="emotion-28"
|
|
2652
2913
|
>
|
|
2653
2914
|
<p
|
|
2654
|
-
class="emotion-
|
|
2915
|
+
class="emotion-29"
|
|
2655
2916
|
>
|
|
2656
2917
|
teaser test text 4
|
|
2657
2918
|
</p>
|
|
@@ -2666,7 +2927,7 @@ exports[`SectionRow SectionRow with title 1`] = `
|
|
|
2666
2927
|
</div>
|
|
2667
2928
|
<hr
|
|
2668
2929
|
aria-hidden="true"
|
|
2669
|
-
class="emotion-
|
|
2930
|
+
class="emotion-69"
|
|
2670
2931
|
data-testid="divider"
|
|
2671
2932
|
/>
|
|
2672
2933
|
</div>
|
|
@@ -2859,6 +3120,76 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
2859
3120
|
}
|
|
2860
3121
|
|
|
2861
3122
|
.emotion-9 {
|
|
3123
|
+
display: inline-block;
|
|
3124
|
+
transition-property: color;
|
|
3125
|
+
transition-duration: 200ms;
|
|
3126
|
+
transition-timing-function: cubic-bezier(0, 0, .5, 1);
|
|
3127
|
+
color: #FFFFFF;
|
|
3128
|
+
}
|
|
3129
|
+
|
|
3130
|
+
.emotion-9 svg {
|
|
3131
|
+
fill: #FFFFFF;
|
|
3132
|
+
}
|
|
3133
|
+
|
|
3134
|
+
.emotion-10 {
|
|
3135
|
+
display: -webkit-box;
|
|
3136
|
+
display: -webkit-flex;
|
|
3137
|
+
display: -ms-flexbox;
|
|
3138
|
+
display: flex;
|
|
3139
|
+
height: 100%;
|
|
3140
|
+
-webkit-align-items: center;
|
|
3141
|
+
-webkit-box-align: center;
|
|
3142
|
+
-ms-flex-align: center;
|
|
3143
|
+
align-items: center;
|
|
3144
|
+
-webkit-flex-direction: row;
|
|
3145
|
+
-ms-flex-direction: row;
|
|
3146
|
+
flex-direction: row;
|
|
3147
|
+
-webkit-box-pack: start;
|
|
3148
|
+
-ms-flex-pack: start;
|
|
3149
|
+
-webkit-justify-content: flex-start;
|
|
3150
|
+
justify-content: flex-start;
|
|
3151
|
+
margin-left: calc(-8px/2);
|
|
3152
|
+
margin-right: calc(-8px/2);
|
|
3153
|
+
}
|
|
3154
|
+
|
|
3155
|
+
.emotion-11 {
|
|
3156
|
+
display: -webkit-inline-box;
|
|
3157
|
+
display: -webkit-inline-flex;
|
|
3158
|
+
display: -ms-inline-flexbox;
|
|
3159
|
+
display: inline-flex;
|
|
3160
|
+
margin-left: calc(8px/2);
|
|
3161
|
+
margin-right: calc(8px/2);
|
|
3162
|
+
}
|
|
3163
|
+
|
|
3164
|
+
.emotion-12 {
|
|
3165
|
+
margin: 0;
|
|
3166
|
+
padding: 1px 0;
|
|
3167
|
+
font-family: "Poppins",sans-serif;
|
|
3168
|
+
font-size: 14px;
|
|
3169
|
+
line-height: 1.4285714285714286;
|
|
3170
|
+
font-weight: 500;
|
|
3171
|
+
letter-spacing: -0.5px;
|
|
3172
|
+
display: inline-block;
|
|
3173
|
+
display: block;
|
|
3174
|
+
}
|
|
3175
|
+
|
|
3176
|
+
.emotion-12::before {
|
|
3177
|
+
content: '';
|
|
3178
|
+
display: block;
|
|
3179
|
+
height: 0;
|
|
3180
|
+
width: 0;
|
|
3181
|
+
margin-bottom: -0.3955357142857143em;
|
|
3182
|
+
}
|
|
3183
|
+
|
|
3184
|
+
.emotion-12::after {
|
|
3185
|
+
content: '';
|
|
3186
|
+
display: block;
|
|
3187
|
+
height: 0;
|
|
3188
|
+
width: 0;
|
|
3189
|
+
margin-top: -0.3955357142857143em;
|
|
3190
|
+
}
|
|
3191
|
+
|
|
3192
|
+
.emotion-14 {
|
|
2862
3193
|
display: inline-block;
|
|
2863
3194
|
vertical-align: middle;
|
|
2864
3195
|
overflow: hidden;
|
|
@@ -2869,22 +3200,22 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
2869
3200
|
position: relative;
|
|
2870
3201
|
}
|
|
2871
3202
|
|
|
2872
|
-
.emotion-
|
|
3203
|
+
.emotion-14.emotion-14 {
|
|
2873
3204
|
width: 24px;
|
|
2874
3205
|
height: 24px;
|
|
2875
3206
|
}
|
|
2876
3207
|
|
|
2877
|
-
.emotion-
|
|
3208
|
+
.emotion-16 {
|
|
2878
3209
|
margin-bottom: 40px;
|
|
2879
3210
|
}
|
|
2880
3211
|
|
|
2881
|
-
.emotion-
|
|
3212
|
+
.emotion-17 {
|
|
2882
3213
|
width: 100%;
|
|
2883
3214
|
max-width: 1920px;
|
|
2884
3215
|
margin: 0 auto;
|
|
2885
3216
|
}
|
|
2886
3217
|
|
|
2887
|
-
.emotion-
|
|
3218
|
+
.emotion-18 {
|
|
2888
3219
|
box-sizing: border-box;
|
|
2889
3220
|
-webkit-background-clip: padding-box;
|
|
2890
3221
|
background-clip: padding-box;
|
|
@@ -2902,36 +3233,36 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
2902
3233
|
}
|
|
2903
3234
|
|
|
2904
3235
|
@media screen {
|
|
2905
|
-
.emotion-
|
|
3236
|
+
.emotion-18 {
|
|
2906
3237
|
margin: -40px 8px 0 8px;
|
|
2907
3238
|
}
|
|
2908
3239
|
}
|
|
2909
3240
|
|
|
2910
3241
|
@media screen and (min-width: 480px) {
|
|
2911
|
-
.emotion-
|
|
3242
|
+
.emotion-18 {
|
|
2912
3243
|
margin: -40px 8px 0 8px;
|
|
2913
3244
|
}
|
|
2914
3245
|
}
|
|
2915
3246
|
|
|
2916
3247
|
@media screen and (min-width: 768px) {
|
|
2917
|
-
.emotion-
|
|
3248
|
+
.emotion-18 {
|
|
2918
3249
|
margin: -32px 8px 0 8px;
|
|
2919
3250
|
}
|
|
2920
3251
|
}
|
|
2921
3252
|
|
|
2922
3253
|
@media screen and (min-width: 1024px) {
|
|
2923
|
-
.emotion-
|
|
3254
|
+
.emotion-18 {
|
|
2924
3255
|
margin: -32px 12px 0 12px;
|
|
2925
3256
|
}
|
|
2926
3257
|
}
|
|
2927
3258
|
|
|
2928
3259
|
@media screen and (min-width: 1440px) {
|
|
2929
|
-
.emotion-
|
|
3260
|
+
.emotion-18 {
|
|
2930
3261
|
margin: -0px 12px 0 12px;
|
|
2931
3262
|
}
|
|
2932
3263
|
}
|
|
2933
3264
|
|
|
2934
|
-
.emotion-
|
|
3265
|
+
.emotion-19 {
|
|
2935
3266
|
box-sizing: border-box;
|
|
2936
3267
|
-webkit-background-clip: padding-box;
|
|
2937
3268
|
background-clip: padding-box;
|
|
@@ -2941,7 +3272,7 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
2941
3272
|
}
|
|
2942
3273
|
|
|
2943
3274
|
@media screen {
|
|
2944
|
-
.emotion-
|
|
3275
|
+
.emotion-19 {
|
|
2945
3276
|
padding: 0 8px;
|
|
2946
3277
|
margin-top: 40px;
|
|
2947
3278
|
-webkit-flex-basis: 100%;
|
|
@@ -2952,7 +3283,7 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
2952
3283
|
}
|
|
2953
3284
|
|
|
2954
3285
|
@media screen and (min-width: 768px) {
|
|
2955
|
-
.emotion-
|
|
3286
|
+
.emotion-19 {
|
|
2956
3287
|
margin-top: 32px;
|
|
2957
3288
|
-webkit-flex-basis: 50%;
|
|
2958
3289
|
-ms-flex-preferred-size: 50%;
|
|
@@ -2962,13 +3293,13 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
2962
3293
|
}
|
|
2963
3294
|
|
|
2964
3295
|
@media screen and (min-width: 1024px) {
|
|
2965
|
-
.emotion-
|
|
3296
|
+
.emotion-19 {
|
|
2966
3297
|
padding: 0 12px;
|
|
2967
3298
|
}
|
|
2968
3299
|
}
|
|
2969
3300
|
|
|
2970
3301
|
@media screen and (min-width: 1440px) {
|
|
2971
|
-
.emotion-
|
|
3302
|
+
.emotion-19 {
|
|
2972
3303
|
margin-top: 0;
|
|
2973
3304
|
-webkit-flex-basis: 25%;
|
|
2974
3305
|
-ms-flex-preferred-size: 25%;
|
|
@@ -2977,7 +3308,7 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
2977
3308
|
}
|
|
2978
3309
|
}
|
|
2979
3310
|
|
|
2980
|
-
.emotion-
|
|
3311
|
+
.emotion-20 {
|
|
2981
3312
|
box-sizing: border-box;
|
|
2982
3313
|
overflow: hidden;
|
|
2983
3314
|
color: #2E2E2E;
|
|
@@ -2992,14 +3323,14 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
2992
3323
|
flex-direction: column;
|
|
2993
3324
|
}
|
|
2994
3325
|
|
|
2995
|
-
.emotion-
|
|
3326
|
+
.emotion-21 {
|
|
2996
3327
|
box-sizing: border-box;
|
|
2997
3328
|
display: block;
|
|
2998
3329
|
position: relative;
|
|
2999
3330
|
margin-bottom: 20px;
|
|
3000
3331
|
}
|
|
3001
3332
|
|
|
3002
|
-
.emotion-
|
|
3333
|
+
.emotion-22 {
|
|
3003
3334
|
position: relative;
|
|
3004
3335
|
width: 100%;
|
|
3005
3336
|
display: block;
|
|
@@ -3010,11 +3341,11 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3010
3341
|
background-color: #F4F4F4;
|
|
3011
3342
|
}
|
|
3012
3343
|
|
|
3013
|
-
.emotion-
|
|
3344
|
+
.emotion-22 svg {
|
|
3014
3345
|
fill: #C0C0C0;
|
|
3015
3346
|
}
|
|
3016
3347
|
|
|
3017
|
-
.emotion-
|
|
3348
|
+
.emotion-23 {
|
|
3018
3349
|
top: 0;
|
|
3019
3350
|
left: 0;
|
|
3020
3351
|
position: absolute;
|
|
@@ -3034,7 +3365,7 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3034
3365
|
margin: 0;
|
|
3035
3366
|
}
|
|
3036
3367
|
|
|
3037
|
-
.emotion-
|
|
3368
|
+
.emotion-24 {
|
|
3038
3369
|
opacity: 0;
|
|
3039
3370
|
display: block;
|
|
3040
3371
|
border-radius: inherit;
|
|
@@ -3045,67 +3376,67 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3045
3376
|
position: absolute;
|
|
3046
3377
|
}
|
|
3047
3378
|
|
|
3048
|
-
.emotion-
|
|
3379
|
+
.emotion-25 {
|
|
3049
3380
|
box-sizing: border-box;
|
|
3050
3381
|
}
|
|
3051
3382
|
|
|
3052
|
-
.emotion-
|
|
3383
|
+
.emotion-26 {
|
|
3053
3384
|
box-sizing: border-box;
|
|
3054
3385
|
padding: 0;
|
|
3055
3386
|
}
|
|
3056
3387
|
|
|
3057
|
-
.emotion-
|
|
3388
|
+
.emotion-26 a:not(.nk-card-link) {
|
|
3058
3389
|
z-index: 2;
|
|
3059
3390
|
position: relative;
|
|
3060
3391
|
}
|
|
3061
3392
|
|
|
3062
|
-
.emotion-
|
|
3393
|
+
.emotion-27 {
|
|
3063
3394
|
-webkit-text-decoration: none;
|
|
3064
3395
|
text-decoration: none;
|
|
3065
3396
|
border: none;
|
|
3066
3397
|
}
|
|
3067
3398
|
|
|
3068
|
-
.emotion-
|
|
3399
|
+
.emotion-27 .nk-headline-kicker {
|
|
3069
3400
|
color: #3358CC;
|
|
3070
3401
|
}
|
|
3071
3402
|
|
|
3072
|
-
.emotion-
|
|
3403
|
+
.emotion-27:hover:not(:disabled) .nk-headline-kicker {
|
|
3073
3404
|
color: #2B4AAB;
|
|
3074
3405
|
-webkit-text-decoration: underline;
|
|
3075
3406
|
text-decoration: underline;
|
|
3076
3407
|
}
|
|
3077
3408
|
|
|
3078
|
-
.emotion-
|
|
3409
|
+
.emotion-27:active:not(:disabled) .nk-headline-kicker {
|
|
3079
3410
|
color: #213A82;
|
|
3080
3411
|
-webkit-text-decoration: underline;
|
|
3081
3412
|
text-decoration: underline;
|
|
3082
3413
|
}
|
|
3083
3414
|
|
|
3084
|
-
.emotion-
|
|
3415
|
+
.emotion-27:visited:not(:disabled) .nk-headline-kicker {
|
|
3085
3416
|
color: #5E44E4;
|
|
3086
3417
|
}
|
|
3087
3418
|
|
|
3088
|
-
.emotion-
|
|
3419
|
+
.emotion-27 .nk-headline-heading {
|
|
3089
3420
|
color: #2E2E2E;
|
|
3090
3421
|
}
|
|
3091
3422
|
|
|
3092
|
-
.emotion-
|
|
3423
|
+
.emotion-27:hover:not(:disabled) .nk-headline-heading {
|
|
3093
3424
|
color: #2B4AAB;
|
|
3094
3425
|
-webkit-text-decoration: underline;
|
|
3095
3426
|
text-decoration: underline;
|
|
3096
3427
|
}
|
|
3097
3428
|
|
|
3098
|
-
.emotion-
|
|
3429
|
+
.emotion-27:active:not(:disabled) .nk-headline-heading {
|
|
3099
3430
|
color: #213A82;
|
|
3100
3431
|
-webkit-text-decoration: underline;
|
|
3101
3432
|
text-decoration: underline;
|
|
3102
3433
|
}
|
|
3103
3434
|
|
|
3104
|
-
.emotion-
|
|
3435
|
+
.emotion-27:visited:not(:disabled) .nk-headline-heading {
|
|
3105
3436
|
color: #5E44E4;
|
|
3106
3437
|
}
|
|
3107
3438
|
|
|
3108
|
-
.emotion-
|
|
3439
|
+
.emotion-27:before {
|
|
3109
3440
|
content: '';
|
|
3110
3441
|
top: 0;
|
|
3111
3442
|
right: 0;
|
|
@@ -3116,22 +3447,22 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3116
3447
|
z-index: 1;
|
|
3117
3448
|
}
|
|
3118
3449
|
|
|
3119
|
-
.emotion-
|
|
3450
|
+
.emotion-28 {
|
|
3120
3451
|
margin-bottom: 20px;
|
|
3121
3452
|
}
|
|
3122
3453
|
|
|
3123
|
-
.emotion-
|
|
3454
|
+
.emotion-29 {
|
|
3124
3455
|
margin: 0;
|
|
3125
3456
|
padding: 1px 0;
|
|
3126
3457
|
color: #0A0A0A;
|
|
3127
3458
|
}
|
|
3128
3459
|
|
|
3129
|
-
.emotion-
|
|
3460
|
+
.emotion-29 svg {
|
|
3130
3461
|
fill: #0A0A0A;
|
|
3131
3462
|
}
|
|
3132
3463
|
|
|
3133
3464
|
@media screen and (max-width: 767px) {
|
|
3134
|
-
.emotion-
|
|
3465
|
+
.emotion-29 {
|
|
3135
3466
|
font-family: "Bitter",serif;
|
|
3136
3467
|
font-size: 20px;
|
|
3137
3468
|
line-height: 1.2;
|
|
@@ -3139,7 +3470,7 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3139
3470
|
letter-spacing: -0.5px;
|
|
3140
3471
|
}
|
|
3141
3472
|
|
|
3142
|
-
.emotion-
|
|
3473
|
+
.emotion-29::before {
|
|
3143
3474
|
content: '';
|
|
3144
3475
|
display: block;
|
|
3145
3476
|
height: 0;
|
|
@@ -3147,7 +3478,7 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3147
3478
|
margin-bottom: -0.25em;
|
|
3148
3479
|
}
|
|
3149
3480
|
|
|
3150
|
-
.emotion-
|
|
3481
|
+
.emotion-29::after {
|
|
3151
3482
|
content: '';
|
|
3152
3483
|
display: block;
|
|
3153
3484
|
height: 0;
|
|
@@ -3157,7 +3488,7 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3157
3488
|
}
|
|
3158
3489
|
|
|
3159
3490
|
@media screen and (min-width: 768px) and (max-width: 1439px) {
|
|
3160
|
-
.emotion-
|
|
3491
|
+
.emotion-29 {
|
|
3161
3492
|
font-family: "Bitter",serif;
|
|
3162
3493
|
font-size: 22px;
|
|
3163
3494
|
line-height: 1.0909090909090908;
|
|
@@ -3165,7 +3496,7 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3165
3496
|
letter-spacing: -0.5px;
|
|
3166
3497
|
}
|
|
3167
3498
|
|
|
3168
|
-
.emotion-
|
|
3499
|
+
.emotion-29::before {
|
|
3169
3500
|
content: '';
|
|
3170
3501
|
display: block;
|
|
3171
3502
|
height: 0;
|
|
@@ -3173,7 +3504,7 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3173
3504
|
margin-bottom: -0.19545454545454544em;
|
|
3174
3505
|
}
|
|
3175
3506
|
|
|
3176
|
-
.emotion-
|
|
3507
|
+
.emotion-29::after {
|
|
3177
3508
|
content: '';
|
|
3178
3509
|
display: block;
|
|
3179
3510
|
height: 0;
|
|
@@ -3183,7 +3514,7 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3183
3514
|
}
|
|
3184
3515
|
|
|
3185
3516
|
@media screen and (min-width: 1440px) {
|
|
3186
|
-
.emotion-
|
|
3517
|
+
.emotion-29 {
|
|
3187
3518
|
font-family: "Bitter",serif;
|
|
3188
3519
|
font-size: 24px;
|
|
3189
3520
|
line-height: 1.1666666666666667;
|
|
@@ -3191,7 +3522,7 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3191
3522
|
letter-spacing: -0.5px;
|
|
3192
3523
|
}
|
|
3193
3524
|
|
|
3194
|
-
.emotion-
|
|
3525
|
+
.emotion-29::before {
|
|
3195
3526
|
content: '';
|
|
3196
3527
|
display: block;
|
|
3197
3528
|
height: 0;
|
|
@@ -3199,7 +3530,7 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3199
3530
|
margin-bottom: -0.2333333333333334em;
|
|
3200
3531
|
}
|
|
3201
3532
|
|
|
3202
|
-
.emotion-
|
|
3533
|
+
.emotion-29::after {
|
|
3203
3534
|
content: '';
|
|
3204
3535
|
display: block;
|
|
3205
3536
|
height: 0;
|
|
@@ -3208,22 +3539,22 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3208
3539
|
}
|
|
3209
3540
|
}
|
|
3210
3541
|
|
|
3211
|
-
.emotion-
|
|
3542
|
+
.emotion-30 {
|
|
3212
3543
|
margin-bottom: 12px;
|
|
3213
3544
|
}
|
|
3214
3545
|
|
|
3215
|
-
.emotion-
|
|
3546
|
+
.emotion-31 {
|
|
3216
3547
|
margin: 0;
|
|
3217
3548
|
padding: 1px 0;
|
|
3218
3549
|
color: #0A0A0A;
|
|
3219
3550
|
}
|
|
3220
3551
|
|
|
3221
|
-
.emotion-
|
|
3552
|
+
.emotion-31 svg {
|
|
3222
3553
|
fill: #0A0A0A;
|
|
3223
3554
|
}
|
|
3224
3555
|
|
|
3225
3556
|
@media screen and (max-width: 767px) {
|
|
3226
|
-
.emotion-
|
|
3557
|
+
.emotion-31 {
|
|
3227
3558
|
font-family: "DM Sans",sans-serif;
|
|
3228
3559
|
font-size: 14px;
|
|
3229
3560
|
line-height: 1.4285714285714286;
|
|
@@ -3231,7 +3562,7 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3231
3562
|
letter-spacing: -0.5px;
|
|
3232
3563
|
}
|
|
3233
3564
|
|
|
3234
|
-
.emotion-
|
|
3565
|
+
.emotion-31::before {
|
|
3235
3566
|
content: '';
|
|
3236
3567
|
display: block;
|
|
3237
3568
|
height: 0;
|
|
@@ -3239,7 +3570,7 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3239
3570
|
margin-bottom: -0.3955357142857143em;
|
|
3240
3571
|
}
|
|
3241
3572
|
|
|
3242
|
-
.emotion-
|
|
3573
|
+
.emotion-31::after {
|
|
3243
3574
|
content: '';
|
|
3244
3575
|
display: block;
|
|
3245
3576
|
height: 0;
|
|
@@ -3249,7 +3580,7 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3249
3580
|
}
|
|
3250
3581
|
|
|
3251
3582
|
@media screen and (min-width: 768px) {
|
|
3252
|
-
.emotion-
|
|
3583
|
+
.emotion-31 {
|
|
3253
3584
|
font-family: "DM Sans",sans-serif;
|
|
3254
3585
|
font-size: 16px;
|
|
3255
3586
|
line-height: 1.5;
|
|
@@ -3257,7 +3588,7 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3257
3588
|
letter-spacing: -0.5px;
|
|
3258
3589
|
}
|
|
3259
3590
|
|
|
3260
|
-
.emotion-
|
|
3591
|
+
.emotion-31::before {
|
|
3261
3592
|
content: '';
|
|
3262
3593
|
display: block;
|
|
3263
3594
|
height: 0;
|
|
@@ -3265,7 +3596,7 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3265
3596
|
margin-bottom: -0.43125em;
|
|
3266
3597
|
}
|
|
3267
3598
|
|
|
3268
|
-
.emotion-
|
|
3599
|
+
.emotion-31::after {
|
|
3269
3600
|
content: '';
|
|
3270
3601
|
display: block;
|
|
3271
3602
|
height: 0;
|
|
@@ -3309,86 +3640,103 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3309
3640
|
class="emotion-8"
|
|
3310
3641
|
>
|
|
3311
3642
|
<a
|
|
3643
|
+
class="emotion-9"
|
|
3312
3644
|
href="/section-one"
|
|
3313
3645
|
>
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
aria-hidden="true"
|
|
3317
|
-
class="emotion-9 emotion-10"
|
|
3318
|
-
fill="currentColor"
|
|
3319
|
-
focusable="false"
|
|
3320
|
-
viewBox="0 0 24 24"
|
|
3321
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
3646
|
+
<span
|
|
3647
|
+
class="emotion-10"
|
|
3322
3648
|
>
|
|
3323
|
-
<
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
3649
|
+
<span
|
|
3650
|
+
class="emotion-11"
|
|
3651
|
+
>
|
|
3652
|
+
<span
|
|
3653
|
+
class="emotion-12"
|
|
3654
|
+
>
|
|
3655
|
+
Link
|
|
3656
|
+
</span>
|
|
3657
|
+
</span>
|
|
3658
|
+
<span
|
|
3659
|
+
class="emotion-11"
|
|
3660
|
+
>
|
|
3661
|
+
<svg
|
|
3662
|
+
aria-hidden="true"
|
|
3663
|
+
class="emotion-14 emotion-15"
|
|
3664
|
+
fill="currentColor"
|
|
3665
|
+
focusable="false"
|
|
3666
|
+
viewBox="0 0 24 24"
|
|
3667
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3668
|
+
>
|
|
3669
|
+
<path
|
|
3670
|
+
d="M0 0h24v24H0z"
|
|
3671
|
+
fill="none"
|
|
3672
|
+
/>
|
|
3673
|
+
<path
|
|
3674
|
+
d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"
|
|
3675
|
+
/>
|
|
3676
|
+
</svg>
|
|
3677
|
+
</span>
|
|
3678
|
+
</span>
|
|
3331
3679
|
</a>
|
|
3332
3680
|
</div>
|
|
3333
3681
|
</div>
|
|
3334
3682
|
</div>
|
|
3335
3683
|
<div
|
|
3336
|
-
class="emotion-
|
|
3684
|
+
class="emotion-16"
|
|
3337
3685
|
>
|
|
3338
3686
|
<div
|
|
3339
|
-
class="emotion-
|
|
3687
|
+
class="emotion-17"
|
|
3340
3688
|
>
|
|
3341
3689
|
<div
|
|
3342
|
-
class="emotion-
|
|
3690
|
+
class="emotion-18"
|
|
3343
3691
|
data-testid="SECONDARY_4-Grid"
|
|
3344
3692
|
>
|
|
3345
3693
|
<div
|
|
3346
|
-
class="emotion-
|
|
3694
|
+
class="emotion-19"
|
|
3347
3695
|
data-testid="titleTeaserVertical-0"
|
|
3348
3696
|
>
|
|
3349
3697
|
<div
|
|
3350
|
-
class="emotion-
|
|
3698
|
+
class="emotion-20"
|
|
3351
3699
|
>
|
|
3352
3700
|
<div
|
|
3353
|
-
class="emotion-
|
|
3701
|
+
class="emotion-21"
|
|
3354
3702
|
>
|
|
3355
3703
|
<picture
|
|
3356
|
-
class="emotion-
|
|
3704
|
+
class="emotion-22"
|
|
3357
3705
|
>
|
|
3358
3706
|
<div
|
|
3359
|
-
class="emotion-
|
|
3707
|
+
class="emotion-23"
|
|
3360
3708
|
/>
|
|
3361
3709
|
<img
|
|
3362
3710
|
alt="image alt"
|
|
3363
|
-
class="emotion-
|
|
3711
|
+
class="emotion-24"
|
|
3364
3712
|
src="some-url-to-image"
|
|
3365
3713
|
/>
|
|
3366
3714
|
</picture>
|
|
3367
3715
|
</div>
|
|
3368
3716
|
<div
|
|
3369
|
-
class="emotion-
|
|
3717
|
+
class="emotion-25"
|
|
3370
3718
|
>
|
|
3371
3719
|
<div
|
|
3372
|
-
class="emotion-
|
|
3720
|
+
class="emotion-26"
|
|
3373
3721
|
>
|
|
3374
3722
|
<a
|
|
3375
|
-
class="nk-card-link emotion-
|
|
3723
|
+
class="nk-card-link emotion-27"
|
|
3376
3724
|
href="catagory-one/demo-1/test-headline"
|
|
3377
3725
|
>
|
|
3378
3726
|
<div
|
|
3379
|
-
class="emotion-
|
|
3727
|
+
class="emotion-28"
|
|
3380
3728
|
>
|
|
3381
3729
|
<h3
|
|
3382
|
-
class="emotion-
|
|
3730
|
+
class="emotion-29"
|
|
3383
3731
|
>
|
|
3384
3732
|
test headline
|
|
3385
3733
|
</h3>
|
|
3386
3734
|
</div>
|
|
3387
3735
|
<div
|
|
3388
|
-
class="emotion-
|
|
3736
|
+
class="emotion-30"
|
|
3389
3737
|
>
|
|
3390
3738
|
<p
|
|
3391
|
-
class="emotion-
|
|
3739
|
+
class="emotion-31"
|
|
3392
3740
|
>
|
|
3393
3741
|
teaser test text
|
|
3394
3742
|
</p>
|
|
@@ -3399,52 +3747,52 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3399
3747
|
</div>
|
|
3400
3748
|
</div>
|
|
3401
3749
|
<div
|
|
3402
|
-
class="emotion-
|
|
3750
|
+
class="emotion-19"
|
|
3403
3751
|
data-testid="titleTeaserVertical-1"
|
|
3404
3752
|
>
|
|
3405
3753
|
<div
|
|
3406
|
-
class="emotion-
|
|
3754
|
+
class="emotion-20"
|
|
3407
3755
|
>
|
|
3408
3756
|
<div
|
|
3409
|
-
class="emotion-
|
|
3757
|
+
class="emotion-21"
|
|
3410
3758
|
>
|
|
3411
3759
|
<picture
|
|
3412
|
-
class="emotion-
|
|
3760
|
+
class="emotion-22"
|
|
3413
3761
|
>
|
|
3414
3762
|
<div
|
|
3415
|
-
class="emotion-
|
|
3763
|
+
class="emotion-23"
|
|
3416
3764
|
/>
|
|
3417
3765
|
<img
|
|
3418
3766
|
alt="image alt 2"
|
|
3419
|
-
class="emotion-
|
|
3767
|
+
class="emotion-24"
|
|
3420
3768
|
src="some-url-to-image"
|
|
3421
3769
|
/>
|
|
3422
3770
|
</picture>
|
|
3423
3771
|
</div>
|
|
3424
3772
|
<div
|
|
3425
|
-
class="emotion-
|
|
3773
|
+
class="emotion-25"
|
|
3426
3774
|
>
|
|
3427
3775
|
<div
|
|
3428
|
-
class="emotion-
|
|
3776
|
+
class="emotion-26"
|
|
3429
3777
|
>
|
|
3430
3778
|
<a
|
|
3431
|
-
class="nk-card-link emotion-
|
|
3779
|
+
class="nk-card-link emotion-27"
|
|
3432
3780
|
href="catagory-two/demo-2/test-headline-2"
|
|
3433
3781
|
>
|
|
3434
3782
|
<div
|
|
3435
|
-
class="emotion-
|
|
3783
|
+
class="emotion-28"
|
|
3436
3784
|
>
|
|
3437
3785
|
<h3
|
|
3438
|
-
class="emotion-
|
|
3786
|
+
class="emotion-29"
|
|
3439
3787
|
>
|
|
3440
3788
|
test headline 2
|
|
3441
3789
|
</h3>
|
|
3442
3790
|
</div>
|
|
3443
3791
|
<div
|
|
3444
|
-
class="emotion-
|
|
3792
|
+
class="emotion-30"
|
|
3445
3793
|
>
|
|
3446
3794
|
<p
|
|
3447
|
-
class="emotion-
|
|
3795
|
+
class="emotion-31"
|
|
3448
3796
|
>
|
|
3449
3797
|
teaser test text 2
|
|
3450
3798
|
</p>
|
|
@@ -3455,52 +3803,52 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3455
3803
|
</div>
|
|
3456
3804
|
</div>
|
|
3457
3805
|
<div
|
|
3458
|
-
class="emotion-
|
|
3806
|
+
class="emotion-19"
|
|
3459
3807
|
data-testid="titleTeaserVertical-2"
|
|
3460
3808
|
>
|
|
3461
3809
|
<div
|
|
3462
|
-
class="emotion-
|
|
3810
|
+
class="emotion-20"
|
|
3463
3811
|
>
|
|
3464
3812
|
<div
|
|
3465
|
-
class="emotion-
|
|
3813
|
+
class="emotion-21"
|
|
3466
3814
|
>
|
|
3467
3815
|
<picture
|
|
3468
|
-
class="emotion-
|
|
3816
|
+
class="emotion-22"
|
|
3469
3817
|
>
|
|
3470
3818
|
<div
|
|
3471
|
-
class="emotion-
|
|
3819
|
+
class="emotion-23"
|
|
3472
3820
|
/>
|
|
3473
3821
|
<img
|
|
3474
3822
|
alt="image alt 3"
|
|
3475
|
-
class="emotion-
|
|
3823
|
+
class="emotion-24"
|
|
3476
3824
|
src="some-url-to-image"
|
|
3477
3825
|
/>
|
|
3478
3826
|
</picture>
|
|
3479
3827
|
</div>
|
|
3480
3828
|
<div
|
|
3481
|
-
class="emotion-
|
|
3829
|
+
class="emotion-25"
|
|
3482
3830
|
>
|
|
3483
3831
|
<div
|
|
3484
|
-
class="emotion-
|
|
3832
|
+
class="emotion-26"
|
|
3485
3833
|
>
|
|
3486
3834
|
<a
|
|
3487
|
-
class="nk-card-link emotion-
|
|
3835
|
+
class="nk-card-link emotion-27"
|
|
3488
3836
|
href="catagory-three/demo-3/test-headline-3"
|
|
3489
3837
|
>
|
|
3490
3838
|
<div
|
|
3491
|
-
class="emotion-
|
|
3839
|
+
class="emotion-28"
|
|
3492
3840
|
>
|
|
3493
3841
|
<h3
|
|
3494
|
-
class="emotion-
|
|
3842
|
+
class="emotion-29"
|
|
3495
3843
|
>
|
|
3496
3844
|
test headline 3
|
|
3497
3845
|
</h3>
|
|
3498
3846
|
</div>
|
|
3499
3847
|
<div
|
|
3500
|
-
class="emotion-
|
|
3848
|
+
class="emotion-30"
|
|
3501
3849
|
>
|
|
3502
3850
|
<p
|
|
3503
|
-
class="emotion-
|
|
3851
|
+
class="emotion-31"
|
|
3504
3852
|
>
|
|
3505
3853
|
teaser test text 3
|
|
3506
3854
|
</p>
|
|
@@ -3511,52 +3859,52 @@ exports[`SectionRow SectionRow without extra space 1`] = `
|
|
|
3511
3859
|
</div>
|
|
3512
3860
|
</div>
|
|
3513
3861
|
<div
|
|
3514
|
-
class="emotion-
|
|
3862
|
+
class="emotion-19"
|
|
3515
3863
|
data-testid="titleTeaserVertical-3"
|
|
3516
3864
|
>
|
|
3517
3865
|
<div
|
|
3518
|
-
class="emotion-
|
|
3866
|
+
class="emotion-20"
|
|
3519
3867
|
>
|
|
3520
3868
|
<div
|
|
3521
|
-
class="emotion-
|
|
3869
|
+
class="emotion-21"
|
|
3522
3870
|
>
|
|
3523
3871
|
<picture
|
|
3524
|
-
class="emotion-
|
|
3872
|
+
class="emotion-22"
|
|
3525
3873
|
>
|
|
3526
3874
|
<div
|
|
3527
|
-
class="emotion-
|
|
3875
|
+
class="emotion-23"
|
|
3528
3876
|
/>
|
|
3529
3877
|
<img
|
|
3530
3878
|
alt="image alt 3"
|
|
3531
|
-
class="emotion-
|
|
3879
|
+
class="emotion-24"
|
|
3532
3880
|
src="some-url-to-image"
|
|
3533
3881
|
/>
|
|
3534
3882
|
</picture>
|
|
3535
3883
|
</div>
|
|
3536
3884
|
<div
|
|
3537
|
-
class="emotion-
|
|
3885
|
+
class="emotion-25"
|
|
3538
3886
|
>
|
|
3539
3887
|
<div
|
|
3540
|
-
class="emotion-
|
|
3888
|
+
class="emotion-26"
|
|
3541
3889
|
>
|
|
3542
3890
|
<a
|
|
3543
|
-
class="nk-card-link emotion-
|
|
3891
|
+
class="nk-card-link emotion-27"
|
|
3544
3892
|
href="catagory-four/demo-4/test-headline-4"
|
|
3545
3893
|
>
|
|
3546
3894
|
<div
|
|
3547
|
-
class="emotion-
|
|
3895
|
+
class="emotion-28"
|
|
3548
3896
|
>
|
|
3549
3897
|
<h3
|
|
3550
|
-
class="emotion-
|
|
3898
|
+
class="emotion-29"
|
|
3551
3899
|
>
|
|
3552
3900
|
test headline 4
|
|
3553
3901
|
</h3>
|
|
3554
3902
|
</div>
|
|
3555
3903
|
<div
|
|
3556
|
-
class="emotion-
|
|
3904
|
+
class="emotion-30"
|
|
3557
3905
|
>
|
|
3558
3906
|
<p
|
|
3559
|
-
class="emotion-
|
|
3907
|
+
class="emotion-31"
|
|
3560
3908
|
>
|
|
3561
3909
|
teaser test text 4
|
|
3562
3910
|
</p>
|