@newskit-render/core 1.17.4 → 1.27.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/.eslintrc +1 -1
  2. package/CHANGELOG.md +185 -0
  3. package/Dockerfile +1 -1
  4. package/__tests__/pages/__snapshots__/home.test.tsx.snap +179 -320
  5. package/__tests__/pages/home.test.tsx +4 -0
  6. package/applitools.config.js +9 -0
  7. package/components/article/__tests__/__snapshots__/index.test.tsx.snap +288 -513
  8. package/components/article/__tests__/index.test.tsx +4 -0
  9. package/components/footer/__snapshots__/index.test.tsx.snap +8 -12
  10. package/components/footer/index.test.tsx +4 -0
  11. package/components/footer/index.tsx +93 -65
  12. package/components/header/index.tsx +52 -26
  13. package/components/section/layouts/__tests__/__snapshots__/Lead.test.tsx.snap +30 -50
  14. package/components/section/layouts/__tests__/__snapshots__/SectionRow.test.tsx.snap +221 -358
  15. package/cypress/config/config.e2e.json +14 -0
  16. package/cypress/config/config.visual.json +8 -0
  17. package/cypress/e2e/account/SkipToContent.spec.js +12 -0
  18. package/cypress/e2e/account/accessibility.spec.js +69 -0
  19. package/cypress/e2e/account/account-page.spec.js +339 -0
  20. package/cypress/e2e/account/commenting-notifications.spec.js +44 -0
  21. package/cypress/e2e/account/main-api.spec.js +93 -0
  22. package/cypress/e2e/account/payment-page.spec.js +42 -0
  23. package/cypress/{integration → e2e/core}/home-page.spec.js +0 -0
  24. package/cypress/plugins/index.js +31 -0
  25. package/cypress/support/commands.js +48 -25
  26. package/cypress/support/index.js +2 -0
  27. package/cypress/visual/account/visual-regression.spec.js +31 -0
  28. package/helpers/getYear.ts +1 -0
  29. package/infrastructure/.circleci/config.yml +3 -3
  30. package/package.json +21 -15
  31. package/pages/_app.tsx +44 -13
  32. package/pages/_document.tsx +15 -7
  33. package/pages/checkout/account-creation/index.tsx +9 -1
  34. package/public/MyAccount/no-subscription.svg +15 -0
  35. package/public/MyAccount/previous-subscription.svg +15 -0
  36. package/public/MyAccount/primary-navigation-logo-white.svg +6 -0
  37. package/theme/colours.json +4 -0
  38. package/theme/render-custom-theme.ts +12 -2
  39. package/tsconfig.json +4 -1
  40. package/helpers/articleUtil.ts +0 -4
@@ -4,7 +4,6 @@ exports[`Article should render tile and sub title 1`] = `
4
4
  <DocumentFragment>
5
5
  .emotion-0 {
6
6
  height: 64px;
7
- background-color: #0A0A0A;
8
7
  }
9
8
 
10
9
  .emotion-0 a,
@@ -180,50 +179,39 @@ exports[`Article should render tile and sub title 1`] = `
180
179
  -ms-flex-pack: start;
181
180
  -webkit-justify-content: flex-start;
182
181
  justify-content: flex-start;
183
- margin-left: calc(-4px/2);
184
- margin-right: calc(-4px/2);
185
- }
186
-
187
- .emotion-7 {
188
- display: -webkit-inline-box;
189
- display: -webkit-inline-flex;
190
- display: -ms-inline-flexbox;
191
- display: inline-flex;
192
- margin-left: calc(4px/2);
193
- margin-right: calc(4px/2);
194
182
  }
195
183
 
196
184
  @media screen {
197
- .emotion-8 {
185
+ .emotion-7 {
198
186
  display: none;
199
187
  }
200
188
  }
201
189
 
202
190
  @media screen and (min-width: 480px) {
203
- .emotion-8 {
191
+ .emotion-7 {
204
192
  display: none;
205
193
  }
206
194
  }
207
195
 
208
196
  @media screen and (min-width: 768px) {
209
- .emotion-8 {
197
+ .emotion-7 {
210
198
  display: block;
211
199
  }
212
200
  }
213
201
 
214
202
  @media screen and (min-width: 1024px) {
215
- .emotion-8 {
203
+ .emotion-7 {
216
204
  display: block;
217
205
  }
218
206
  }
219
207
 
220
208
  @media screen and (min-width: 1440px) {
221
- .emotion-8 {
209
+ .emotion-7 {
222
210
  display: block;
223
211
  }
224
212
  }
225
213
 
226
- .emotion-9 {
214
+ .emotion-8 {
227
215
  display: inline-block;
228
216
  fill: #FFFFFF;
229
217
  color: #FFFFFF;
@@ -231,36 +219,36 @@ exports[`Article should render tile and sub title 1`] = `
231
219
  }
232
220
 
233
221
  @media screen {
234
- .emotion-11 {
222
+ .emotion-9 {
235
223
  display: block;
236
224
  }
237
225
  }
238
226
 
239
227
  @media screen and (min-width: 480px) {
240
- .emotion-11 {
228
+ .emotion-9 {
241
229
  display: block;
242
230
  }
243
231
  }
244
232
 
245
233
  @media screen and (min-width: 768px) {
246
- .emotion-11 {
234
+ .emotion-9 {
247
235
  display: none;
248
236
  }
249
237
  }
250
238
 
251
239
  @media screen and (min-width: 1024px) {
252
- .emotion-11 {
240
+ .emotion-9 {
253
241
  display: none;
254
242
  }
255
243
  }
256
244
 
257
245
  @media screen and (min-width: 1440px) {
258
- .emotion-11 {
246
+ .emotion-9 {
259
247
  display: none;
260
248
  }
261
249
  }
262
250
 
263
- .emotion-13 {
251
+ .emotion-11 {
264
252
  display: -webkit-box;
265
253
  display: -webkit-flex;
266
254
  display: -ms-flexbox;
@@ -286,7 +274,7 @@ exports[`Article should render tile and sub title 1`] = `
286
274
  justify-content: flex-end;
287
275
  }
288
276
 
289
- .emotion-14 {
277
+ .emotion-12 {
290
278
  position: fixed;
291
279
  overflow: auto;
292
280
  width: 100%;
@@ -299,7 +287,7 @@ exports[`Article should render tile and sub title 1`] = `
299
287
  }
300
288
 
301
289
  @media screen and (min-width: 768px) {
302
- .emotion-14 {
290
+ .emotion-12 {
303
291
  display: block;
304
292
  position: relative;
305
293
  overflow: auto;
@@ -312,7 +300,7 @@ exports[`Article should render tile and sub title 1`] = `
312
300
  }
313
301
  }
314
302
 
315
- .emotion-15 {
303
+ .emotion-13 {
316
304
  display: -webkit-box;
317
305
  display: -webkit-flex;
318
306
  display: -ms-flexbox;
@@ -334,7 +322,7 @@ exports[`Article should render tile and sub title 1`] = `
334
322
  }
335
323
 
336
324
  @media screen and (min-width: 768px) {
337
- .emotion-15 {
325
+ .emotion-13 {
338
326
  -webkit-box-pack: end;
339
327
  -ms-flex-pack: end;
340
328
  -webkit-justify-content: flex-end;
@@ -346,114 +334,59 @@ exports[`Article should render tile and sub title 1`] = `
346
334
  }
347
335
 
348
336
  @media screen and (max-width: 767px) {
349
- .emotion-16 {
337
+ .emotion-14 {
350
338
  margin-right: 0;
351
339
  }
352
340
  }
353
341
 
354
342
  @media screen and (min-width: 768px) {
355
- .emotion-16 {
343
+ .emotion-14 {
356
344
  margin-right: 24px;
357
345
  }
358
346
  }
359
347
 
360
- .emotion-18 {
361
- display: -webkit-box;
362
- display: -webkit-flex;
363
- display: -ms-flexbox;
364
- display: flex;
365
- height: 100%;
366
- -webkit-align-items: center;
367
- -webkit-box-align: center;
368
- -ms-flex-align: center;
369
- align-items: center;
370
- -webkit-flex-direction: row;
371
- -ms-flex-direction: row;
372
- flex-direction: row;
373
- -webkit-box-pack: start;
374
- -ms-flex-pack: start;
375
- -webkit-justify-content: flex-start;
376
- justify-content: flex-start;
377
- }
378
-
379
- .emotion-19 {
348
+ .emotion-17 {
380
349
  margin: 0;
381
- padding: 1px 0;
382
350
  font-family: "DM Sans",sans-serif;
383
351
  font-size: 14px;
384
- line-height: 1.4285714285714286;
352
+ line-height: 21px;
385
353
  font-weight: 500;
386
- letter-spacing: -0.5px;
354
+ letter-spacing: 0;
355
+ padding: 0.5px 0px;
387
356
  display: inline-block;
388
357
  display: block;
389
358
  }
390
359
 
391
- .emotion-19::before {
360
+ .emotion-17::before {
392
361
  content: '';
362
+ margin-bottom: -0.391em;
393
363
  display: block;
394
- height: 0;
395
- width: 0;
396
- margin-bottom: -0.3955357142857143em;
397
364
  }
398
365
 
399
- .emotion-19::after {
366
+ .emotion-17::after {
400
367
  content: '';
368
+ margin-top: -0.409em;
401
369
  display: block;
402
- height: 0;
403
- width: 0;
404
- margin-top: -0.3955357142857143em;
405
370
  }
406
371
 
407
- .emotion-29 {
372
+ .emotion-27 {
408
373
  margin-right: 24px;
409
374
  }
410
375
 
411
- .emotion-30 {
376
+ .emotion-28 {
412
377
  display: inline-block;
413
378
  vertical-align: middle;
414
379
  overflow: hidden;
415
380
  color: #FFFFFF;
416
- -webkit-text-decoration: none;
417
- text-decoration: none;
418
381
  fill: #FFFFFF;
419
382
  vertical-align: unset;
420
383
  display: inline-block;
421
384
  }
422
385
 
423
- .emotion-30:hover:not(:disabled) {
424
- color: #FFFFFF;
425
- -webkit-text-decoration: underline;
426
- text-decoration: underline;
427
- fill: #FFFFFF;
428
- }
429
-
430
- .emotion-30:active:not(:disabled) {
431
- color: #FFFFFF;
432
- -webkit-text-decoration: underline;
433
- text-decoration: underline;
434
- fill: #FFFFFF;
435
- }
436
-
437
- .emotion-30.emotion-30 {
386
+ .emotion-28.emotion-28 {
438
387
  width: 32px;
439
388
  height: 32px;
440
389
  color: #FFFFFF;
441
- -webkit-text-decoration: none;
442
- text-decoration: none;
443
- fill: #FFFFFF;
444
- }
445
-
446
- .emotion-30.emotion-30:hover:not(:disabled) {
447
- color: #FFFFFF;
448
- -webkit-text-decoration: underline;
449
- text-decoration: underline;
450
- fill: #FFFFFF;
451
- }
452
-
453
- .emotion-30.emotion-30:active:not(:disabled) {
454
- color: #FFFFFF;
455
- -webkit-text-decoration: underline;
456
- text-decoration: underline;
457
390
  fill: #FFFFFF;
458
391
  }
459
392
 
@@ -482,81 +415,73 @@ exports[`Article should render tile and sub title 1`] = `
482
415
  <span
483
416
  class="emotion-6"
484
417
  >
485
- <span
418
+ <div
486
419
  class="emotion-7"
487
420
  >
488
- <div
421
+ <svg
489
422
  class="emotion-8"
423
+ height="40px"
424
+ viewBox="0 0 244 40"
490
425
  >
491
- <svg
492
- class="emotion-9"
493
- height="40px"
494
- viewBox="0 0 244 40"
495
- >
496
- <title>
497
- NewsKit Logo
498
- </title>
499
- <path
500
- d="M86.93 34.078V19.006l12.017 15.462a.63.63 0 0 0 .496.243h5.94a.63.63 0 0 0 .629-.633V6.715a.63.63 0 0 0-.629-.633h-6.553a.63.63 0 0 0-.629.633v14.499L86.671 6.326a.63.63 0 0 0-.496-.244h-6.427a.63.63 0 0 0-.629.633v27.363a.63.63 0 0 0 .629.633h6.553a.63.63 0 0 0 .629-.633zm134.203-20.324c2.389 0 4.325-1.947 4.325-4.35s-1.936-4.35-4.325-4.35-4.325 1.947-4.325 4.35 1.936 4.35 4.325 4.35zM120.484 35.185c4.133 0 7.092-1.617 9.192-4.085.112-.132.196-.514-.023-.696l-3.487-2.897c-.267-.222-.691-.111-.819.004-1.437 1.296-2.778 1.881-4.496 1.881-2.401 0-4.151-1.224-4.761-3.631h13.949c.26 0 .821-.208.821-.638v-.953c0-6.487-3.499-12.077-11.067-12.077-6.51 0-11.108 5.1-11.108 11.546v.082c0 6.813 4.882 11.465 11.799 11.465zm3.299-13.444h-7.706c.407-2.421 1.794-3.954 3.832-3.954 2.121 0 3.588 1.533 3.874 3.954zm20.504 12.53l3.366-10.581c.026-.083.115-.129.198-.102.049.016.087.054.102.103l3.289 10.576a.63.63 0 0 0 .601.444h5.737a.63.63 0 0 0 .601-.447l6.399-20.955c.102-.334-.084-.688-.416-.79-.06-.018-.122-.028-.185-.028h-6.102a.63.63 0 0 0-.607.469l-2.7 10.167c-.023.084-.109.135-.193.112-.052-.014-.094-.054-.11-.107l-3.116-10.276a.63.63 0 0 0-.602-.448h-5.409a.63.63 0 0 0-.601.447l-3.114 10.193c-.026.084-.114.13-.197.105-.052-.016-.092-.058-.106-.111L138.5 12.963a.63.63 0 0 0-.608-.473h-6.184a.63.63 0 0 0-.629.633c0 .062.009.124.027.184l6.323 20.955a.63.63 0 0 0 .602.449h5.657a.63.63 0 0 0 .599-.44zm30.749.914c5.364 0 8.981-2.538 8.981-7.411v-.082c0-3.869-2.798-5.483-6.527-6.663l-.25-.078-.253-.077-.255-.076-.258-.075-.259-.074-.69-.212-.285-.09-.205-.066-.197-.065-.189-.064-.181-.063-.116-.042-.113-.041-.109-.041-.106-.041-.102-.041-.098-.041-.095-.041-.045-.021-.089-.042-.085-.042-.082-.042-.039-.021-.076-.043-.071-.043-.068-.044c-.351-.235-.536-.495-.536-.819v-.082c0-.655.61-1.105 1.788-1.105 1.631 0 3.897.677 6.042 1.831l.116.063.017.006.024.007.029.007a.6.6 0 0 0 .034.006l.038.004c.124.009.29-.019.36-.192l.176-.536.147-.454.26-.816.273-.875.224-.726.421-1.38c.067-.22-.02-.337-.088-.391l-.019-.014-.025-.015c-2.353-1.248-5.173-1.93-7.947-1.93-5.08 0-8.819 2.62-8.819 7.329v.082c0 3.759 2.496 5.387 5.915 6.496l.243.077.246.076.248.074.252.073.254.072.256.071.259.07.13.035.55.157.367.106.277.082.198.061.128.04.185.059.118.039.115.039.111.039.107.039.103.039.051.02.097.04.048.02.092.04.088.04.084.041.081.041c.511.268.776.569.776.983v.082c0 .778-.65 1.187-1.991 1.187-2.157 0-4.714-.772-7.12-2.281l-.116-.074-.025-.015-.029-.015-.032-.015c-.106-.044-.251-.065-.332.079l-1.527 4.645-.051.153c-.103.295.109.504.212.565 2.713 1.602 5.831 2.403 8.979 2.403zm20.475-1.265V27.17a.16.16 0 0 1 .041-.106l2.707-2.996c.059-.065.158-.069.223-.011.009.008.017.018.024.028l6.887 10.19a.63.63 0 0 0 .52.277h7.894a.63.63 0 0 0 .519-.99l-10.382-15.267c-.041-.06-.036-.14.012-.194l9.756-11.126c.23-.262.205-.662-.055-.893-.115-.102-.263-.158-.416-.158h-7.614a.63.63 0 0 0-.479.223l-9.36 11.065c-.056.066-.155.075-.222.018-.035-.03-.055-.074-.055-.12V6.557a.63.63 0 0 0-.629-.633h-6.618a.63.63 0 0 0-.63.633V33.92a.63.63 0 0 0 .63.633h6.618a.63.63 0 0 0 .629-.633zm29.554 0V16.93a.63.63 0 0 0-.629-.633h-6.448a.63.63 0 0 0-.629.633v16.99a.63.63 0 0 0 .629.633h6.448a.63.63 0 0 0 .629-.633zm13.423 1.107c1.945 0 3.625-.433 4.951-1.088l.096-.048.026-.014.028-.017c.117-.074.267-.222.267-.559v-5.177c0-.267-.213-.294-.37-.268l-.035.007-.047.013c-.01.003-.019.006-.027.01l-.012.005c-.785.321-1.597.517-2.437.517-1.423 0-2.115-.654-2.115-2.206v-7.36c0-.087.071-.158.158-.158h4.337a.63.63 0 0 0 .629-.633v-4.946a.63.63 0 0 0-.629-.633h-4.337c-.087 0-.158-.071-.158-.158V7.506a.63.63 0 0 0-.629-.633h-6.428a.63.63 0 0 0-.629.633v4.807c0 .087-.07.158-.157.158h-1.816a.63.63 0 0 0-.629.633v4.946a.63.63 0 0 0 .629.633h1.816c.087 0 .157.071.157.158v8.872c0 5.271 2.725 7.314 7.361 7.314z"
501
- fill="#fff"
502
- />
503
- <path
504
- d="M61.846.936c3.35.413 4.944 4.005 4.92 8.746l.017-.013c-5.497 4.462-16.323 7.515-26.958 1.71l.011-.016c1.568.832 3.224 1.475 5.172 1.715 2.386.294 4.303-1.023 6.043-2.889l.124-.134.062-.068.123-.137.123-.138.122-.14.121-.142.061-.071.121-.144.12-.145.146-.178.073-.09.182-.226.181-.228.144-.184.144-.185.143-.185.215-.279 1.091-1.431.209-.271.209-.269.14-.178.14-.177.14-.175.141-.173.141-.172.113-.136.113-.135.114-.133.114-.132.057-.065.114-.13.057-.064.115-.127.173-.187.116-.123.175-.18.117-.118C58.328 1.663 59.933.7 61.846.936z"
505
- fill="#aebfff"
506
- />
507
- <path
508
- d="M26.763 28.981l.011.013c-1.414-.671-2.883-1.176-4.519-1.378-1.738-.214-3.244.513-4.634 1.704l-.11.095-.163.146-.108.1-.108.101-.268.261-.106.107-.106.109-.106.11-.053.056-.105.112-.053.057-.125.136-.124.138-.124.139-.062.07-.123.142-.123.143-.122.145-.122.146-.061.073-.15.183-.075.092-.149.185-.075.093-.149.187-.149.188-.223.283-.296.38-.671.866-.222.285-.222.283-.148.188-.223.28-.149.185-.149.183-.149.182-.15.18-.117.139-.118.138-.118.136-.118.135-.119.133-.119.132-.119.13-.06.064-.12.127-.1.104-.1.103-.1.101-.151.15-.101.098-.102.096-.051.048-.102.094-.206.183-.103.089-.052.044-.104.086c-1.302 1.066-2.706 1.698-4.305 1.5-3.321-.41-4.98-3.93-5.064-8.601l-.097.09c6.351-5.963 17.155-6.757 26.506-2.264z"
509
- fill="#3358cc"
510
- />
511
- <path
512
- d="M42.216 35.925c-2.861-.398-5.212-1.275-7.302-2.318l-.189-.095-.188-.096-.186-.097-.231-.122-.229-.123-.182-.099-.226-.125-.224-.126-.178-.101-.177-.102-.264-.153-.349-.205-.278-.166-.276-.166-.411-.249-1.214-.738-.334-.201-.333-.199-2.669-1.45-.012-.013c-9.258-4.447-19.94-3.714-26.315 2.087l-.095.088C.156 20.101 8.779 2.598 25.068 4.608c2.854.352 5.141 1.176 7.14 2.181l.178.09.177.091.175.092.087.046.173.093.172.094.17.095.085.048.211.12.209.121.166.097.165.098.164.098.163.099.162.099.161.099.16.1.261.164.13.082.258.164.256.164 1.137.733.25.161.25.159.312.197.312.194a31.02 31.02 0 0 0 1.568.911l.199.106c10.506 5.694 21.166 2.775 26.7-1.604l.149-.12c-.055 10.998-8.815 28.185-24.55 26.243z"
513
- fill="#577ffb"
514
- />
515
- </svg>
516
- </div>
517
- </span>
518
- <span
519
- class="emotion-7"
426
+ <title>
427
+ NewsKit Logo
428
+ </title>
429
+ <path
430
+ d="M86.93 34.078V19.006l12.017 15.462a.63.63 0 0 0 .496.243h5.94a.63.63 0 0 0 .629-.633V6.715a.63.63 0 0 0-.629-.633h-6.553a.63.63 0 0 0-.629.633v14.499L86.671 6.326a.63.63 0 0 0-.496-.244h-6.427a.63.63 0 0 0-.629.633v27.363a.63.63 0 0 0 .629.633h6.553a.63.63 0 0 0 .629-.633zm134.203-20.324c2.389 0 4.325-1.947 4.325-4.35s-1.936-4.35-4.325-4.35-4.325 1.947-4.325 4.35 1.936 4.35 4.325 4.35zM120.484 35.185c4.133 0 7.092-1.617 9.192-4.085.112-.132.196-.514-.023-.696l-3.487-2.897c-.267-.222-.691-.111-.819.004-1.437 1.296-2.778 1.881-4.496 1.881-2.401 0-4.151-1.224-4.761-3.631h13.949c.26 0 .821-.208.821-.638v-.953c0-6.487-3.499-12.077-11.067-12.077-6.51 0-11.108 5.1-11.108 11.546v.082c0 6.813 4.882 11.465 11.799 11.465zm3.299-13.444h-7.706c.407-2.421 1.794-3.954 3.832-3.954 2.121 0 3.588 1.533 3.874 3.954zm20.504 12.53l3.366-10.581c.026-.083.115-.129.198-.102.049.016.087.054.102.103l3.289 10.576a.63.63 0 0 0 .601.444h5.737a.63.63 0 0 0 .601-.447l6.399-20.955c.102-.334-.084-.688-.416-.79-.06-.018-.122-.028-.185-.028h-6.102a.63.63 0 0 0-.607.469l-2.7 10.167c-.023.084-.109.135-.193.112-.052-.014-.094-.054-.11-.107l-3.116-10.276a.63.63 0 0 0-.602-.448h-5.409a.63.63 0 0 0-.601.447l-3.114 10.193c-.026.084-.114.13-.197.105-.052-.016-.092-.058-.106-.111L138.5 12.963a.63.63 0 0 0-.608-.473h-6.184a.63.63 0 0 0-.629.633c0 .062.009.124.027.184l6.323 20.955a.63.63 0 0 0 .602.449h5.657a.63.63 0 0 0 .599-.44zm30.749.914c5.364 0 8.981-2.538 8.981-7.411v-.082c0-3.869-2.798-5.483-6.527-6.663l-.25-.078-.253-.077-.255-.076-.258-.075-.259-.074-.69-.212-.285-.09-.205-.066-.197-.065-.189-.064-.181-.063-.116-.042-.113-.041-.109-.041-.106-.041-.102-.041-.098-.041-.095-.041-.045-.021-.089-.042-.085-.042-.082-.042-.039-.021-.076-.043-.071-.043-.068-.044c-.351-.235-.536-.495-.536-.819v-.082c0-.655.61-1.105 1.788-1.105 1.631 0 3.897.677 6.042 1.831l.116.063.017.006.024.007.029.007a.6.6 0 0 0 .034.006l.038.004c.124.009.29-.019.36-.192l.176-.536.147-.454.26-.816.273-.875.224-.726.421-1.38c.067-.22-.02-.337-.088-.391l-.019-.014-.025-.015c-2.353-1.248-5.173-1.93-7.947-1.93-5.08 0-8.819 2.62-8.819 7.329v.082c0 3.759 2.496 5.387 5.915 6.496l.243.077.246.076.248.074.252.073.254.072.256.071.259.07.13.035.55.157.367.106.277.082.198.061.128.04.185.059.118.039.115.039.111.039.107.039.103.039.051.02.097.04.048.02.092.04.088.04.084.041.081.041c.511.268.776.569.776.983v.082c0 .778-.65 1.187-1.991 1.187-2.157 0-4.714-.772-7.12-2.281l-.116-.074-.025-.015-.029-.015-.032-.015c-.106-.044-.251-.065-.332.079l-1.527 4.645-.051.153c-.103.295.109.504.212.565 2.713 1.602 5.831 2.403 8.979 2.403zm20.475-1.265V27.17a.16.16 0 0 1 .041-.106l2.707-2.996c.059-.065.158-.069.223-.011.009.008.017.018.024.028l6.887 10.19a.63.63 0 0 0 .52.277h7.894a.63.63 0 0 0 .519-.99l-10.382-15.267c-.041-.06-.036-.14.012-.194l9.756-11.126c.23-.262.205-.662-.055-.893-.115-.102-.263-.158-.416-.158h-7.614a.63.63 0 0 0-.479.223l-9.36 11.065c-.056.066-.155.075-.222.018-.035-.03-.055-.074-.055-.12V6.557a.63.63 0 0 0-.629-.633h-6.618a.63.63 0 0 0-.63.633V33.92a.63.63 0 0 0 .63.633h6.618a.63.63 0 0 0 .629-.633zm29.554 0V16.93a.63.63 0 0 0-.629-.633h-6.448a.63.63 0 0 0-.629.633v16.99a.63.63 0 0 0 .629.633h6.448a.63.63 0 0 0 .629-.633zm13.423 1.107c1.945 0 3.625-.433 4.951-1.088l.096-.048.026-.014.028-.017c.117-.074.267-.222.267-.559v-5.177c0-.267-.213-.294-.37-.268l-.035.007-.047.013c-.01.003-.019.006-.027.01l-.012.005c-.785.321-1.597.517-2.437.517-1.423 0-2.115-.654-2.115-2.206v-7.36c0-.087.071-.158.158-.158h4.337a.63.63 0 0 0 .629-.633v-4.946a.63.63 0 0 0-.629-.633h-4.337c-.087 0-.158-.071-.158-.158V7.506a.63.63 0 0 0-.629-.633h-6.428a.63.63 0 0 0-.629.633v4.807c0 .087-.07.158-.157.158h-1.816a.63.63 0 0 0-.629.633v4.946a.63.63 0 0 0 .629.633h1.816c.087 0 .157.071.157.158v8.872c0 5.271 2.725 7.314 7.361 7.314z"
431
+ fill="#fff"
432
+ />
433
+ <path
434
+ d="M61.846.936c3.35.413 4.944 4.005 4.92 8.746l.017-.013c-5.497 4.462-16.323 7.515-26.958 1.71l.011-.016c1.568.832 3.224 1.475 5.172 1.715 2.386.294 4.303-1.023 6.043-2.889l.124-.134.062-.068.123-.137.123-.138.122-.14.121-.142.061-.071.121-.144.12-.145.146-.178.073-.09.182-.226.181-.228.144-.184.144-.185.143-.185.215-.279 1.091-1.431.209-.271.209-.269.14-.178.14-.177.14-.175.141-.173.141-.172.113-.136.113-.135.114-.133.114-.132.057-.065.114-.13.057-.064.115-.127.173-.187.116-.123.175-.18.117-.118C58.328 1.663 59.933.7 61.846.936z"
435
+ fill="#aebfff"
436
+ />
437
+ <path
438
+ d="M26.763 28.981l.011.013c-1.414-.671-2.883-1.176-4.519-1.378-1.738-.214-3.244.513-4.634 1.704l-.11.095-.163.146-.108.1-.108.101-.268.261-.106.107-.106.109-.106.11-.053.056-.105.112-.053.057-.125.136-.124.138-.124.139-.062.07-.123.142-.123.143-.122.145-.122.146-.061.073-.15.183-.075.092-.149.185-.075.093-.149.187-.149.188-.223.283-.296.38-.671.866-.222.285-.222.283-.148.188-.223.28-.149.185-.149.183-.149.182-.15.18-.117.139-.118.138-.118.136-.118.135-.119.133-.119.132-.119.13-.06.064-.12.127-.1.104-.1.103-.1.101-.151.15-.101.098-.102.096-.051.048-.102.094-.206.183-.103.089-.052.044-.104.086c-1.302 1.066-2.706 1.698-4.305 1.5-3.321-.41-4.98-3.93-5.064-8.601l-.097.09c6.351-5.963 17.155-6.757 26.506-2.264z"
439
+ fill="#3358cc"
440
+ />
441
+ <path
442
+ d="M42.216 35.925c-2.861-.398-5.212-1.275-7.302-2.318l-.189-.095-.188-.096-.186-.097-.231-.122-.229-.123-.182-.099-.226-.125-.224-.126-.178-.101-.177-.102-.264-.153-.349-.205-.278-.166-.276-.166-.411-.249-1.214-.738-.334-.201-.333-.199-2.669-1.45-.012-.013c-9.258-4.447-19.94-3.714-26.315 2.087l-.095.088C.156 20.101 8.779 2.598 25.068 4.608c2.854.352 5.141 1.176 7.14 2.181l.178.09.177.091.175.092.087.046.173.093.172.094.17.095.085.048.211.12.209.121.166.097.165.098.164.098.163.099.162.099.161.099.16.1.261.164.13.082.258.164.256.164 1.137.733.25.161.25.159.312.197.312.194a31.02 31.02 0 0 0 1.568.911l.199.106c10.506 5.694 21.166 2.775 26.7-1.604l.149-.12c-.055 10.998-8.815 28.185-24.55 26.243z"
443
+ fill="#577ffb"
444
+ />
445
+ </svg>
446
+ </div>
447
+ <div
448
+ class="emotion-9"
520
449
  >
521
- <div
522
- class="emotion-11"
450
+ <svg
451
+ class="emotion-8"
452
+ height="40px"
453
+ viewBox="0 0 244 40"
523
454
  >
524
- <svg
525
- class="emotion-9"
526
- height="40px"
527
- viewBox="0 0 244 40"
528
- >
529
- <title>
530
- NewsKit Logo
531
- </title>
532
- <path
533
- d="M61.846.936c3.35.413 4.944 4.005 4.92 8.746l.017-.013c-5.497 4.462-16.323 7.515-26.958 1.71l.011-.016c1.568.832 3.224 1.475 5.172 1.715 2.386.294 4.303-1.023 6.043-2.889l.124-.134.062-.068.123-.137.123-.138.122-.14.121-.142.061-.071.121-.144.12-.145.146-.178.073-.09.182-.226.181-.228.144-.184.144-.185.143-.185.215-.279 1.091-1.431.209-.271.209-.269.14-.178.14-.177.14-.175.141-.173.141-.172.113-.136.113-.135.114-.133.114-.132.057-.065.114-.13.057-.064.115-.127.173-.187.116-.123.175-.18.117-.118C58.328 1.663 59.933.7 61.846.936z"
534
- fill="#aebfff"
535
- />
536
- <path
537
- d="M26.763 28.981l.011.013c-1.414-.671-2.883-1.176-4.519-1.378-1.738-.214-3.244.513-4.634 1.704l-.11.095-.163.146-.108.1-.108.101-.268.261-.106.107-.106.109-.106.11-.053.056-.105.112-.053.057-.125.136-.124.138-.124.139-.062.07-.123.142-.123.143-.122.145-.122.146-.061.073-.15.183-.075.092-.149.185-.075.093-.149.187-.149.188-.223.283-.296.38-.671.866-.222.285-.222.283-.148.188-.223.28-.149.185-.149.183-.149.182-.15.18-.117.139-.118.138-.118.136-.118.135-.119.133-.119.132-.119.13-.06.064-.12.127-.1.104-.1.103-.1.101-.151.15-.101.098-.102.096-.051.048-.102.094-.206.183-.103.089-.052.044-.104.086c-1.302 1.066-2.706 1.698-4.305 1.5-3.321-.41-4.98-3.93-5.064-8.601l-.097.09c6.351-5.963 17.155-6.757 26.506-2.264z"
538
- fill="#3358cc"
539
- />
540
- <path
541
- d="M42.216 35.925c-2.861-.398-5.212-1.275-7.302-2.318l-.189-.095-.188-.096-.186-.097-.231-.122-.229-.123-.182-.099-.226-.125-.224-.126-.178-.101-.177-.102-.264-.153-.349-.205-.278-.166-.276-.166-.411-.249-1.214-.738-.334-.201-.333-.199-2.669-1.45-.012-.013c-9.258-4.447-19.94-3.714-26.315 2.087l-.095.088C.156 20.101 8.779 2.598 25.068 4.608c2.854.352 5.141 1.176 7.14 2.181l.178.09.177.091.175.092.087.046.173.093.172.094.17.095.085.048.211.12.209.121.166.097.165.098.164.098.163.099.162.099.161.099.16.1.261.164.13.082.258.164.256.164 1.137.733.25.161.25.159.312.197.312.194a31.02 31.02 0 0 0 1.568.911l.199.106c10.506 5.694 21.166 2.775 26.7-1.604l.149-.12c-.055 10.998-8.815 28.185-24.55 26.243z"
542
- fill="#577ffb"
543
- />
544
- </svg>
545
- </div>
546
- </span>
455
+ <title>
456
+ NewsKit Logo
457
+ </title>
458
+ <path
459
+ d="M61.846.936c3.35.413 4.944 4.005 4.92 8.746l.017-.013c-5.497 4.462-16.323 7.515-26.958 1.71l.011-.016c1.568.832 3.224 1.475 5.172 1.715 2.386.294 4.303-1.023 6.043-2.889l.124-.134.062-.068.123-.137.123-.138.122-.14.121-.142.061-.071.121-.144.12-.145.146-.178.073-.09.182-.226.181-.228.144-.184.144-.185.143-.185.215-.279 1.091-1.431.209-.271.209-.269.14-.178.14-.177.14-.175.141-.173.141-.172.113-.136.113-.135.114-.133.114-.132.057-.065.114-.13.057-.064.115-.127.173-.187.116-.123.175-.18.117-.118C58.328 1.663 59.933.7 61.846.936z"
460
+ fill="#aebfff"
461
+ />
462
+ <path
463
+ d="M26.763 28.981l.011.013c-1.414-.671-2.883-1.176-4.519-1.378-1.738-.214-3.244.513-4.634 1.704l-.11.095-.163.146-.108.1-.108.101-.268.261-.106.107-.106.109-.106.11-.053.056-.105.112-.053.057-.125.136-.124.138-.124.139-.062.07-.123.142-.123.143-.122.145-.122.146-.061.073-.15.183-.075.092-.149.185-.075.093-.149.187-.149.188-.223.283-.296.38-.671.866-.222.285-.222.283-.148.188-.223.28-.149.185-.149.183-.149.182-.15.18-.117.139-.118.138-.118.136-.118.135-.119.133-.119.132-.119.13-.06.064-.12.127-.1.104-.1.103-.1.101-.151.15-.101.098-.102.096-.051.048-.102.094-.206.183-.103.089-.052.044-.104.086c-1.302 1.066-2.706 1.698-4.305 1.5-3.321-.41-4.98-3.93-5.064-8.601l-.097.09c6.351-5.963 17.155-6.757 26.506-2.264z"
464
+ fill="#3358cc"
465
+ />
466
+ <path
467
+ d="M42.216 35.925c-2.861-.398-5.212-1.275-7.302-2.318l-.189-.095-.188-.096-.186-.097-.231-.122-.229-.123-.182-.099-.226-.125-.224-.126-.178-.101-.177-.102-.264-.153-.349-.205-.278-.166-.276-.166-.411-.249-1.214-.738-.334-.201-.333-.199-2.669-1.45-.012-.013c-9.258-4.447-19.94-3.714-26.315 2.087l-.095.088C.156 20.101 8.779 2.598 25.068 4.608c2.854.352 5.141 1.176 7.14 2.181l.178.09.177.091.175.092.087.046.173.093.172.094.17.095.085.048.211.12.209.121.166.097.165.098.164.098.163.099.162.099.161.099.16.1.261.164.13.082.258.164.256.164 1.137.733.25.161.25.159.312.197.312.194a31.02 31.02 0 0 0 1.568.911l.199.106c10.506 5.694 21.166 2.775 26.7-1.604l.149-.12c-.055 10.998-8.815 28.185-24.55 26.243z"
468
+ fill="#577ffb"
469
+ />
470
+ </svg>
471
+ </div>
547
472
  </span>
548
473
  </a>
549
474
  <div
550
- class="emotion-13"
475
+ class="emotion-11"
551
476
  >
552
477
  <div
553
- class="emotion-14"
478
+ class="emotion-12"
554
479
  >
555
480
  <div
556
- class="emotion-15"
481
+ class="emotion-13"
557
482
  >
558
483
  <span
559
- class="emotion-16"
484
+ class="emotion-14"
560
485
  >
561
486
  <a
562
487
  aria-label="Section One Link"
@@ -564,10 +489,10 @@ exports[`Article should render tile and sub title 1`] = `
564
489
  href="/section-one"
565
490
  >
566
491
  <span
567
- class="emotion-18"
492
+ class="emotion-6"
568
493
  >
569
494
  <span
570
- class="emotion-19"
495
+ class="emotion-17"
571
496
  >
572
497
  Section One
573
498
  </span>
@@ -575,7 +500,7 @@ exports[`Article should render tile and sub title 1`] = `
575
500
  </a>
576
501
  </span>
577
502
  <span
578
- class="emotion-16"
503
+ class="emotion-14"
579
504
  >
580
505
  <a
581
506
  aria-label="Section Two Link"
@@ -583,10 +508,10 @@ exports[`Article should render tile and sub title 1`] = `
583
508
  href="/section-two"
584
509
  >
585
510
  <span
586
- class="emotion-18"
511
+ class="emotion-6"
587
512
  >
588
513
  <span
589
- class="emotion-19"
514
+ class="emotion-17"
590
515
  >
591
516
  Section Two
592
517
  </span>
@@ -594,7 +519,7 @@ exports[`Article should render tile and sub title 1`] = `
594
519
  </a>
595
520
  </span>
596
521
  <span
597
- class="emotion-16"
522
+ class="emotion-14"
598
523
  >
599
524
  <a
600
525
  aria-label="Section Three Link"
@@ -602,10 +527,10 @@ exports[`Article should render tile and sub title 1`] = `
602
527
  href="/section-three"
603
528
  >
604
529
  <span
605
- class="emotion-18"
530
+ class="emotion-6"
606
531
  >
607
532
  <span
608
- class="emotion-19"
533
+ class="emotion-17"
609
534
  >
610
535
  Section Three
611
536
  </span>
@@ -615,15 +540,15 @@ exports[`Article should render tile and sub title 1`] = `
615
540
  </div>
616
541
  </div>
617
542
  <div
618
- class="emotion-11"
543
+ class="emotion-9"
619
544
  >
620
545
  <div
621
- class="emotion-29"
546
+ class="emotion-27"
622
547
  >
623
548
  <svg
624
549
  aria-hidden="true"
625
550
  aria-label="Mobile Menu Button"
626
- class="emotion-30 emotion-31"
551
+ class="emotion-28 emotion-29"
627
552
  data-testid="mobile-menu-btn"
628
553
  fill="currentColor"
629
554
  focusable="false"
@@ -642,18 +567,6 @@ exports[`Article should render tile and sub title 1`] = `
642
567
  </svg>
643
568
  </div>
644
569
  </div>
645
- <select>
646
- <option
647
- value="LightTheme"
648
- >
649
- LightTheme
650
- </option>
651
- <option
652
- value="DarkTheme"
653
- >
654
- DarkTheme
655
- </option>
656
- </select>
657
570
  </div>
658
571
  </div>
659
572
  </div>
@@ -796,33 +709,26 @@ exports[`Article should render tile and sub title 1`] = `
796
709
  margin-bottom: 24px;
797
710
  }
798
711
 
799
- .emotion-7 {
800
- padding: 1px 0px;
801
- }
802
-
803
712
  @media screen and (max-width: 767px) {
804
713
  .emotion-7 {
805
714
  font-family: "Bitter",serif;
806
715
  font-size: 28px;
807
- line-height: 1.1428571428571428;
716
+ line-height: 31.5px;
808
717
  font-weight: 500;
809
- letter-spacing: -0.5px;
718
+ letter-spacing: 0;
719
+ padding: 0.5px 0px;
810
720
  }
811
721
 
812
722
  .emotion-7::before {
813
723
  content: '';
724
+ margin-bottom: -0.2055em;
814
725
  display: block;
815
- height: 0;
816
- width: 0;
817
- margin-bottom: -0.22142857142857142em;
818
726
  }
819
727
 
820
728
  .emotion-7::after {
821
729
  content: '';
730
+ margin-top: -0.2275em;
822
731
  display: block;
823
- height: 0;
824
- width: 0;
825
- margin-top: -0.2839285714285714em;
826
732
  }
827
733
  }
828
734
 
@@ -830,25 +736,22 @@ exports[`Article should render tile and sub title 1`] = `
830
736
  .emotion-7 {
831
737
  font-family: "Bitter",serif;
832
738
  font-size: 36px;
833
- line-height: 1.1111111111111112;
739
+ line-height: 40.5px;
834
740
  font-weight: 500;
835
- letter-spacing: -0.5px;
741
+ letter-spacing: 0;
742
+ padding: 0.5px 0px;
836
743
  }
837
744
 
838
745
  .emotion-7::before {
839
746
  content: '';
747
+ margin-bottom: -0.2055em;
840
748
  display: block;
841
- height: 0;
842
- width: 0;
843
- margin-bottom: -0.2055555555555556em;
844
749
  }
845
750
 
846
751
  .emotion-7::after {
847
752
  content: '';
753
+ margin-top: -0.2275em;
848
754
  display: block;
849
- height: 0;
850
- width: 0;
851
- margin-top: -0.2680555555555556em;
852
755
  }
853
756
  }
854
757
 
@@ -856,25 +759,22 @@ exports[`Article should render tile and sub title 1`] = `
856
759
  .emotion-7 {
857
760
  font-family: "Bitter",serif;
858
761
  font-size: 36px;
859
- line-height: 1.1111111111111112;
762
+ line-height: 40.5px;
860
763
  font-weight: 500;
861
- letter-spacing: -0.5px;
764
+ letter-spacing: 0;
765
+ padding: 0.5px 0px;
862
766
  }
863
767
 
864
768
  .emotion-7::before {
865
769
  content: '';
770
+ margin-bottom: -0.2055em;
866
771
  display: block;
867
- height: 0;
868
- width: 0;
869
- margin-bottom: -0.2055555555555556em;
870
772
  }
871
773
 
872
774
  .emotion-7::after {
873
775
  content: '';
776
+ margin-top: -0.2275em;
874
777
  display: block;
875
- height: 0;
876
- width: 0;
877
- margin-top: -0.2680555555555556em;
878
778
  }
879
779
  }
880
780
 
@@ -882,25 +782,22 @@ exports[`Article should render tile and sub title 1`] = `
882
782
  .emotion-7 {
883
783
  font-family: "Bitter",serif;
884
784
  font-size: 40px;
885
- line-height: 1.2;
785
+ line-height: 45px;
886
786
  font-weight: 500;
887
- letter-spacing: -0.5px;
787
+ letter-spacing: 0;
788
+ padding: 0.5px 0px;
888
789
  }
889
790
 
890
791
  .emotion-7::before {
891
792
  content: '';
793
+ margin-bottom: -0.2055em;
892
794
  display: block;
893
- height: 0;
894
- width: 0;
895
- margin-bottom: -0.25em;
896
795
  }
897
796
 
898
797
  .emotion-7::after {
899
798
  content: '';
799
+ margin-top: -0.2275em;
900
800
  display: block;
901
- height: 0;
902
- width: 0;
903
- margin-top: -0.3125em;
904
801
  }
905
802
  }
906
803
 
@@ -919,33 +816,26 @@ exports[`Article should render tile and sub title 1`] = `
919
816
  margin-bottom: 48px;
920
817
  }
921
818
 
922
- .emotion-10 {
923
- padding: 1px 0px;
924
- }
925
-
926
819
  @media screen and (max-width: 767px) {
927
820
  .emotion-10 {
928
821
  font-family: "Bitter",serif;
929
822
  font-size: 20px;
930
- line-height: 1.2;
823
+ line-height: 22.5px;
931
824
  font-weight: 400;
932
- letter-spacing: -0.5px;
825
+ letter-spacing: 0;
826
+ padding: 0.5px 0px;
933
827
  }
934
828
 
935
829
  .emotion-10::before {
936
830
  content: '';
831
+ margin-bottom: -0.2055em;
937
832
  display: block;
938
- height: 0;
939
- width: 0;
940
- margin-bottom: -0.25em;
941
833
  }
942
834
 
943
835
  .emotion-10::after {
944
836
  content: '';
837
+ margin-top: -0.2275em;
945
838
  display: block;
946
- height: 0;
947
- width: 0;
948
- margin-top: -0.3125em;
949
839
  }
950
840
  }
951
841
 
@@ -953,25 +843,22 @@ exports[`Article should render tile and sub title 1`] = `
953
843
  .emotion-10 {
954
844
  font-family: "Bitter",serif;
955
845
  font-size: 24px;
956
- line-height: 1.1666666666666667;
846
+ line-height: 27px;
957
847
  font-weight: 400;
958
848
  letter-spacing: 0;
849
+ padding: 0.5px 0px;
959
850
  }
960
851
 
961
852
  .emotion-10::before {
962
853
  content: '';
854
+ margin-bottom: -0.2055em;
963
855
  display: block;
964
- height: 0;
965
- width: 0;
966
- margin-bottom: -0.2333333333333334em;
967
856
  }
968
857
 
969
858
  .emotion-10::after {
970
859
  content: '';
860
+ margin-top: -0.2275em;
971
861
  display: block;
972
- height: 0;
973
- width: 0;
974
- margin-top: -0.2958333333333334em;
975
862
  }
976
863
  }
977
864
 
@@ -979,25 +866,22 @@ exports[`Article should render tile and sub title 1`] = `
979
866
  .emotion-10 {
980
867
  font-family: "Bitter",serif;
981
868
  font-size: 24px;
982
- line-height: 1.1666666666666667;
869
+ line-height: 27px;
983
870
  font-weight: 400;
984
871
  letter-spacing: 0;
872
+ padding: 0.5px 0px;
985
873
  }
986
874
 
987
875
  .emotion-10::before {
988
876
  content: '';
877
+ margin-bottom: -0.2055em;
989
878
  display: block;
990
- height: 0;
991
- width: 0;
992
- margin-bottom: -0.2333333333333334em;
993
879
  }
994
880
 
995
881
  .emotion-10::after {
996
882
  content: '';
883
+ margin-top: -0.2275em;
997
884
  display: block;
998
- height: 0;
999
- width: 0;
1000
- margin-top: -0.2958333333333334em;
1001
885
  }
1002
886
  }
1003
887
 
@@ -1005,25 +889,22 @@ exports[`Article should render tile and sub title 1`] = `
1005
889
  .emotion-10 {
1006
890
  font-family: "Bitter",serif;
1007
891
  font-size: 28px;
1008
- line-height: 1.1428571428571428;
892
+ line-height: 31.5px;
1009
893
  font-weight: 400;
1010
- letter-spacing: -0.5px;
894
+ letter-spacing: 0;
895
+ padding: 0.5px 0px;
1011
896
  }
1012
897
 
1013
898
  .emotion-10::before {
1014
899
  content: '';
900
+ margin-bottom: -0.2055em;
1015
901
  display: block;
1016
- height: 0;
1017
- width: 0;
1018
- margin-bottom: -0.22142857142857142em;
1019
902
  }
1020
903
 
1021
904
  .emotion-10::after {
1022
905
  content: '';
906
+ margin-top: -0.2275em;
1023
907
  display: block;
1024
- height: 0;
1025
- width: 0;
1026
- margin-top: -0.2839285714285714em;
1027
908
  }
1028
909
  }
1029
910
 
@@ -1125,13 +1006,13 @@ exports[`Article should render tile and sub title 1`] = `
1125
1006
 
1126
1007
  .emotion-18 {
1127
1008
  margin: 0;
1128
- padding: 1px 0;
1129
1009
  color: #2E2E2E;
1130
1010
  font-family: "DM Sans",sans-serif;
1131
1011
  font-size: 14px;
1132
- line-height: 1.4285714285714286;
1012
+ line-height: 21px;
1133
1013
  font-weight: 500;
1134
- letter-spacing: -0.5px;
1014
+ letter-spacing: 0;
1015
+ padding: 0.5px 0px;
1135
1016
  display: inline-block;
1136
1017
  }
1137
1018
 
@@ -1141,18 +1022,14 @@ exports[`Article should render tile and sub title 1`] = `
1141
1022
 
1142
1023
  .emotion-18::before {
1143
1024
  content: '';
1025
+ margin-bottom: -0.391em;
1144
1026
  display: block;
1145
- height: 0;
1146
- width: 0;
1147
- margin-bottom: -0.3955357142857143em;
1148
1027
  }
1149
1028
 
1150
1029
  .emotion-18::after {
1151
1030
  content: '';
1031
+ margin-top: -0.409em;
1152
1032
  display: block;
1153
- height: 0;
1154
- width: 0;
1155
- margin-top: -0.3955357142857143em;
1156
1033
  }
1157
1034
 
1158
1035
  .emotion-19 {
@@ -1194,32 +1071,14 @@ exports[`Article should render tile and sub title 1`] = `
1194
1071
 
1195
1072
  .emotion-22 {
1196
1073
  margin: 0;
1197
- padding: 1px 0;
1198
1074
  font-family: "DM Sans",sans-serif;
1199
1075
  font-size: 14px;
1200
- line-height: 1.4285714285714286;
1076
+ line-height: 1.5;
1201
1077
  font-weight: 500;
1202
- letter-spacing: -0.5px;
1203
- display: inline-block;
1078
+ letter-spacing: 0;
1204
1079
  display: block;
1205
1080
  }
1206
1081
 
1207
- .emotion-22::before {
1208
- content: '';
1209
- display: block;
1210
- height: 0;
1211
- width: 0;
1212
- margin-bottom: -0.3955357142857143em;
1213
- }
1214
-
1215
- .emotion-22::after {
1216
- content: '';
1217
- display: block;
1218
- height: 0;
1219
- width: 0;
1220
- margin-top: -0.3955357142857143em;
1221
- }
1222
-
1223
1082
  .emotion-24 {
1224
1083
  display: inline-block;
1225
1084
  vertical-align: middle;
@@ -1236,13 +1095,13 @@ exports[`Article should render tile and sub title 1`] = `
1236
1095
 
1237
1096
  .emotion-28 {
1238
1097
  margin: 0;
1239
- padding: 1px 0;
1240
1098
  color: #2E2E2E;
1241
1099
  font-family: "DM Sans",sans-serif;
1242
1100
  font-size: 12px;
1243
- line-height: 1.6666666666666667;
1101
+ line-height: 18px;
1244
1102
  font-weight: 400;
1245
- letter-spacing: -0.5px;
1103
+ letter-spacing: 0;
1104
+ padding: 0.5px 0px;
1246
1105
  display: inline-block;
1247
1106
  white-space: pre;
1248
1107
  }
@@ -1253,18 +1112,19 @@ exports[`Article should render tile and sub title 1`] = `
1253
1112
 
1254
1113
  .emotion-28::before {
1255
1114
  content: '';
1115
+ margin-bottom: -0.391em;
1256
1116
  display: block;
1257
- height: 0;
1258
- width: 0;
1259
- margin-bottom: -0.5145833333333334em;
1260
1117
  }
1261
1118
 
1262
1119
  .emotion-28::after {
1263
1120
  content: '';
1121
+ margin-top: -0.409em;
1264
1122
  display: block;
1265
- height: 0;
1266
- width: 0;
1267
- margin-top: -0.5145833333333334em;
1123
+ }
1124
+
1125
+ .emotion-28:before,
1126
+ .emotion-28:after {
1127
+ white-space: normal;
1268
1128
  }
1269
1129
 
1270
1130
  .emotion-30 {
@@ -1384,27 +1244,26 @@ exports[`Article should render tile and sub title 1`] = `
1384
1244
  }
1385
1245
 
1386
1246
  .emotion-38 {
1247
+ margin: 0;
1387
1248
  font-family: "Poppins",sans-serif;
1388
1249
  font-size: 12px;
1389
- line-height: 1.6666666666666667;
1250
+ line-height: 18px;
1390
1251
  font-weight: 500;
1391
- letter-spacing: -0.5px;
1252
+ letter-spacing: 0;
1253
+ padding: 0.5px 0px;
1254
+ display: inline-block;
1392
1255
  }
1393
1256
 
1394
1257
  .emotion-38::before {
1395
1258
  content: '';
1259
+ margin-bottom: -0.403em;
1396
1260
  display: block;
1397
- height: 0;
1398
- width: 0;
1399
- margin-bottom: -0.5145833333333334em;
1400
1261
  }
1401
1262
 
1402
1263
  .emotion-38::after {
1403
1264
  content: '';
1265
+ margin-top: -0.4em;
1404
1266
  display: block;
1405
- height: 0;
1406
- width: 0;
1407
- margin-top: -0.5145833333333334em;
1408
1267
  }
1409
1268
 
1410
1269
  @media screen {
@@ -1494,27 +1353,24 @@ exports[`Article should render tile and sub title 1`] = `
1494
1353
  .emotion-57 {
1495
1354
  font-family: "Poppins",sans-serif;
1496
1355
  font-size: 14px;
1497
- line-height: 1.4285714285714286;
1356
+ line-height: 21px;
1498
1357
  font-weight: 500;
1499
- letter-spacing: -0.5px;
1358
+ letter-spacing: 0;
1359
+ padding: 0.5px 0px;
1500
1360
  color: #2E2E2E;
1501
1361
  margin-right: 24px;
1502
1362
  }
1503
1363
 
1504
1364
  .emotion-57::before {
1505
1365
  content: '';
1366
+ margin-bottom: -0.403em;
1506
1367
  display: block;
1507
- height: 0;
1508
- width: 0;
1509
- margin-bottom: -0.3955357142857143em;
1510
1368
  }
1511
1369
 
1512
1370
  .emotion-57::after {
1513
1371
  content: '';
1372
+ margin-top: -0.4em;
1514
1373
  display: block;
1515
- height: 0;
1516
- width: 0;
1517
- margin-top: -0.3955357142857143em;
1518
1374
  }
1519
1375
 
1520
1376
  .emotion-57 svg {
@@ -1676,7 +1532,6 @@ exports[`Article should render tile and sub title 1`] = `
1676
1532
 
1677
1533
  .emotion-76 {
1678
1534
  margin: 0;
1679
- padding: 1px 0;
1680
1535
  color: #0A0A0A;
1681
1536
  }
1682
1537
 
@@ -1688,25 +1543,22 @@ exports[`Article should render tile and sub title 1`] = `
1688
1543
  .emotion-76 {
1689
1544
  font-family: "DM Sans",sans-serif;
1690
1545
  font-size: 14px;
1691
- line-height: 1.4285714285714286;
1546
+ line-height: 21px;
1692
1547
  font-weight: 400;
1693
- letter-spacing: -0.5px;
1548
+ letter-spacing: 0;
1549
+ padding: 0.5px 0px;
1694
1550
  }
1695
1551
 
1696
1552
  .emotion-76::before {
1697
1553
  content: '';
1554
+ margin-bottom: -0.391em;
1698
1555
  display: block;
1699
- height: 0;
1700
- width: 0;
1701
- margin-bottom: -0.3955357142857143em;
1702
1556
  }
1703
1557
 
1704
1558
  .emotion-76::after {
1705
1559
  content: '';
1560
+ margin-top: -0.409em;
1706
1561
  display: block;
1707
- height: 0;
1708
- width: 0;
1709
- margin-top: -0.3955357142857143em;
1710
1562
  }
1711
1563
  }
1712
1564
 
@@ -1714,25 +1566,22 @@ exports[`Article should render tile and sub title 1`] = `
1714
1566
  .emotion-76 {
1715
1567
  font-family: "DM Sans",sans-serif;
1716
1568
  font-size: 16px;
1717
- line-height: 1.5;
1569
+ line-height: 24px;
1718
1570
  font-weight: 400;
1719
- letter-spacing: -0.5px;
1571
+ letter-spacing: 0;
1572
+ padding: 0.5px 0px;
1720
1573
  }
1721
1574
 
1722
1575
  .emotion-76::before {
1723
1576
  content: '';
1577
+ margin-bottom: -0.391em;
1724
1578
  display: block;
1725
- height: 0;
1726
- width: 0;
1727
- margin-bottom: -0.43125em;
1728
1579
  }
1729
1580
 
1730
1581
  .emotion-76::after {
1731
1582
  content: '';
1583
+ margin-top: -0.409em;
1732
1584
  display: block;
1733
- height: 0;
1734
- width: 0;
1735
- margin-top: -0.43125em;
1736
1585
  }
1737
1586
  }
1738
1587
 
@@ -1740,25 +1589,22 @@ exports[`Article should render tile and sub title 1`] = `
1740
1589
  .emotion-76 {
1741
1590
  font-family: "DM Sans",sans-serif;
1742
1591
  font-size: 18px;
1743
- line-height: 1.5555555555555556;
1592
+ line-height: 27px;
1744
1593
  font-weight: 400;
1745
- letter-spacing: -0.5px;
1594
+ letter-spacing: 0;
1595
+ padding: 0.5px 0px;
1746
1596
  }
1747
1597
 
1748
1598
  .emotion-76::before {
1749
1599
  content: '';
1600
+ margin-bottom: -0.391em;
1750
1601
  display: block;
1751
- height: 0;
1752
- width: 0;
1753
- margin-bottom: -0.4590277777777778em;
1754
1602
  }
1755
1603
 
1756
1604
  .emotion-76::after {
1757
1605
  content: '';
1606
+ margin-top: -0.409em;
1758
1607
  display: block;
1759
- height: 0;
1760
- width: 0;
1761
- margin-top: -0.4590277777777778em;
1762
1608
  }
1763
1609
  }
1764
1610
 
@@ -1803,33 +1649,26 @@ exports[`Article should render tile and sub title 1`] = `
1803
1649
  margin-right: calc(32px/2);
1804
1650
  }
1805
1651
 
1806
- .emotion-115 {
1807
- padding: 1px 0px;
1808
- }
1809
-
1810
1652
  @media screen and (max-width: 767px) {
1811
1653
  .emotion-115 {
1812
1654
  font-family: "Bitter",serif;
1813
1655
  font-size: 20px;
1814
- line-height: 1.2;
1656
+ line-height: 22.5px;
1815
1657
  font-weight: 500;
1816
- letter-spacing: -0.5px;
1658
+ letter-spacing: 0;
1659
+ padding: 0.5px 0px;
1817
1660
  }
1818
1661
 
1819
1662
  .emotion-115::before {
1820
1663
  content: '';
1664
+ margin-bottom: -0.2055em;
1821
1665
  display: block;
1822
- height: 0;
1823
- width: 0;
1824
- margin-bottom: -0.25em;
1825
1666
  }
1826
1667
 
1827
1668
  .emotion-115::after {
1828
1669
  content: '';
1670
+ margin-top: -0.2275em;
1829
1671
  display: block;
1830
- height: 0;
1831
- width: 0;
1832
- margin-top: -0.3125em;
1833
1672
  }
1834
1673
  }
1835
1674
 
@@ -1837,25 +1676,22 @@ exports[`Article should render tile and sub title 1`] = `
1837
1676
  .emotion-115 {
1838
1677
  font-family: "Bitter",serif;
1839
1678
  font-size: 22px;
1840
- line-height: 1.0909090909090908;
1679
+ line-height: 24.75px;
1841
1680
  font-weight: 500;
1842
- letter-spacing: -0.5px;
1681
+ letter-spacing: 0;
1682
+ padding: 0.5px 0px;
1843
1683
  }
1844
1684
 
1845
1685
  .emotion-115::before {
1846
1686
  content: '';
1687
+ margin-bottom: -0.2055em;
1847
1688
  display: block;
1848
- height: 0;
1849
- width: 0;
1850
- margin-bottom: -0.19545454545454544em;
1851
1689
  }
1852
1690
 
1853
1691
  .emotion-115::after {
1854
1692
  content: '';
1693
+ margin-top: -0.2275em;
1855
1694
  display: block;
1856
- height: 0;
1857
- width: 0;
1858
- margin-top: -0.25795454545454544em;
1859
1695
  }
1860
1696
  }
1861
1697
 
@@ -1863,25 +1699,22 @@ exports[`Article should render tile and sub title 1`] = `
1863
1699
  .emotion-115 {
1864
1700
  font-family: "Bitter",serif;
1865
1701
  font-size: 24px;
1866
- line-height: 1.1666666666666667;
1702
+ line-height: 27px;
1867
1703
  font-weight: 500;
1868
- letter-spacing: -0.5px;
1704
+ letter-spacing: 0;
1705
+ padding: 0.5px 0px;
1869
1706
  }
1870
1707
 
1871
1708
  .emotion-115::before {
1872
1709
  content: '';
1710
+ margin-bottom: -0.2055em;
1873
1711
  display: block;
1874
- height: 0;
1875
- width: 0;
1876
- margin-bottom: -0.2333333333333334em;
1877
1712
  }
1878
1713
 
1879
1714
  .emotion-115::after {
1880
1715
  content: '';
1716
+ margin-top: -0.2275em;
1881
1717
  display: block;
1882
- height: 0;
1883
- width: 0;
1884
- margin-top: -0.2958333333333334em;
1885
1718
  }
1886
1719
  }
1887
1720
 
@@ -2001,29 +1834,31 @@ exports[`Article should render tile and sub title 1`] = `
2001
1834
  margin-right: calc(-4px/2);
2002
1835
  }
2003
1836
 
1837
+ .emotion-124 {
1838
+ margin: 0;
1839
+ display: inline-block;
1840
+ }
1841
+
2004
1842
  @media screen and (max-width: 767px) {
2005
1843
  .emotion-124 {
2006
1844
  font-family: "Poppins",sans-serif;
2007
1845
  font-size: 12px;
2008
- line-height: 1.6666666666666667;
1846
+ line-height: 18px;
2009
1847
  font-weight: 500;
2010
- letter-spacing: -0.5px;
1848
+ letter-spacing: 0;
1849
+ padding: 0.5px 0px;
2011
1850
  }
2012
1851
 
2013
1852
  .emotion-124::before {
2014
1853
  content: '';
1854
+ margin-bottom: -0.403em;
2015
1855
  display: block;
2016
- height: 0;
2017
- width: 0;
2018
- margin-bottom: -0.5145833333333334em;
2019
1856
  }
2020
1857
 
2021
1858
  .emotion-124::after {
2022
1859
  content: '';
1860
+ margin-top: -0.4em;
2023
1861
  display: block;
2024
- height: 0;
2025
- width: 0;
2026
- margin-top: -0.5145833333333334em;
2027
1862
  }
2028
1863
  }
2029
1864
 
@@ -2031,25 +1866,22 @@ exports[`Article should render tile and sub title 1`] = `
2031
1866
  .emotion-124 {
2032
1867
  font-family: "Poppins",sans-serif;
2033
1868
  font-size: 14px;
2034
- line-height: 1.4285714285714286;
1869
+ line-height: 21px;
2035
1870
  font-weight: 500;
2036
- letter-spacing: -0.5px;
1871
+ letter-spacing: 0;
1872
+ padding: 0.5px 0px;
2037
1873
  }
2038
1874
 
2039
1875
  .emotion-124::before {
2040
1876
  content: '';
1877
+ margin-bottom: -0.403em;
2041
1878
  display: block;
2042
- height: 0;
2043
- width: 0;
2044
- margin-bottom: -0.3955357142857143em;
2045
1879
  }
2046
1880
 
2047
1881
  .emotion-124::after {
2048
1882
  content: '';
1883
+ margin-top: -0.4em;
2049
1884
  display: block;
2050
- height: 0;
2051
- width: 0;
2052
- margin-top: -0.3955357142857143em;
2053
1885
  }
2054
1886
  }
2055
1887
 
@@ -2057,25 +1889,22 @@ exports[`Article should render tile and sub title 1`] = `
2057
1889
  .emotion-124 {
2058
1890
  font-family: "Poppins",sans-serif;
2059
1891
  font-size: 16px;
2060
- line-height: 1.5;
1892
+ line-height: 24px;
2061
1893
  font-weight: 500;
2062
- letter-spacing: -0.5px;
1894
+ letter-spacing: 0;
1895
+ padding: 0.5px 0px;
2063
1896
  }
2064
1897
 
2065
1898
  .emotion-124::before {
2066
1899
  content: '';
1900
+ margin-bottom: -0.403em;
2067
1901
  display: block;
2068
- height: 0;
2069
- width: 0;
2070
- margin-bottom: -0.43125em;
2071
1902
  }
2072
1903
 
2073
1904
  .emotion-124::after {
2074
1905
  content: '';
1906
+ margin-top: -0.4em;
2075
1907
  display: block;
2076
- height: 0;
2077
- width: 0;
2078
- margin-top: -0.43125em;
2079
1908
  }
2080
1909
  }
2081
1910
 
@@ -2161,33 +1990,26 @@ exports[`Article should render tile and sub title 1`] = `
2161
1990
  }
2162
1991
  }
2163
1992
 
2164
- .emotion-139 {
2165
- padding: 1px 0px;
2166
- }
2167
-
2168
1993
  @media screen and (max-width: 1439px) {
2169
1994
  .emotion-139 {
2170
1995
  font-family: "Bitter",serif;
2171
1996
  font-size: 24px;
2172
- line-height: 1.1666666666666667;
1997
+ line-height: 27px;
2173
1998
  font-weight: 500;
2174
- letter-spacing: -0.5px;
1999
+ letter-spacing: 0;
2000
+ padding: 0.5px 0px;
2175
2001
  }
2176
2002
 
2177
2003
  .emotion-139::before {
2178
2004
  content: '';
2005
+ margin-bottom: -0.2055em;
2179
2006
  display: block;
2180
- height: 0;
2181
- width: 0;
2182
- margin-bottom: -0.2333333333333334em;
2183
2007
  }
2184
2008
 
2185
2009
  .emotion-139::after {
2186
2010
  content: '';
2011
+ margin-top: -0.2275em;
2187
2012
  display: block;
2188
- height: 0;
2189
- width: 0;
2190
- margin-top: -0.2958333333333334em;
2191
2013
  }
2192
2014
  }
2193
2015
 
@@ -2195,25 +2017,22 @@ exports[`Article should render tile and sub title 1`] = `
2195
2017
  .emotion-139 {
2196
2018
  font-family: "Bitter",serif;
2197
2019
  font-size: 28px;
2198
- line-height: 1.1428571428571428;
2020
+ line-height: 31.5px;
2199
2021
  font-weight: 500;
2200
- letter-spacing: -0.5px;
2022
+ letter-spacing: 0;
2023
+ padding: 0.5px 0px;
2201
2024
  }
2202
2025
 
2203
2026
  .emotion-139::before {
2204
2027
  content: '';
2028
+ margin-bottom: -0.2055em;
2205
2029
  display: block;
2206
- height: 0;
2207
- width: 0;
2208
- margin-bottom: -0.22142857142857142em;
2209
2030
  }
2210
2031
 
2211
2032
  .emotion-139::after {
2212
2033
  content: '';
2034
+ margin-top: -0.2275em;
2213
2035
  display: block;
2214
- height: 0;
2215
- width: 0;
2216
- margin-top: -0.2839285714285714em;
2217
2036
  }
2218
2037
  }
2219
2038
 
@@ -2274,6 +2093,10 @@ exports[`Article should render tile and sub title 1`] = `
2274
2093
 
2275
2094
  .emotion-143 {
2276
2095
  margin-right: 16px;
2096
+ -webkit-box-flex: 1;
2097
+ -webkit-flex-grow: 1;
2098
+ -ms-flex-positive: 1;
2099
+ flex-grow: 1;
2277
2100
  }
2278
2101
 
2279
2102
  @media screen {
@@ -2350,27 +2173,26 @@ exports[`Article should render tile and sub title 1`] = `
2350
2173
  }
2351
2174
 
2352
2175
  .emotion-150 {
2176
+ margin: 0;
2353
2177
  font-family: "Poppins",sans-serif;
2354
2178
  font-size: 14px;
2355
- line-height: 1.4285714285714286;
2179
+ line-height: 21px;
2356
2180
  font-weight: 500;
2357
- letter-spacing: -0.5px;
2181
+ letter-spacing: 0;
2182
+ padding: 0.5px 0px;
2183
+ display: inline-block;
2358
2184
  }
2359
2185
 
2360
2186
  .emotion-150::before {
2361
2187
  content: '';
2188
+ margin-bottom: -0.403em;
2362
2189
  display: block;
2363
- height: 0;
2364
- width: 0;
2365
- margin-bottom: -0.3955357142857143em;
2366
2190
  }
2367
2191
 
2368
2192
  .emotion-150::after {
2369
2193
  content: '';
2194
+ margin-top: -0.4em;
2370
2195
  display: block;
2371
- height: 0;
2372
- width: 0;
2373
- margin-top: -0.3955357142857143em;
2374
2196
  }
2375
2197
 
2376
2198
  .emotion-152 {
@@ -2608,33 +2430,26 @@ exports[`Article should render tile and sub title 1`] = `
2608
2430
  z-index: 1;
2609
2431
  }
2610
2432
 
2611
- .emotion-167 {
2612
- padding: 1px 0px;
2613
- }
2614
-
2615
2433
  @media screen and (max-width: 1439px) {
2616
2434
  .emotion-167 {
2617
2435
  font-family: "Bitter",serif;
2618
2436
  font-size: 24px;
2619
- line-height: 1.1666666666666667;
2437
+ line-height: 27px;
2620
2438
  font-weight: 500;
2621
- letter-spacing: -0.5px;
2439
+ letter-spacing: 0;
2440
+ padding: 0.5px 0px;
2622
2441
  }
2623
2442
 
2624
2443
  .emotion-167::before {
2625
2444
  content: '';
2445
+ margin-bottom: -0.2055em;
2626
2446
  display: block;
2627
- height: 0;
2628
- width: 0;
2629
- margin-bottom: -0.2333333333333334em;
2630
2447
  }
2631
2448
 
2632
2449
  .emotion-167::after {
2633
2450
  content: '';
2451
+ margin-top: -0.2275em;
2634
2452
  display: block;
2635
- height: 0;
2636
- width: 0;
2637
- margin-top: -0.2958333333333334em;
2638
2453
  }
2639
2454
  }
2640
2455
 
@@ -2642,25 +2457,22 @@ exports[`Article should render tile and sub title 1`] = `
2642
2457
  .emotion-167 {
2643
2458
  font-family: "Bitter",serif;
2644
2459
  font-size: 20px;
2645
- line-height: 1.2;
2460
+ line-height: 22.5px;
2646
2461
  font-weight: 500;
2647
- letter-spacing: -0.5px;
2462
+ letter-spacing: 0;
2463
+ padding: 0.5px 0px;
2648
2464
  }
2649
2465
 
2650
2466
  .emotion-167::before {
2651
2467
  content: '';
2468
+ margin-bottom: -0.2055em;
2652
2469
  display: block;
2653
- height: 0;
2654
- width: 0;
2655
- margin-bottom: -0.25em;
2656
2470
  }
2657
2471
 
2658
2472
  .emotion-167::after {
2659
2473
  content: '';
2474
+ margin-top: -0.2275em;
2660
2475
  display: block;
2661
- height: 0;
2662
- width: 0;
2663
- margin-top: -0.3125em;
2664
2476
  }
2665
2477
  }
2666
2478
 
@@ -2743,33 +2555,26 @@ exports[`Article should render tile and sub title 1`] = `
2743
2555
  align-self: center;
2744
2556
  }
2745
2557
 
2746
- .emotion-199 {
2747
- padding: 1px 0px;
2748
- }
2749
-
2750
2558
  @media screen and (max-width: 767px) {
2751
2559
  .emotion-199 {
2752
2560
  font-family: "Bitter",serif;
2753
2561
  font-size: 28px;
2754
- line-height: 1.1428571428571428;
2562
+ line-height: 31.5px;
2755
2563
  font-weight: 500;
2756
- letter-spacing: -0.5px;
2564
+ letter-spacing: 0;
2565
+ padding: 0.5px 0px;
2757
2566
  }
2758
2567
 
2759
2568
  .emotion-199::before {
2760
2569
  content: '';
2570
+ margin-bottom: -0.2055em;
2761
2571
  display: block;
2762
- height: 0;
2763
- width: 0;
2764
- margin-bottom: -0.22142857142857142em;
2765
2572
  }
2766
2573
 
2767
2574
  .emotion-199::after {
2768
2575
  content: '';
2576
+ margin-top: -0.2275em;
2769
2577
  display: block;
2770
- height: 0;
2771
- width: 0;
2772
- margin-top: -0.2839285714285714em;
2773
2578
  }
2774
2579
  }
2775
2580
 
@@ -2777,25 +2582,22 @@ exports[`Article should render tile and sub title 1`] = `
2777
2582
  .emotion-199 {
2778
2583
  font-family: "Bitter",serif;
2779
2584
  font-size: 32px;
2780
- line-height: 1.125;
2585
+ line-height: 36px;
2781
2586
  font-weight: 500;
2782
- letter-spacing: -0.5px;
2587
+ letter-spacing: 0;
2588
+ padding: 0.5px 0px;
2783
2589
  }
2784
2590
 
2785
2591
  .emotion-199::before {
2786
2592
  content: '';
2593
+ margin-bottom: -0.2055em;
2787
2594
  display: block;
2788
- height: 0;
2789
- width: 0;
2790
- margin-bottom: -0.21250000000000002em;
2791
2595
  }
2792
2596
 
2793
2597
  .emotion-199::after {
2794
2598
  content: '';
2599
+ margin-top: -0.2275em;
2795
2600
  display: block;
2796
- height: 0;
2797
- width: 0;
2798
- margin-top: -0.275em;
2799
2601
  }
2800
2602
  }
2801
2603
 
@@ -2803,25 +2605,22 @@ exports[`Article should render tile and sub title 1`] = `
2803
2605
  .emotion-199 {
2804
2606
  font-family: "Bitter",serif;
2805
2607
  font-size: 36px;
2806
- line-height: 1.1111111111111112;
2608
+ line-height: 40.5px;
2807
2609
  font-weight: 500;
2808
- letter-spacing: -0.5px;
2610
+ letter-spacing: 0;
2611
+ padding: 0.5px 0px;
2809
2612
  }
2810
2613
 
2811
2614
  .emotion-199::before {
2812
2615
  content: '';
2616
+ margin-bottom: -0.2055em;
2813
2617
  display: block;
2814
- height: 0;
2815
- width: 0;
2816
- margin-bottom: -0.2055555555555556em;
2817
2618
  }
2818
2619
 
2819
2620
  .emotion-199::after {
2820
2621
  content: '';
2622
+ margin-top: -0.2275em;
2821
2623
  display: block;
2822
- height: 0;
2823
- width: 0;
2824
- margin-top: -0.2680555555555556em;
2825
2624
  }
2826
2625
  }
2827
2626
 
@@ -2928,33 +2727,26 @@ exports[`Article should render tile and sub title 1`] = `
2928
2727
  }
2929
2728
  }
2930
2729
 
2931
- .emotion-221 {
2932
- padding: 1px 0px;
2933
- }
2934
-
2935
2730
  @media screen and (max-width: 767px) {
2936
2731
  .emotion-221 {
2937
2732
  font-family: "Bitter",serif;
2938
2733
  font-size: 20px;
2939
- line-height: 1.2;
2734
+ line-height: 22.5px;
2940
2735
  font-weight: 500;
2941
- letter-spacing: -0.5px;
2736
+ letter-spacing: 0;
2737
+ padding: 0.5px 0px;
2942
2738
  }
2943
2739
 
2944
2740
  .emotion-221::before {
2945
2741
  content: '';
2742
+ margin-bottom: -0.2055em;
2946
2743
  display: block;
2947
- height: 0;
2948
- width: 0;
2949
- margin-bottom: -0.25em;
2950
2744
  }
2951
2745
 
2952
2746
  .emotion-221::after {
2953
2747
  content: '';
2748
+ margin-top: -0.2275em;
2954
2749
  display: block;
2955
- height: 0;
2956
- width: 0;
2957
- margin-top: -0.3125em;
2958
2750
  }
2959
2751
  }
2960
2752
 
@@ -2962,25 +2754,22 @@ exports[`Article should render tile and sub title 1`] = `
2962
2754
  .emotion-221 {
2963
2755
  font-family: "Bitter",serif;
2964
2756
  font-size: 22px;
2965
- line-height: 1.0909090909090908;
2757
+ line-height: 24.75px;
2966
2758
  font-weight: 500;
2967
- letter-spacing: -0.5px;
2759
+ letter-spacing: 0;
2760
+ padding: 0.5px 0px;
2968
2761
  }
2969
2762
 
2970
2763
  .emotion-221::before {
2971
2764
  content: '';
2765
+ margin-bottom: -0.2055em;
2972
2766
  display: block;
2973
- height: 0;
2974
- width: 0;
2975
- margin-bottom: -0.19545454545454544em;
2976
2767
  }
2977
2768
 
2978
2769
  .emotion-221::after {
2979
2770
  content: '';
2771
+ margin-top: -0.2275em;
2980
2772
  display: block;
2981
- height: 0;
2982
- width: 0;
2983
- margin-top: -0.25795454545454544em;
2984
2773
  }
2985
2774
  }
2986
2775
 
@@ -2988,31 +2777,27 @@ exports[`Article should render tile and sub title 1`] = `
2988
2777
  .emotion-221 {
2989
2778
  font-family: "Bitter",serif;
2990
2779
  font-size: 24px;
2991
- line-height: 1.1666666666666667;
2780
+ line-height: 27px;
2992
2781
  font-weight: 500;
2993
- letter-spacing: -0.5px;
2782
+ letter-spacing: 0;
2783
+ padding: 0.5px 0px;
2994
2784
  }
2995
2785
 
2996
2786
  .emotion-221::before {
2997
2787
  content: '';
2788
+ margin-bottom: -0.2055em;
2998
2789
  display: block;
2999
- height: 0;
3000
- width: 0;
3001
- margin-bottom: -0.2333333333333334em;
3002
2790
  }
3003
2791
 
3004
2792
  .emotion-221::after {
3005
2793
  content: '';
2794
+ margin-top: -0.2275em;
3006
2795
  display: block;
3007
- height: 0;
3008
- width: 0;
3009
- margin-top: -0.2958333333333334em;
3010
2796
  }
3011
2797
  }
3012
2798
 
3013
2799
  .emotion-224 {
3014
2800
  margin: 0;
3015
- padding: 1px 0;
3016
2801
  color: #0A0A0A;
3017
2802
  }
3018
2803
 
@@ -3024,25 +2809,22 @@ exports[`Article should render tile and sub title 1`] = `
3024
2809
  .emotion-224 {
3025
2810
  font-family: "DM Sans",sans-serif;
3026
2811
  font-size: 14px;
3027
- line-height: 1.4285714285714286;
2812
+ line-height: 21px;
3028
2813
  font-weight: 400;
3029
- letter-spacing: -0.5px;
2814
+ letter-spacing: 0;
2815
+ padding: 0.5px 0px;
3030
2816
  }
3031
2817
 
3032
2818
  .emotion-224::before {
3033
2819
  content: '';
2820
+ margin-bottom: -0.391em;
3034
2821
  display: block;
3035
- height: 0;
3036
- width: 0;
3037
- margin-bottom: -0.3955357142857143em;
3038
2822
  }
3039
2823
 
3040
2824
  .emotion-224::after {
3041
2825
  content: '';
2826
+ margin-top: -0.409em;
3042
2827
  display: block;
3043
- height: 0;
3044
- width: 0;
3045
- margin-top: -0.3955357142857143em;
3046
2828
  }
3047
2829
  }
3048
2830
 
@@ -3050,25 +2832,22 @@ exports[`Article should render tile and sub title 1`] = `
3050
2832
  .emotion-224 {
3051
2833
  font-family: "DM Sans",sans-serif;
3052
2834
  font-size: 16px;
3053
- line-height: 1.5;
2835
+ line-height: 24px;
3054
2836
  font-weight: 400;
3055
- letter-spacing: -0.5px;
2837
+ letter-spacing: 0;
2838
+ padding: 0.5px 0px;
3056
2839
  }
3057
2840
 
3058
2841
  .emotion-224::before {
3059
2842
  content: '';
2843
+ margin-bottom: -0.391em;
3060
2844
  display: block;
3061
- height: 0;
3062
- width: 0;
3063
- margin-bottom: -0.43125em;
3064
2845
  }
3065
2846
 
3066
2847
  .emotion-224::after {
3067
2848
  content: '';
2849
+ margin-top: -0.409em;
3068
2850
  display: block;
3069
- height: 0;
3070
- width: 0;
3071
- margin-top: -0.43125em;
3072
2851
  }
3073
2852
  }
3074
2853
 
@@ -4554,30 +4333,26 @@ exports[`Article should render tile and sub title 1`] = `
4554
4333
 
4555
4334
  .emotion-12 {
4556
4335
  margin: 0;
4557
- padding: 1px 0;
4558
4336
  font-family: "DM Sans",sans-serif;
4559
4337
  font-size: 14px;
4560
- line-height: 1.4285714285714286;
4338
+ line-height: 21px;
4561
4339
  font-weight: 500;
4562
- letter-spacing: -0.5px;
4340
+ letter-spacing: 0;
4341
+ padding: 0.5px 0px;
4563
4342
  display: inline-block;
4564
4343
  display: block;
4565
4344
  }
4566
4345
 
4567
4346
  .emotion-12::before {
4568
4347
  content: '';
4348
+ margin-bottom: -0.391em;
4569
4349
  display: block;
4570
- height: 0;
4571
- width: 0;
4572
- margin-bottom: -0.3955357142857143em;
4573
4350
  }
4574
4351
 
4575
4352
  .emotion-12::after {
4576
4353
  content: '';
4354
+ margin-top: -0.409em;
4577
4355
  display: block;
4578
- height: 0;
4579
- width: 0;
4580
- margin-top: -0.3955357142857143em;
4581
4356
  }
4582
4357
 
4583
4358
  .emotion-35 {
@@ -4585,9 +4360,9 @@ exports[`Article should render tile and sub title 1`] = `
4585
4360
  color: #535353;
4586
4361
  font-family: "DM Sans",sans-serif;
4587
4362
  font-size: 14px;
4588
- line-height: 1.4285714285714286;
4363
+ line-height: 1.5;
4589
4364
  font-weight: 500;
4590
- letter-spacing: -0.5px;
4365
+ letter-spacing: 0;
4591
4366
  }
4592
4367
 
4593
4368
  .emotion-35 svg {
@@ -4772,7 +4547,7 @@ exports[`Article should render tile and sub title 1`] = `
4772
4547
  <p
4773
4548
  class="emotion-35"
4774
4549
  >
4775
- Copyright © 2020 News Corp. All rights reserved.
4550
+ Copyright © YYYY News Corp. All rights reserved.
4776
4551
  </p>
4777
4552
  </div>
4778
4553
  </div>