@deriv-web-design/ui 0.0.2 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.css CHANGED
@@ -1,4 +1,4 @@
1
- /* primitives/Button/Button.module.css */
1
+ /* primitives/Button/Button.css */
2
2
  .button {
3
3
  position: relative;
4
4
  display: inline-flex;
@@ -24,21 +24,21 @@
24
24
  border-color 100ms ease,
25
25
  opacity 100ms ease;
26
26
  }
27
- .fullWidth {
27
+ .button.fullWidth {
28
28
  width: 100%;
29
29
  }
30
- .iconOnly {
30
+ .button.iconOnly {
31
31
  padding: calc(var(--spacing-16) - 2px);
32
32
  min-width: unset;
33
33
  width: var(--spacing-48);
34
34
  height: var(--spacing-48);
35
35
  }
36
- .label {
36
+ .button .label {
37
37
  flex: 1 0 0;
38
38
  min-width: 1px;
39
39
  min-height: 1px;
40
40
  }
41
- .icon {
41
+ .button .icon {
42
42
  display: flex;
43
43
  align-items: center;
44
44
  justify-content: center;
@@ -46,7 +46,7 @@
46
46
  height: var(--spacing-16);
47
47
  flex-shrink: 0;
48
48
  }
49
- .focusRing {
49
+ .button .focusRing {
50
50
  position: absolute;
51
51
  inset: -2px;
52
52
  border-radius: var(--radius-full);
@@ -149,7 +149,7 @@
149
149
  cursor: not-allowed;
150
150
  }
151
151
 
152
- /* primitives/Link/Link.module.css */
152
+ /* primitives/Link/Link.css */
153
153
  .link {
154
154
  display: inline-flex;
155
155
  align-items: center;
@@ -172,12 +172,12 @@
172
172
  outline-offset: 2px;
173
173
  border-radius: var(--radius-xs);
174
174
  }
175
- .disabled {
175
+ .link.disabled {
176
176
  opacity: var(--link-disabled-opacity);
177
177
  cursor: not-allowed;
178
178
  pointer-events: none;
179
179
  }
180
- .icon {
180
+ .link .icon {
181
181
  display: inline-flex;
182
182
  align-items: center;
183
183
  justify-content: center;
@@ -185,7 +185,7 @@
185
185
  height: var(--spacing-16);
186
186
  flex-shrink: 0;
187
187
  }
188
- .chevron {
188
+ .link .chevron {
189
189
  display: inline-flex;
190
190
  align-items: center;
191
191
  justify-content: center;
@@ -194,29 +194,29 @@
194
194
  height: var(--spacing-16);
195
195
  transition: transform 150ms ease;
196
196
  }
197
- .label {
197
+ .link .label {
198
198
  text-decoration-skip-ink: none;
199
199
  }
200
- .withChevron:hover,
201
- .withChevron:active {
200
+ .link.withChevron:hover,
201
+ .link.withChevron:active {
202
202
  gap: var(--spacing-16);
203
203
  }
204
- .withIcon:hover .label,
205
- .withIcon:active .label {
204
+ .link.withIcon:hover .label,
205
+ .link.withIcon:active .label {
206
206
  text-decoration: underline;
207
207
  text-decoration-style: solid;
208
208
  }
209
- .coral {
209
+ .link.coral {
210
210
  color: var(--link-coral-color);
211
211
  }
212
- .black {
212
+ .link.black {
213
213
  color: var(--link-black-color);
214
214
  }
215
- .white {
215
+ .link.white {
216
216
  color: var(--link-white-color);
217
217
  }
218
218
 
219
- /* primitives/Chip/Chip.module.css */
219
+ /* primitives/Chip/Chip.css */
220
220
  .chip {
221
221
  position: relative;
222
222
  display: inline-flex;
@@ -238,19 +238,19 @@
238
238
  border-color 100ms ease;
239
239
  user-select: none;
240
240
  }
241
- .sm {
241
+ .chip.sm {
242
242
  height: var(--spacing-24);
243
243
  padding: 0 var(--spacing-12);
244
244
  gap: 6px;
245
245
  font-size: var(--font-size-xs);
246
246
  }
247
- .md {
247
+ .chip.md {
248
248
  height: var(--spacing-32);
249
249
  padding: 0 var(--spacing-16);
250
250
  gap: var(--spacing-8);
251
251
  font-size: var(--font-size-sm);
252
252
  }
253
- .lg {
253
+ .chip.lg {
254
254
  height: var(--spacing-48);
255
255
  padding: 0 var(--spacing-24);
256
256
  gap: var(--spacing-12);
@@ -262,7 +262,7 @@
262
262
  .chip:active:not(:disabled):not(.selected) {
263
263
  background-color: var(--chip-active-background);
264
264
  }
265
- .selected {
265
+ .chip.selected {
266
266
  background-color: var(--chip-selected-background);
267
267
  border-color: var(--chip-selected-background);
268
268
  color: var(--chip-selected-text);
@@ -271,7 +271,7 @@
271
271
  color: var(--chip-disabled-text);
272
272
  cursor: not-allowed;
273
273
  }
274
- .icon {
274
+ .chip .icon {
275
275
  display: inline-flex;
276
276
  align-items: center;
277
277
  justify-content: center;
@@ -279,21 +279,21 @@
279
279
  width: 1em;
280
280
  height: 1em;
281
281
  }
282
- .label {
282
+ .chip .label {
283
283
  flex-shrink: 0;
284
284
  }
285
- .tag {
285
+ .chip .tag {
286
286
  font-weight: var(--font-weight-extra-bold);
287
287
  flex-shrink: 0;
288
288
  }
289
- .focusRing {
289
+ .chip .focusRing {
290
290
  position: absolute;
291
291
  inset: -3px;
292
292
  border-radius: var(--radius-full);
293
293
  border: 2px solid var(--chip-focus-ring-color);
294
294
  pointer-events: none;
295
295
  }
296
- .selected .focusRing {
296
+ .chip.selected .focusRing {
297
297
  inset: -2px;
298
298
  }
299
299
  .chip:focus-visible::after {
@@ -304,11 +304,11 @@
304
304
  border: 2px solid var(--chip-focus-ring-color);
305
305
  pointer-events: none;
306
306
  }
307
- .selected:focus-visible::after {
307
+ .chip.selected:focus-visible::after {
308
308
  inset: -2px;
309
309
  }
310
310
 
311
- /* primitives/Tag/Tag.module.css */
311
+ /* primitives/Tag/Tag.css */
312
312
  .tag {
313
313
  display: inline-flex;
314
314
  align-items: center;
@@ -320,43 +320,43 @@
320
320
  color: var(--tag-text-color);
321
321
  border-radius: var(--radius-full);
322
322
  }
323
- .fill {
323
+ .tag.fill {
324
324
  background-color: var(--tag-fill-background);
325
325
  }
326
- .outline {
326
+ .tag.outline {
327
327
  border: 1px solid var(--tag-outline-border);
328
328
  }
329
- .xs {
329
+ .tag.xs {
330
330
  height: 22px;
331
331
  padding: 0 var(--spacing-4);
332
332
  gap: var(--spacing-4);
333
333
  font-size: var(--font-size-xs);
334
334
  }
335
- .sm {
335
+ .tag.sm {
336
336
  height: var(--spacing-24);
337
337
  padding: 0 var(--spacing-8);
338
338
  gap: var(--spacing-8);
339
339
  font-size: var(--font-size-xs);
340
340
  }
341
- .md {
341
+ .tag.md {
342
342
  height: var(--spacing-32);
343
343
  padding: 0 var(--spacing-12);
344
344
  gap: var(--spacing-12);
345
345
  font-size: var(--font-size-sm);
346
346
  }
347
- .lg {
347
+ .tag.lg {
348
348
  height: var(--spacing-48);
349
349
  padding: 0 var(--spacing-16);
350
350
  gap: var(--spacing-16);
351
351
  font-size: var(--font-size-md);
352
352
  }
353
- .regular {
353
+ .tag.regular {
354
354
  font-weight: var(--font-weight-regular);
355
355
  }
356
- .bold {
356
+ .tag.bold {
357
357
  font-weight: var(--font-weight-semi-bold);
358
358
  }
359
- .icon {
359
+ .tag .icon {
360
360
  display: inline-flex;
361
361
  align-items: center;
362
362
  justify-content: center;
@@ -364,18 +364,18 @@
364
364
  width: 1em;
365
365
  height: 1em;
366
366
  }
367
- .label {
367
+ .tag .label {
368
368
  flex-shrink: 0;
369
369
  }
370
370
 
371
- /* primitives/Accordion/Accordion.module.css */
371
+ /* primitives/Accordion/Accordion.css */
372
372
  .accordion {
373
373
  position: relative;
374
374
  width: 100%;
375
375
  max-width: 846px;
376
376
  box-sizing: border-box;
377
377
  }
378
- .header {
378
+ .accordion .header {
379
379
  display: flex;
380
380
  align-items: center;
381
381
  gap: var(--spacing-24);
@@ -389,31 +389,31 @@
389
389
  text-align: left;
390
390
  box-sizing: border-box;
391
391
  }
392
- .header:focus-visible::after {
392
+ .accordion .header:focus-visible::after {
393
393
  content: "";
394
394
  position: absolute;
395
395
  inset: -2px;
396
396
  border: 2px solid var(--accordion-focus-ring-color);
397
397
  pointer-events: none;
398
398
  }
399
- .focusRing {
399
+ .accordion .focusRing {
400
400
  position: absolute;
401
401
  inset: -2px;
402
402
  border: 2px solid var(--accordion-focus-ring-color);
403
403
  pointer-events: none;
404
404
  }
405
- .titleWrapper {
405
+ .accordion .titleWrapper {
406
406
  flex: 1 0 0;
407
407
  min-width: 1px;
408
408
  }
409
- .title {
409
+ .accordion .title {
410
410
  font-family: var(--font-family-base);
411
411
  font-size: var(--font-size-lg);
412
412
  font-weight: var(--font-weight-semi-bold);
413
413
  line-height: var(--line-height-normal);
414
414
  color: var(--accordion-title-color);
415
415
  }
416
- .chevron {
416
+ .accordion .chevron {
417
417
  display: flex;
418
418
  align-items: center;
419
419
  justify-content: center;
@@ -423,21 +423,21 @@
423
423
  color: var(--accordion-chevron-color);
424
424
  transition: transform 200ms ease;
425
425
  }
426
- .chevronRotated {
426
+ .accordion .chevronRotated {
427
427
  transform: rotate(180deg);
428
428
  }
429
- .bodyWrapper {
429
+ .accordion .bodyWrapper {
430
430
  display: grid;
431
431
  grid-template-rows: 0fr;
432
432
  transition: grid-template-rows 200ms ease;
433
433
  }
434
- .bodyWrapperOpen {
434
+ .accordion .bodyWrapperOpen {
435
435
  grid-template-rows: 1fr;
436
436
  }
437
- .bodyInner {
437
+ .accordion .bodyInner {
438
438
  overflow: hidden;
439
439
  }
440
- .body {
440
+ .accordion .body {
441
441
  padding-bottom: var(--spacing-24);
442
442
  font-family: var(--font-family-base);
443
443
  font-size: var(--font-size-md);
@@ -446,8 +446,8 @@
446
446
  color: var(--accordion-body-color);
447
447
  }
448
448
 
449
- /* primitives/TextField/TextField.module.css */
450
- .wrapper {
449
+ /* primitives/TextField/TextField.css */
450
+ .tf-wrapper {
451
451
  display: flex;
452
452
  align-items: center;
453
453
  height: var(--spacing-56);
@@ -459,67 +459,67 @@
459
459
  cursor: text;
460
460
  transition: background-color 100ms ease, border-color 100ms ease;
461
461
  }
462
- .outline {
462
+ .tf-wrapper.outline {
463
463
  background: var(--field-surface-outline);
464
464
  border-color: var(--field-border-default);
465
465
  }
466
- .fill {
466
+ .tf-wrapper.fill {
467
467
  background: var(--field-surface-fill);
468
468
  }
469
- .neutral.outline:hover:not([data-disabled]):not(:focus-within) {
469
+ .tf-wrapper.neutral.outline:hover:not([data-disabled]):not(:focus-within) {
470
470
  border-color: var(--field-border-hover);
471
471
  }
472
- .neutral.fill:hover:not([data-disabled]):not(:focus-within) {
472
+ .tf-wrapper.neutral.fill:hover:not([data-disabled]):not(:focus-within) {
473
473
  background: var(--field-surface-fill-hover);
474
474
  }
475
- .neutral.outline:focus-within:not([data-disabled]) {
475
+ .tf-wrapper.neutral.outline:focus-within:not([data-disabled]) {
476
476
  border-color: var(--field-border-focus);
477
477
  }
478
- .neutral.fill:focus-within:not([data-disabled]) {
478
+ .tf-wrapper.neutral.fill:focus-within:not([data-disabled]) {
479
479
  border-color: var(--field-border-focus);
480
480
  }
481
- .fail.outline {
481
+ .tf-wrapper.fail.outline {
482
482
  border-color: var(--field-border-fail-default);
483
483
  }
484
- .fail.outline:hover:not([data-disabled]):not(:focus-within) {
484
+ .tf-wrapper.fail.outline:hover:not([data-disabled]):not(:focus-within) {
485
485
  border-color: var(--field-border-fail-hover);
486
486
  }
487
- .fail.outline:focus-within:not([data-disabled]) {
487
+ .tf-wrapper.fail.outline:focus-within:not([data-disabled]) {
488
488
  border-color: var(--field-border-fail-focus);
489
489
  }
490
- .fail.fill {
490
+ .tf-wrapper.fail.fill {
491
491
  background: var(--field-surface-fail);
492
492
  }
493
- .fail.fill:hover:not([data-disabled]):not(:focus-within) {
493
+ .tf-wrapper.fail.fill:hover:not([data-disabled]):not(:focus-within) {
494
494
  background: var(--field-surface-fail-hover);
495
495
  }
496
- .fail.fill:focus-within:not([data-disabled]) {
496
+ .tf-wrapper.fail.fill:focus-within:not([data-disabled]) {
497
497
  background: var(--field-surface-fail);
498
498
  border-color: var(--field-border-fail-focus);
499
499
  }
500
- .success.outline {
500
+ .tf-wrapper.success.outline {
501
501
  border-color: var(--field-border-success-default);
502
502
  }
503
- .success.outline:hover:not([data-disabled]):not(:focus-within) {
503
+ .tf-wrapper.success.outline:hover:not([data-disabled]):not(:focus-within) {
504
504
  border-color: var(--field-border-success-hover);
505
505
  }
506
- .success.outline:focus-within:not([data-disabled]) {
506
+ .tf-wrapper.success.outline:focus-within:not([data-disabled]) {
507
507
  border-color: var(--field-border-success-focus);
508
508
  }
509
- .success.fill {
509
+ .tf-wrapper.success.fill {
510
510
  background: var(--field-surface-success);
511
511
  }
512
- .success.fill:hover:not([data-disabled]):not(:focus-within) {
512
+ .tf-wrapper.success.fill:hover:not([data-disabled]):not(:focus-within) {
513
513
  background: var(--field-surface-success-hover);
514
514
  }
515
- .success.fill:focus-within:not([data-disabled]) {
515
+ .tf-wrapper.success.fill:focus-within:not([data-disabled]) {
516
516
  background: var(--field-surface-success);
517
517
  border-color: var(--field-border-success-focus);
518
518
  }
519
- .wrapper[data-disabled] {
519
+ .tf-wrapper[data-disabled] {
520
520
  cursor: not-allowed;
521
521
  }
522
- .iconSlot {
522
+ .tf-wrapper .iconSlot {
523
523
  display: inline-flex;
524
524
  align-items: center;
525
525
  justify-content: center;
@@ -528,16 +528,16 @@
528
528
  height: var(--spacing-24);
529
529
  color: var(--field-icon-default);
530
530
  }
531
- .wrapper[data-disabled] .iconSlot {
531
+ .tf-wrapper[data-disabled] .iconSlot {
532
532
  color: var(--field-icon-disabled);
533
533
  }
534
- .iconSuccess {
534
+ .tf-wrapper .iconSuccess {
535
535
  color: var(--field-text-success);
536
536
  }
537
- .iconFail {
537
+ .tf-wrapper .iconFail {
538
538
  color: var(--field-text-fail);
539
539
  }
540
- .input {
540
+ .tf-wrapper .tf-input {
541
541
  flex: 1 0 0;
542
542
  min-width: 1px;
543
543
  border: none;
@@ -551,22 +551,22 @@
551
551
  caret-color: var(--field-border-focus);
552
552
  padding: 0;
553
553
  }
554
- .input::placeholder {
554
+ .tf-wrapper .tf-input::placeholder {
555
555
  color: var(--field-text-placeholder);
556
556
  }
557
- .input:focus {
557
+ .tf-wrapper .tf-input:focus {
558
558
  color: var(--field-text-focus);
559
559
  }
560
- .input:disabled {
560
+ .tf-wrapper .tf-input:disabled {
561
561
  cursor: not-allowed;
562
562
  color: var(--field-text-disabled);
563
563
  }
564
- .input:disabled::placeholder {
564
+ .tf-wrapper .tf-input:disabled::placeholder {
565
565
  color: var(--field-text-disabled);
566
566
  }
567
567
 
568
- /* primitives/SearchField/SearchField.module.css */
569
- .wrapper {
568
+ /* primitives/SearchField/SearchField.css */
569
+ .sf-wrapper {
570
570
  display: flex;
571
571
  align-items: center;
572
572
  height: var(--spacing-56);
@@ -580,34 +580,34 @@
580
580
  cursor: text;
581
581
  transition: background-color 100ms ease, border-color 100ms ease;
582
582
  }
583
- .neutral:hover:not([data-disabled]):not(:focus-within) {
583
+ .sf-wrapper.neutral:hover:not([data-disabled]):not(:focus-within) {
584
584
  border-color: var(--field-border-hover);
585
585
  }
586
- .neutral:focus-within:not([data-disabled]) {
586
+ .sf-wrapper.neutral:focus-within:not([data-disabled]) {
587
587
  border-color: var(--field-border-focus);
588
588
  }
589
- .fail {
589
+ .sf-wrapper.fail {
590
590
  border-color: var(--field-border-fail-default);
591
591
  }
592
- .fail:hover:not([data-disabled]):not(:focus-within) {
592
+ .sf-wrapper.fail:hover:not([data-disabled]):not(:focus-within) {
593
593
  border-color: var(--field-border-fail-hover);
594
594
  }
595
- .fail:focus-within:not([data-disabled]) {
595
+ .sf-wrapper.fail:focus-within:not([data-disabled]) {
596
596
  border-color: var(--field-border-fail-focus);
597
597
  }
598
- .success {
598
+ .sf-wrapper.success {
599
599
  border-color: var(--field-border-success-default);
600
600
  }
601
- .success:hover:not([data-disabled]):not(:focus-within) {
601
+ .sf-wrapper.success:hover:not([data-disabled]):not(:focus-within) {
602
602
  border-color: var(--field-border-success-hover);
603
603
  }
604
- .success:focus-within:not([data-disabled]) {
604
+ .sf-wrapper.success:focus-within:not([data-disabled]) {
605
605
  border-color: var(--field-border-success-focus);
606
606
  }
607
- .wrapper[data-disabled] {
607
+ .sf-wrapper[data-disabled] {
608
608
  cursor: not-allowed;
609
609
  }
610
- .iconSlot {
610
+ .sf-wrapper .iconSlot {
611
611
  display: inline-flex;
612
612
  align-items: center;
613
613
  justify-content: center;
@@ -616,16 +616,16 @@
616
616
  height: var(--spacing-24);
617
617
  color: var(--field-icon-default);
618
618
  }
619
- .wrapper[data-disabled] .iconSlot {
619
+ .sf-wrapper[data-disabled] .iconSlot {
620
620
  color: var(--field-icon-disabled);
621
621
  }
622
- .iconSuccess {
622
+ .sf-wrapper .iconSuccess {
623
623
  color: var(--field-text-success);
624
624
  }
625
- .iconFail {
625
+ .sf-wrapper .iconFail {
626
626
  color: var(--field-text-fail);
627
627
  }
628
- .input {
628
+ .sf-wrapper .sf-input {
629
629
  flex: 1 0 0;
630
630
  min-width: 1px;
631
631
  border: none;
@@ -639,20 +639,20 @@
639
639
  caret-color: var(--field-border-focus);
640
640
  padding: 0;
641
641
  }
642
- .input::placeholder {
642
+ .sf-wrapper .sf-input::placeholder {
643
643
  color: var(--field-text-placeholder);
644
644
  }
645
- .input:focus {
645
+ .sf-wrapper .sf-input:focus {
646
646
  color: var(--field-text-focus);
647
647
  }
648
- .input:disabled {
648
+ .sf-wrapper .sf-input:disabled {
649
649
  cursor: not-allowed;
650
650
  color: var(--field-text-disabled);
651
651
  }
652
- .input:disabled::placeholder {
652
+ .sf-wrapper .sf-input:disabled::placeholder {
653
653
  color: var(--field-text-disabled);
654
654
  }
655
- .clearButton {
655
+ .sf-wrapper .clearButton {
656
656
  appearance: none;
657
657
  display: inline-flex;
658
658
  align-items: center;
@@ -668,19 +668,179 @@
668
668
  border-radius: var(--radius-full);
669
669
  transition: color 100ms ease;
670
670
  }
671
- .clearButton:hover {
671
+ .sf-wrapper .clearButton:hover {
672
672
  color: var(--field-text-default);
673
673
  }
674
- .clearButton:focus-visible {
674
+ .sf-wrapper .clearButton:focus-visible {
675
675
  outline: 2px solid var(--field-border-focus);
676
676
  outline-offset: 2px;
677
677
  }
678
678
 
679
- /* primitives/Breadcrumb/Breadcrumb.module.css */
680
- .list {
679
+ /* primitives/BottomSheet/BottomSheet.css */
680
+ .bs-overlay {
681
+ position: fixed;
682
+ inset: 0;
683
+ z-index: 9999;
684
+ background: var(--bottom-sheet-overlay-bg);
681
685
  display: flex;
682
- flex-wrap: wrap;
686
+ align-items: flex-end;
687
+ }
688
+ .bs-sheet {
689
+ width: 100%;
690
+ background: var(--bottom-sheet-bg);
691
+ border-radius: var(--radius-xl) var(--radius-xl) 0 0;
692
+ box-shadow: var(--bottom-sheet-shadow);
693
+ overflow: hidden;
694
+ display: flex;
695
+ flex-direction: column;
696
+ max-height: 90dvh;
697
+ animation: bs-slide-up 280ms cubic-bezier(0.32, 0.72, 0, 1) forwards;
698
+ }
699
+ @keyframes bs-slide-up {
700
+ from {
701
+ transform: translateY(100%);
702
+ }
703
+ to {
704
+ transform: translateY(0);
705
+ }
706
+ }
707
+ .bs-handle-container {
708
+ display: flex;
709
+ justify-content: center;
710
+ align-items: center;
711
+ padding: var(--spacing-8) 0;
712
+ flex-shrink: 0;
713
+ }
714
+ .bs-handle-bar {
715
+ width: 48px;
716
+ height: 4px;
717
+ border-radius: var(--radius-full);
718
+ background: var(--bottom-sheet-handle-color);
719
+ }
720
+ .bs-header {
721
+ display: flex;
722
+ align-items: center;
723
+ gap: var(--spacing-8);
724
+ height: 48px;
725
+ padding: 0 var(--spacing-16);
726
+ flex-shrink: 0;
727
+ }
728
+ .bs-header-spacer {
729
+ width: 48px;
730
+ height: 48px;
731
+ flex-shrink: 0;
732
+ }
733
+ .bs-title {
734
+ flex: 1;
735
+ text-align: center;
736
+ font-family: var(--font-family-base);
737
+ font-weight: var(--font-weight-extra-bold);
738
+ font-size: var(--font-size-xl);
739
+ line-height: var(--line-height-xl);
740
+ color: var(--bottom-sheet-title-color);
741
+ margin: 0;
742
+ overflow: hidden;
743
+ text-overflow: ellipsis;
744
+ white-space: nowrap;
745
+ min-width: 0;
746
+ }
747
+ .bs-close-container {
748
+ flex-shrink: 0;
749
+ }
750
+ .bs-close-btn {
751
+ position: relative;
752
+ display: flex;
753
+ align-items: center;
754
+ justify-content: center;
755
+ width: 48px;
756
+ height: 48px;
757
+ border-radius: var(--radius-full);
758
+ border: none;
759
+ background: transparent;
760
+ cursor: pointer;
761
+ color: var(--bottom-sheet-close-icon-color);
762
+ transition: background-color 100ms ease;
763
+ outline: none;
764
+ box-sizing: border-box;
765
+ }
766
+ .bs-close-btn:hover {
767
+ background: var(--bottom-sheet-close-hover-bg);
768
+ }
769
+ .bs-close-btn:active {
770
+ background: var(--bottom-sheet-close-active-bg);
771
+ }
772
+ .bs-close-btn:focus-visible::after {
773
+ content: "";
774
+ position: absolute;
775
+ inset: -3px;
776
+ border-radius: var(--radius-full);
777
+ border: 2px solid var(--bottom-sheet-focus-ring-color);
778
+ pointer-events: none;
779
+ }
780
+ .bs-body {
781
+ flex: 1;
782
+ overflow-y: auto;
783
+ min-height: 0;
784
+ }
785
+ .bs-actions {
786
+ display: flex;
787
+ flex-direction: column;
788
+ gap: var(--spacing-8);
789
+ padding: var(--spacing-16);
790
+ flex-shrink: 0;
791
+ }
792
+ .bs-action-primary {
793
+ width: 100%;
794
+ height: 48px;
795
+ border-radius: var(--radius-full);
796
+ border: none;
797
+ background: var(--bottom-sheet-action-primary-bg);
798
+ color: var(--bottom-sheet-action-primary-text);
799
+ font-family: var(--font-family-base);
800
+ font-weight: var(--font-weight-extra-bold);
801
+ font-size: var(--font-size-md);
802
+ cursor: pointer;
803
+ transition: background-color 100ms ease;
804
+ box-sizing: border-box;
805
+ }
806
+ .bs-action-primary:hover {
807
+ background: var(--bottom-sheet-action-primary-bg-hover);
808
+ }
809
+ .bs-action-primary:active {
810
+ background: var(--bottom-sheet-action-primary-bg-active);
811
+ }
812
+ .bs-action-secondary {
813
+ width: 100%;
814
+ height: 48px;
815
+ border-radius: var(--radius-full);
816
+ border: 1px solid var(--bottom-sheet-action-secondary-border);
817
+ background: transparent;
818
+ color: var(--bottom-sheet-action-secondary-text);
819
+ font-family: var(--font-family-base);
820
+ font-weight: var(--font-weight-extra-bold);
821
+ font-size: var(--font-size-md);
822
+ cursor: pointer;
823
+ transition: background-color 100ms ease;
824
+ box-sizing: border-box;
825
+ }
826
+ .bs-action-secondary:hover {
827
+ background: var(--bottom-sheet-action-secondary-hover-bg);
828
+ }
829
+ .bs-action-secondary:active {
830
+ background: var(--bottom-sheet-action-secondary-active-bg);
831
+ }
832
+ @media (min-width: 768px) {
833
+ .bs-overlay {
834
+ display: none;
835
+ }
836
+ }
837
+
838
+ /* primitives/Breadcrumb/Breadcrumb.css */
839
+ .bc-list {
840
+ display: flex;
841
+ flex-wrap: nowrap;
683
842
  align-items: center;
843
+ overflow: hidden;
684
844
  gap: var(--spacing-8);
685
845
  list-style: none;
686
846
  margin: 0;
@@ -688,45 +848,52 @@
688
848
  font-family: var(--font-family-base);
689
849
  font-weight: var(--font-weight-regular);
690
850
  }
691
- .list.sm {
851
+ .bc-list.sm {
692
852
  font-size: var(--font-size-sm);
693
853
  line-height: var(--line-height-normal);
694
854
  }
695
- .list.md {
855
+ .bc-list.md {
696
856
  font-size: var(--font-size-md);
697
857
  line-height: var(--line-height-normal);
698
858
  }
699
- .item,
700
- .middleItem,
701
- .ellipsisItem {
859
+ .bc-item,
860
+ .bc-middleItem,
861
+ .bc-ellipsisItem {
702
862
  display: flex;
703
863
  align-items: center;
704
864
  gap: var(--spacing-8);
705
865
  }
706
- .link {
866
+ .bc-link {
707
867
  color: var(--breadcrumb-text-color);
708
868
  text-decoration: none;
709
869
  white-space: nowrap;
710
870
  cursor: pointer;
711
871
  border-radius: var(--radius-sm);
712
872
  }
713
- .link:hover {
873
+ .bc-link:hover {
714
874
  text-decoration: underline;
715
875
  }
716
- .link:active {
876
+ .bc-link:active {
717
877
  color: var(--breadcrumb-text-current-color);
718
878
  text-decoration: underline;
719
879
  }
720
- .link:focus-visible {
880
+ .bc-link:focus-visible {
721
881
  outline: 2px solid var(--breadcrumb-focus-ring-color);
722
882
  outline-offset: 2px;
723
883
  text-decoration: none;
724
884
  }
725
- .current {
885
+ .bc-current {
726
886
  color: var(--breadcrumb-text-current-color);
727
887
  white-space: nowrap;
888
+ overflow: hidden;
889
+ text-overflow: ellipsis;
890
+ }
891
+ .bc-item:last-child {
892
+ min-width: 0;
893
+ flex-shrink: 1;
894
+ overflow: hidden;
728
895
  }
729
- .separator {
896
+ .bc-separator {
730
897
  display: inline-flex;
731
898
  align-items: center;
732
899
  justify-content: center;
@@ -735,7 +902,7 @@
735
902
  width: 1em;
736
903
  height: 1em;
737
904
  }
738
- .ellipsisButton {
905
+ .bc-ellipsisButton {
739
906
  appearance: none;
740
907
  background: none;
741
908
  border: none;
@@ -746,49 +913,76 @@
746
913
  cursor: pointer;
747
914
  border-radius: var(--radius-sm);
748
915
  }
749
- .ellipsisButton:hover {
916
+ .bc-ellipsisButton:hover {
750
917
  text-decoration: underline;
751
918
  }
752
- .ellipsisButton:focus-visible {
919
+ .bc-ellipsisButton:focus-visible {
753
920
  outline: 2px solid var(--breadcrumb-focus-ring-color);
754
921
  outline-offset: 2px;
755
922
  text-decoration: none;
756
923
  }
757
- .ellipsisItem {
924
+ .bc-ellipsisItem {
758
925
  display: none;
759
926
  }
760
- .middleItem {
927
+ .bc-middleItem {
761
928
  display: flex;
762
929
  }
763
930
  @media (max-width: 639px) {
764
- .list.collapsible {
931
+ .bc-list.collapsible {
765
932
  gap: var(--spacing-4);
766
933
  }
767
- .list.collapsible .item,
768
- .list.collapsible .middleItem,
769
- .list.collapsible .ellipsisItem {
934
+ .bc-list.collapsible .bc-item,
935
+ .bc-list.collapsible .bc-middleItem,
936
+ .bc-list.collapsible .bc-ellipsisItem {
770
937
  gap: var(--spacing-4);
771
938
  }
772
- .list.collapsible .ellipsisItem {
939
+ .bc-list.collapsible .bc-ellipsisItem {
773
940
  display: flex;
774
941
  }
775
- .list.collapsible .middleItem {
942
+ .bc-list.collapsible .bc-middleItem {
776
943
  display: none;
777
944
  }
778
- .list.collapsible.expanded .ellipsisItem {
779
- display: none;
780
- }
781
- .list.collapsible.expanded .middleItem {
782
- display: flex;
783
- }
945
+ }
946
+ .bc-sheet-list {
947
+ list-style: none;
948
+ margin: 0;
949
+ padding: 0;
950
+ padding-bottom: var(--spacing-24);
951
+ }
952
+ .bc-sheet-item {
953
+ border-bottom: 1px solid var(--bottom-sheet-list-item-border);
954
+ }
955
+ .bc-sheet-item:last-child {
956
+ border-bottom: none;
957
+ }
958
+ .bc-sheet-link {
959
+ display: flex;
960
+ align-items: center;
961
+ height: 72px;
962
+ padding: 0 var(--spacing-24);
963
+ font-family: var(--font-family-base);
964
+ font-size: var(--font-size-md);
965
+ font-weight: var(--font-weight-regular);
966
+ color: var(--breadcrumb-text-color);
967
+ text-decoration: none;
968
+ white-space: nowrap;
969
+ overflow: hidden;
970
+ text-overflow: ellipsis;
971
+ }
972
+ .bc-sheet-link:hover {
973
+ text-decoration: underline;
974
+ }
975
+ .bc-sheet-link:focus-visible {
976
+ outline: 2px solid var(--breadcrumb-focus-ring-color);
977
+ outline-offset: -2px;
784
978
  }
785
979
 
786
- /* primitives/ChipDropdown/ChipDropdown.module.css */
787
- .wrapper {
980
+ /* primitives/ChipDropdown/ChipDropdown.css */
981
+ .cd-wrapper {
788
982
  position: relative;
789
983
  display: inline-flex;
790
984
  }
791
- .trigger {
985
+ .cd-trigger {
792
986
  position: relative;
793
987
  display: inline-flex;
794
988
  align-items: center;
@@ -808,39 +1002,39 @@
808
1002
  border-color 100ms ease;
809
1003
  user-select: none;
810
1004
  }
811
- .sm {
1005
+ .cd-trigger.sm {
812
1006
  height: var(--spacing-24);
813
1007
  padding-left: var(--spacing-12);
814
1008
  padding-right: 6px;
815
1009
  gap: 6px;
816
1010
  font-size: var(--font-size-xs);
817
1011
  }
818
- .md {
1012
+ .cd-trigger.md {
819
1013
  height: var(--spacing-32);
820
1014
  padding-left: var(--spacing-16);
821
1015
  padding-right: var(--spacing-8);
822
1016
  gap: var(--spacing-8);
823
1017
  font-size: var(--font-size-sm);
824
1018
  }
825
- .trigger:hover:not(:disabled):not(.selected) {
1019
+ .cd-trigger:hover:not(:disabled):not(.selected) {
826
1020
  background-color: var(--chip-hover-background);
827
1021
  }
828
- .trigger:active:not(:disabled) {
1022
+ .cd-trigger:active:not(:disabled) {
829
1023
  background-color: var(--chip-active-background);
830
1024
  }
831
- .expand:not(.selected):not(:disabled) {
1025
+ .cd-trigger.expand:not(.selected):not(:disabled) {
832
1026
  background-color: var(--chip-hover-background);
833
1027
  }
834
- .selected {
1028
+ .cd-trigger.selected {
835
1029
  background-color: var(--chip-selected-background);
836
1030
  border-color: var(--chip-selected-background);
837
1031
  color: var(--chip-selected-text);
838
1032
  }
839
- .trigger:disabled {
1033
+ .cd-trigger:disabled {
840
1034
  color: var(--chip-disabled-text);
841
1035
  cursor: not-allowed;
842
1036
  }
843
- .icon {
1037
+ .cd-trigger .cd-icon {
844
1038
  display: inline-flex;
845
1039
  align-items: center;
846
1040
  justify-content: center;
@@ -848,14 +1042,14 @@
848
1042
  width: 1em;
849
1043
  height: 1em;
850
1044
  }
851
- .label {
1045
+ .cd-trigger .cd-label {
852
1046
  flex-shrink: 0;
853
1047
  }
854
- .tag {
1048
+ .cd-trigger .cd-tag {
855
1049
  font-weight: var(--font-weight-extra-bold);
856
1050
  flex-shrink: 0;
857
1051
  }
858
- .chevron {
1052
+ .cd-trigger .cd-chevron {
859
1053
  display: inline-flex;
860
1054
  align-items: center;
861
1055
  justify-content: center;
@@ -864,10 +1058,10 @@
864
1058
  height: 24px;
865
1059
  transition: transform 200ms ease;
866
1060
  }
867
- .chevronOpen {
1061
+ .cd-trigger .cd-chevron.chevronOpen {
868
1062
  transform: rotate(180deg);
869
1063
  }
870
- .trigger:focus-visible::after {
1064
+ .cd-trigger:focus-visible::after {
871
1065
  content: "";
872
1066
  position: absolute;
873
1067
  inset: -3px;
@@ -875,7 +1069,7 @@
875
1069
  border: 2px solid var(--chip-focus-ring-color);
876
1070
  pointer-events: none;
877
1071
  }
878
- .list {
1072
+ .cd-list {
879
1073
  position: absolute;
880
1074
  top: calc(100% + 4px);
881
1075
  left: 0;
@@ -892,7 +1086,7 @@
892
1086
  flex-direction: column;
893
1087
  box-sizing: border-box;
894
1088
  }
895
- .item {
1089
+ .cd-item {
896
1090
  display: flex;
897
1091
  align-items: center;
898
1092
  gap: 6px;
@@ -909,32 +1103,53 @@
909
1103
  transition: background-color 100ms ease;
910
1104
  list-style: none;
911
1105
  }
912
- .item:hover {
1106
+ .cd-item:hover {
913
1107
  background-color: var(--chip-dropdown-item-hover-bg);
914
1108
  }
915
- .item:active {
1109
+ .cd-item:active {
916
1110
  background-color: var(--chip-dropdown-item-active-bg);
917
1111
  }
918
- .itemLabel {
1112
+ .cd-itemLabel {
919
1113
  flex: 1;
920
1114
  min-width: 0;
921
1115
  overflow: hidden;
922
1116
  text-overflow: ellipsis;
923
1117
  white-space: nowrap;
924
1118
  }
925
- .itemSelected .itemLabel {
1119
+ .cd-item.itemSelected .cd-itemLabel {
926
1120
  font-weight: var(--font-weight-semi-bold);
927
1121
  }
928
- .itemCheck {
1122
+ .cd-itemCheck {
929
1123
  display: inline-flex;
930
1124
  align-items: center;
931
1125
  justify-content: center;
932
1126
  flex-shrink: 0;
933
1127
  color: var(--chip-dropdown-item-selected-check);
934
1128
  }
1129
+ .cd-list--sheet {
1130
+ position: static;
1131
+ border: none;
1132
+ border-radius: 0;
1133
+ box-shadow: none;
1134
+ padding: 0;
1135
+ background: transparent;
1136
+ }
1137
+ .cd-list--sheet .cd-item {
1138
+ height: 72px;
1139
+ padding: 0 var(--spacing-24);
1140
+ border-radius: 0;
1141
+ border-bottom: 1px solid var(--bottom-sheet-list-item-border);
1142
+ font-size: var(--font-size-md);
1143
+ }
1144
+ .cd-list--sheet .cd-item:last-child {
1145
+ border-bottom: none;
1146
+ }
1147
+ .cd-list--sheet .cd-item.itemSelected .cd-itemLabel {
1148
+ font-weight: var(--font-weight-extra-bold);
1149
+ }
935
1150
 
936
- /* components/Card/CardPrimaryVariant.module.css */
937
- .card {
1151
+ /* components/Card/CardPrimaryVariant.css */
1152
+ .card-primary {
938
1153
  display: flex;
939
1154
  flex-direction: column;
940
1155
  border-radius: var(--radius-2xl);
@@ -943,19 +1158,19 @@
943
1158
  position: relative;
944
1159
  width: 100%;
945
1160
  }
946
- .style--light {
1161
+ .card-primary.style--light {
947
1162
  background-color: var(--color-slate-75);
948
1163
  }
949
- .style--dark {
1164
+ .card-primary.style--dark {
950
1165
  background-color: var(--color-slate-1200);
951
1166
  }
952
- .style--brand {
1167
+ .card-primary.style--brand {
953
1168
  background-color: var(--color-coral-500);
954
1169
  }
955
- .style--image {
1170
+ .card-primary.style--image {
956
1171
  background-color: transparent;
957
1172
  }
958
- .content {
1173
+ .card-primary .cp-content {
959
1174
  flex: 1 0 0;
960
1175
  display: flex;
961
1176
  flex-direction: column;
@@ -965,13 +1180,13 @@
965
1180
  z-index: 1;
966
1181
  min-height: 0;
967
1182
  }
968
- .textDefault {
1183
+ .card-primary .textDefault {
969
1184
  color: var(--color-slate-1200);
970
1185
  }
971
- .textInverse {
1186
+ .card-primary .textInverse {
972
1187
  color: var(--color-slate-50);
973
1188
  }
974
- .title {
1189
+ .card-primary .cp-title {
975
1190
  font-family: var(--typography-h5-font-family);
976
1191
  font-size: var(--typography-h5-font-size);
977
1192
  font-weight: var(--typography-h5-font-weight);
@@ -979,7 +1194,7 @@
979
1194
  margin: 0;
980
1195
  width: 100%;
981
1196
  }
982
- .description {
1197
+ .card-primary .cp-description {
983
1198
  font-family: var(--typography-body-md-font-family);
984
1199
  font-size: var(--typography-body-md-font-size);
985
1200
  font-weight: var(--typography-body-md-font-weight);
@@ -987,37 +1202,13 @@
987
1202
  margin: 0;
988
1203
  width: 100%;
989
1204
  }
990
- .link {
991
- display: inline-flex;
992
- align-items: center;
993
- gap: var(--spacing-8);
994
- background: none;
995
- border: none;
996
- padding: 0;
997
- cursor: pointer;
998
- font-family: var(--font-family-base);
999
- font-size: var(--font-size-md);
1000
- font-weight: var(--font-weight-semi-bold);
1001
- line-height: var(--line-height-tight);
1002
- text-decoration: none;
1003
- transition: opacity 150ms ease;
1004
- }
1005
- .link:hover {
1006
- opacity: 0.8;
1007
- }
1008
- .linkCoral {
1009
- color: var(--link-coral-color);
1010
- }
1011
- .linkInverse {
1012
- color: var(--link-white-color);
1013
- }
1014
- .imageSection {
1205
+ .card-primary .cp-imageSection {
1015
1206
  height: 17.5rem;
1016
1207
  flex-shrink: 0;
1017
1208
  position: relative;
1018
1209
  overflow: hidden;
1019
1210
  }
1020
- .image {
1211
+ .card-primary .cp-image {
1021
1212
  position: absolute;
1022
1213
  inset: 0;
1023
1214
  width: 100%;
@@ -1025,13 +1216,13 @@
1025
1216
  object-fit: cover;
1026
1217
  display: block;
1027
1218
  }
1028
- .imageOverlay {
1219
+ .card-primary .cp-imageOverlay {
1029
1220
  position: absolute;
1030
1221
  inset: 0;
1031
1222
  pointer-events: none;
1032
1223
  z-index: 0;
1033
1224
  }
1034
- .overlayImg {
1225
+ .card-primary .cp-overlayImg {
1035
1226
  position: absolute;
1036
1227
  inset: 0;
1037
1228
  width: 100%;
@@ -1039,7 +1230,7 @@
1039
1230
  object-fit: cover;
1040
1231
  display: block;
1041
1232
  }
1042
- .gradient {
1233
+ .card-primary .cp-gradient {
1043
1234
  position: absolute;
1044
1235
  inset: 0;
1045
1236
  background:
@@ -1049,8 +1240,8 @@
1049
1240
  transparent 54%);
1050
1241
  }
1051
1242
 
1052
- /* components/Card/CardSecondaryVariant.module.css */
1053
- .card {
1243
+ /* components/Card/CardSecondaryVariant.css */
1244
+ .card-secondary {
1054
1245
  display: flex;
1055
1246
  flex-direction: column;
1056
1247
  gap: var(--spacing-16);
@@ -1061,7 +1252,7 @@
1061
1252
  width: 100%;
1062
1253
  box-sizing: border-box;
1063
1254
  }
1064
- .icon {
1255
+ .card-secondary .cs-icon {
1065
1256
  display: flex;
1066
1257
  align-items: center;
1067
1258
  justify-content: center;
@@ -1070,7 +1261,7 @@
1070
1261
  flex-shrink: 0;
1071
1262
  color: var(--color-slate-1200);
1072
1263
  }
1073
- .title {
1264
+ .card-secondary .cs-title {
1074
1265
  font-family: var(--typography-h5-font-family);
1075
1266
  font-size: var(--typography-h5-font-size);
1076
1267
  font-weight: var(--typography-h5-font-weight);
@@ -1079,7 +1270,7 @@
1079
1270
  margin: 0;
1080
1271
  width: 100%;
1081
1272
  }
1082
- .description {
1273
+ .card-secondary .cs-description {
1083
1274
  font-family: var(--typography-body-md-font-family);
1084
1275
  font-size: var(--typography-body-md-font-size);
1085
1276
  font-weight: var(--typography-body-md-font-weight);
@@ -1088,34 +1279,15 @@
1088
1279
  margin: 0;
1089
1280
  width: 100%;
1090
1281
  }
1091
- .link {
1092
- display: inline-flex;
1093
- align-items: center;
1094
- gap: var(--spacing-8);
1095
- background: none;
1096
- border: none;
1097
- padding: 0;
1098
- cursor: pointer;
1099
- font-family: var(--font-family-base);
1100
- font-size: var(--font-size-md);
1101
- font-weight: var(--font-weight-semi-bold);
1102
- line-height: var(--line-height-tight);
1103
- color: var(--link-coral-color);
1104
- text-decoration: none;
1105
- transition: opacity 150ms ease;
1106
- }
1107
- .link:hover {
1108
- opacity: 0.8;
1109
- }
1110
1282
 
1111
- /* components/Card/CardThumbnailVariant.module.css */
1112
- .card {
1283
+ /* components/Card/CardThumbnailVariant.css */
1284
+ .card-thumbnail {
1113
1285
  display: flex;
1114
1286
  flex-direction: column;
1115
1287
  gap: var(--spacing-24);
1116
1288
  width: 100%;
1117
1289
  }
1118
- .thumbnailWrapper {
1290
+ .card-thumbnail .ct-thumbnailWrapper {
1119
1291
  position: relative;
1120
1292
  width: 100%;
1121
1293
  aspect-ratio: 4 / 3;
@@ -1123,7 +1295,7 @@
1123
1295
  overflow: hidden;
1124
1296
  flex-shrink: 0;
1125
1297
  }
1126
- .thumbnailImage {
1298
+ .card-thumbnail .ct-thumbnailImage {
1127
1299
  position: absolute;
1128
1300
  inset: 0;
1129
1301
  width: 100%;
@@ -1132,8 +1304,12 @@
1132
1304
  border-radius: inherit;
1133
1305
  pointer-events: none;
1134
1306
  display: block;
1307
+ transition: transform 0.25s ease-in-out;
1308
+ }
1309
+ .card-thumbnail:hover .ct-thumbnailImage {
1310
+ transform: scale(1.1);
1135
1311
  }
1136
- .playButton {
1312
+ .card-thumbnail .ct-playButton {
1137
1313
  position: absolute;
1138
1314
  top: 50%;
1139
1315
  left: 50%;
@@ -1145,7 +1321,7 @@
1145
1321
  height: var(--spacing-80);
1146
1322
  pointer-events: none;
1147
1323
  }
1148
- .avatar {
1324
+ .card-thumbnail .ct-avatar {
1149
1325
  position: absolute;
1150
1326
  bottom: var(--spacing-24);
1151
1327
  right: var(--spacing-24);
@@ -1155,13 +1331,13 @@
1155
1331
  object-fit: cover;
1156
1332
  display: block;
1157
1333
  }
1158
- .content {
1334
+ .card-thumbnail .ct-content {
1159
1335
  display: flex;
1160
1336
  flex-direction: column;
1161
1337
  gap: var(--spacing-16);
1162
1338
  width: 100%;
1163
1339
  }
1164
- .metaRow {
1340
+ .card-thumbnail .ct-metaRow {
1165
1341
  display: flex;
1166
1342
  align-items: center;
1167
1343
  justify-content: space-between;
@@ -1169,14 +1345,14 @@
1169
1345
  flex-wrap: wrap;
1170
1346
  gap: var(--spacing-12);
1171
1347
  }
1172
- .tagsList {
1348
+ .card-thumbnail .ct-tagsList {
1173
1349
  display: flex;
1174
1350
  align-items: center;
1175
1351
  gap: var(--spacing-12);
1176
1352
  flex: 1 0 0;
1177
1353
  min-width: 0;
1178
1354
  }
1179
- .copyLink {
1355
+ .card-thumbnail .ct-copyLink {
1180
1356
  display: inline-flex;
1181
1357
  align-items: center;
1182
1358
  justify-content: center;
@@ -1192,10 +1368,10 @@
1192
1368
  flex-shrink: 0;
1193
1369
  transition: background-color 100ms ease;
1194
1370
  }
1195
- .copyLink:hover {
1371
+ .card-thumbnail .ct-copyLink:hover {
1196
1372
  background-color: var(--tag-fill-background);
1197
1373
  }
1198
- .title {
1374
+ .card-thumbnail .ct-title {
1199
1375
  font-family: var(--typography-h5-font-family);
1200
1376
  font-size: var(--typography-h5-font-size);
1201
1377
  font-weight: var(--typography-h5-font-weight);
@@ -1205,7 +1381,7 @@
1205
1381
  text-overflow: ellipsis;
1206
1382
  margin: 0;
1207
1383
  }
1208
- .summary {
1384
+ .card-thumbnail .ct-summary {
1209
1385
  font-family: var(--typography-body-md-font-family);
1210
1386
  font-size: var(--typography-body-md-font-size);
1211
1387
  font-weight: var(--typography-body-md-font-weight);
@@ -1216,13 +1392,13 @@
1216
1392
  margin: 0;
1217
1393
  }
1218
1394
 
1219
- /* primitives/Pagination/Pagination.module.css */
1395
+ /* primitives/Pagination/Pagination.css */
1220
1396
  .pagination {
1221
1397
  display: flex;
1222
1398
  align-items: center;
1223
1399
  gap: var(--spacing-8);
1224
1400
  }
1225
- .pageButton {
1401
+ .pagination .pageButton {
1226
1402
  display: flex;
1227
1403
  align-items: center;
1228
1404
  justify-content: center;
@@ -1244,17 +1420,17 @@
1244
1420
  outline: none;
1245
1421
  box-sizing: border-box;
1246
1422
  }
1247
- .pageButton:focus-visible {
1423
+ .pagination .pageButton:focus-visible {
1248
1424
  outline: 2px solid var(--color-blue-600);
1249
1425
  outline-offset: 2px;
1250
1426
  }
1251
- .pageButtonSelected {
1427
+ .pagination .pageButtonSelected {
1252
1428
  background: var(--pagination-page-selected-bg);
1253
1429
  color: var(--pagination-page-selected-text);
1254
1430
  border-radius: var(--pagination-page-radius);
1255
1431
  cursor: default;
1256
1432
  }
1257
- .ellipsis {
1433
+ .pagination .ellipsis {
1258
1434
  display: flex;
1259
1435
  align-items: center;
1260
1436
  justify-content: center;
@@ -1268,7 +1444,7 @@
1268
1444
  line-height: 1.375rem;
1269
1445
  user-select: none;
1270
1446
  }
1271
- .navButton {
1447
+ .pagination .navButton {
1272
1448
  display: flex;
1273
1449
  align-items: center;
1274
1450
  justify-content: center;
@@ -1284,16 +1460,16 @@
1284
1460
  outline: none;
1285
1461
  box-sizing: border-box;
1286
1462
  }
1287
- .navButton:focus-visible {
1463
+ .pagination .navButton:focus-visible {
1288
1464
  outline: 2px solid var(--color-blue-600);
1289
1465
  outline-offset: 2px;
1290
1466
  border-radius: var(--radius-md);
1291
1467
  }
1292
- .navButtonDisabled {
1468
+ .pagination .navButtonDisabled {
1293
1469
  color: var(--pagination-nav-icon-disabled);
1294
1470
  cursor: not-allowed;
1295
1471
  }
1296
- .navIcon {
1472
+ .pagination .navIcon {
1297
1473
  display: flex;
1298
1474
  align-items: center;
1299
1475
  justify-content: center;
@@ -1301,4 +1477,2068 @@
1301
1477
  height: var(--spacing-16);
1302
1478
  flex-shrink: 0;
1303
1479
  }
1480
+
1481
+ /* templates/FeatureCards/FeatureCards.css */
1482
+ .fc-section {
1483
+ width: 100%;
1484
+ background-color: var(--color-slate-50);
1485
+ }
1486
+ .fc-container {
1487
+ display: flex;
1488
+ flex-direction: column;
1489
+ gap: var(--spacing-48);
1490
+ max-width: 1280px;
1491
+ margin: 0 auto;
1492
+ padding: var(--spacing-56) var(--spacing-16);
1493
+ box-sizing: border-box;
1494
+ }
1495
+ @media (min-width: 992px) {
1496
+ .fc-container {
1497
+ padding: var(--spacing-112) var(--spacing-56);
1498
+ }
1499
+ }
1500
+ .fc-header {
1501
+ display: flex;
1502
+ flex-direction: column;
1503
+ align-items: flex-start;
1504
+ gap: var(--spacing-16);
1505
+ text-align: left;
1506
+ }
1507
+ @media (min-width: 768px) {
1508
+ .fc-header {
1509
+ align-items: center;
1510
+ text-align: center;
1511
+ }
1512
+ }
1513
+ .fc-sectionTitle {
1514
+ font-family: var(--font-family-base);
1515
+ font-size: var(--font-size-4xl);
1516
+ font-weight: var(--font-weight-extra-bold);
1517
+ line-height: var(--line-height-4xl);
1518
+ color: var(--color-slate-1200);
1519
+ margin: 0;
1520
+ }
1521
+ .fc-sectionDescription {
1522
+ font-family: var(--typography-body-md-font-family);
1523
+ font-size: var(--typography-body-md-font-size);
1524
+ font-weight: var(--typography-body-md-font-weight);
1525
+ line-height: var(--typography-body-md-line-height);
1526
+ color: var(--color-slate-1200);
1527
+ margin: 0;
1528
+ max-width: 640px;
1529
+ }
1530
+ .fc-grid {
1531
+ display: flex;
1532
+ flex-direction: column;
1533
+ gap: var(--spacing-16);
1534
+ width: 100%;
1535
+ }
1536
+ @media (min-width: 768px) {
1537
+ .fc-grid {
1538
+ flex-direction: row;
1539
+ gap: var(--spacing-24);
1540
+ align-items: stretch;
1541
+ }
1542
+ .fc-grid > * {
1543
+ flex: 1 1 0;
1544
+ min-width: 0;
1545
+ }
1546
+ }
1547
+
1548
+ /* templates/Footer/Footer.css */
1549
+ .footer {
1550
+ background-color: var(--footer-background);
1551
+ width: 100%;
1552
+ font-family: var(--font-family-base);
1553
+ }
1554
+ .footer__inner {
1555
+ display: flex;
1556
+ flex-direction: column;
1557
+ align-items: center;
1558
+ gap: var(--spacing-32);
1559
+ padding: var(--spacing-32) var(--spacing-16);
1560
+ width: 100%;
1561
+ max-width: 640px;
1562
+ min-width: 320px;
1563
+ margin: 0 auto;
1564
+ box-sizing: border-box;
1565
+ overflow: hidden;
1566
+ }
1567
+ .footer__header {
1568
+ display: flex;
1569
+ align-items: center;
1570
+ justify-content: center;
1571
+ gap: var(--spacing-24);
1572
+ border-bottom: 1px solid var(--footer-header-divider);
1573
+ padding-bottom: var(--spacing-32);
1574
+ width: 100%;
1575
+ }
1576
+ .footer__logo-wrapper {
1577
+ display: flex;
1578
+ align-items: center;
1579
+ flex-shrink: 0;
1580
+ }
1581
+ .footer__logo {
1582
+ height: 20px;
1583
+ width: auto;
1584
+ min-width: 1px;
1585
+ display: block;
1586
+ }
1587
+ .footer__social {
1588
+ display: flex;
1589
+ align-items: center;
1590
+ gap: var(--spacing-8);
1591
+ flex-shrink: 0;
1592
+ }
1593
+ .footer__social--in-header {
1594
+ display: none;
1595
+ }
1596
+ .footer__social--standalone {
1597
+ display: flex;
1598
+ align-items: center;
1599
+ justify-content: center;
1600
+ gap: var(--spacing-8);
1601
+ width: 100%;
1602
+ }
1603
+ .footer__social-icon {
1604
+ display: flex;
1605
+ align-items: center;
1606
+ justify-content: center;
1607
+ width: 32px;
1608
+ height: 32px;
1609
+ color: var(--footer-social-icon-color);
1610
+ text-decoration: none;
1611
+ flex-shrink: 0;
1612
+ overflow: hidden;
1613
+ }
1614
+ .footer__social-icon svg {
1615
+ width: 20px;
1616
+ height: 20px;
1617
+ display: block;
1618
+ }
1619
+ .footer__social-icon:hover {
1620
+ opacity: 0.8;
1621
+ }
1622
+ .footer__ai-bar.footer__ai-bar--inline {
1623
+ display: none;
1624
+ }
1625
+ .footer__ai-section {
1626
+ border-bottom: 1px solid var(--footer-header-divider);
1627
+ padding-bottom: var(--spacing-32);
1628
+ width: 100%;
1629
+ box-sizing: border-box;
1630
+ }
1631
+ .footer__ai-bar {
1632
+ background-color: var(--footer-surface);
1633
+ border-radius: var(--radius-xl);
1634
+ padding: var(--spacing-16);
1635
+ display: flex;
1636
+ align-items: center;
1637
+ gap: var(--spacing-16);
1638
+ }
1639
+ .footer__ai-bar--block {
1640
+ flex-direction: column;
1641
+ }
1642
+ .footer__ai-bar-label {
1643
+ font-size: var(--font-size-xs);
1644
+ font-weight: var(--font-weight-regular);
1645
+ line-height: var(--line-height-xs);
1646
+ color: var(--color-slate-50);
1647
+ text-align: center;
1648
+ white-space: nowrap;
1649
+ }
1650
+ .footer__ai-bar-icons {
1651
+ display: flex;
1652
+ align-items: center;
1653
+ gap: var(--spacing-8);
1654
+ }
1655
+ .footer__ai-icon {
1656
+ display: flex;
1657
+ align-items: center;
1658
+ justify-content: center;
1659
+ width: 32px;
1660
+ height: 32px;
1661
+ flex-shrink: 0;
1662
+ text-decoration: none;
1663
+ }
1664
+ .footer__ai-icon img {
1665
+ width: 24px;
1666
+ height: 24px;
1667
+ border-radius: var(--radius-md);
1668
+ display: block;
1669
+ object-fit: cover;
1670
+ }
1671
+ .footer__nav--columns {
1672
+ display: none;
1673
+ }
1674
+ .footer__column {
1675
+ display: flex;
1676
+ flex-direction: column;
1677
+ gap: var(--spacing-32);
1678
+ flex: 1 0 0;
1679
+ }
1680
+ .footer__nav-section {
1681
+ display: flex;
1682
+ flex-direction: column;
1683
+ gap: var(--spacing-16);
1684
+ }
1685
+ .footer__nav-title {
1686
+ font-family: var(--font-family-base);
1687
+ font-size: var(--font-size-md);
1688
+ font-weight: var(--font-weight-extra-bold);
1689
+ line-height: var(--line-height-md);
1690
+ color: var(--footer-nav-title-color);
1691
+ margin: 0;
1692
+ white-space: nowrap;
1693
+ }
1694
+ .footer__nav-links {
1695
+ list-style: none;
1696
+ padding: 0;
1697
+ margin: 0;
1698
+ display: flex;
1699
+ flex-direction: column;
1700
+ gap: var(--spacing-16);
1701
+ }
1702
+ .footer__nav--accordion {
1703
+ display: flex;
1704
+ flex-direction: column;
1705
+ width: 100%;
1706
+ }
1707
+ .footer__accordion-item {
1708
+ width: 100%;
1709
+ }
1710
+ .footer__accordion-toggle {
1711
+ display: flex;
1712
+ align-items: center;
1713
+ justify-content: space-between;
1714
+ width: 100%;
1715
+ padding: var(--spacing-16) 0;
1716
+ background: none;
1717
+ border: none;
1718
+ cursor: pointer;
1719
+ text-align: left;
1720
+ font-family: var(--font-family-base);
1721
+ }
1722
+ .footer__accordion-label {
1723
+ font-size: var(--font-size-md);
1724
+ font-weight: var(--font-weight-regular);
1725
+ line-height: var(--line-height-md);
1726
+ color: var(--footer-accordion-text-color);
1727
+ }
1728
+ .footer__accordion-chevron {
1729
+ display: flex;
1730
+ align-items: center;
1731
+ justify-content: center;
1732
+ width: 24px;
1733
+ height: 24px;
1734
+ color: var(--footer-accordion-chevron-color);
1735
+ flex-shrink: 0;
1736
+ border-radius: var(--radius-md);
1737
+ transition: transform 150ms ease;
1738
+ }
1739
+ .footer__accordion-item--open .footer__accordion-chevron {
1740
+ transform: rotate(180deg);
1741
+ }
1742
+ .footer__accordion-links {
1743
+ list-style: none;
1744
+ padding: 0 0 var(--spacing-8) 0;
1745
+ margin: 0;
1746
+ display: flex;
1747
+ flex-direction: column;
1748
+ gap: var(--spacing-16);
1749
+ }
1750
+ .footer__nav-link {
1751
+ display: inline-flex;
1752
+ align-items: center;
1753
+ gap: var(--spacing-8);
1754
+ font-family: var(--font-family-base);
1755
+ font-size: var(--font-size-sm);
1756
+ font-weight: var(--font-weight-regular);
1757
+ line-height: var(--line-height-md);
1758
+ color: var(--footer-nav-link-color);
1759
+ text-decoration: none;
1760
+ white-space: nowrap;
1761
+ }
1762
+ .footer__nav-link:hover {
1763
+ opacity: 0.8;
1764
+ }
1765
+ .footer__nav-link svg {
1766
+ width: 12px;
1767
+ height: 12px;
1768
+ flex-shrink: 0;
1769
+ }
1770
+ .footer__sidebar {
1771
+ display: none;
1772
+ }
1773
+ .footer__deriv-go-card,
1774
+ .footer__deriv-go-banner {
1775
+ background-color: var(--footer-surface);
1776
+ border-radius: var(--radius-xl);
1777
+ padding: var(--spacing-24);
1778
+ display: flex;
1779
+ flex-direction: column;
1780
+ gap: var(--spacing-16);
1781
+ box-sizing: border-box;
1782
+ }
1783
+ .footer__deriv-go-banner {
1784
+ width: 100%;
1785
+ }
1786
+ .footer__deriv-go-banner-info {
1787
+ display: flex;
1788
+ flex-direction: column;
1789
+ gap: var(--spacing-8);
1790
+ }
1791
+ .footer__deriv-go-banner-badges {
1792
+ width: 100%;
1793
+ }
1794
+ .footer__deriv-go-header {
1795
+ display: flex;
1796
+ align-items: center;
1797
+ gap: var(--spacing-8);
1798
+ }
1799
+ .footer__deriv-go-logo {
1800
+ width: 24px;
1801
+ height: 24px;
1802
+ display: block;
1803
+ flex-shrink: 0;
1804
+ overflow: hidden;
1805
+ }
1806
+ .footer__deriv-go-title {
1807
+ font-family: var(--font-family-base);
1808
+ font-size: var(--font-size-md);
1809
+ font-weight: var(--font-weight-extra-bold);
1810
+ line-height: var(--line-height-md);
1811
+ color: var(--color-slate-50);
1812
+ white-space: nowrap;
1813
+ }
1814
+ .footer__deriv-go-desc {
1815
+ font-family: var(--font-family-base);
1816
+ font-size: var(--font-size-sm);
1817
+ font-weight: var(--font-weight-regular);
1818
+ line-height: var(--line-height-md);
1819
+ color: var(--color-slate-50);
1820
+ margin: 0;
1821
+ }
1822
+ .footer__deriv-go-qr {
1823
+ display: flex;
1824
+ align-items: center;
1825
+ gap: var(--spacing-8);
1826
+ }
1827
+ .footer__deriv-go-qr-img {
1828
+ width: 64px;
1829
+ height: 64px;
1830
+ display: block;
1831
+ flex-shrink: 0;
1832
+ }
1833
+ .footer__deriv-go-qr-icon {
1834
+ width: 64px;
1835
+ height: 64px;
1836
+ display: block;
1837
+ flex-shrink: 0;
1838
+ }
1839
+ .footer__deriv-go-qr-icon svg {
1840
+ display: block;
1841
+ width: 100%;
1842
+ height: 100%;
1843
+ }
1844
+ .footer__deriv-go-qr-label {
1845
+ font-family: var(--font-family-base);
1846
+ font-size: var(--font-size-sm);
1847
+ font-weight: var(--font-weight-regular);
1848
+ line-height: var(--line-height-md);
1849
+ color: var(--color-slate-50);
1850
+ }
1851
+ .footer__app-badges {
1852
+ display: flex;
1853
+ flex-direction: column;
1854
+ gap: var(--spacing-8);
1855
+ align-items: stretch;
1856
+ }
1857
+ .footer__app-badge {
1858
+ display: flex;
1859
+ align-items: center;
1860
+ justify-content: center;
1861
+ border: 1px solid var(--footer-app-badge-border);
1862
+ border-radius: var(--radius-sm);
1863
+ padding: var(--spacing-4) var(--spacing-8);
1864
+ min-height: 36px;
1865
+ text-decoration: none;
1866
+ box-sizing: border-box;
1867
+ }
1868
+ .footer__app-badge img {
1869
+ display: block;
1870
+ max-height: 24px;
1871
+ width: auto;
1872
+ }
1873
+ .footer__app-badge-svg {
1874
+ display: block;
1875
+ width: 100%;
1876
+ text-decoration: none;
1877
+ }
1878
+ .footer__app-badge-svg svg {
1879
+ display: block;
1880
+ width: 100%;
1881
+ height: auto;
1882
+ }
1883
+ .footer__app-note {
1884
+ font-family: var(--font-family-base);
1885
+ font-size: var(--font-size-xs);
1886
+ font-weight: var(--font-weight-regular);
1887
+ line-height: var(--line-height-normal);
1888
+ color: var(--color-slate-50);
1889
+ margin: 0;
1890
+ }
1891
+ .footer__investors-card {
1892
+ background-color: var(--footer-surface);
1893
+ border-radius: var(--radius-xl);
1894
+ padding: var(--spacing-16);
1895
+ display: flex;
1896
+ align-items: flex-end;
1897
+ justify-content: flex-end;
1898
+ box-sizing: border-box;
1899
+ }
1900
+ .footer__investors-stacked {
1901
+ display: flex;
1902
+ align-items: center;
1903
+ justify-content: center;
1904
+ width: 100%;
1905
+ }
1906
+ .footer__investors-img {
1907
+ height: 32px;
1908
+ width: 160px;
1909
+ display: block;
1910
+ object-fit: contain;
1911
+ }
1912
+ .footer__legal-block {
1913
+ display: flex;
1914
+ flex-direction: column;
1915
+ gap: var(--spacing-16);
1916
+ width: 100%;
1917
+ }
1918
+ .footer__license {
1919
+ font-family: var(--font-family-base);
1920
+ font-size: var(--font-size-sm);
1921
+ font-weight: var(--font-weight-regular);
1922
+ line-height: var(--line-height-md);
1923
+ color: var(--footer-legal-text-color);
1924
+ width: 100%;
1925
+ }
1926
+ .footer__license p {
1927
+ margin: 0 0 var(--spacing-16) 0;
1928
+ }
1929
+ .footer__license p:last-child {
1930
+ margin-bottom: 0;
1931
+ }
1932
+ .footer__license a {
1933
+ color: var(--footer-legal-text-color);
1934
+ text-decoration: underline;
1935
+ }
1936
+ .footer__risk-warning {
1937
+ background-color: var(--footer-surface);
1938
+ border-radius: var(--radius-md);
1939
+ padding: var(--spacing-16);
1940
+ box-sizing: border-box;
1941
+ width: 100%;
1942
+ }
1943
+ .footer__risk-warning-text {
1944
+ font-family: var(--font-family-base);
1945
+ font-size: var(--font-size-sm);
1946
+ font-weight: var(--font-weight-regular);
1947
+ line-height: var(--line-height-md);
1948
+ color: var(--footer-legal-text-color);
1949
+ margin: 0;
1950
+ }
1951
+ @media (min-width: 768px) {
1952
+ .footer__inner {
1953
+ max-width: 1280px;
1954
+ min-width: 641px;
1955
+ padding: var(--spacing-32) var(--spacing-24);
1956
+ }
1957
+ .footer__header {
1958
+ justify-content: space-between;
1959
+ }
1960
+ .footer__social--in-header {
1961
+ display: flex;
1962
+ }
1963
+ .footer__social--standalone {
1964
+ display: none;
1965
+ }
1966
+ .footer__ai-section {
1967
+ display: none;
1968
+ }
1969
+ .footer__deriv-go-banner {
1970
+ flex-direction: row;
1971
+ align-items: flex-start;
1972
+ gap: var(--spacing-24);
1973
+ }
1974
+ .footer__deriv-go-banner-info {
1975
+ flex: 1 1 auto;
1976
+ }
1977
+ .footer__deriv-go-banner-badges {
1978
+ flex: 0 0 280px;
1979
+ width: 280px;
1980
+ }
1981
+ }
1982
+ @media (min-width: 992px) {
1983
+ .footer__inner {
1984
+ max-width: 1280px;
1985
+ padding: var(--spacing-48) var(--spacing-32);
1986
+ gap: var(--spacing-40);
1987
+ }
1988
+ .footer__header {
1989
+ border-bottom-color: var(--footer-divider-desktop);
1990
+ }
1991
+ .footer__ai-bar.footer__ai-bar--inline {
1992
+ display: flex;
1993
+ flex-direction: row;
1994
+ align-items: center;
1995
+ padding-top: var(--spacing-16);
1996
+ padding-bottom: var(--spacing-16);
1997
+ gap: var(--spacing-16);
1998
+ }
1999
+ .footer__ai-section {
2000
+ display: none;
2001
+ }
2002
+ .footer__nav--columns {
2003
+ display: flex;
2004
+ gap: var(--spacing-24);
2005
+ align-items: flex-start;
2006
+ width: 100%;
2007
+ }
2008
+ .footer__nav--accordion {
2009
+ display: none;
2010
+ }
2011
+ .footer__sidebar {
2012
+ display: flex;
2013
+ flex-direction: column;
2014
+ gap: var(--spacing-8);
2015
+ align-items: flex-start;
2016
+ flex-shrink: 0;
2017
+ width: 192px;
2018
+ }
2019
+ .footer__deriv-go-card {
2020
+ width: 192px;
2021
+ }
2022
+ .footer__deriv-go-banner {
2023
+ display: none;
2024
+ }
2025
+ .footer__investors-stacked {
2026
+ display: none;
2027
+ }
2028
+ .footer__legal-block {
2029
+ align-items: flex-start;
2030
+ }
2031
+ }
2032
+
2033
+ /* templates/Hero/Hero.css */
2034
+ :root {
2035
+ --hero-dark-bg: var(--color-slate-1200);
2036
+ --hero-light-bg: var(--color-slate-75);
2037
+ --hero-text-light: var(--color-slate-50);
2038
+ --hero-text-dark: var(--color-slate-1200);
2039
+ --hero-subtitle-size: var(--font-size-md);
2040
+ --hero-subtitle-lh: var(--line-height-md);
2041
+ --hero-title-size-mobile: var(--font-size-4xl);
2042
+ --hero-title-lh-mobile: var(--line-height-4xl);
2043
+ --hero-title-size: var(--font-size-5xl);
2044
+ --hero-title-lh: var(--line-height-5xl);
2045
+ --hero-body-size: var(--font-size-sm);
2046
+ --hero-body-lh: var(--line-height-md);
2047
+ }
2048
+ .hero {
2049
+ position: relative;
2050
+ width: 100%;
2051
+ font-family: var(--font-family-base);
2052
+ box-sizing: border-box;
2053
+ overflow: hidden;
2054
+ }
2055
+ .hero__bg-image {
2056
+ position: absolute;
2057
+ inset: 0;
2058
+ width: 100%;
2059
+ height: 100%;
2060
+ object-fit: cover;
2061
+ object-position: center;
2062
+ pointer-events: none;
2063
+ display: block;
2064
+ z-index: 0;
2065
+ }
2066
+ .hero__overlay {
2067
+ position: absolute;
2068
+ inset: 0;
2069
+ pointer-events: none;
2070
+ z-index: 2;
2071
+ }
2072
+ .hero__inner {
2073
+ position: relative;
2074
+ z-index: 3;
2075
+ width: 100%;
2076
+ max-width: 1280px;
2077
+ margin: 0 auto;
2078
+ box-sizing: border-box;
2079
+ padding: var(--spacing-24) var(--spacing-16);
2080
+ }
2081
+ .hero__text {
2082
+ display: flex;
2083
+ flex-direction: column;
2084
+ gap: var(--spacing-16);
2085
+ }
2086
+ .hero__subtitle {
2087
+ font-size: var(--hero-subtitle-size);
2088
+ font-weight: var(--font-weight-extra-bold);
2089
+ line-height: var(--hero-subtitle-lh);
2090
+ margin: 0;
2091
+ }
2092
+ .hero__title {
2093
+ font-size: var(--hero-title-size-mobile);
2094
+ font-weight: var(--font-weight-extra-bold);
2095
+ line-height: var(--hero-title-lh-mobile);
2096
+ margin: 0;
2097
+ }
2098
+ .hero__description {
2099
+ font-size: var(--hero-body-size);
2100
+ font-weight: var(--font-weight-regular);
2101
+ line-height: var(--hero-body-lh);
2102
+ margin: 0;
2103
+ }
2104
+ .hero__buttons {
2105
+ display: flex;
2106
+ flex-direction: column;
2107
+ gap: var(--spacing-8);
2108
+ width: 100%;
2109
+ }
2110
+ .hero__body {
2111
+ display: flex;
2112
+ flex-direction: column;
2113
+ gap: var(--spacing-24);
2114
+ }
2115
+ .hero--homepage {
2116
+ background-color: var(--hero-dark-bg);
2117
+ height: 100vh;
2118
+ overflow: hidden;
2119
+ display: flex;
2120
+ align-items: stretch;
2121
+ }
2122
+ .hero--homepage .hero__overlay {
2123
+ background:
2124
+ linear-gradient(
2125
+ 180deg,
2126
+ var(--color-opacity-slate-16) 0%,
2127
+ rgba(0, 0, 0, 0) 20%,
2128
+ rgba(0, 0, 0, 0) 42%,
2129
+ var(--color-opacity-slate-48) 60%,
2130
+ var(--color-opacity-slate-72) 75%,
2131
+ var(--color-opacity-slate-88) 100%);
2132
+ }
2133
+ .hero--homepage .hero__inner {
2134
+ display: flex;
2135
+ flex-direction: column;
2136
+ justify-content: flex-end;
2137
+ height: 100vh;
2138
+ padding-top: 0;
2139
+ padding-bottom: var(--spacing-40);
2140
+ }
2141
+ .hero--homepage .hero__content {
2142
+ display: flex;
2143
+ flex-direction: column;
2144
+ gap: var(--spacing-24);
2145
+ width: 100%;
2146
+ }
2147
+ .hero--homepage .hero__image-slot {
2148
+ position: absolute;
2149
+ top: 0;
2150
+ left: 50%;
2151
+ transform: translateX(-50%);
2152
+ z-index: 4;
2153
+ width: 78%;
2154
+ max-width: 380px;
2155
+ height: auto;
2156
+ display: flex;
2157
+ overflow: visible;
2158
+ pointer-events: none;
2159
+ }
2160
+ .hero--homepage .hero__image-slot img {
2161
+ width: 100%;
2162
+ height: auto;
2163
+ object-fit: contain;
2164
+ object-position: top center;
2165
+ display: block;
2166
+ max-width: none;
2167
+ max-height: none;
2168
+ }
2169
+ .hero--homepage .hero__image-slot > *:not(img) {
2170
+ width: 100%;
2171
+ height: auto;
2172
+ display: block;
2173
+ }
2174
+ .hero--homepage .hero__subtitle,
2175
+ .hero--homepage .hero__title,
2176
+ .hero--homepage .hero__description {
2177
+ color: var(--hero-text-light);
2178
+ }
2179
+ .hero--homepage .hero__buttons {
2180
+ align-items: stretch;
2181
+ }
2182
+ .hero--full-image {
2183
+ background-color: var(--hero-dark-bg);
2184
+ min-height: 100vh;
2185
+ display: flex;
2186
+ align-items: center;
2187
+ }
2188
+ .hero--full-image .hero__overlay {
2189
+ background:
2190
+ linear-gradient(
2191
+ 180deg,
2192
+ var(--hero-dark-bg) 0%,
2193
+ var(--color-opacity-slate-72) 40%,
2194
+ rgba(24, 28, 37, 0) 100%);
2195
+ }
2196
+ .hero--full-image .hero__inner {
2197
+ display: flex;
2198
+ flex-direction: column;
2199
+ align-items: center;
2200
+ justify-content: center;
2201
+ min-height: 100vh;
2202
+ padding-top: var(--spacing-32);
2203
+ padding-bottom: var(--spacing-32);
2204
+ }
2205
+ .hero--full-image .hero__content {
2206
+ display: flex;
2207
+ flex-direction: column;
2208
+ align-items: center;
2209
+ gap: var(--spacing-24);
2210
+ width: 100%;
2211
+ text-align: center;
2212
+ }
2213
+ .hero--full-image .hero__text {
2214
+ align-items: center;
2215
+ max-width: 840px;
2216
+ }
2217
+ .hero--full-image .hero__subtitle,
2218
+ .hero--full-image .hero__title,
2219
+ .hero--full-image .hero__description {
2220
+ color: var(--hero-text-light);
2221
+ }
2222
+ .hero--full-image .hero__buttons {
2223
+ align-items: center;
2224
+ justify-content: center;
2225
+ }
2226
+ .hero--visuals,
2227
+ .hero--text-only {
2228
+ background-color: var(--hero-light-bg);
2229
+ min-height: 540px;
2230
+ display: flex;
2231
+ align-items: center;
2232
+ }
2233
+ .hero--visuals .hero__grid,
2234
+ .hero--text-only .hero__grid {
2235
+ position: absolute;
2236
+ inset: 0;
2237
+ pointer-events: none;
2238
+ z-index: 0;
2239
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M 40 0 L 0 0 0 40' fill='none' stroke='%23cfd4d8' stroke-width='0.5' opacity='0.5'/%3E%3C/svg%3E");
2240
+ background-repeat: repeat;
2241
+ background-size: 40px 40px;
2242
+ }
2243
+ .hero--visuals .hero__overlay,
2244
+ .hero--text-only .hero__overlay {
2245
+ background:
2246
+ linear-gradient(
2247
+ to right,
2248
+ var(--hero-light-bg) 0%,
2249
+ rgba(246, 247, 248, 0) 18%,
2250
+ rgba(246, 247, 248, 0) 82%,
2251
+ var(--hero-light-bg) 100%),
2252
+ linear-gradient(
2253
+ to bottom,
2254
+ var(--hero-light-bg) 0%,
2255
+ rgba(246, 247, 248, 0) 30%,
2256
+ rgba(246, 247, 248, 0) 70%,
2257
+ var(--hero-light-bg) 100%);
2258
+ }
2259
+ .hero--visuals .hero__inner,
2260
+ .hero--text-only .hero__inner {
2261
+ display: flex;
2262
+ flex-direction: column;
2263
+ align-items: center;
2264
+ justify-content: center;
2265
+ padding-top: var(--spacing-32);
2266
+ padding-bottom: var(--spacing-32);
2267
+ min-height: 540px;
2268
+ }
2269
+ .hero--visuals .hero__content,
2270
+ .hero--text-only .hero__content {
2271
+ display: flex;
2272
+ flex-direction: column;
2273
+ align-items: center;
2274
+ gap: var(--spacing-32);
2275
+ width: 100%;
2276
+ text-align: center;
2277
+ }
2278
+ .hero--visuals .hero__text,
2279
+ .hero--text-only .hero__text {
2280
+ align-items: center;
2281
+ max-width: 846px;
2282
+ }
2283
+ .hero--visuals .hero__subtitle,
2284
+ .hero--visuals .hero__title,
2285
+ .hero--visuals .hero__description,
2286
+ .hero--text-only .hero__subtitle,
2287
+ .hero--text-only .hero__title,
2288
+ .hero--text-only .hero__description {
2289
+ color: var(--hero-text-dark);
2290
+ }
2291
+ .hero--visuals .hero__buttons,
2292
+ .hero--text-only .hero__buttons {
2293
+ align-items: center;
2294
+ justify-content: center;
2295
+ flex-direction: row;
2296
+ }
2297
+ .hero__visual {
2298
+ position: absolute;
2299
+ z-index: 1;
2300
+ overflow: hidden;
2301
+ pointer-events: none;
2302
+ }
2303
+ .hero__visual img,
2304
+ .hero__visual > * {
2305
+ display: block;
2306
+ width: 100%;
2307
+ height: 100%;
2308
+ object-fit: contain;
2309
+ }
2310
+ .hero__visual--left {
2311
+ width: 160px;
2312
+ height: 160px;
2313
+ top: -20px;
2314
+ left: -20px;
2315
+ }
2316
+ .hero__visual--right {
2317
+ width: 160px;
2318
+ height: 160px;
2319
+ bottom: -20px;
2320
+ right: -20px;
2321
+ }
2322
+ @media (min-width: 768px) {
2323
+ .hero__inner {
2324
+ padding: var(--spacing-40) var(--spacing-24);
2325
+ }
2326
+ .hero--homepage .hero__inner,
2327
+ .hero--full-image .hero__inner {
2328
+ padding-top: var(--spacing-40);
2329
+ padding-bottom: var(--spacing-40);
2330
+ }
2331
+ .hero--homepage .hero__buttons,
2332
+ .hero--full-image .hero__buttons {
2333
+ flex-direction: row;
2334
+ align-items: center;
2335
+ }
2336
+ }
2337
+ @media (min-width: 992px) {
2338
+ .hero__inner {
2339
+ padding: var(--spacing-48) var(--spacing-32);
2340
+ }
2341
+ .hero__title {
2342
+ font-size: var(--hero-title-size);
2343
+ line-height: var(--hero-title-lh);
2344
+ }
2345
+ .hero--homepage .hero__inner {
2346
+ max-width: 1280px;
2347
+ padding: var(--spacing-96) var(--spacing-32);
2348
+ height: 100vh;
2349
+ justify-content: center;
2350
+ align-items: flex-start;
2351
+ }
2352
+ .hero--homepage .hero__content {
2353
+ flex-direction: column;
2354
+ gap: var(--spacing-32);
2355
+ max-width: 600px;
2356
+ }
2357
+ .hero--homepage .hero__left {
2358
+ width: 100%;
2359
+ }
2360
+ .hero--homepage .hero__body {
2361
+ gap: var(--spacing-32);
2362
+ }
2363
+ .hero--homepage .hero__subtitle {
2364
+ font-size: var(--font-size-2xl);
2365
+ line-height: var(--line-height-xl);
2366
+ }
2367
+ .hero--homepage .hero__title {
2368
+ font-size: var(--font-size-5xl);
2369
+ line-height: var(--line-height-5xl);
2370
+ }
2371
+ .hero--homepage .hero__image-slot {
2372
+ position: absolute;
2373
+ top: 75px;
2374
+ right: 0;
2375
+ left: auto;
2376
+ transform: none;
2377
+ z-index: 4;
2378
+ width: 50%;
2379
+ height: calc(100% - 5px);
2380
+ display: flex;
2381
+ align-items: flex-start;
2382
+ justify-content: flex-start;
2383
+ overflow: visible;
2384
+ pointer-events: none;
2385
+ max-width: none;
2386
+ }
2387
+ .hero--homepage .hero__image-slot img {
2388
+ height: 100%;
2389
+ width: auto;
2390
+ max-height: none;
2391
+ max-width: none;
2392
+ object-fit: contain;
2393
+ object-position: left top;
2394
+ }
2395
+ .hero--homepage .hero__buttons {
2396
+ flex-direction: row;
2397
+ align-items: center;
2398
+ width: auto;
2399
+ gap: var(--spacing-16);
2400
+ }
2401
+ .hero--homepage .hero__overlay {
2402
+ background:
2403
+ linear-gradient(
2404
+ to right,
2405
+ var(--color-slate-1200) 0%,
2406
+ var(--color-opacity-slate-88) 40%,
2407
+ var(--color-opacity-slate-24) 100%);
2408
+ }
2409
+ .hero--full-image .hero__text {
2410
+ max-width: 840px;
2411
+ }
2412
+ .hero--full-image .hero__buttons {
2413
+ flex-direction: row;
2414
+ align-items: center;
2415
+ width: auto;
2416
+ }
2417
+ .hero--visuals .hero__inner,
2418
+ .hero--text-only .hero__inner {
2419
+ position: relative;
2420
+ }
2421
+ .hero__visuals-wrapper {
2422
+ flex-direction: row;
2423
+ justify-content: center;
2424
+ position: relative;
2425
+ }
2426
+ .hero--visuals .hero__visual--left {
2427
+ width: 241px;
2428
+ height: 241px;
2429
+ top: 50%;
2430
+ left: 48px;
2431
+ bottom: auto;
2432
+ right: auto;
2433
+ transform: translateY(-50%);
2434
+ }
2435
+ .hero--visuals .hero__visual--right {
2436
+ width: 241px;
2437
+ height: 241px;
2438
+ top: 50%;
2439
+ right: 48px;
2440
+ bottom: auto;
2441
+ left: auto;
2442
+ transform: translateY(-50%);
2443
+ }
2444
+ .hero--visuals .hero__content,
2445
+ .hero--text-only .hero__content {
2446
+ max-width: 846px;
2447
+ width: 100%;
2448
+ }
2449
+ }
2450
+
2451
+ /* templates/Stats/Stats.css */
2452
+ :root {
2453
+ --stats-bg: var(--color-slate-50);
2454
+ --stats-card-bg: var(--color-slate-75);
2455
+ --stats-text-primary: var(--color-slate-1200);
2456
+ --stats-title-size: var(--font-size-4xl);
2457
+ --stats-title-lh: var(--line-height-4xl);
2458
+ --stats-desc-size: var(--font-size-md);
2459
+ --stats-desc-lh: var(--line-height-md);
2460
+ --stats-value-size: var(--font-size-3xl);
2461
+ --stats-value-lh: var(--line-height-3xl);
2462
+ --stats-value-featured-size: var(--font-size-5xl);
2463
+ --stats-value-featured-lh: var(--line-height-5xl);
2464
+ --stats-label-size: var(--font-size-lg);
2465
+ --stats-label-lh: var(--line-height-lg);
2466
+ }
2467
+ .stats {
2468
+ width: 100%;
2469
+ background-color: var(--stats-bg);
2470
+ font-family: var(--font-family-base);
2471
+ box-sizing: border-box;
2472
+ }
2473
+ .stats__inner {
2474
+ max-width: 1280px;
2475
+ margin: 0 auto;
2476
+ padding: var(--spacing-48) var(--spacing-16);
2477
+ display: flex;
2478
+ flex-direction: column;
2479
+ gap: var(--spacing-24);
2480
+ box-sizing: border-box;
2481
+ }
2482
+ .stats__header {
2483
+ display: flex;
2484
+ flex-direction: column;
2485
+ gap: var(--spacing-16);
2486
+ }
2487
+ .stats__title {
2488
+ font-size: var(--stats-title-size);
2489
+ font-weight: var(--font-weight-extra-bold);
2490
+ line-height: var(--stats-title-lh);
2491
+ color: var(--stats-text-primary);
2492
+ margin: 0;
2493
+ }
2494
+ .stats__description {
2495
+ font-size: var(--stats-desc-size);
2496
+ font-weight: var(--font-weight-regular);
2497
+ line-height: var(--stats-desc-lh);
2498
+ color: var(--stats-text-primary);
2499
+ margin: 0;
2500
+ }
2501
+ .stats__content {
2502
+ display: flex;
2503
+ flex-direction: column;
2504
+ align-items: center;
2505
+ gap: var(--spacing-32);
2506
+ width: 100%;
2507
+ }
2508
+ .stats__card {
2509
+ background-color: var(--stats-card-bg);
2510
+ border-radius: var(--radius-2xl);
2511
+ padding: var(--spacing-24);
2512
+ width: 100%;
2513
+ overflow: hidden;
2514
+ position: relative;
2515
+ box-sizing: border-box;
2516
+ display: flex;
2517
+ align-items: center;
2518
+ justify-content: center;
2519
+ }
2520
+ .stats__card-track {
2521
+ position: relative;
2522
+ width: 100%;
2523
+ height: 320px;
2524
+ overflow: visible;
2525
+ }
2526
+ .stats__stat {
2527
+ position: absolute;
2528
+ top: 50%;
2529
+ left: 0;
2530
+ right: 0;
2531
+ display: flex;
2532
+ flex-direction: column;
2533
+ align-items: center;
2534
+ text-align: center;
2535
+ will-change: transform, opacity;
2536
+ transform: translateY(-50%) scale(1);
2537
+ opacity: 1;
2538
+ }
2539
+ .stats__stat-value {
2540
+ display: block;
2541
+ font-family: var(--font-family-base);
2542
+ font-size: var(--stats-value-size);
2543
+ font-weight: var(--font-weight-extra-bold);
2544
+ line-height: var(--stats-value-lh);
2545
+ text-transform: uppercase;
2546
+ color: var(--stats-text-primary);
2547
+ }
2548
+ .stats__stat-label {
2549
+ display: block;
2550
+ font-family: var(--font-family-base);
2551
+ font-size: var(--stats-label-size);
2552
+ font-weight: var(--font-weight-regular);
2553
+ line-height: var(--stats-label-lh);
2554
+ color: var(--stats-text-primary);
2555
+ }
2556
+ .stats__stat--active .stats__stat-value {
2557
+ font-size: var(--stats-value-featured-size);
2558
+ line-height: var(--stats-value-featured-lh);
2559
+ font-weight: 900;
2560
+ }
2561
+ .stats__stat--inactive .stats__stat-value {
2562
+ font-size: var(--stats-value-size);
2563
+ line-height: var(--stats-value-lh);
2564
+ font-weight: var(--font-weight-extra-bold);
2565
+ color: var(--color-slate-400);
2566
+ }
2567
+ .stats__stat--inactive .stats__stat-label {
2568
+ color: var(--color-slate-400);
2569
+ }
2570
+ .stats__fade {
2571
+ position: absolute;
2572
+ left: 0;
2573
+ right: 0;
2574
+ height: 100px;
2575
+ pointer-events: none;
2576
+ z-index: 3;
2577
+ }
2578
+ .stats__fade--top {
2579
+ top: 0;
2580
+ background:
2581
+ linear-gradient(
2582
+ 180deg,
2583
+ var(--stats-card-bg) 0%,
2584
+ rgba(246, 247, 248, 0) 100%);
2585
+ }
2586
+ .stats__fade--bottom {
2587
+ bottom: 0;
2588
+ background:
2589
+ linear-gradient(
2590
+ 0deg,
2591
+ var(--stats-card-bg) 0%,
2592
+ rgba(246, 247, 248, 0) 100%);
2593
+ }
2594
+ .stats__award {
2595
+ display: flex;
2596
+ align-items: center;
2597
+ justify-content: center;
2598
+ }
2599
+ .stats__award-image {
2600
+ display: block;
2601
+ width: 100px;
2602
+ height: 100px;
2603
+ object-fit: contain;
2604
+ }
2605
+ .stats__awards-col {
2606
+ display: none;
2607
+ }
2608
+ .stats__awards-mobile {
2609
+ display: grid;
2610
+ grid-template-columns: 1fr 1fr;
2611
+ gap: var(--spacing-16);
2612
+ width: 100%;
2613
+ }
2614
+ @media (min-width: 768px) {
2615
+ .stats__header {
2616
+ align-items: center;
2617
+ text-align: center;
2618
+ }
2619
+ .stats__inner {
2620
+ gap: var(--spacing-48);
2621
+ padding: var(--spacing-48) var(--spacing-24);
2622
+ }
2623
+ }
2624
+ @media (min-width: 992px) {
2625
+ .stats__inner {
2626
+ padding: var(--spacing-96) var(--spacing-32);
2627
+ gap: var(--spacing-80);
2628
+ }
2629
+ .stats__header {
2630
+ max-width: 846px;
2631
+ margin-left: auto;
2632
+ margin-right: auto;
2633
+ }
2634
+ .stats__content {
2635
+ flex-direction: row;
2636
+ align-items: stretch;
2637
+ justify-content: center;
2638
+ gap: var(--spacing-24);
2639
+ }
2640
+ .stats__card {
2641
+ width: 414px;
2642
+ height: 414px;
2643
+ padding: var(--spacing-72);
2644
+ flex-shrink: 0;
2645
+ }
2646
+ .stats__card-track {
2647
+ height: 270px;
2648
+ }
2649
+ .stats__fade {
2650
+ height: 65px;
2651
+ }
2652
+ .stats__awards-col {
2653
+ display: flex;
2654
+ flex-direction: column;
2655
+ gap: var(--spacing-32);
2656
+ width: 196px;
2657
+ flex-shrink: 0;
2658
+ align-items: center;
2659
+ }
2660
+ .stats__awards-col--left {
2661
+ justify-content: flex-start;
2662
+ }
2663
+ .stats__awards-col--right {
2664
+ justify-content: flex-end;
2665
+ }
2666
+ .stats__awards-col .stats__award-image {
2667
+ width: 140px;
2668
+ height: 140px;
2669
+ }
2670
+ .stats__awards-mobile {
2671
+ display: none;
2672
+ }
2673
+ }
2674
+
2675
+ /* templates/Scrollytelling/Scrollytelling.css */
2676
+ :root {
2677
+ --scrolly-bg: var(--color-slate-50);
2678
+ --scrolly-text-primary: var(--color-slate-1200);
2679
+ --scrolly-text-muted: var(--color-slate-500);
2680
+ --scrolly-link-color: var(--color-coral-500);
2681
+ --scrolly-link-hover: var(--color-coral-600);
2682
+ --scrolly-media-bg: var(--color-slate-200);
2683
+ --scrolly-header-size: var(--font-size-3xl);
2684
+ --scrolly-header-lh: var(--line-height-3xl);
2685
+ --scrolly-title-size: var(--font-size-2xl);
2686
+ --scrolly-title-lh: var(--line-height-2xl);
2687
+ --scrolly-body-size: var(--font-size-md);
2688
+ --scrolly-body-lh: var(--line-height-md);
2689
+ --scrolly-link-size: var(--font-size-md);
2690
+ --scrolly-link-lh: var(--line-height-sm);
2691
+ --scrolly-col-gap: var(--spacing-112);
2692
+ --scrolly-media-radius: var(--radius-2xl);
2693
+ --scrolly-mobile-radius: var(--radius-2xl);
2694
+ --scrolly-item-min-height: 60vh;
2695
+ --scrolly-sticky-top: var(--spacing-80);
2696
+ }
2697
+ @media (min-width: 992px) {
2698
+ :root {
2699
+ --scrolly-header-size: var(--font-size-4xl);
2700
+ --scrolly-header-lh: var(--line-height-4xl);
2701
+ --scrolly-title-size: var(--font-size-3xl);
2702
+ --scrolly-title-lh: var(--line-height-3xl);
2703
+ }
2704
+ }
2705
+ .scrolly {
2706
+ width: 100%;
2707
+ background-color: var(--scrolly-bg);
2708
+ font-family: var(--font-family-base);
2709
+ box-sizing: border-box;
2710
+ }
2711
+ .scrolly__inner {
2712
+ max-width: 1280px;
2713
+ margin: 0 auto;
2714
+ padding: var(--spacing-48) var(--spacing-16);
2715
+ display: flex;
2716
+ flex-direction: column;
2717
+ gap: var(--spacing-32);
2718
+ box-sizing: border-box;
2719
+ }
2720
+ .scrolly__header {
2721
+ font-size: var(--scrolly-header-size);
2722
+ font-weight: var(--font-weight-extra-bold);
2723
+ line-height: var(--scrolly-header-lh);
2724
+ color: var(--scrolly-text-primary);
2725
+ margin: 0;
2726
+ }
2727
+ .scrolly__layout {
2728
+ display: none;
2729
+ }
2730
+ .scrolly__mobile-list {
2731
+ display: flex;
2732
+ flex-direction: column;
2733
+ gap: var(--spacing-48);
2734
+ }
2735
+ .scrolly__mobile-item {
2736
+ display: flex;
2737
+ flex-direction: column;
2738
+ gap: var(--spacing-16);
2739
+ }
2740
+ .scrolly__mobile-media {
2741
+ width: 100%;
2742
+ aspect-ratio: 1 / 1;
2743
+ border-radius: var(--scrolly-mobile-radius);
2744
+ background-color: var(--scrolly-media-bg);
2745
+ overflow: hidden;
2746
+ display: flex;
2747
+ align-items: center;
2748
+ justify-content: center;
2749
+ }
2750
+ .scrolly__mobile-media img,
2751
+ .scrolly__mobile-media > * {
2752
+ width: 100%;
2753
+ height: 100%;
2754
+ object-fit: cover;
2755
+ display: block;
2756
+ }
2757
+ .scrolly__item-title {
2758
+ font-size: var(--scrolly-title-size);
2759
+ font-weight: var(--font-weight-extra-bold);
2760
+ line-height: var(--scrolly-title-lh);
2761
+ color: var(--scrolly-text-primary);
2762
+ margin: 0;
2763
+ }
2764
+ .scrolly__item-desc {
2765
+ font-size: var(--scrolly-body-size);
2766
+ font-weight: var(--font-weight-regular);
2767
+ line-height: var(--scrolly-body-lh);
2768
+ color: var(--scrolly-text-primary);
2769
+ margin: 0;
2770
+ }
2771
+ .scrolly__item-link {
2772
+ display: inline-flex;
2773
+ align-items: center;
2774
+ gap: var(--spacing-8);
2775
+ font-size: var(--scrolly-link-size);
2776
+ font-weight: var(--font-weight-semi-bold);
2777
+ line-height: var(--scrolly-link-lh);
2778
+ color: var(--scrolly-link-color);
2779
+ text-decoration: none;
2780
+ transition: color 0.2s ease;
2781
+ cursor: pointer;
2782
+ }
2783
+ .scrolly__item-link:hover {
2784
+ color: var(--scrolly-link-hover);
2785
+ }
2786
+ .scrolly__item-link-icon {
2787
+ display: inline-flex;
2788
+ align-items: center;
2789
+ flex-shrink: 0;
2790
+ transition: transform 0.2s ease;
2791
+ }
2792
+ .scrolly__item-link:hover .scrolly__item-link-icon {
2793
+ transform: translateX(var(--spacing-4));
2794
+ }
2795
+ @media (min-width: 768px) {
2796
+ .scrolly__inner {
2797
+ padding: var(--spacing-64) var(--spacing-24);
2798
+ gap: var(--spacing-40);
2799
+ }
2800
+ }
2801
+ @media (min-width: 992px) {
2802
+ .scrolly__header {
2803
+ text-align: center;
2804
+ }
2805
+ .scrolly__inner {
2806
+ padding: var(--spacing-88) var(--spacing-32);
2807
+ gap: var(--spacing-56);
2808
+ }
2809
+ .scrolly__layout {
2810
+ display: flex;
2811
+ flex-direction: row;
2812
+ gap: var(--scrolly-col-gap);
2813
+ align-items: flex-start;
2814
+ width: 100%;
2815
+ }
2816
+ .scrolly__mobile-list {
2817
+ display: none;
2818
+ }
2819
+ .scrolly--media-left .scrolly__layout {
2820
+ flex-direction: row-reverse;
2821
+ }
2822
+ .scrolly__media-col {
2823
+ flex: 1 0 0;
2824
+ position: sticky;
2825
+ top: var(--scrolly-sticky-top);
2826
+ align-self: flex-start;
2827
+ }
2828
+ .scrolly__media-wrap {
2829
+ width: 100%;
2830
+ aspect-ratio: 1 / 1;
2831
+ position: relative;
2832
+ border-radius: var(--scrolly-media-radius);
2833
+ background-color: var(--scrolly-media-bg);
2834
+ overflow: hidden;
2835
+ }
2836
+ .scrolly__media-item {
2837
+ position: absolute;
2838
+ inset: 0;
2839
+ opacity: 0;
2840
+ transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1);
2841
+ will-change: opacity;
2842
+ display: flex;
2843
+ align-items: center;
2844
+ justify-content: center;
2845
+ }
2846
+ .scrolly__media-item--active {
2847
+ opacity: 1;
2848
+ }
2849
+ .scrolly__media-item img {
2850
+ width: 100%;
2851
+ height: 100%;
2852
+ object-fit: cover;
2853
+ display: block;
2854
+ }
2855
+ .scrolly__media-item > * {
2856
+ width: 100% !important;
2857
+ height: 100% !important;
2858
+ }
2859
+ .scrolly__content-col {
2860
+ flex: 1 0 0;
2861
+ display: flex;
2862
+ flex-direction: column;
2863
+ }
2864
+ .scrolly__item {
2865
+ display: flex;
2866
+ flex-direction: column;
2867
+ justify-content: center;
2868
+ min-height: var(--scrolly-item-min-height);
2869
+ gap: var(--spacing-24);
2870
+ padding-left: var(--spacing-32);
2871
+ transition: opacity 0.4s ease;
2872
+ opacity: 0.4;
2873
+ box-sizing: border-box;
2874
+ }
2875
+ .scrolly__item--active {
2876
+ opacity: 1;
2877
+ }
2878
+ .scrolly__item--inactive .scrolly__item-desc,
2879
+ .scrolly__item--inactive .scrolly__item-title {
2880
+ color: var(--scrolly-text-muted);
2881
+ }
2882
+ }
2883
+
2884
+ /* templates/StickyStackedCards/StickyStackedCards.css */
2885
+ :root {
2886
+ --ssc-bg: var(--color-slate-50);
2887
+ --ssc-card-light-bg: var(--color-slate-75);
2888
+ --ssc-card-light-text: var(--color-slate-1200);
2889
+ --ssc-card-coral-bg: var(--color-coral-500);
2890
+ --ssc-card-coral-text: var(--color-slate-50);
2891
+ --ssc-card-dark-bg: var(--color-slate-1200);
2892
+ --ssc-card-dark-text: var(--color-slate-50);
2893
+ --ssc-header-size: var(--font-size-4xl);
2894
+ --ssc-header-lh: var(--line-height-4xl);
2895
+ --ssc-title-size: var(--font-size-3xl);
2896
+ --ssc-title-lh: var(--line-height-3xl);
2897
+ --ssc-body-size: var(--font-size-md);
2898
+ --ssc-body-lh: var(--line-height-md);
2899
+ --ssc-card-radius: var(--radius-2xl);
2900
+ --ssc-content-gap: var(--spacing-24);
2901
+ --ssc-sticky-top: var(--spacing-80);
2902
+ --ssc-peek-offset: var(--spacing-16);
2903
+ --ssc-card-min-height: 40rem;
2904
+ --ssc-img-height-mobile: 21rem;
2905
+ }
2906
+ .ssc {
2907
+ width: 100%;
2908
+ background-color: var(--ssc-bg);
2909
+ font-family: var(--font-family-base);
2910
+ box-sizing: border-box;
2911
+ }
2912
+ .ssc__inner {
2913
+ max-width: 1280px;
2914
+ margin: 0 auto;
2915
+ padding: var(--spacing-64) var(--spacing-16);
2916
+ display: flex;
2917
+ flex-direction: column;
2918
+ gap: var(--spacing-48);
2919
+ box-sizing: border-box;
2920
+ }
2921
+ .ssc__header {
2922
+ font-size: var(--ssc-header-size);
2923
+ font-weight: var(--font-weight-extra-bold);
2924
+ line-height: var(--ssc-header-lh);
2925
+ color: var(--ssc-card-light-text);
2926
+ margin: 0;
2927
+ }
2928
+ .ssc__track {
2929
+ display: block;
2930
+ padding-bottom: var(--ssc-img-height-mobile);
2931
+ }
2932
+ .ssc__card {
2933
+ border-radius: var(--ssc-card-radius);
2934
+ overflow: hidden;
2935
+ display: flex;
2936
+ flex-direction: column;
2937
+ box-sizing: border-box;
2938
+ width: 100%;
2939
+ position: sticky;
2940
+ transform: scale(var(--card-scale, 1));
2941
+ transform-origin: top center;
2942
+ will-change: transform;
2943
+ transition: transform 0.12s ease-out;
2944
+ }
2945
+ .ssc__card--light {
2946
+ background-color: var(--ssc-card-light-bg);
2947
+ color: var(--ssc-card-light-text);
2948
+ }
2949
+ .ssc__card--coral {
2950
+ background-color: var(--ssc-card-coral-bg);
2951
+ color: var(--ssc-card-coral-text);
2952
+ }
2953
+ .ssc__card--dark {
2954
+ background-color: var(--ssc-card-dark-bg);
2955
+ color: var(--ssc-card-dark-text);
2956
+ }
2957
+ .ssc__card-content {
2958
+ display: flex;
2959
+ flex-direction: column;
2960
+ gap: var(--ssc-content-gap);
2961
+ padding: var(--spacing-32);
2962
+ }
2963
+ .ssc__card-title {
2964
+ font-size: var(--ssc-title-size);
2965
+ font-weight: var(--font-weight-extra-bold);
2966
+ line-height: var(--ssc-title-lh);
2967
+ color: inherit;
2968
+ margin: 0;
2969
+ }
2970
+ .ssc__card-desc {
2971
+ font-size: var(--ssc-body-size);
2972
+ font-weight: var(--font-weight-regular);
2973
+ line-height: var(--ssc-body-lh);
2974
+ color: inherit;
2975
+ margin: 0;
2976
+ }
2977
+ .ssc__card-image {
2978
+ position: relative;
2979
+ height: var(--ssc-img-height-mobile);
2980
+ flex-shrink: 0;
2981
+ overflow: hidden;
2982
+ }
2983
+ .ssc__card-image img {
2984
+ position: absolute;
2985
+ inset: 0;
2986
+ width: 100%;
2987
+ height: 100%;
2988
+ object-fit: cover;
2989
+ display: block;
2990
+ }
2991
+ @media (min-width: 768px) {
2992
+ .ssc__inner {
2993
+ padding: var(--spacing-80) var(--spacing-24);
2994
+ gap: var(--spacing-64);
2995
+ }
2996
+ .ssc__header {
2997
+ text-align: center;
2998
+ }
2999
+ }
3000
+ @media (min-width: 992px) {
3001
+ .ssc__inner {
3002
+ padding: var(--spacing-112) var(--spacing-64);
3003
+ gap: var(--spacing-80);
3004
+ }
3005
+ .ssc__track {
3006
+ padding-bottom: var(--ssc-card-min-height);
3007
+ }
3008
+ .ssc__card {
3009
+ display: grid;
3010
+ grid-template-columns: 1fr 1fr;
3011
+ grid-template-rows: 1fr;
3012
+ min-height: var(--ssc-card-min-height);
3013
+ }
3014
+ .ssc__card-content {
3015
+ padding: var(--spacing-56);
3016
+ justify-content: flex-start;
3017
+ align-self: stretch;
3018
+ }
3019
+ .ssc__card-image {
3020
+ height: auto;
3021
+ min-height: 100%;
3022
+ align-self: stretch;
3023
+ }
3024
+ }
3025
+
3026
+ /* templates/CTABanner/CTABanner.css */
3027
+ :root {
3028
+ --ctab-bg: var(--color-coral-500);
3029
+ --ctab-grid-line: var(--color-opacity-white-16);
3030
+ --ctab-grid-cell: var(--spacing-96);
3031
+ --ctab-headline-size: var(--font-size-5xl);
3032
+ --ctab-headline-lh: var(--line-height-5xl);
3033
+ --ctab-headline-color: var(--color-slate-50);
3034
+ --ctab-headline-weight: var(--font-weight-extra-bold);
3035
+ --ctab-btn-bg: var(--color-slate-1200);
3036
+ --ctab-btn-bg-hover: var(--color-slate-1100);
3037
+ --ctab-btn-text: var(--color-slate-50);
3038
+ --ctab-btn-radius: var(--radius-full);
3039
+ --ctab-btn-px: var(--spacing-24);
3040
+ --ctab-btn-py: var(--spacing-16);
3041
+ --ctab-btn-size: var(--font-size-md);
3042
+ --ctab-btn-lh: var(--line-height-xs);
3043
+ --ctab-btn-weight: var(--font-weight-extra-bold);
3044
+ --ctab-btn-min-width: var(--spacing-96);
3045
+ --ctab-avatar-size: var(--spacing-64);
3046
+ --ctab-avatar-radius: var(--radius-xl);
3047
+ --ctab-avatar-shadow: var(--shadow-md);
3048
+ --ctab-max-width: 80rem;
3049
+ --ctab-stage-height: 42.5rem;
3050
+ --ctab-section-min-height: 42.25rem;
3051
+ --ctab-hero-gap: var(--spacing-16);
3052
+ --ctab-hero-max-width: 52.875rem;
3053
+ --ctab-parallax-near: var(--spacing-64);
3054
+ --ctab-parallax-mid: var(--spacing-96);
3055
+ --ctab-parallax-far: var(--spacing-112);
3056
+ --ctab-parallax-edge: var(--spacing-112);
3057
+ --ctab-parallax-blur: var(--spacing-16);
3058
+ --ctab-spring-stiffness: 80;
3059
+ --ctab-spring-damping: 30;
3060
+ }
3061
+ @media (min-width: 768px) and (max-width: 991px) {
3062
+ :root {
3063
+ --ctab-avatar-size: 5rem;
3064
+ --ctab-avatar-radius: var(--radius-2xl);
3065
+ --ctab-hero-max-width: 70%;
3066
+ }
3067
+ }
3068
+ @media (min-width: 992px) {
3069
+ :root {
3070
+ --ctab-avatar-size: var(--spacing-96);
3071
+ --ctab-avatar-radius: var(--radius-2xl);
3072
+ --ctab-section-min-height: 54rem;
3073
+ }
3074
+ }
3075
+ .ctab {
3076
+ position: relative;
3077
+ width: 100%;
3078
+ min-height: var(--ctab-section-min-height);
3079
+ background-color: var(--ctab-bg);
3080
+ font-family: var(--font-family-base);
3081
+ box-sizing: border-box;
3082
+ overflow: hidden;
3083
+ }
3084
+ .ctab__grid {
3085
+ position: absolute;
3086
+ inset: 0;
3087
+ pointer-events: none;
3088
+ background-image:
3089
+ repeating-linear-gradient(
3090
+ to right,
3091
+ transparent 0,
3092
+ transparent calc(var(--ctab-grid-cell) - 1px),
3093
+ var(--ctab-grid-line) calc(var(--ctab-grid-cell) - 1px),
3094
+ var(--ctab-grid-line) var(--ctab-grid-cell)),
3095
+ repeating-linear-gradient(
3096
+ to bottom,
3097
+ transparent 0,
3098
+ transparent calc(var(--ctab-grid-cell) - 1px),
3099
+ var(--ctab-grid-line) calc(var(--ctab-grid-cell) - 1px),
3100
+ var(--ctab-grid-line) var(--ctab-grid-cell));
3101
+ }
3102
+ .ctab__inner {
3103
+ position: relative;
3104
+ z-index: 1;
3105
+ display: flex;
3106
+ align-items: center;
3107
+ justify-content: center;
3108
+ min-height: var(--ctab-section-min-height);
3109
+ max-width: var(--ctab-max-width);
3110
+ margin: 0 auto;
3111
+ box-sizing: border-box;
3112
+ }
3113
+ .ctab__stage {
3114
+ position: relative;
3115
+ width: 100%;
3116
+ height: var(--ctab-stage-height);
3117
+ display: flex;
3118
+ align-items: center;
3119
+ justify-content: center;
3120
+ }
3121
+ .ctab__hero {
3122
+ position: relative;
3123
+ z-index: 2;
3124
+ display: flex;
3125
+ flex-direction: column;
3126
+ align-items: center;
3127
+ gap: var(--ctab-hero-gap);
3128
+ max-width: var(--ctab-hero-max-width);
3129
+ text-align: center;
3130
+ padding-top: var(--spacing-48);
3131
+ }
3132
+ .ctab__headline {
3133
+ margin: 0;
3134
+ font-family: var(--font-family-base);
3135
+ font-size: var(--ctab-headline-size);
3136
+ font-weight: var(--ctab-headline-weight);
3137
+ line-height: var(--ctab-headline-lh);
3138
+ color: var(--ctab-headline-color);
3139
+ }
3140
+ .ctab__btn {
3141
+ display: inline-flex;
3142
+ align-items: center;
3143
+ justify-content: center;
3144
+ min-width: var(--ctab-btn-min-width);
3145
+ padding: var(--ctab-btn-py) var(--ctab-btn-px);
3146
+ background-color: var(--ctab-btn-bg);
3147
+ color: var(--ctab-btn-text);
3148
+ border-radius: var(--ctab-btn-radius);
3149
+ font-family: var(--font-family-base);
3150
+ font-size: var(--ctab-btn-size);
3151
+ font-weight: var(--ctab-btn-weight);
3152
+ line-height: var(--ctab-btn-lh);
3153
+ text-decoration: none;
3154
+ cursor: pointer;
3155
+ border: none;
3156
+ transition: background-color 0.3s ease;
3157
+ white-space: nowrap;
3158
+ box-sizing: border-box;
3159
+ }
3160
+ .ctab__btn:hover {
3161
+ background-color: var(--ctab-btn-bg-hover);
3162
+ }
3163
+ .ctab__avatar {
3164
+ position: absolute;
3165
+ width: var(--ctab-avatar-size);
3166
+ height: var(--ctab-avatar-size);
3167
+ border-radius: var(--ctab-avatar-radius);
3168
+ overflow: hidden;
3169
+ box-shadow: var(--ctab-avatar-shadow);
3170
+ flex-shrink: 0;
3171
+ left: var(--av-d-left, auto);
3172
+ right: var(--av-d-right, auto);
3173
+ top: var(--av-d-top, auto);
3174
+ }
3175
+ .ctab__avatar img {
3176
+ width: 100%;
3177
+ height: 100%;
3178
+ object-fit: cover;
3179
+ display: block;
3180
+ border-radius: var(--ctab-avatar-radius);
3181
+ }
3182
+ @media (max-width: 767px) {
3183
+ .ctab__avatar {
3184
+ left: var(--av-m-left, auto);
3185
+ right: var(--av-m-right, auto);
3186
+ top: var(--av-m-top, auto);
3187
+ }
3188
+ .ctab__avatar--desktop-only {
3189
+ display: none;
3190
+ }
3191
+ }
3192
+
3193
+ /* templates/DayNightTransition/DayNightTransition.css */
3194
+ :root {
3195
+ --dnt-headline-size: var(--font-size-4xl);
3196
+ --dnt-headline-lh: var(--line-height-4xl);
3197
+ --dnt-headline-weight: var(--font-weight-extra-bold);
3198
+ --dnt-text-day: var(--color-slate-1400);
3199
+ --dnt-text-night: var(--color-slate-50);
3200
+ --dnt-btn-bg: var(--color-coral-500);
3201
+ --dnt-btn-bg-hover: var(--color-coral-600);
3202
+ --dnt-btn-text: var(--color-slate-50);
3203
+ --dnt-btn-radius: var(--radius-full);
3204
+ --dnt-btn-px: var(--spacing-24);
3205
+ --dnt-btn-py: var(--spacing-16);
3206
+ --dnt-btn-size: var(--font-size-md);
3207
+ --dnt-btn-lh: var(--line-height-xs);
3208
+ --dnt-btn-weight: var(--font-weight-extra-bold);
3209
+ --dnt-wrapper-height: 250vh;
3210
+ --dnt-content-max-width: 37.5rem;
3211
+ --dnt-content-py: var(--spacing-80);
3212
+ --dnt-content-px: var(--spacing-16);
3213
+ --dnt-desc-size: var(--font-size-md);
3214
+ --dnt-desc-lh: var(--line-height-md);
3215
+ --dnt-desc-weight: var(--font-weight-regular);
3216
+ --dnt-gap: var(--spacing-16);
3217
+ }
3218
+ @media (min-width: 992px) {
3219
+ :root {
3220
+ --dnt-content-py: var(--spacing-96);
3221
+ --dnt-content-px: var(--spacing-48);
3222
+ }
3223
+ }
3224
+ .dnt {
3225
+ position: relative;
3226
+ height: var(--dnt-wrapper-height);
3227
+ width: 100%;
3228
+ font-family: var(--font-family-base);
3229
+ }
3230
+ .dnt__sticky {
3231
+ position: sticky;
3232
+ top: 0;
3233
+ height: 100vh;
3234
+ width: 100%;
3235
+ overflow: hidden;
3236
+ }
3237
+ .dnt__bg {
3238
+ position: absolute;
3239
+ inset: 0;
3240
+ width: 100%;
3241
+ height: 100%;
3242
+ object-fit: cover;
3243
+ object-position: center;
3244
+ display: block;
3245
+ pointer-events: none;
3246
+ }
3247
+ .dnt__bg--day {
3248
+ z-index: 0;
3249
+ }
3250
+ .dnt__bg--night {
3251
+ z-index: 1;
3252
+ }
3253
+ .dnt__content {
3254
+ position: relative;
3255
+ z-index: 2;
3256
+ display: flex;
3257
+ align-items: flex-start;
3258
+ height: 100%;
3259
+ padding: var(--dnt-content-py) var(--dnt-content-px);
3260
+ box-sizing: border-box;
3261
+ }
3262
+ @media (min-width: 992px) {
3263
+ .dnt__content {
3264
+ align-items: center;
3265
+ }
3266
+ }
3267
+ .dnt__text-wrap {
3268
+ display: flex;
3269
+ flex-direction: column;
3270
+ gap: var(--dnt-gap);
3271
+ max-width: var(--dnt-content-max-width);
3272
+ }
3273
+ .dnt__crossfade-wrap {
3274
+ display: grid;
3275
+ grid-template-areas: "stack";
3276
+ }
3277
+ .dnt__crossfade-wrap > * {
3278
+ grid-area: stack;
3279
+ }
3280
+ .dnt__headline {
3281
+ margin: 0;
3282
+ font-family: var(--font-family-base);
3283
+ font-size: var(--dnt-headline-size);
3284
+ font-weight: var(--dnt-headline-weight);
3285
+ line-height: var(--dnt-headline-lh);
3286
+ }
3287
+ .dnt__description {
3288
+ margin: 0;
3289
+ font-family: var(--font-family-base);
3290
+ font-size: var(--dnt-desc-size);
3291
+ font-weight: var(--dnt-desc-weight);
3292
+ line-height: var(--dnt-desc-lh);
3293
+ }
3294
+ .dnt__btn {
3295
+ display: inline-flex;
3296
+ align-items: center;
3297
+ justify-content: center;
3298
+ align-self: flex-start;
3299
+ padding: var(--dnt-btn-py) var(--dnt-btn-px);
3300
+ background-color: var(--dnt-btn-bg);
3301
+ color: var(--dnt-btn-text);
3302
+ border-radius: var(--dnt-btn-radius);
3303
+ font-family: var(--font-family-base);
3304
+ font-size: var(--dnt-btn-size);
3305
+ font-weight: var(--dnt-btn-weight);
3306
+ line-height: var(--dnt-btn-lh);
3307
+ text-decoration: none;
3308
+ cursor: pointer;
3309
+ border: none;
3310
+ transition: background-color 0.3s ease;
3311
+ white-space: nowrap;
3312
+ box-sizing: border-box;
3313
+ }
3314
+ .dnt__btn:hover {
3315
+ background-color: var(--dnt-btn-bg-hover);
3316
+ }
3317
+
3318
+ /* templates/PaymentMethods/PaymentMethods.css */
3319
+ :root {
3320
+ --pm-bg: var(--color-slate-1200);
3321
+ --pm-section-py: var(--spacing-96);
3322
+ --pm-section-px: var(--spacing-48);
3323
+ --pm-section-height: 50rem;
3324
+ --pm-max-width: 80rem;
3325
+ --pm-layout-gap: var(--spacing-112);
3326
+ --pm-card-bg: var(--color-slate-1100);
3327
+ --pm-card-radius: var(--radius-lg);
3328
+ --pm-card-radius-mobile: var(--radius-2xl);
3329
+ --pm-card-px: var(--spacing-16);
3330
+ --pm-card-py: var(--spacing-24);
3331
+ --pm-card-px-mobile: var(--spacing-12);
3332
+ --pm-card-py-mobile: var(--spacing-12);
3333
+ --pm-card-img-h: var(--spacing-112);
3334
+ --pm-card-img-h-mobile: 5.375rem;
3335
+ --pm-card-gap: var(--spacing-24);
3336
+ --pm-col-gap: var(--spacing-24);
3337
+ --pm-carousel-height: 39.375rem;
3338
+ --pm-carousel-height-mob: 20.5rem;
3339
+ --pm-fade-height: var(--spacing-64);
3340
+ --pm-headline-size: var(--font-size-4xl);
3341
+ --pm-headline-lh: var(--line-height-4xl);
3342
+ --pm-headline-color: var(--color-slate-50);
3343
+ --pm-headline-weight: var(--font-weight-extra-bold);
3344
+ --pm-body-size: var(--font-size-md);
3345
+ --pm-body-lh: var(--line-height-md);
3346
+ --pm-body-color: var(--color-slate-50);
3347
+ --pm-body-weight: var(--font-weight-regular);
3348
+ --pm-disc-size: var(--font-size-sm);
3349
+ --pm-disc-lh: var(--line-height-sm);
3350
+ --pm-disc-color: var(--color-slate-400);
3351
+ --pm-disc-weight: var(--font-weight-regular);
3352
+ --pm-link-color: var(--color-coral-500);
3353
+ --pm-link-size: var(--font-size-md);
3354
+ --pm-link-weight: var(--font-weight-semi-bold);
3355
+ --pm-text-width: 32.625rem;
3356
+ --pm-section-py-mobile: var(--spacing-48);
3357
+ --pm-section-px-mobile: var(--spacing-16);
3358
+ }
3359
+ .pm {
3360
+ position: relative;
3361
+ width: 100%;
3362
+ background-color: var(--pm-bg);
3363
+ font-family: var(--font-family-base);
3364
+ box-sizing: border-box;
3365
+ }
3366
+ .pm__inner {
3367
+ display: flex;
3368
+ flex-direction: column;
3369
+ gap: var(--spacing-24);
3370
+ align-items: flex-start;
3371
+ max-width: var(--pm-max-width);
3372
+ margin: 0 auto;
3373
+ padding: var(--pm-section-py-mobile) var(--pm-section-px-mobile);
3374
+ box-sizing: border-box;
3375
+ }
3376
+ @media (min-width: 992px) {
3377
+ .pm__inner {
3378
+ flex-direction: row;
3379
+ align-items: center;
3380
+ justify-content: center;
3381
+ gap: var(--pm-layout-gap);
3382
+ padding: var(--pm-section-py) var(--pm-section-px);
3383
+ min-height: var(--pm-section-height);
3384
+ }
3385
+ }
3386
+ .pm__content {
3387
+ display: flex;
3388
+ flex-direction: column;
3389
+ gap: var(--spacing-24);
3390
+ align-items: flex-start;
3391
+ width: 100%;
3392
+ order: 1;
3393
+ }
3394
+ @media (min-width: 992px) {
3395
+ .pm__content {
3396
+ flex-shrink: 0;
3397
+ width: var(--pm-text-width);
3398
+ order: 2;
3399
+ }
3400
+ }
3401
+ .pm__headline {
3402
+ margin: 0;
3403
+ font-family: var(--font-family-base);
3404
+ font-size: var(--pm-headline-size);
3405
+ font-weight: var(--pm-headline-weight);
3406
+ line-height: var(--pm-headline-lh);
3407
+ color: var(--pm-headline-color);
3408
+ }
3409
+ .pm__text-group {
3410
+ display: flex;
3411
+ flex-direction: column;
3412
+ gap: var(--spacing-16);
3413
+ }
3414
+ .pm__body {
3415
+ margin: 0;
3416
+ font-family: var(--font-family-base);
3417
+ font-size: var(--pm-body-size);
3418
+ font-weight: var(--pm-body-weight);
3419
+ line-height: var(--pm-body-lh);
3420
+ color: var(--pm-body-color);
3421
+ }
3422
+ .pm__disclaimer {
3423
+ margin: 0;
3424
+ font-family: var(--font-family-base);
3425
+ font-size: var(--pm-disc-size);
3426
+ font-weight: var(--pm-disc-weight);
3427
+ line-height: var(--pm-disc-lh);
3428
+ color: var(--pm-disc-color);
3429
+ }
3430
+ .pm__link {
3431
+ display: inline-flex;
3432
+ align-items: center;
3433
+ gap: var(--spacing-8);
3434
+ font-family: var(--font-family-base);
3435
+ font-size: var(--pm-link-size);
3436
+ font-weight: var(--pm-link-weight);
3437
+ line-height: var(--line-height-xs);
3438
+ color: var(--pm-link-color);
3439
+ text-decoration: none;
3440
+ cursor: pointer;
3441
+ white-space: nowrap;
3442
+ }
3443
+ .pm__link:hover {
3444
+ text-decoration: underline;
3445
+ }
3446
+ .pm__media {
3447
+ position: relative;
3448
+ width: 100%;
3449
+ order: 2;
3450
+ flex-shrink: 0;
3451
+ }
3452
+ @media (min-width: 992px) {
3453
+ .pm__media {
3454
+ flex: 1 0 0;
3455
+ min-width: 0;
3456
+ order: 1;
3457
+ align-self: stretch;
3458
+ }
3459
+ }
3460
+ .pm__carousel {
3461
+ position: relative;
3462
+ display: flex;
3463
+ align-items: flex-start;
3464
+ gap: var(--pm-col-gap);
3465
+ height: var(--pm-carousel-height-mob);
3466
+ overflow: hidden;
3467
+ }
3468
+ @media (min-width: 992px) {
3469
+ .pm__carousel {
3470
+ height: var(--pm-carousel-height);
3471
+ }
3472
+ }
3473
+ .pm__fade {
3474
+ position: absolute;
3475
+ left: 0;
3476
+ right: 0;
3477
+ height: var(--pm-fade-height);
3478
+ pointer-events: none;
3479
+ z-index: 2;
3480
+ }
3481
+ .pm__fade--top {
3482
+ top: 0;
3483
+ background:
3484
+ linear-gradient(
3485
+ to bottom,
3486
+ var(--pm-bg) 0%,
3487
+ rgba(0, 0, 0, 0) 100%);
3488
+ }
3489
+ .pm__fade--bottom {
3490
+ bottom: 0;
3491
+ background:
3492
+ linear-gradient(
3493
+ to top,
3494
+ var(--pm-bg) 0%,
3495
+ rgba(0, 0, 0, 0) 100%);
3496
+ }
3497
+ .pm__col {
3498
+ flex: 1 0 0;
3499
+ align-self: flex-start;
3500
+ display: flex;
3501
+ flex-direction: column;
3502
+ gap: var(--pm-card-gap);
3503
+ min-width: 0;
3504
+ will-change: transform;
3505
+ }
3506
+ .pm__card {
3507
+ flex-shrink: 0;
3508
+ background-color: var(--pm-card-bg);
3509
+ border-radius: var(--pm-card-radius-mobile);
3510
+ padding: var(--pm-card-py-mobile) var(--pm-card-px-mobile);
3511
+ display: flex;
3512
+ align-items: center;
3513
+ justify-content: center;
3514
+ box-sizing: border-box;
3515
+ width: 100%;
3516
+ }
3517
+ @media (min-width: 992px) {
3518
+ .pm__card {
3519
+ border-radius: var(--pm-card-radius);
3520
+ padding: var(--pm-card-py) var(--pm-card-px);
3521
+ }
3522
+ }
3523
+ .pm__card-img-wrap {
3524
+ width: 100%;
3525
+ height: var(--pm-card-img-h-mobile);
3526
+ display: flex;
3527
+ align-items: center;
3528
+ justify-content: center;
3529
+ overflow: hidden;
3530
+ }
3531
+ @media (min-width: 992px) {
3532
+ .pm__card-img-wrap {
3533
+ height: var(--pm-card-img-h);
3534
+ }
3535
+ }
3536
+ .pm__card-img-wrap img {
3537
+ max-width: 100%;
3538
+ max-height: 100%;
3539
+ width: auto;
3540
+ height: auto;
3541
+ object-fit: contain;
3542
+ display: block;
3543
+ }
1304
3544
  /*# sourceMappingURL=index.css.map */