@total_onion/onion-library 1.0.35 → 1.0.37

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.
@@ -0,0 +1,1930 @@
1
+ // LIBRARY FILE - Do not modify/override here as your changes will be lost when the package is updated.
2
+ @use 'Assets/scss/theme/breakpoints';
3
+ @use 'Assets/scss/modules/library-modules/core-functions/core-functions';
4
+ @use 'sass:math';
5
+
6
+ @mixin textStyle() {
7
+ font-weight: var(--font-weight, var(--default-font-weight));
8
+ text-align: var(--text-align);
9
+ text-transform: var(--text-transform);
10
+ color: var(--text-colour);
11
+ }
12
+
13
+ @mixin device($size: '768px', $type: 'min-width') {
14
+ // @container (min-width: #{$size}) {
15
+ // @content;
16
+ // }
17
+ @media screen and (#{$type}: #{$size}) {
18
+ @content;
19
+ }
20
+ }
21
+
22
+ @mixin defaultThemeTextColours() {
23
+ color: var(--default-text-colour-mobile, var(--theme-primary-text-colour));
24
+
25
+ @include device(breakpoints.$tabPortrait) {
26
+ color: var(
27
+ --default-text-colour-portrait,
28
+ var(--default-text-colour-desktop)
29
+ );
30
+ }
31
+
32
+ @include device(breakpoints.$tabLandscape) {
33
+ color: var(
34
+ --default-text-colour-desktop,
35
+ var(--theme-primary-text-colour)
36
+ );
37
+ }
38
+ }
39
+ @mixin defaultTextTransform() {
40
+ text-transform: var(--default-text-transform-mobile);
41
+
42
+ @include device(breakpoints.$tabPortrait) {
43
+ text-transform: var(
44
+ --default-text-transform-portrait,
45
+ var(--default-text-transform-desktop)
46
+ );
47
+ }
48
+
49
+ @include device(breakpoints.$tabLandscape) {
50
+ text-transform: var(--default-text-transform-desktop);
51
+ }
52
+ }
53
+ @mixin defaultTextAlign() {
54
+ text-align: var(--default-text-align-mobile);
55
+
56
+ @include device(breakpoints.$tabPortrait) {
57
+ text-align: var(
58
+ --default-text-align-portrait,
59
+ var(--default-text-align-desktop)
60
+ );
61
+ }
62
+
63
+ @include device(breakpoints.$tabLandscape) {
64
+ text-align: var(--default-text-align-desktop);
65
+ }
66
+ }
67
+ @mixin defaultFontWeight() {
68
+ font-weight: var(--default-font-weight-mobile, var(--default-font-weight));
69
+
70
+ @include device(breakpoints.$tabPortrait) {
71
+ font-weight: var(
72
+ --default-font-weight-portrait,
73
+ var(--default-font-weight)
74
+ );
75
+ }
76
+
77
+ @include device(breakpoints.$tabLandscape) {
78
+ font-weight: var(
79
+ --default-font-weight-desktop,
80
+ var(--default-font-weight)
81
+ );
82
+ }
83
+ }
84
+
85
+ @mixin defaultFontStyle() {
86
+ font-style: var(--default-font-style-mobile);
87
+
88
+ @include device(breakpoints.$tabPortrait) {
89
+ font-style: var(
90
+ --default-font-style-portrait,
91
+ var(--default-font-style-desktop)
92
+ );
93
+ }
94
+
95
+ @include device(breakpoints.$tabLandscape) {
96
+ font-style: var(--default-font-style-desktop);
97
+ }
98
+ }
99
+
100
+ @mixin contentMaxWidth() {
101
+ @include device(breakpoints.$tabLandscape) {
102
+ max-width: var(--global-content-max-width);
103
+ margin-left: auto;
104
+ margin-right: auto;
105
+ }
106
+ }
107
+
108
+ @mixin responsiveShowHide($defaultDisplay: block) {
109
+ display: var(--display-mobile, $defaultDisplay);
110
+
111
+ @include device(breakpoints.$tabPortrait) {
112
+ display: var(--display-portrait, $defaultDisplay);
113
+ }
114
+
115
+ @include device(breakpoints.$tabLandscape) {
116
+ display: var(--display-desktop, $defaultDisplay);
117
+ }
118
+ }
119
+
120
+ @mixin lockPosition() {
121
+ overflow: hidden;
122
+ touch-action: none;
123
+ -webkit-overflow-scrolling: none;
124
+ overscroll-behavior: none;
125
+ }
126
+
127
+ @mixin contentImage() {
128
+ place-self: var(--image-position-vertical) var(--image-position-horizontal);
129
+ width: 100%;
130
+ translate: var(--image-position-offset-horizontal)
131
+ var(--image-position-offset-vertical);
132
+ rotate: var(--image-rotation);
133
+ z-index: -1;
134
+ border-radius: var(--content-image-border-radius);
135
+ max-width: core-functions.fluidSize(
136
+ var(--image-max-width-mobile),
137
+ 'portrait'
138
+ );
139
+
140
+ @include device(breakpoints.$tabPortrait) {
141
+ max-width: core-functions.fluidSize(
142
+ var(--image-max-width-portrait),
143
+ 'portrait'
144
+ );
145
+ }
146
+
147
+ @include device(breakpoints.$tabLandscape) {
148
+ max-width: core-functions.fluidSize(
149
+ var(--image-max-width-landscape),
150
+ 'landscape'
151
+ );
152
+ }
153
+
154
+ @include device(breakpoints.$desktop) {
155
+ max-width: core-functions.fluidSize(
156
+ var(--image-max-width-desktop),
157
+ 'desktop'
158
+ );
159
+ }
160
+ }
161
+
162
+ @mixin boxShadow() {
163
+ box-shadow: core-functions.fluidSize(var(--box-shadow-offset-x), 'static')
164
+ core-functions.fluidSize(var(--box-shadow-offset-y), 'static')
165
+ core-functions.fluidSize(var(--box-shadow-blur), 'static')
166
+ core-functions.fluidSize(var(--box-shadow-spread), 'static')
167
+ var(--box-shadow-colour) var(--box-shadow-position);
168
+ &:hover {
169
+ box-shadow: core-functions.fluidSize(
170
+ var(--box-shadow-hover-offset-x),
171
+ 'static'
172
+ )
173
+ core-functions.fluidSize(var(--box-shadow-hover-offset-y), 'static')
174
+ core-functions.fluidSize(var(--box-shadow-hover-blur), 'static')
175
+ core-functions.fluidSize(var(--box-shadow-hover-spread), 'static')
176
+ var(--box-shadow-hover-colour) var(--box-shadow-hover-position);
177
+ }
178
+ }
179
+
180
+ @mixin textShadow() {
181
+ text-shadow: core-functions.fluidSize(var(--text-shadow-offset-x), 'static')
182
+ core-functions.fluidSize(var(--text-shadow-offset-y), 'static')
183
+ core-functions.fluidSize(var(--text-shadow-blur), 'static')
184
+ var(--text-shadow-colour);
185
+ }
186
+
187
+ //Typography Mixins
188
+ @mixin h1-l {
189
+ letter-spacing: var(--h1-l-letter-spacing);
190
+ line-height: var(--h1-l-line-height);
191
+ font-family: var(--h1-l-font-family);
192
+ --default-font-weight: var(--h1-l-default-font-weight);
193
+ font-weight: var(--default-font-weight);
194
+
195
+ strong,
196
+ b {
197
+ font-weight: var(--h1-l-bold-font-weight);
198
+ }
199
+
200
+ font-size: clamp(
201
+ var(--h-xl-font-size-min-mobile, 10px),
202
+ core-functions.fontSize(var(--h1-l-mobile), 'mobile'),
203
+ var(--h-xl-font-size-max-mobile, 180px)
204
+ );
205
+
206
+ @include device(breakpoints.$tabPortrait) {
207
+ font-size: clamp(
208
+ var(--h-xl-font-size-min-mobile, 10px),
209
+ core-functions.fontSize(var(--h1-l-portrait), 'portrait'),
210
+ var(--h-xl-font-size-max-mobile, 180px)
211
+ );
212
+ }
213
+
214
+ @include device(breakpoints.$tabLandscape) {
215
+ font-size: clamp(
216
+ var(--h-xl-font-size-min-desktop, 10px),
217
+ core-functions.fontSize(var(--h1-l-landscape), 'landscape'),
218
+ var(--h-xl-font-size-max-desktop, 180px)
219
+ );
220
+ }
221
+
222
+ @include device(breakpoints.$desktop) {
223
+ font-size: clamp(
224
+ var(--h-xl-font-size-min-desktop, 10px),
225
+ core-functions.fontSize(var(--h1-l-desktop), 'desktop'),
226
+ var(--h-xl-font-size-max-desktop, 180px)
227
+ );
228
+ }
229
+ }
230
+ @mixin h-x-large {
231
+ letter-spacing: var(--h1-l-letter-spacing);
232
+ line-height: var(--h1-l-line-height);
233
+ font-family: var(--h1-l-font-family);
234
+ --default-font-weight: var(--h1-l-default-font-weight);
235
+ font-weight: var(--default-font-weight);
236
+
237
+ strong,
238
+ b {
239
+ font-weight: var(--h1-l-bold-font-weight);
240
+ }
241
+
242
+ font-size: clamp(
243
+ var(--h-xl-font-size-min-mobile, 10px),
244
+ core-functions.fontSize(var(--h1-l-mobile), 'mobile'),
245
+ var(--h-xl-font-size-max-mobile, 180px)
246
+ );
247
+
248
+ @include device(breakpoints.$tabPortrait) {
249
+ font-size: clamp(
250
+ var(--h-xl-font-size-min-mobile, 10px),
251
+ core-functions.fontSize(var(--h1-l-portrait), 'portrait'),
252
+ var(--h-xl-font-size-max-mobile, 180px)
253
+ );
254
+ }
255
+
256
+ @include device(breakpoints.$tabLandscape) {
257
+ font-size: clamp(
258
+ var(--h-xl-font-size-min-desktop, 10px),
259
+ core-functions.fontSize(var(--h1-l-landscape), 'landscape'),
260
+ var(--h-xl-font-size-max-desktop, 180px)
261
+ );
262
+ }
263
+
264
+ @include device(breakpoints.$desktop) {
265
+ font-size: clamp(
266
+ var(--h-xl-font-size-min-desktop, 10px),
267
+ core-functions.fontSize(var(--h1-l-desktop), 'desktop'),
268
+ var(--h-xl-font-size-max-desktop, 180px)
269
+ );
270
+ }
271
+ }
272
+
273
+ @mixin h1 {
274
+ letter-spacing: var(--h1-letter-spacing);
275
+ line-height: var(--h1-line-height);
276
+ font-family: var(--h1-font-family);
277
+ --default-font-weight: var(--h1-default-font-weight);
278
+ font-weight: var(--default-font-weight);
279
+
280
+ strong,
281
+ b {
282
+ font-weight: var(--h1-bold-font-weight);
283
+ }
284
+
285
+ font-size: clamp(
286
+ var(--h-l-font-size-min-mobile, 10px),
287
+ core-functions.fontSize(var(--h1-mobile), 'mobile'),
288
+ var(--h-l-font-size-max-mobile, 180px)
289
+ );
290
+
291
+ @include device(breakpoints.$tabPortrait) {
292
+ font-size: clamp(
293
+ var(--h-l-font-size-min-mobile, 10px),
294
+ core-functions.fontSize(var(--h1-portrait), 'portrait'),
295
+ var(--h-l-font-size-max-mobile, 180px)
296
+ );
297
+ }
298
+
299
+ @include device(breakpoints.$tabLandscape) {
300
+ font-size: clamp(
301
+ var(--h-l-font-size-min-desktop, 10px),
302
+ core-functions.fontSize(var(--h1-landscape), 'landscape'),
303
+ var(--h-l-font-size-max-desktop, 180px)
304
+ );
305
+ }
306
+
307
+ @include device(breakpoints.$desktop) {
308
+ font-size: clamp(
309
+ var(--h-l-font-size-min-desktop, 10px),
310
+ core-functions.fontSize(var(--h1-desktop), 'desktop'),
311
+ var(--h-l-font-size-max-desktop, 180px)
312
+ );
313
+ }
314
+ }
315
+ @mixin h-large {
316
+ letter-spacing: var(--h1-letter-spacing);
317
+ line-height: var(--h1-line-height);
318
+ font-family: var(--h1-font-family);
319
+ --default-font-weight: var(--h1-default-font-weight);
320
+ font-weight: var(--default-font-weight);
321
+
322
+ strong,
323
+ b {
324
+ font-weight: var(--h1-bold-font-weight);
325
+ }
326
+
327
+ font-size: clamp(
328
+ var(--h-l-font-size-min-mobile, 10px),
329
+ core-functions.fontSize(var(--h1-mobile), 'mobile'),
330
+ var(--h-l-font-size-max-mobile, 180px)
331
+ );
332
+
333
+ @include device(breakpoints.$tabPortrait) {
334
+ font-size: clamp(
335
+ var(--h-l-font-size-min-mobile, 10px),
336
+ core-functions.fontSize(var(--h1-portrait), 'portrait'),
337
+ var(--h-l-font-size-max-mobile, 180px)
338
+ );
339
+ }
340
+
341
+ @include device(breakpoints.$tabLandscape) {
342
+ font-size: clamp(
343
+ var(--h-l-font-size-min-desktop, 10px),
344
+ core-functions.fontSize(var(--h1-landscape), 'landscape'),
345
+ var(--h-l-font-size-max-desktop, 180px)
346
+ );
347
+ }
348
+
349
+ @include device(breakpoints.$desktop) {
350
+ font-size: clamp(
351
+ var(--h-l-font-size-min-desktop, 10px),
352
+ core-functions.fontSize(var(--h1-desktop), 'desktop'),
353
+ var(--h-l-font-size-max-desktop, 180px)
354
+ );
355
+ }
356
+ }
357
+
358
+ @mixin h2 {
359
+ letter-spacing: var(--h2-letter-spacing);
360
+ line-height: var(--h2-line-height);
361
+ font-family: var(--h2-font-family);
362
+ --default-font-weight: var(--h2-default-font-weight);
363
+ font-weight: var(--default-font-weight);
364
+
365
+ strong,
366
+ b {
367
+ font-weight: var(--h2-bold-font-weight);
368
+ }
369
+
370
+ font-size: clamp(
371
+ var(--h-m-font-size-min-mobile, 10px),
372
+ core-functions.fontSize(var(--h2-mobile), 'mobile'),
373
+ var(--h-m-font-size-max-mobile, 180px)
374
+ );
375
+
376
+ @include device(breakpoints.$tabPortrait) {
377
+ font-size: clamp(
378
+ var(--h-m-font-size-min-mobile, 10px),
379
+ core-functions.fontSize(var(--h2-portrait), 'portrait'),
380
+ var(--h-m-font-size-max-mobile, 180px)
381
+ );
382
+ }
383
+
384
+ @include device(breakpoints.$tabLandscape) {
385
+ font-size: clamp(
386
+ var(--h-m-font-size-min-desktop, 10px),
387
+ core-functions.fontSize(var(--h2-landscape), 'landscape'),
388
+ var(--h-m-font-size-max-desktop, 180px)
389
+ );
390
+ }
391
+
392
+ @include device(breakpoints.$desktop) {
393
+ font-size: clamp(
394
+ var(--h-m-font-size-min-desktop, 10px),
395
+ core-functions.fontSize(var(--h2-desktop), 'desktop'),
396
+ var(--h-m-font-size-max-desktop, 180px)
397
+ );
398
+ }
399
+ }
400
+ @mixin h-medium {
401
+ letter-spacing: var(--h2-letter-spacing);
402
+ line-height: var(--h2-line-height);
403
+ font-family: var(--h2-font-family);
404
+ --default-font-weight: var(--h2-default-font-weight);
405
+ font-weight: var(--default-font-weight);
406
+
407
+ strong,
408
+ b {
409
+ font-weight: var(--h2-bold-font-weight);
410
+ }
411
+
412
+ font-size: clamp(
413
+ var(--h-m-font-size-min-mobile, 10px),
414
+ core-functions.fontSize(var(--h2-mobile), 'mobile'),
415
+ var(--h-m-font-size-max-mobile, 180px)
416
+ );
417
+
418
+ @include device(breakpoints.$tabPortrait) {
419
+ font-size: clamp(
420
+ var(--h-m-font-size-min-mobile, 10px),
421
+ core-functions.fontSize(var(--h2-portrait), 'portrait'),
422
+ var(--h-m-font-size-max-mobile, 180px)
423
+ );
424
+ }
425
+
426
+ @include device(breakpoints.$tabLandscape) {
427
+ font-size: clamp(
428
+ var(--h-m-font-size-min-desktop, 10px),
429
+ core-functions.fontSize(var(--h2-landscape), 'landscape'),
430
+ var(--h-m-font-size-max-desktop, 180px)
431
+ );
432
+ }
433
+
434
+ @include device(breakpoints.$desktop) {
435
+ font-size: clamp(
436
+ var(--h-m-font-size-min-desktop, 10px),
437
+ core-functions.fontSize(var(--h2-desktop), 'desktop'),
438
+ var(--h-m-font-size-max-desktop, 180px)
439
+ );
440
+ }
441
+ }
442
+
443
+ @mixin h3 {
444
+ letter-spacing: var(--h3-letter-spacing);
445
+ line-height: var(--h3-line-height);
446
+ font-family: var(--h3-font-family);
447
+ --default-font-weight: var(--h3-default-font-weight);
448
+ font-weight: var(--default-font-weight);
449
+
450
+ strong,
451
+ b {
452
+ font-weight: var(--h3-bold-font-weight);
453
+ }
454
+
455
+ font-size: clamp(
456
+ var(--h-s-font-size-min-mobile, 10px),
457
+ core-functions.fontSize(var(--h3-mobile), 'mobile'),
458
+ var(--h-s-font-size-max-mobile, 180px)
459
+ );
460
+
461
+ @include device(breakpoints.$tabPortrait) {
462
+ font-size: clamp(
463
+ var(--h-s-font-size-min-mobile, 10px),
464
+ core-functions.fontSize(var(--h3-portrait), 'portrait'),
465
+ var(--h-s-font-size-max-mobile, 180px)
466
+ );
467
+ }
468
+
469
+ @include device(breakpoints.$tabLandscape) {
470
+ font-size: clamp(
471
+ var(--h-s-font-size-min-desktop, 10px),
472
+ core-functions.fontSize(var(--h3-landscape), 'landscape'),
473
+ var(--h-s-font-size-max-desktop, 180px)
474
+ );
475
+ }
476
+
477
+ @include device(breakpoints.$desktop) {
478
+ font-size: clamp(
479
+ var(--h-s-font-size-min-desktop, 10px),
480
+ core-functions.fontSize(var(--h3-desktop), 'desktop'),
481
+ var(--h-s-font-size-max-desktop, 180px)
482
+ );
483
+ }
484
+ }
485
+ @mixin h-small {
486
+ letter-spacing: var(--h3-letter-spacing);
487
+ line-height: var(--h3-line-height);
488
+ font-family: var(--h3-font-family);
489
+ --default-font-weight: var(--h3-default-font-weight);
490
+ font-weight: var(--default-font-weight);
491
+
492
+ strong,
493
+ b {
494
+ font-weight: var(--h3-bold-font-weight);
495
+ }
496
+
497
+ font-size: clamp(
498
+ var(--h-s-font-size-min-mobile, 10px),
499
+ core-functions.fontSize(var(--h3-mobile), 'mobile'),
500
+ var(--h-s-font-size-max-mobile, 180px)
501
+ );
502
+
503
+ @include device(breakpoints.$tabPortrait) {
504
+ font-size: clamp(
505
+ var(--h-s-font-size-min-mobile, 10px),
506
+ core-functions.fontSize(var(--h3-portrait), 'portrait'),
507
+ var(--h-s-font-size-max-mobile, 180px)
508
+ );
509
+ }
510
+
511
+ @include device(breakpoints.$tabLandscape) {
512
+ font-size: clamp(
513
+ var(--h-s-font-size-min-desktop, 10px),
514
+ core-functions.fontSize(var(--h3-landscape), 'landscape'),
515
+ var(--h-s-font-size-max-desktop, 180px)
516
+ );
517
+ }
518
+
519
+ @include device(breakpoints.$desktop) {
520
+ font-size: clamp(
521
+ var(--h-s-font-size-min-desktop, 10px),
522
+ core-functions.fontSize(var(--h3-desktop), 'desktop'),
523
+ var(--h-s-font-size-max-desktop, 180px)
524
+ );
525
+ }
526
+ }
527
+
528
+ @mixin h4 {
529
+ letter-spacing: var(--h4-letter-spacing);
530
+ line-height: var(--h4-line-height);
531
+ font-family: var(--h4-font-family);
532
+ --default-font-weight: var(--h4-default-font-weight);
533
+ font-weight: var(--default-font-weight);
534
+
535
+ strong,
536
+ b {
537
+ font-weight: var(--h4-bold-font-weight);
538
+ }
539
+
540
+ font-size: clamp(
541
+ var(--h-xs-font-size-min-mobile, 10px),
542
+ core-functions.fontSize(var(--h4-mobile), 'mobile'),
543
+ var(--h-xs-font-size-max-mobile, 180px)
544
+ );
545
+
546
+ @include device(breakpoints.$tabPortrait) {
547
+ font-size: clamp(
548
+ var(--h-xs-font-size-min-mobile, 10px),
549
+ core-functions.fontSize(var(--h4-portrait), 'portrait'),
550
+ var(--h-xs-font-size-max-mobile, 180px)
551
+ );
552
+ }
553
+
554
+ @include device(breakpoints.$tabLandscape) {
555
+ font-size: clamp(
556
+ var(--h-xs-font-size-min-desktop, 10px),
557
+ core-functions.fontSize(var(--h4-landscape), 'landscape'),
558
+ var(--h-xs-font-size-max-desktop, 180px)
559
+ );
560
+ }
561
+
562
+ @include device(breakpoints.$desktop) {
563
+ font-size: clamp(
564
+ var(--h-xs-font-size-min-desktop, 10px),
565
+ core-functions.fontSize(var(--h4-desktop), 'desktop'),
566
+ var(--h-xs-font-size-max-desktop, 180px)
567
+ );
568
+ }
569
+ }
570
+ @mixin h-x-small {
571
+ letter-spacing: var(--h4-letter-spacing);
572
+ line-height: var(--h4-line-height);
573
+ font-family: var(--h4-font-family);
574
+ --default-font-weight: var(--h4-default-font-weight);
575
+ font-weight: var(--default-font-weight);
576
+
577
+ strong,
578
+ b {
579
+ font-weight: var(--h4-bold-font-weight);
580
+ }
581
+
582
+ font-size: clamp(
583
+ var(--h-xs-font-size-min-mobile, 10px),
584
+ core-functions.fontSize(var(--h4-mobile), 'mobile'),
585
+ var(--h-xs-font-size-max-mobile, 180px)
586
+ );
587
+
588
+ @include device(breakpoints.$tabPortrait) {
589
+ font-size: clamp(
590
+ var(--h-xs-font-size-min-mobile, 10px),
591
+ core-functions.fontSize(var(--h4-portrait), 'portrait'),
592
+ var(--h-xs-font-size-max-mobile, 180px)
593
+ );
594
+ }
595
+
596
+ @include device(breakpoints.$tabLandscape) {
597
+ font-size: clamp(
598
+ var(--h-xs-font-size-min-desktop, 10px),
599
+ core-functions.fontSize(var(--h4-landscape), 'landscape'),
600
+ var(--h-xs-font-size-max-desktop, 180px)
601
+ );
602
+ }
603
+
604
+ @include device(breakpoints.$desktop) {
605
+ font-size: clamp(
606
+ var(--h-xs-font-size-min-desktop, 10px),
607
+ core-functions.fontSize(var(--h4-desktop), 'desktop'),
608
+ var(--h-xs-font-size-max-desktop, 180px)
609
+ );
610
+ }
611
+ }
612
+
613
+ @mixin h5 {
614
+ letter-spacing: var(--h5-letter-spacing);
615
+ line-height: var(--h5-line-height);
616
+ font-family: var(--h5-font-family);
617
+ --default-font-weight: var(--h5-default-font-weight);
618
+ font-weight: var(--default-font-weight);
619
+
620
+ strong,
621
+ b {
622
+ font-weight: var(--h5-bold-font-weight);
623
+ }
624
+
625
+ font-size: clamp(
626
+ var(--h-xxs-font-size-min-mobile, 10px),
627
+ core-functions.fontSize(var(--h5-mobile), 'mobile'),
628
+ var(--h-xxs-font-size-max-mobile, 180px)
629
+ );
630
+
631
+ @include device(breakpoints.$tabPortrait) {
632
+ font-size: clamp(
633
+ var(--h-xxs-font-size-min-mobile, 10px),
634
+ core-functions.fontSize(var(--h5-portrait), 'portrait'),
635
+ var(--h-xxs-font-size-max-mobile, 180px)
636
+ );
637
+ }
638
+
639
+ @include device(breakpoints.$tabLandscape) {
640
+ font-size: clamp(
641
+ var(--h-xxs-font-size-min-desktop, 10px),
642
+ core-functions.fontSize(var(--h5-landscape), 'landscape'),
643
+ var(--h-xxs-font-size-max-desktop, 180px)
644
+ );
645
+ }
646
+
647
+ @include device(breakpoints.$desktop) {
648
+ font-size: clamp(
649
+ var(--h-xxs-font-size-min-desktop, 10px),
650
+ core-functions.fontSize(var(--h5-desktop), 'desktop'),
651
+ var(--h-xxs-font-size-max-desktop, 180px)
652
+ );
653
+ }
654
+ }
655
+ @mixin h-xx-small {
656
+ letter-spacing: var(--h5-letter-spacing);
657
+ line-height: var(--h5-line-height);
658
+ font-family: var(--h5-font-family);
659
+ --default-font-weight: var(--h5-default-font-weight);
660
+ font-weight: var(--default-font-weight);
661
+
662
+ strong,
663
+ b {
664
+ font-weight: var(--h5-bold-font-weight);
665
+ }
666
+
667
+ font-size: clamp(
668
+ var(--h-xxs-font-size-min-mobile, 10px),
669
+ core-functions.fontSize(var(--h5-mobile), 'mobile'),
670
+ var(--h-xxs-font-size-max-mobile, 180px)
671
+ );
672
+
673
+ @include device(breakpoints.$tabPortrait) {
674
+ font-size: clamp(
675
+ var(--h-xxs-font-size-min-mobile, 10px),
676
+ core-functions.fontSize(var(--h5-portrait), 'portrait'),
677
+ var(--h-xxs-font-size-max-mobile, 180px)
678
+ );
679
+ }
680
+
681
+ @include device(breakpoints.$tabLandscape) {
682
+ font-size: clamp(
683
+ var(--h-xxs-font-size-min-desktop, 10px),
684
+ core-functions.fontSize(var(--h5-landscape), 'landscape'),
685
+ var(--h-xxs-font-size-max-desktop, 180px)
686
+ );
687
+ }
688
+
689
+ @include device(breakpoints.$desktop) {
690
+ font-size: clamp(
691
+ var(--h-xxs-font-size-min-desktop, 10px),
692
+ core-functions.fontSize(var(--h5-desktop), 'desktop'),
693
+ var(--h-xxs-font-size-max-desktop, 180px)
694
+ );
695
+ }
696
+ }
697
+
698
+ @mixin h6 {
699
+ letter-spacing: var(--h6-letter-spacing);
700
+ line-height: var(--h6-line-height);
701
+ font-family: var(--h6-font-family);
702
+ --default-font-weight: var(--h6-default-font-weight);
703
+ font-weight: var(--default-font-weight);
704
+
705
+ strong,
706
+ b {
707
+ font-weight: var(--h6-bold-font-weight);
708
+ }
709
+
710
+ font-size: clamp(
711
+ var(--h-xxxs-font-size-min-mobile, 10px),
712
+ core-functions.fontSize(var(--h6-mobile), 'mobile'),
713
+ var(--h-xxxs-font-size-max-mobile, 180px)
714
+ );
715
+
716
+ @include device(breakpoints.$tabPortrait) {
717
+ font-size: clamp(
718
+ var(--h-xxxs-font-size-min-mobile, 10px),
719
+ core-functions.fontSize(var(--h6-portrait), 'portrait'),
720
+ var(--h-xxxs-font-size-max-mobile, 180px)
721
+ );
722
+ }
723
+
724
+ @include device(breakpoints.$tabLandscape) {
725
+ font-size: clamp(
726
+ var(--h-xxxs-font-size-min-desktop, 10px),
727
+ core-functions.fontSize(var(--h6-landscape), 'landscape'),
728
+ var(--h-xxxs-font-size-max-desktop, 180px)
729
+ );
730
+ }
731
+
732
+ @include device(breakpoints.$desktop) {
733
+ font-size: clamp(
734
+ var(--h-xxxs-font-size-min-desktop, 10px),
735
+ core-functions.fontSize(var(--h6-desktop), 'desktop'),
736
+ var(--h-xxxs-font-size-max-desktop, 180px)
737
+ );
738
+ }
739
+ }
740
+ @mixin h-xxx-small {
741
+ letter-spacing: var(--h6-letter-spacing);
742
+ line-height: var(--h6-line-height);
743
+ font-family: var(--h6-font-family);
744
+ --default-font-weight: var(--h6-default-font-weight);
745
+ font-weight: var(--default-font-weight);
746
+
747
+ strong,
748
+ b {
749
+ font-weight: var(--h6-bold-font-weight);
750
+ }
751
+
752
+ font-size: clamp(
753
+ var(--h-xxxs-font-size-min-mobile, 10px),
754
+ core-functions.fontSize(var(--h6-mobile), 'mobile'),
755
+ var(--h-xxxs-font-size-max-mobile, 180px)
756
+ );
757
+
758
+ @include device(breakpoints.$tabPortrait) {
759
+ font-size: clamp(
760
+ var(--h-xxxs-font-size-min-mobile, 10px),
761
+ core-functions.fontSize(var(--h6-portrait), 'portrait'),
762
+ var(--h-xxxs-font-size-max-mobile, 180px)
763
+ );
764
+ }
765
+
766
+ @include device(breakpoints.$tabLandscape) {
767
+ font-size: clamp(
768
+ var(--h-xxxs-font-size-min-desktop, 10px),
769
+ core-functions.fontSize(var(--h6-landscape), 'landscape'),
770
+ var(--h-xxxs-font-size-max-desktop, 180px)
771
+ );
772
+ }
773
+
774
+ @include device(breakpoints.$desktop) {
775
+ font-size: clamp(
776
+ var(--h-xxxs-font-size-min-desktop, 10px),
777
+ core-functions.fontSize(var(--h6-desktop), 'desktop'),
778
+ var(--h-xxxs-font-size-max-desktop, 180px)
779
+ );
780
+ }
781
+ }
782
+
783
+ @mixin sh1 {
784
+ letter-spacing: var(--sh1-letter-spacing);
785
+ line-height: var(--sh1-line-height);
786
+ font-family: var(--sh1-font-family);
787
+ --default-font-weight: var(--sh1-default-font-weight);
788
+ font-weight: var(--default-font-weight);
789
+
790
+ strong,
791
+ b {
792
+ font-weight: var(--sh1-bold-font-weight);
793
+ }
794
+
795
+ font-size: clamp(
796
+ var(--sh-xl-font-size-min-mobile, 10px),
797
+ core-functions.fontSize(var(--sh1-mobile), 'mobile'),
798
+ var(--sh-xl-font-size-max-mobile, 180px)
799
+ );
800
+
801
+ @include device(breakpoints.$tabPortrait) {
802
+ font-size: clamp(
803
+ var(--sh-xl-font-size-min-mobile, 10px),
804
+ core-functions.fontSize(var(--sh1-portrait), 'portrait'),
805
+ var(--sh-xl-font-size-max-mobile, 180px)
806
+ );
807
+ }
808
+
809
+ @include device(breakpoints.$tabLandscape) {
810
+ font-size: clamp(
811
+ var(--sh-xl-font-size-min-desktop, 10px),
812
+ core-functions.fontSize(var(--sh1-landscape), 'landscape'),
813
+ var(--sh-xl-font-size-max-desktop, 180px)
814
+ );
815
+ }
816
+
817
+ @include device(breakpoints.$desktop) {
818
+ font-size: clamp(
819
+ var(--sh-xl-font-size-min-desktop, 10px),
820
+ core-functions.fontSize(var(--sh1-desktop), 'desktop'),
821
+ var(--sh-xl-font-size-max-desktop, 180px)
822
+ );
823
+ }
824
+ }
825
+ @mixin sh-x-large {
826
+ letter-spacing: var(--sh1-letter-spacing);
827
+ line-height: var(--sh1-line-height);
828
+ font-family: var(--sh1-font-family);
829
+ --default-font-weight: var(--sh1-default-font-weight);
830
+ font-weight: var(--default-font-weight);
831
+
832
+ strong,
833
+ b {
834
+ font-weight: var(--sh1-bold-font-weight);
835
+ }
836
+
837
+ font-size: clamp(
838
+ var(--sh-xl-font-size-min-mobile, 10px),
839
+ core-functions.fontSize(var(--sh1-mobile), 'mobile'),
840
+ var(--sh-xl-font-size-max-mobile, 180px)
841
+ );
842
+
843
+ @include device(breakpoints.$tabPortrait) {
844
+ font-size: clamp(
845
+ var(--sh-xl-font-size-min-mobile, 10px),
846
+ core-functions.fontSize(var(--sh1-portrait), 'portrait'),
847
+ var(--sh-xl-font-size-max-mobile, 180px)
848
+ );
849
+ }
850
+
851
+ @include device(breakpoints.$tabLandscape) {
852
+ font-size: clamp(
853
+ var(--sh-xl-font-size-min-desktop, 10px),
854
+ core-functions.fontSize(var(--sh1-landscape), 'landscape'),
855
+ var(--sh-xl-font-size-max-desktop, 180px)
856
+ );
857
+ }
858
+
859
+ @include device(breakpoints.$desktop) {
860
+ font-size: clamp(
861
+ var(--sh-xl-font-size-min-desktop, 10px),
862
+ core-functions.fontSize(var(--sh1-desktop), 'desktop'),
863
+ var(--sh-xl-font-size-max-desktop, 180px)
864
+ );
865
+ }
866
+ }
867
+
868
+ @mixin sh2 {
869
+ letter-spacing: var(--sh2-letter-spacing);
870
+ line-height: var(--sh2-line-height);
871
+ font-family: var(--sh2-font-family);
872
+ --default-font-weight: var(--sh2-default-font-weight);
873
+ font-weight: var(--default-font-weight);
874
+
875
+ strong,
876
+ b {
877
+ font-weight: var(--sh2-bold-font-weight);
878
+ }
879
+
880
+ font-size: clamp(
881
+ var(--sh-l-font-size-min-mobile, 10px),
882
+ core-functions.fontSize(var(--sh2-mobile), 'mobile'),
883
+ var(--sh-l-font-size-max-mobile, 180px)
884
+ );
885
+
886
+ @include device(breakpoints.$tabPortrait) {
887
+ font-size: clamp(
888
+ var(--sh-l-font-size-min-mobile, 10px),
889
+ core-functions.fontSize(var(--sh2-portrait), 'portrait'),
890
+ var(--sh-l-font-size-max-mobile, 180px)
891
+ );
892
+ }
893
+
894
+ @include device(breakpoints.$tabLandscape) {
895
+ font-size: clamp(
896
+ var(--sh-l-font-size-min-desktop, 10px),
897
+ core-functions.fontSize(var(--sh2-landscape), 'landscape'),
898
+ var(--sh-l-font-size-max-desktop, 180px)
899
+ );
900
+ }
901
+
902
+ @include device(breakpoints.$desktop) {
903
+ font-size: clamp(
904
+ var(--sh-l-font-size-min-desktop, 10px),
905
+ core-functions.fontSize(var(--sh2-desktop), 'desktop'),
906
+ var(--sh-l-font-size-max-desktop, 180px)
907
+ );
908
+ }
909
+ }
910
+ @mixin sh-large {
911
+ letter-spacing: var(--sh2-letter-spacing);
912
+ line-height: var(--sh2-line-height);
913
+ font-family: var(--sh2-font-family);
914
+ --default-font-weight: var(--sh2-default-font-weight);
915
+ font-weight: var(--default-font-weight);
916
+
917
+ strong,
918
+ b {
919
+ font-weight: var(--sh2-bold-font-weight);
920
+ }
921
+
922
+ font-size: clamp(
923
+ var(--sh-l-font-size-min-mobile, 10px),
924
+ core-functions.fontSize(var(--sh2-mobile), 'mobile'),
925
+ var(--sh-l-font-size-max-mobile, 180px)
926
+ );
927
+
928
+ @include device(breakpoints.$tabPortrait) {
929
+ font-size: clamp(
930
+ var(--sh-l-font-size-min-mobile, 10px),
931
+ core-functions.fontSize(var(--sh2-portrait), 'portrait'),
932
+ var(--sh-l-font-size-max-mobile, 180px)
933
+ );
934
+ }
935
+
936
+ @include device(breakpoints.$tabLandscape) {
937
+ font-size: clamp(
938
+ var(--sh-l-font-size-min-desktop, 10px),
939
+ core-functions.fontSize(var(--sh2-landscape), 'landscape'),
940
+ var(--sh-l-font-size-max-desktop, 180px)
941
+ );
942
+ }
943
+
944
+ @include device(breakpoints.$desktop) {
945
+ font-size: clamp(
946
+ var(--sh-l-font-size-min-desktop, 10px),
947
+ core-functions.fontSize(var(--sh2-desktop), 'desktop'),
948
+ var(--sh-l-font-size-max-desktop, 180px)
949
+ );
950
+ }
951
+ }
952
+
953
+ @mixin sh3 {
954
+ letter-spacing: var(--sh3-letter-spacing);
955
+ line-height: var(--sh3-line-height);
956
+ font-family: var(--sh3-font-family);
957
+ --default-font-weight: var(--sh3-default-font-weight);
958
+ font-weight: var(--default-font-weight);
959
+
960
+ strong,
961
+ b {
962
+ font-weight: var(--sh3-bold-font-weight);
963
+ }
964
+
965
+ font-size: clamp(
966
+ var(--sh-m-font-size-min-mobile, 10px),
967
+ core-functions.fontSize(var(--sh3-mobile), 'mobile'),
968
+ var(--sh-m-font-size-max-mobile, 180px)
969
+ );
970
+
971
+ @include device(breakpoints.$tabPortrait) {
972
+ font-size: clamp(
973
+ var(--sh-m-font-size-min-mobile, 10px),
974
+ core-functions.fontSize(var(--sh3-portrait), 'portrait'),
975
+ var(--sh-m-font-size-max-mobile, 180px)
976
+ );
977
+ }
978
+
979
+ @include device(breakpoints.$tabLandscape) {
980
+ font-size: clamp(
981
+ var(--sh-m-font-size-min-desktop, 10px),
982
+ core-functions.fontSize(var(--sh3-landscape), 'landscape'),
983
+ var(--sh-m-font-size-max-desktop, 180px)
984
+ );
985
+ }
986
+
987
+ @include device(breakpoints.$desktop) {
988
+ font-size: clamp(
989
+ var(--sh-m-font-size-min-desktop, 10px),
990
+ core-functions.fontSize(var(--sh3-desktop), 'desktop'),
991
+ var(--sh-m-font-size-max-desktop, 180px)
992
+ );
993
+ }
994
+ }
995
+ @mixin sh-medium {
996
+ letter-spacing: var(--sh3-letter-spacing);
997
+ line-height: var(--sh3-line-height);
998
+ font-family: var(--sh3-font-family);
999
+ --default-font-weight: var(--sh3-default-font-weight);
1000
+ font-weight: var(--default-font-weight);
1001
+
1002
+ strong,
1003
+ b {
1004
+ font-weight: var(--sh3-bold-font-weight);
1005
+ }
1006
+
1007
+ font-size: clamp(
1008
+ var(--sh-m-font-size-min-mobile, 10px),
1009
+ core-functions.fontSize(var(--sh3-mobile), 'mobile'),
1010
+ var(--sh-m-font-size-max-mobile, 180px)
1011
+ );
1012
+
1013
+ @include device(breakpoints.$tabPortrait) {
1014
+ font-size: clamp(
1015
+ var(--sh-m-font-size-min-mobile, 10px),
1016
+ core-functions.fontSize(var(--sh3-portrait), 'portrait'),
1017
+ var(--sh-m-font-size-max-mobile, 180px)
1018
+ );
1019
+ }
1020
+
1021
+ @include device(breakpoints.$tabLandscape) {
1022
+ font-size: clamp(
1023
+ var(--sh-m-font-size-min-desktop, 10px),
1024
+ core-functions.fontSize(var(--sh3-landscape), 'landscape'),
1025
+ var(--sh-m-font-size-max-desktop, 180px)
1026
+ );
1027
+ }
1028
+
1029
+ @include device(breakpoints.$desktop) {
1030
+ font-size: clamp(
1031
+ var(--sh-m-font-size-min-desktop, 10px),
1032
+ core-functions.fontSize(var(--sh3-desktop), 'desktop'),
1033
+ var(--sh-m-font-size-max-desktop, 180px)
1034
+ );
1035
+ }
1036
+ }
1037
+ @mixin sh4 {
1038
+ letter-spacing: var(--sh4-letter-spacing);
1039
+ line-height: var(--sh4-line-height);
1040
+ font-family: var(--sh4-font-family);
1041
+ --default-font-weight: var(--sh4-default-font-weight);
1042
+ font-weight: var(--default-font-weight);
1043
+
1044
+ strong,
1045
+ b {
1046
+ font-weight: var(--sh4-bold-font-weight);
1047
+ }
1048
+
1049
+ font-size: clamp(
1050
+ var(--sh-s-font-size-min-mobile, 10px),
1051
+ core-functions.fontSize(var(--sh4-mobile), 'mobile'),
1052
+ var(--sh-s-font-size-max-mobile, 180px)
1053
+ );
1054
+
1055
+ @include device(breakpoints.$tabPortrait) {
1056
+ font-size: clamp(
1057
+ var(--sh-s-font-size-min-mobile, 10px),
1058
+ core-functions.fontSize(var(--sh4-portrait), 'portrait'),
1059
+ var(--sh-s-font-size-max-mobile, 180px)
1060
+ );
1061
+ }
1062
+
1063
+ @include device(breakpoints.$tabLandscape) {
1064
+ font-size: clamp(
1065
+ var(--sh-s-font-size-min-desktop, 10px),
1066
+ core-functions.fontSize(var(--sh4-landscape), 'landscape'),
1067
+ var(--sh-s-font-size-max-desktop, 180px)
1068
+ );
1069
+ }
1070
+
1071
+ @include device(breakpoints.$desktop) {
1072
+ font-size: clamp(
1073
+ var(--sh-s-font-size-min-desktop, 10px),
1074
+ core-functions.fontSize(var(--sh4-desktop), 'desktop'),
1075
+ var(--sh-s-font-size-max-desktop, 180px)
1076
+ );
1077
+ }
1078
+ }
1079
+ @mixin sh-small {
1080
+ letter-spacing: var(--sh4-letter-spacing);
1081
+ line-height: var(--sh4-line-height);
1082
+ font-family: var(--sh4-font-family);
1083
+ --default-font-weight: var(--sh4-default-font-weight);
1084
+ font-weight: var(--default-font-weight);
1085
+
1086
+ strong,
1087
+ b {
1088
+ font-weight: var(--sh4-bold-font-weight);
1089
+ }
1090
+
1091
+ font-size: clamp(
1092
+ var(--sh-s-font-size-min-mobile, 10px),
1093
+ core-functions.fontSize(var(--sh4-mobile), 'mobile'),
1094
+ var(--sh-s-font-size-max-mobile, 180px)
1095
+ );
1096
+
1097
+ @include device(breakpoints.$tabPortrait) {
1098
+ font-size: clamp(
1099
+ var(--sh-s-font-size-min-mobile, 10px),
1100
+ core-functions.fontSize(var(--sh4-portrait), 'portrait'),
1101
+ var(--sh-s-font-size-max-mobile, 180px)
1102
+ );
1103
+ }
1104
+
1105
+ @include device(breakpoints.$tabLandscape) {
1106
+ font-size: clamp(
1107
+ var(--sh-s-font-size-min-desktop, 10px),
1108
+ core-functions.fontSize(var(--sh4-landscape), 'landscape'),
1109
+ var(--sh-s-font-size-max-desktop, 180px)
1110
+ );
1111
+ }
1112
+
1113
+ @include device(breakpoints.$desktop) {
1114
+ font-size: clamp(
1115
+ var(--sh-s-font-size-min-desktop, 10px),
1116
+ core-functions.fontSize(var(--sh4-desktop), 'desktop'),
1117
+ var(--sh-s-font-size-max-desktop, 180px)
1118
+ );
1119
+ }
1120
+ }
1121
+ @mixin sh5 {
1122
+ letter-spacing: var(--sh5-letter-spacing);
1123
+ line-height: var(--sh5-line-height);
1124
+ font-family: var(--sh5-font-family);
1125
+ --default-font-weight: var(--sh5-default-font-weight);
1126
+ font-weight: var(--default-font-weight);
1127
+
1128
+ strong,
1129
+ b {
1130
+ font-weight: var(--sh5-bold-font-weight);
1131
+ }
1132
+
1133
+ font-size: clamp(
1134
+ var(--sh-xs-font-size-min-mobile, 10px),
1135
+ core-functions.fontSize(var(--sh5-mobile), 'mobile'),
1136
+ var(--sh-xs-font-size-max-mobile, 180px)
1137
+ );
1138
+
1139
+ @include device(breakpoints.$tabPortrait) {
1140
+ font-size: clamp(
1141
+ var(--sh-xs-font-size-min-mobile, 10px),
1142
+ core-functions.fontSize(var(--sh5-portrait), 'portrait'),
1143
+ var(--sh-xs-font-size-max-mobile, 180px)
1144
+ );
1145
+ }
1146
+
1147
+ @include device(breakpoints.$tabLandscape) {
1148
+ font-size: clamp(
1149
+ var(--sh-xs-font-size-min-desktop, 10px),
1150
+ core-functions.fontSize(var(--sh5-landscape), 'landscape'),
1151
+ var(--sh-xs-font-size-max-desktop, 180px)
1152
+ );
1153
+ }
1154
+
1155
+ @include device(breakpoints.$desktop) {
1156
+ font-size: clamp(
1157
+ var(--sh-xs-font-size-min-desktop, 10px),
1158
+ core-functions.fontSize(var(--sh5-desktop), 'desktop'),
1159
+ var(--sh-xs-font-size-max-desktop, 180px)
1160
+ );
1161
+ }
1162
+ }
1163
+ @mixin sh-x-small {
1164
+ letter-spacing: var(--sh5-letter-spacing);
1165
+ line-height: var(--sh5-line-height);
1166
+ font-family: var(--sh5-font-family);
1167
+ --default-font-weight: var(--sh5-default-font-weight);
1168
+ font-weight: var(--default-font-weight);
1169
+
1170
+ strong,
1171
+ b {
1172
+ font-weight: var(--sh5-bold-font-weight);
1173
+ }
1174
+
1175
+ font-size: clamp(
1176
+ var(--sh-xs-font-size-min-mobile, 10px),
1177
+ core-functions.fontSize(var(--sh5-mobile), 'mobile'),
1178
+ var(--sh-xs-font-size-max-mobile, 180px)
1179
+ );
1180
+
1181
+ @include device(breakpoints.$tabPortrait) {
1182
+ font-size: clamp(
1183
+ var(--sh-xs-font-size-min-mobile, 10px),
1184
+ core-functions.fontSize(var(--sh5-portrait), 'portrait'),
1185
+ var(--sh-xs-font-size-max-mobile, 180px)
1186
+ );
1187
+ }
1188
+
1189
+ @include device(breakpoints.$tabLandscape) {
1190
+ font-size: clamp(
1191
+ var(--sh-xs-font-size-min-desktop, 10px),
1192
+ core-functions.fontSize(var(--sh5-landscape), 'landscape'),
1193
+ var(--sh-xs-font-size-max-desktop, 180px)
1194
+ );
1195
+ }
1196
+
1197
+ @include device(breakpoints.$desktop) {
1198
+ font-size: clamp(
1199
+ var(--sh-xs-font-size-min-desktop, 10px),
1200
+ core-functions.fontSize(var(--sh5-desktop), 'desktop'),
1201
+ var(--sh-xs-font-size-max-desktop, 180px)
1202
+ );
1203
+ }
1204
+ }
1205
+ @mixin sh6 {
1206
+ letter-spacing: var(--sh6-letter-spacing);
1207
+ line-height: var(--sh6-line-height);
1208
+ font-family: var(--sh6-font-family);
1209
+ --default-font-weight: var(--sh6-default-font-weight);
1210
+ font-weight: var(--default-font-weight);
1211
+
1212
+ strong,
1213
+ b {
1214
+ font-weight: var(--sh6-bold-font-weight);
1215
+ }
1216
+
1217
+ font-size: clamp(
1218
+ var(--sh-xxs-font-size-min-mobile, 10px),
1219
+ core-functions.fontSize(var(--sh6-mobile), 'mobile'),
1220
+ var(--sh-xxs-font-size-max-mobile, 180px)
1221
+ );
1222
+
1223
+ @include device(breakpoints.$tabPortrait) {
1224
+ font-size: clamp(
1225
+ var(--sh-xxs-font-size-min-mobile, 10px),
1226
+ core-functions.fontSize(var(--sh6-portrait), 'portrait'),
1227
+ var(--sh-xxs-font-size-max-mobile, 180px)
1228
+ );
1229
+ }
1230
+
1231
+ @include device(breakpoints.$tabLandscape) {
1232
+ font-size: clamp(
1233
+ var(--sh-xxs-font-size-min-desktop, 10px),
1234
+ core-functions.fontSize(var(--sh6-landscape), 'landscape'),
1235
+ var(--sh-xxs-font-size-max-desktop, 180px)
1236
+ );
1237
+ }
1238
+
1239
+ @include device(breakpoints.$desktop) {
1240
+ font-size: clamp(
1241
+ var(--sh-xxs-font-size-min-desktop, 10px),
1242
+ core-functions.fontSize(var(--sh6-desktop), 'desktop'),
1243
+ var(--sh-xxs-font-size-max-desktop, 180px)
1244
+ );
1245
+ }
1246
+ }
1247
+ @mixin sh-xx-small {
1248
+ letter-spacing: var(--sh6-letter-spacing);
1249
+ line-height: var(--sh6-line-height);
1250
+ font-family: var(--sh6-font-family);
1251
+ --default-font-weight: var(--sh6-default-font-weight);
1252
+ font-weight: var(--default-font-weight);
1253
+
1254
+ strong,
1255
+ b {
1256
+ font-weight: var(--sh6-bold-font-weight);
1257
+ }
1258
+
1259
+ font-size: clamp(
1260
+ var(--sh-xxs-font-size-min-mobile, 10px),
1261
+ core-functions.fontSize(var(--sh6-mobile), 'mobile'),
1262
+ var(--sh-xxs-font-size-max-mobile, 180px)
1263
+ );
1264
+
1265
+ @include device(breakpoints.$tabPortrait) {
1266
+ font-size: clamp(
1267
+ var(--sh-xxs-font-size-min-mobile, 10px),
1268
+ core-functions.fontSize(var(--sh6-portrait), 'portrait'),
1269
+ var(--sh-xxs-font-size-max-mobile, 180px)
1270
+ );
1271
+ }
1272
+
1273
+ @include device(breakpoints.$tabLandscape) {
1274
+ font-size: clamp(
1275
+ var(--sh-xxs-font-size-min-desktop, 10px),
1276
+ core-functions.fontSize(var(--sh6-landscape), 'landscape'),
1277
+ var(--sh-xxs-font-size-max-desktop, 180px)
1278
+ );
1279
+ }
1280
+
1281
+ @include device(breakpoints.$desktop) {
1282
+ font-size: clamp(
1283
+ var(--sh-xxs-font-size-min-desktop, 10px),
1284
+ core-functions.fontSize(var(--sh6-desktop), 'desktop'),
1285
+ var(--sh-xxs-font-size-max-desktop, 180px)
1286
+ );
1287
+ }
1288
+ }
1289
+
1290
+ @mixin p-l {
1291
+ line-height: var(--paragraph-line-height);
1292
+ letter-spacing: var(--paragraph-letter-spacing);
1293
+ font-family: var(--paragraph-font-family);
1294
+
1295
+ strong,
1296
+ b {
1297
+ font-weight: var(--paragraph-bold-font-weight);
1298
+ }
1299
+
1300
+ &:has(.font-tertiary) {
1301
+ line-height: calc(
1302
+ var(--paragraph-line-height) *
1303
+ var(--global-line-height-multiplier-tertiary)
1304
+ );
1305
+ }
1306
+
1307
+ em {
1308
+ font-style: italic;
1309
+ }
1310
+
1311
+ font-size: clamp(
1312
+ var(--p-l-font-size-min-mobile, 10px),
1313
+ core-functions.fontSize(var(--p-l-mobile), 'mobile'),
1314
+ var(--p-l-font-size-max-mobile, 180px)
1315
+ );
1316
+
1317
+ @include device(breakpoints.$tabPortrait) {
1318
+ font-size: clamp(
1319
+ var(--p-l-font-size-min-mobile, 10px),
1320
+ core-functions.fontSize(var(--p-l-portrait), 'portrait'),
1321
+ var(--p-l-font-size-max-mobile, 180px)
1322
+ );
1323
+ }
1324
+
1325
+ @include device(breakpoints.$tabLandscape) {
1326
+ font-size: clamp(
1327
+ var(--p-l-font-size-min-desktop, 10px),
1328
+ core-functions.fontSize(var(--p-l-landscape), 'landscape'),
1329
+ var(--p-l-font-size-max-desktop, 180px)
1330
+ );
1331
+ }
1332
+
1333
+ @include device(breakpoints.$desktop) {
1334
+ font-size: clamp(
1335
+ var(--p-l-font-size-min-desktop, 10px),
1336
+ core-functions.fontSize(var(--p-l-desktop), 'desktop'),
1337
+ var(--p-l-font-size-max-desktop, 180px)
1338
+ );
1339
+ }
1340
+ }
1341
+ @mixin p-large {
1342
+ line-height: var(--paragraph-line-height);
1343
+ letter-spacing: var(--paragraph-letter-spacing);
1344
+ font-family: var(--paragraph-font-family);
1345
+
1346
+ strong,
1347
+ b {
1348
+ font-weight: var(--paragraph-bold-font-weight);
1349
+ }
1350
+
1351
+ &:has(.font-tertiary) {
1352
+ line-height: calc(
1353
+ var(--paragraph-line-height) *
1354
+ var(--global-line-height-multiplier-tertiary)
1355
+ );
1356
+ }
1357
+
1358
+ em {
1359
+ font-style: italic;
1360
+ }
1361
+
1362
+ font-size: clamp(
1363
+ var(--p-l-font-size-min-mobile, 10px),
1364
+ core-functions.fontSize(var(--p-l-mobile), 'mobile'),
1365
+ var(--p-l-font-size-max-mobile, 180px)
1366
+ );
1367
+
1368
+ @include device(breakpoints.$tabPortrait) {
1369
+ font-size: clamp(
1370
+ var(--p-l-font-size-min-mobile, 10px),
1371
+ core-functions.fontSize(var(--p-l-portrait), 'portrait'),
1372
+ var(--p-l-font-size-max-mobile, 180px)
1373
+ );
1374
+ }
1375
+
1376
+ @include device(breakpoints.$tabLandscape) {
1377
+ font-size: clamp(
1378
+ var(--p-l-font-size-min-desktop, 10px),
1379
+ core-functions.fontSize(var(--p-l-landscape), 'landscape'),
1380
+ var(--p-l-font-size-max-desktop, 180px)
1381
+ );
1382
+ }
1383
+
1384
+ @include device(breakpoints.$desktop) {
1385
+ font-size: clamp(
1386
+ var(--p-l-font-size-min-desktop, 10px),
1387
+ core-functions.fontSize(var(--p-l-desktop), 'desktop'),
1388
+ var(--p-l-font-size-max-desktop, 180px)
1389
+ );
1390
+ }
1391
+ }
1392
+
1393
+ @mixin p {
1394
+ line-height: var(--paragraph-line-height);
1395
+ letter-spacing: var(--paragraph-letter-spacing);
1396
+ font-family: var(--paragraph-font-family);
1397
+ --default-font-weight: var(--paragraph-default-font-weight);
1398
+ font-weight: var(--default-font-weight);
1399
+
1400
+ strong,
1401
+ b {
1402
+ font-weight: var(--paragraph-bold-font-weight);
1403
+ }
1404
+
1405
+ &:has(.font-tertiary) {
1406
+ line-height: calc(
1407
+ var(--paragraph-line-height) *
1408
+ var(--global-line-height-multiplier-tertiary)
1409
+ );
1410
+ }
1411
+
1412
+ em {
1413
+ font-style: italic;
1414
+ }
1415
+
1416
+ font-size: clamp(
1417
+ var(--p-font-size-min-mobile, 10px),
1418
+ core-functions.fontSize(var(--p-mobile), 'mobile'),
1419
+ var(--p-font-size-max-mobile, 180px)
1420
+ );
1421
+
1422
+ @include device(breakpoints.$tabPortrait) {
1423
+ font-size: clamp(
1424
+ var(--p-font-size-min-mobile, 10px),
1425
+ core-functions.fontSize(var(--p-portrait), 'portrait'),
1426
+ var(--p-font-size-max-mobile, 180px)
1427
+ );
1428
+ }
1429
+
1430
+ @include device(breakpoints.$tabLandscape) {
1431
+ font-size: clamp(
1432
+ var(--p-font-size-min-desktop, 10px),
1433
+ core-functions.fontSize(var(--p-landscape), 'landscape'),
1434
+ var(--p-font-size-max-desktop, 180px)
1435
+ );
1436
+ }
1437
+
1438
+ @include device(breakpoints.$desktop) {
1439
+ font-size: clamp(
1440
+ var(--p-font-size-min-desktop, 10px),
1441
+ core-functions.fontSize(var(--p-desktop), 'desktop'),
1442
+ var(--p-font-size-max-desktop, 180px)
1443
+ );
1444
+ }
1445
+ }
1446
+ @mixin p-medium {
1447
+ line-height: var(--paragraph-line-height);
1448
+ letter-spacing: var(--paragraph-letter-spacing);
1449
+ font-family: var(--paragraph-font-family);
1450
+ --default-font-weight: var(--paragraph-default-font-weight);
1451
+ font-weight: var(--default-font-weight);
1452
+
1453
+ strong,
1454
+ b {
1455
+ font-weight: var(--paragraph-bold-font-weight);
1456
+ }
1457
+
1458
+ &:has(.font-tertiary) {
1459
+ line-height: calc(
1460
+ var(--paragraph-line-height) *
1461
+ var(--global-line-height-multiplier-tertiary)
1462
+ );
1463
+ }
1464
+
1465
+ em {
1466
+ font-style: italic;
1467
+ }
1468
+
1469
+ font-size: clamp(
1470
+ var(--p-font-size-min-mobile, 10px),
1471
+ core-functions.fontSize(var(--p-mobile), 'mobile'),
1472
+ var(--p-font-size-max-mobile, 180px)
1473
+ );
1474
+
1475
+ @include device(breakpoints.$tabPortrait) {
1476
+ font-size: clamp(
1477
+ var(--p-font-size-min-mobile, 10px),
1478
+ core-functions.fontSize(var(--p-portrait), 'portrait'),
1479
+ var(--p-font-size-max-mobile, 180px)
1480
+ );
1481
+ }
1482
+
1483
+ @include device(breakpoints.$tabLandscape) {
1484
+ font-size: clamp(
1485
+ var(--p-font-size-min-desktop, 10px),
1486
+ core-functions.fontSize(var(--p-landscape), 'landscape'),
1487
+ var(--p-font-size-max-desktop, 180px)
1488
+ );
1489
+ }
1490
+
1491
+ @include device(breakpoints.$desktop) {
1492
+ font-size: clamp(
1493
+ var(--p-font-size-min-desktop, 10px),
1494
+ core-functions.fontSize(var(--p-desktop), 'desktop'),
1495
+ var(--p-font-size-max-desktop, 180px)
1496
+ );
1497
+ }
1498
+ }
1499
+
1500
+ @mixin p-s {
1501
+ line-height: var(--paragraph-line-height);
1502
+ letter-spacing: var(--paragraph-letter-spacing);
1503
+ font-family: var(--paragraph-font-family);
1504
+
1505
+ strong,
1506
+ b {
1507
+ font-weight: var(--paragraph-bold-font-weight);
1508
+ }
1509
+
1510
+ &:has(.font-tertiary) {
1511
+ line-height: calc(
1512
+ var(--paragraph-line-height) *
1513
+ var(--global-line-height-multiplier-tertiary)
1514
+ );
1515
+ }
1516
+
1517
+ em {
1518
+ font-style: italic;
1519
+ }
1520
+
1521
+ font-size: clamp(
1522
+ var(--p-s-font-size-min-mobile, 10px),
1523
+ core-functions.fontSize(var(--p-s-mobile), 'mobile'),
1524
+ var(--p-s-font-size-max-mobile, 180px)
1525
+ );
1526
+
1527
+ @include device(breakpoints.$tabPortrait) {
1528
+ font-size: clamp(
1529
+ var(--p-s-font-size-min-mobile, 10px),
1530
+ core-functions.fontSize(var(--p-s-portrait), 'portrait'),
1531
+ var(--p-s-font-size-max-mobile, 180px)
1532
+ );
1533
+ }
1534
+
1535
+ @include device(breakpoints.$tabLandscape) {
1536
+ font-size: clamp(
1537
+ var(--p-s-font-size-min-desktop, 10px),
1538
+ core-functions.fontSize(var(--p-s-landscape), 'landscape'),
1539
+ var(--p-s-font-size-max-desktop, 180px)
1540
+ );
1541
+ }
1542
+
1543
+ @include device(breakpoints.$desktop) {
1544
+ font-size: clamp(
1545
+ var(--p-s-font-size-min-desktop, 10px),
1546
+ core-functions.fontSize(var(--p-s-desktop), 'desktop'),
1547
+ var(--p-s-font-size-max-desktop, 180px)
1548
+ );
1549
+ }
1550
+ }
1551
+ @mixin p-small {
1552
+ line-height: var(--paragraph-line-height);
1553
+ letter-spacing: var(--paragraph-letter-spacing);
1554
+ font-family: var(--paragraph-font-family);
1555
+
1556
+ strong,
1557
+ b {
1558
+ font-weight: var(--paragraph-bold-font-weight);
1559
+ }
1560
+
1561
+ &:has(.font-tertiary) {
1562
+ line-height: calc(
1563
+ var(--paragraph-line-height) *
1564
+ var(--global-line-height-multiplier-tertiary)
1565
+ );
1566
+ }
1567
+
1568
+ em {
1569
+ font-style: italic;
1570
+ }
1571
+
1572
+ font-size: clamp(
1573
+ var(--p-s-font-size-min-mobile, 10px),
1574
+ core-functions.fontSize(var(--p-s-mobile), 'mobile'),
1575
+ var(--p-s-font-size-max-mobile, 180px)
1576
+ );
1577
+
1578
+ @include device(breakpoints.$tabPortrait) {
1579
+ font-size: clamp(
1580
+ var(--p-s-font-size-min-mobile, 10px),
1581
+ core-functions.fontSize(var(--p-s-portrait), 'portrait'),
1582
+ var(--p-s-font-size-max-mobile, 180px)
1583
+ );
1584
+ }
1585
+
1586
+ @include device(breakpoints.$tabLandscape) {
1587
+ font-size: clamp(
1588
+ var(--p-s-font-size-min-desktop, 10px),
1589
+ core-functions.fontSize(var(--p-s-landscape), 'landscape'),
1590
+ var(--p-s-font-size-max-desktop, 180px)
1591
+ );
1592
+ }
1593
+
1594
+ @include device(breakpoints.$desktop) {
1595
+ font-size: clamp(
1596
+ var(--p-s-font-size-min-desktop, 10px),
1597
+ core-functions.fontSize(var(--p-s-desktop), 'desktop'),
1598
+ var(--p-s-font-size-max-desktop, 180px)
1599
+ );
1600
+ }
1601
+ }
1602
+
1603
+ @mixin p-xs {
1604
+ line-height: var(--paragraph-line-height);
1605
+ letter-spacing: var(--paragraph-letter-spacing);
1606
+ font-family: var(--paragraph-font-family);
1607
+
1608
+ strong,
1609
+ b {
1610
+ font-weight: var(--paragraph-bold-font-weight);
1611
+ }
1612
+
1613
+ &:has(.font-tertiary) {
1614
+ line-height: calc(
1615
+ var(--paragraph-line-height) *
1616
+ var(--global-line-height-multiplier-tertiary)
1617
+ );
1618
+ }
1619
+
1620
+ em {
1621
+ font-style: italic;
1622
+ }
1623
+
1624
+ font-size: clamp(
1625
+ var(--p-xs-font-size-min-mobile, 10px),
1626
+ core-functions.fontSize(var(--p-xs-mobile), 'mobile'),
1627
+ var(--p-xs-font-size-max-mobile, 180px)
1628
+ );
1629
+
1630
+ @include device(breakpoints.$tabPortrait) {
1631
+ font-size: clamp(
1632
+ var(--p-xs-font-size-min-mobile, 10px),
1633
+ core-functions.fontSize(var(--p-xs-portrait), 'portrait'),
1634
+ var(--p-xs-font-size-max-mobile, 180px)
1635
+ );
1636
+ }
1637
+
1638
+ @include device(breakpoints.$tabLandscape) {
1639
+ font-size: clamp(
1640
+ var(--p-xs-font-size-min-desktop, 10px),
1641
+ core-functions.fontSize(var(--p-xs-landscape), 'landscape'),
1642
+ var(--p-xs-font-size-max-desktop, 180px)
1643
+ );
1644
+ }
1645
+
1646
+ @include device(breakpoints.$desktop) {
1647
+ font-size: clamp(
1648
+ var(--p-xs-font-size-min-desktop, 10px),
1649
+ core-functions.fontSize(var(--p-xs-desktop), 'desktop'),
1650
+ var(--p-xs-font-size-max-desktop, 180px)
1651
+ );
1652
+ }
1653
+ }
1654
+ @mixin p-x-small {
1655
+ line-height: var(--paragraph-line-height);
1656
+ letter-spacing: var(--paragraph-letter-spacing);
1657
+ font-family: var(--paragraph-font-family);
1658
+
1659
+ strong,
1660
+ b {
1661
+ font-weight: var(--paragraph-bold-font-weight);
1662
+ }
1663
+
1664
+ &:has(.font-tertiary) {
1665
+ line-height: calc(
1666
+ var(--paragraph-line-height) *
1667
+ var(--global-line-height-multiplier-tertiary)
1668
+ );
1669
+ }
1670
+
1671
+ em {
1672
+ font-style: italic;
1673
+ }
1674
+
1675
+ font-size: clamp(
1676
+ var(--p-xs-font-size-min-mobile, 10px),
1677
+ core-functions.fontSize(var(--p-xs-mobile), 'mobile'),
1678
+ var(--p-xs-font-size-max-mobile, 180px)
1679
+ );
1680
+
1681
+ @include device(breakpoints.$tabPortrait) {
1682
+ font-size: clamp(
1683
+ var(--p-xs-font-size-min-mobile, 10px),
1684
+ core-functions.fontSize(var(--p-xs-portrait), 'portrait'),
1685
+ var(--p-xs-font-size-max-mobile, 180px)
1686
+ );
1687
+ }
1688
+
1689
+ @include device(breakpoints.$tabLandscape) {
1690
+ font-size: clamp(
1691
+ var(--p-xs-font-size-min-desktop, 10px),
1692
+ core-functions.fontSize(var(--p-xs-landscape), 'landscape'),
1693
+ var(--p-xs-font-size-max-desktop, 180px)
1694
+ );
1695
+ }
1696
+
1697
+ @include device(breakpoints.$desktop) {
1698
+ font-size: clamp(
1699
+ var(--p-xs-font-size-min-desktop, 10px),
1700
+ core-functions.fontSize(var(--p-xs-desktop), 'desktop'),
1701
+ var(--p-xs-font-size-max-desktop, 180px)
1702
+ );
1703
+ }
1704
+ }
1705
+
1706
+ @mixin p-xxs {
1707
+ line-height: var(--paragraph-line-height);
1708
+ letter-spacing: var(--paragraph-letter-spacing);
1709
+ font-family: var(--paragraph-font-family);
1710
+
1711
+ strong,
1712
+ b {
1713
+ font-weight: var(--paragraph-bold-font-weight);
1714
+ }
1715
+
1716
+ &:has(.font-tertiary) {
1717
+ line-height: calc(
1718
+ var(--paragraph-line-height) *
1719
+ var(--global-line-height-multiplier-tertiary)
1720
+ );
1721
+ }
1722
+
1723
+ em {
1724
+ font-style: italic;
1725
+ }
1726
+
1727
+ font-size: clamp(
1728
+ var(--p-xxs-font-size-min-mobile, 10px),
1729
+ core-functions.fontSize(var(--p-xxs-mobile), 'mobile'),
1730
+ var(--p-xxs-font-size-max-mobile, 180px)
1731
+ );
1732
+
1733
+ @include device(breakpoints.$tabPortrait) {
1734
+ font-size: clamp(
1735
+ var(--p-xxs-font-size-min-mobile, 10px),
1736
+ core-functions.fontSize(var(--p-xxs-portrait), 'portrait'),
1737
+ var(--p-xxs-font-size-max-mobile, 180px)
1738
+ );
1739
+ }
1740
+
1741
+ @include device(breakpoints.$tabLandscape) {
1742
+ font-size: clamp(
1743
+ var(--p-xxs-font-size-min-desktop, 10px),
1744
+ core-functions.fontSize(var(--p-xxs-landscape), 'landscape'),
1745
+ var(--p-xxs-font-size-max-desktop, 180px)
1746
+ );
1747
+ }
1748
+
1749
+ @include device(breakpoints.$desktop) {
1750
+ font-size: clamp(
1751
+ var(--p-xxs-font-size-min-desktop, 10px),
1752
+ core-functions.fontSize(var(--p-xxs-desktop), 'desktop'),
1753
+ var(--p-xxs-font-size-max-desktop, 180px)
1754
+ );
1755
+ }
1756
+ }
1757
+ @mixin p-xx-small {
1758
+ line-height: var(--paragraph-line-height);
1759
+ letter-spacing: var(--paragraph-letter-spacing);
1760
+ font-family: var(--paragraph-font-family);
1761
+
1762
+ strong,
1763
+ b {
1764
+ font-weight: var(--paragraph-bold-font-weight);
1765
+ }
1766
+
1767
+ &:has(.font-tertiary) {
1768
+ line-height: calc(
1769
+ var(--paragraph-line-height) *
1770
+ var(--global-line-height-multiplier-tertiary)
1771
+ );
1772
+ }
1773
+
1774
+ em {
1775
+ font-style: italic;
1776
+ }
1777
+
1778
+ font-size: clamp(
1779
+ var(--p-xxs-font-size-min-mobile, 10px),
1780
+ core-functions.fontSize(var(--p-xxs-mobile), 'mobile'),
1781
+ var(--p-xxs-font-size-max-mobile, 180px)
1782
+ );
1783
+
1784
+ @include device(breakpoints.$tabPortrait) {
1785
+ font-size: clamp(
1786
+ var(--p-xxs-font-size-min-mobile, 10px),
1787
+ core-functions.fontSize(var(--p-xxs-portrait), 'portrait'),
1788
+ var(--p-xxs-font-size-max-mobile, 180px)
1789
+ );
1790
+ }
1791
+
1792
+ @include device(breakpoints.$tabLandscape) {
1793
+ font-size: clamp(
1794
+ var(--p-xxs-font-size-min-desktop, 10px),
1795
+ core-functions.fontSize(var(--p-xxs-landscape), 'landscape'),
1796
+ var(--p-xxs-font-size-max-desktop, 180px)
1797
+ );
1798
+ }
1799
+
1800
+ @include device(breakpoints.$desktop) {
1801
+ font-size: clamp(
1802
+ var(--p-xxs-font-size-min-desktop, 10px),
1803
+ core-functions.fontSize(var(--p-xxs-desktop), 'desktop'),
1804
+ var(--p-xxs-font-size-max-desktop, 180px)
1805
+ );
1806
+ }
1807
+ }
1808
+
1809
+ @mixin p-xxxs {
1810
+ line-height: var(--paragraph-line-height);
1811
+ letter-spacing: var(--paragraph-letter-spacing);
1812
+ font-family: var(--paragraph-font-family);
1813
+
1814
+ strong,
1815
+ b {
1816
+ font-weight: var(--paragraph-bold-font-weight);
1817
+ }
1818
+
1819
+ &:has(.font-tertiary) {
1820
+ line-height: calc(
1821
+ var(--paragraph-line-height) *
1822
+ var(--global-line-height-multiplier-tertiary)
1823
+ );
1824
+ }
1825
+
1826
+ em {
1827
+ font-style: italic;
1828
+ }
1829
+
1830
+ font-size: clamp(
1831
+ var(--p-xxxs-font-size-min-mobile, 10px),
1832
+ core-functions.fontSize(var(--p-xxxs-mobile), 'mobile'),
1833
+ var(--p-xxxs-font-size-max-mobile, 180px)
1834
+ );
1835
+
1836
+ @include device(breakpoints.$tabPortrait) {
1837
+ font-size: clamp(
1838
+ var(--p-xxxs-font-size-min-mobile, 10px),
1839
+ core-functions.fontSize(var(--p-xxxs-portrait), 'portrait'),
1840
+ var(--p-xxxs-font-size-max-mobile, 180px)
1841
+ );
1842
+ }
1843
+
1844
+ @include device(breakpoints.$tabLandscape) {
1845
+ font-size: clamp(
1846
+ var(--p-xxxs-font-size-min-desktop, 10px),
1847
+ core-functions.fontSize(var(--p-xxxs-landscape), 'landscape'),
1848
+ var(--p-xxxs-font-size-max-desktop, 180px)
1849
+ );
1850
+ }
1851
+
1852
+ @include device(breakpoints.$desktop) {
1853
+ font-size: clamp(
1854
+ var(--p-xxxs-font-size-min-desktop, 10px),
1855
+ core-functions.fontSize(var(--p-xxxs-desktop), 'desktop'),
1856
+ var(--p-xxxs-font-size-max-desktop, 180px)
1857
+ );
1858
+ }
1859
+ }
1860
+ @mixin p-xxx-small {
1861
+ line-height: var(--paragraph-line-height);
1862
+ letter-spacing: var(--paragraph-letter-spacing);
1863
+ font-family: var(--paragraph-font-family);
1864
+
1865
+ strong,
1866
+ b {
1867
+ font-weight: var(--paragraph-bold-font-weight);
1868
+ }
1869
+
1870
+ &:has(.font-tertiary) {
1871
+ line-height: calc(
1872
+ var(--paragraph-line-height) *
1873
+ var(--global-line-height-multiplier-tertiary)
1874
+ );
1875
+ }
1876
+
1877
+ em {
1878
+ font-style: italic;
1879
+ }
1880
+
1881
+ font-size: clamp(
1882
+ var(--p-xxxs-font-size-min-mobile, 10px),
1883
+ core-functions.fontSize(var(--p-xxxs-mobile), 'mobile'),
1884
+ var(--p-xxxs-font-size-max-mobile, 180px)
1885
+ );
1886
+
1887
+ @include device(breakpoints.$tabPortrait) {
1888
+ font-size: clamp(
1889
+ var(--p-xxxs-font-size-min-mobile, 10px),
1890
+ core-functions.fontSize(var(--p-xxxs-portrait), 'portrait'),
1891
+ var(--p-xxxs-font-size-max-mobile, 180px)
1892
+ );
1893
+ }
1894
+
1895
+ @include device(breakpoints.$tabLandscape) {
1896
+ font-size: clamp(
1897
+ var(--p-xxxs-font-size-min-desktop, 10px),
1898
+ core-functions.fontSize(var(--p-xxxs-landscape), 'landscape'),
1899
+ var(--p-xxxs-font-size-max-desktop, 180px)
1900
+ );
1901
+ }
1902
+
1903
+ @include device(breakpoints.$desktop) {
1904
+ font-size: clamp(
1905
+ var(--p-xxxs-font-size-min-desktop, 10px),
1906
+ core-functions.fontSize(var(--p-xxxs-desktop), 'desktop'),
1907
+ var(--p-xxxs-font-size-max-desktop, 180px)
1908
+ );
1909
+ }
1910
+ }
1911
+
1912
+ @mixin fontPrimary() {
1913
+ font-family: var(--primary-font-family), sans-serif;
1914
+ --font-size-multiplier: var(--global-font-multiplier-primary);
1915
+ }
1916
+
1917
+ @mixin fontSecondary() {
1918
+ font-family: var(--secondary-font-family), sans-serif;
1919
+ --font-size-multiplier: var(--global-font-multiplier-secondary);
1920
+ }
1921
+
1922
+ @mixin fontTertiary() {
1923
+ font-family: var(--tertiary-font-family), sans-serif;
1924
+ --font-size-multiplier: var(--global-font-multiplier-tertiary);
1925
+ }
1926
+
1927
+ @mixin fontQuaternary() {
1928
+ font-family: var(--quaternary-font-family), sans-serif;
1929
+ --font-size-multiplier: var(--global-font-multiplier-quaternary);
1930
+ }