@shohojdhara/atomix 0.2.1 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (201) hide show
  1. package/README.md +1 -28
  2. package/dist/atomix.css +1500 -241
  3. package/dist/atomix.min.css +6 -6
  4. package/dist/index.d.ts +1052 -194
  5. package/dist/index.esm.js +12201 -6066
  6. package/dist/index.esm.js.map +1 -1
  7. package/dist/index.js +5481 -2827
  8. package/dist/index.js.map +1 -1
  9. package/dist/index.min.js +1 -1
  10. package/dist/index.min.js.map +1 -1
  11. package/dist/themes/boomdevs.css +1500 -301
  12. package/dist/themes/boomdevs.min.css +60 -8
  13. package/dist/themes/esrar.css +1500 -241
  14. package/dist/themes/esrar.min.css +6 -6
  15. package/dist/themes/mashroom.css +1496 -237
  16. package/dist/themes/mashroom.min.css +8 -8
  17. package/dist/themes/shaj-default.css +1451 -192
  18. package/dist/themes/shaj-default.min.css +6 -6
  19. package/package.json +66 -15
  20. package/src/components/Accordion/Accordion.stories.tsx +137 -0
  21. package/src/components/Accordion/Accordion.tsx +33 -3
  22. package/src/components/AtomixGlass/AtomixGlass.stories.tsx +3011 -0
  23. package/src/components/AtomixGlass/AtomixGlass.test.tsx +199 -0
  24. package/src/components/AtomixGlass/AtomixGlass.tsx +1281 -0
  25. package/src/components/AtomixGlass/AtomixGlassComprehensivePreview.stories.tsx +1369 -0
  26. package/src/components/AtomixGlass/README.md +134 -0
  27. package/src/components/AtomixGlass/index.ts +10 -0
  28. package/src/components/AtomixGlass/shader-utils.ts +140 -0
  29. package/src/components/AtomixGlass/utils.ts +8 -0
  30. package/src/components/Badge/Badge.stories.tsx +169 -0
  31. package/src/components/Badge/Badge.tsx +27 -2
  32. package/src/components/Button/Button.stories.tsx +345 -0
  33. package/src/components/Button/Button.tsx +35 -3
  34. package/src/components/Button/README.md +216 -0
  35. package/src/components/Callout/Callout.stories.tsx +813 -78
  36. package/src/components/Callout/Callout.test.tsx +368 -0
  37. package/src/components/Callout/Callout.tsx +26 -7
  38. package/src/components/Callout/README.md +409 -0
  39. package/src/components/Card/Card.stories.tsx +140 -0
  40. package/src/components/Card/Card.tsx +19 -3
  41. package/src/components/DatePicker/DatePicker copy.tsx +551 -0
  42. package/src/components/DatePicker/DatePicker.stories.tsx +188 -0
  43. package/src/components/DatePicker/DatePicker.tsx +379 -332
  44. package/src/components/DatePicker/readme.md +110 -1
  45. package/src/components/DatePicker/types.ts +8 -0
  46. package/src/components/Dropdown/Dropdown.stories.tsx +145 -0
  47. package/src/components/Dropdown/Dropdown.tsx +34 -5
  48. package/src/components/Footer/Footer.stories.tsx +388 -0
  49. package/src/components/Footer/Footer.tsx +197 -0
  50. package/src/components/Footer/FooterLink.tsx +72 -0
  51. package/src/components/Footer/FooterSection.tsx +87 -0
  52. package/src/components/Footer/FooterSocialLink.tsx +117 -0
  53. package/src/components/Footer/README.md +261 -0
  54. package/src/components/Footer/index.ts +13 -0
  55. package/src/components/Form/Checkbox.stories.tsx +101 -0
  56. package/src/components/Form/Checkbox.tsx +26 -2
  57. package/src/components/Form/Input.stories.tsx +124 -0
  58. package/src/components/Form/Input.tsx +36 -7
  59. package/src/components/Form/Radio.stories.tsx +139 -0
  60. package/src/components/Form/Radio.tsx +26 -2
  61. package/src/components/Form/Select.stories.tsx +110 -0
  62. package/src/components/Form/Select.tsx +26 -2
  63. package/src/components/Form/Textarea.stories.tsx +104 -0
  64. package/src/components/Form/Textarea.tsx +36 -7
  65. package/src/components/Hero/Hero.stories.tsx +54 -1
  66. package/src/components/Hero/Hero.tsx +70 -11
  67. package/src/components/Modal/Modal.stories.tsx +235 -0
  68. package/src/components/Modal/Modal.tsx +64 -35
  69. package/src/components/Pagination/Pagination.stories.tsx +101 -0
  70. package/src/components/Pagination/Pagination.tsx +25 -1
  71. package/src/components/Popover/Popover.stories.tsx +94 -0
  72. package/src/components/Popover/Popover.tsx +30 -4
  73. package/src/components/Rating/Rating.stories.tsx +112 -0
  74. package/src/components/Rating/Rating.tsx +25 -1
  75. package/src/components/SectionIntro/SectionIntro.tsx +9 -11
  76. package/src/components/Slider/Slider.stories.tsx +634 -50
  77. package/src/components/Slider/Slider.tsx +5 -3
  78. package/src/components/Steps/Steps.stories.tsx +119 -0
  79. package/src/components/Steps/Steps.tsx +32 -1
  80. package/src/components/Tab/Tab.stories.tsx +88 -0
  81. package/src/components/Tab/Tab.tsx +32 -1
  82. package/src/components/Toggle/Toggle.stories.tsx +92 -0
  83. package/src/components/Toggle/Toggle.tsx +32 -1
  84. package/src/components/Tooltip/Tooltip.stories.tsx +131 -0
  85. package/src/components/Tooltip/Tooltip.tsx +43 -7
  86. package/src/components/VideoPlayer/VideoPlayer.stories.tsx +1002 -196
  87. package/src/components/VideoPlayer/VideoPlayer.tsx +161 -4
  88. package/src/components/index.ts +14 -0
  89. package/src/layouts/Grid/Grid.stories.tsx +226 -159
  90. package/src/lib/composables/index.ts +4 -0
  91. package/src/lib/composables/useAtomixGlass.ts +71 -0
  92. package/src/lib/composables/useButton.ts +3 -1
  93. package/src/lib/composables/useCallout.ts +4 -1
  94. package/src/lib/composables/useFooter.ts +85 -0
  95. package/src/lib/composables/useGlassContainer.ts +168 -0
  96. package/src/lib/composables/useSlider.ts +191 -4
  97. package/src/lib/constants/components.ts +173 -0
  98. package/src/lib/types/components.ts +622 -0
  99. package/src/lib/utils/displacement-generator.ts +86 -0
  100. package/src/styles/01-settings/_index.scss +1 -0
  101. package/src/styles/01-settings/_settings.accordion.scss +20 -19
  102. package/src/styles/01-settings/_settings.animations.scss +5 -5
  103. package/src/styles/01-settings/_settings.avatar-group.scss +1 -1
  104. package/src/styles/01-settings/_settings.avatar.scss +17 -18
  105. package/src/styles/01-settings/_settings.background.scss +10 -0
  106. package/src/styles/01-settings/_settings.badge.scss +1 -1
  107. package/src/styles/01-settings/_settings.breadcrumb.scss +8 -2
  108. package/src/styles/01-settings/_settings.callout.scss +7 -7
  109. package/src/styles/01-settings/_settings.card.scss +2 -2
  110. package/src/styles/01-settings/_settings.chart.scss +7 -7
  111. package/src/styles/01-settings/_settings.checkbox-group.scss +5 -2
  112. package/src/styles/01-settings/_settings.checkbox.scss +10 -4
  113. package/src/styles/01-settings/_settings.countdown.scss +6 -4
  114. package/src/styles/01-settings/_settings.dropdown.scss +9 -7
  115. package/src/styles/01-settings/_settings.edge-panel.scss +3 -2
  116. package/src/styles/01-settings/_settings.footer.scss +125 -0
  117. package/src/styles/01-settings/_settings.form-group.scss +3 -1
  118. package/src/styles/01-settings/_settings.form.scss +4 -2
  119. package/src/styles/01-settings/_settings.hero.scss +9 -7
  120. package/src/styles/01-settings/_settings.input.scss +9 -7
  121. package/src/styles/01-settings/_settings.list-group.scss +4 -2
  122. package/src/styles/01-settings/_settings.list.scss +4 -2
  123. package/src/styles/01-settings/_settings.menu.scss +10 -8
  124. package/src/styles/01-settings/_settings.messages.scss +19 -17
  125. package/src/styles/01-settings/_settings.modal.scss +6 -4
  126. package/src/styles/01-settings/_settings.nav.scss +6 -4
  127. package/src/styles/01-settings/_settings.navbar.scss +8 -5
  128. package/src/styles/01-settings/_settings.pagination.scss +5 -3
  129. package/src/styles/01-settings/_settings.popover.scss +6 -4
  130. package/src/styles/01-settings/_settings.rating.scss +5 -3
  131. package/src/styles/01-settings/_settings.river.scss +8 -6
  132. package/src/styles/01-settings/_settings.sectionintro.scss +8 -6
  133. package/src/styles/01-settings/_settings.select.scss +7 -5
  134. package/src/styles/01-settings/_settings.side-menu.scss +15 -13
  135. package/src/styles/01-settings/_settings.spacing.scss +4 -0
  136. package/src/styles/01-settings/_settings.steps.scss +7 -5
  137. package/src/styles/01-settings/_settings.tabs.scss +7 -5
  138. package/src/styles/01-settings/_settings.testimonials.scss +6 -4
  139. package/src/styles/01-settings/_settings.toggle.scss +3 -1
  140. package/src/styles/01-settings/_settings.tooltip.scss +5 -3
  141. package/src/styles/01-settings/_settings.upload.scss +22 -20
  142. package/src/styles/02-tools/_tools.animations.scss +19 -0
  143. package/src/styles/02-tools/_tools.background.scss +87 -0
  144. package/src/styles/02-tools/_tools.glass.scss +1 -0
  145. package/src/styles/02-tools/_tools.rem.scss +18 -5
  146. package/src/styles/02-tools/_tools.utility-api.scss +32 -26
  147. package/src/styles/03-generic/_generic.root.scss +15 -2
  148. package/src/styles/04-elements/_elements.body.scss +6 -0
  149. package/src/styles/06-components/_components.accordion.scss +24 -4
  150. package/src/styles/06-components/_components.atomix-glass.scss +0 -0
  151. package/src/styles/06-components/_components.avatar-group.scss +2 -1
  152. package/src/styles/06-components/_components.avatar.scss +2 -1
  153. package/src/styles/06-components/_components.badge.scss +36 -1
  154. package/src/styles/06-components/_components.breadcrumb.scss +2 -1
  155. package/src/styles/06-components/_components.button.scss +14 -3
  156. package/src/styles/06-components/_components.callout.scss +44 -4
  157. package/src/styles/06-components/_components.card.scss +21 -2
  158. package/src/styles/06-components/_components.chart.scss +3 -2
  159. package/src/styles/06-components/_components.checkbox.scss +2 -1
  160. package/src/styles/06-components/_components.color-mode-toggle.scss +3 -2
  161. package/src/styles/06-components/_components.countdown.scss +2 -1
  162. package/src/styles/06-components/_components.data-table.scss +7 -6
  163. package/src/styles/06-components/_components.datepicker.scss +20 -1
  164. package/src/styles/06-components/_components.dropdown.scss +11 -4
  165. package/src/styles/06-components/_components.edge-panel.scss +4 -3
  166. package/src/styles/06-components/_components.footer.scss +825 -0
  167. package/src/styles/06-components/_components.form-group.scss +1 -0
  168. package/src/styles/06-components/_components.hero.scss +4 -4
  169. package/src/styles/06-components/_components.image-gallery.scss +1 -0
  170. package/src/styles/06-components/_components.input.scss +33 -2
  171. package/src/styles/06-components/_components.list-group.scss +3 -2
  172. package/src/styles/06-components/_components.list.scss +2 -1
  173. package/src/styles/06-components/_components.menu.scss +5 -4
  174. package/src/styles/06-components/_components.messages.scss +8 -7
  175. package/src/styles/06-components/_components.modal.scss +3 -2
  176. package/src/styles/06-components/_components.nav.scss +6 -5
  177. package/src/styles/06-components/_components.navbar.scss +4 -3
  178. package/src/styles/06-components/_components.pagination.scss +2 -1
  179. package/src/styles/06-components/_components.photoviewer.scss +4 -3
  180. package/src/styles/06-components/_components.popover.scss +3 -2
  181. package/src/styles/06-components/_components.product-review.scss +3 -2
  182. package/src/styles/06-components/_components.progress.scss +3 -2
  183. package/src/styles/06-components/_components.river.scss +3 -2
  184. package/src/styles/06-components/_components.sectionintro.scss +2 -1
  185. package/src/styles/06-components/_components.select.scss +5 -4
  186. package/src/styles/06-components/_components.side-menu.scss +8 -7
  187. package/src/styles/06-components/_components.skeleton.scss +3 -2
  188. package/src/styles/06-components/_components.slider.scss +7 -6
  189. package/src/styles/06-components/_components.spinner.scss +1 -0
  190. package/src/styles/06-components/_components.steps.scss +3 -2
  191. package/src/styles/06-components/_components.tabs.scss +4 -3
  192. package/src/styles/06-components/_components.testimonials.scss +2 -1
  193. package/src/styles/06-components/_components.todo.scss +3 -2
  194. package/src/styles/06-components/_components.toggle.scss +5 -4
  195. package/src/styles/06-components/_components.tooltip.scss +3 -2
  196. package/src/styles/06-components/_components.upload.scss +4 -3
  197. package/src/styles/06-components/_components.video-player.scss +50 -27
  198. package/src/styles/06-components/_index.scss +2 -0
  199. package/src/styles/99-utilities/_utilities.glass-fixes.scss +48 -0
  200. package/dist/themes/yabai.css +0 -13711
  201. package/dist/themes/yabai.min.css +0 -189
package/dist/atomix.css CHANGED
@@ -11,6 +11,23 @@
11
11
  background-position: 0 50%;
12
12
  }
13
13
  }
14
+ @keyframes backgroundMoving {
15
+ 0% {
16
+ background-position: 0 0%;
17
+ }
18
+ 250% {
19
+ background-position: 100% 100%;
20
+ }
21
+ 50% {
22
+ background-position: 100% 0%;
23
+ }
24
+ 75% {
25
+ background-position: 0% 100%;
26
+ }
27
+ 100% {
28
+ background-position: 100% 100%;
29
+ }
30
+ }
14
31
  @keyframes component-spin {
15
32
  0% {
16
33
  transform: rotate(0deg);
@@ -424,9 +441,17 @@ summary {
424
441
  --atomix-success-hover: #15803d;
425
442
  --atomix-warning-hover: #a16207;
426
443
  --atomix-info-hover: #1d4ed8;
444
+ --atomix-primary-gradient: linear-gradient(135deg, #e4d0fa, #d0b2f5, #b88cef);
445
+ --atomix-secondary-gradient: linear-gradient(135deg, #f3f4f6, #e5e7eb, #d1d5db);
446
+ --atomix-light-gradient: linear-gradient(135deg, #f9fafb, #f3f4f6, #e5e7eb);
447
+ --atomix-dark-gradient: linear-gradient(135deg, #4b5563, #1f2937, #000000);
448
+ --atomix-success-gradient: linear-gradient(135deg, #dcfce7, #86efac, #4ade80);
449
+ --atomix-info-gradient: linear-gradient(135deg, #dbeafe, #bfdbfe, #60a5fa);
450
+ --atomix-warning-gradient: linear-gradient(135deg, #fef9c3, #fef08a, #facc15);
451
+ --atomix-error-gradient: linear-gradient(135deg, #fef2f2, #fee2e2, #fecaca);
452
+ --atomix-gradient: linear-gradient(135deg, #f9fafb, #f3f4f6, #e5e7eb);
427
453
  --atomix-font-sans-serif: "Roboto", sans-serif;
428
454
  --atomix-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
429
- --atomix-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
430
455
  --atomix-body-font-family: "Roboto", sans-serif;
431
456
  --atomix-body-font-size: 1rem;
432
457
  --atomix-body-font-weight: 400;
@@ -520,6 +545,15 @@ summary {
520
545
  --atomix-success-hover: #86efac;
521
546
  --atomix-warning-hover: #facc15;
522
547
  --atomix-info-hover: #93c5fd;
548
+ --atomix-primary-gradient: linear-gradient(135deg, #2a0e60, #3c1583, #501ba6);
549
+ --atomix-secondary-gradient: linear-gradient(135deg, #374151, #6b7280, #d1d5db);
550
+ --atomix-light-gradient: linear-gradient(135deg, #9ca3af, #6b7280, #9ca3af);
551
+ --atomix-dark-gradient: linear-gradient(135deg, #000000, #4b5563, #1f2937);
552
+ --atomix-success-gradient: linear-gradient(135deg, #14532d, #16a34a, #166534);
553
+ --atomix-info-gradient: linear-gradient(135deg, #1e3a8a, #1d4ed8, #1e40af);
554
+ --atomix-warning-gradient: linear-gradient(135deg, #713f12, #a16207, #854d0e);
555
+ --atomix-error-gradient: linear-gradient(135deg, #7f1d1d, #dc2626, #7f1d1d);
556
+ --atomix-gradient: linear-gradient(135deg, #4b5563, #1f2937, #000000);
523
557
  --atomix-box-shadow: 0px 8px 40px -8px rgba(30, 30, 30, 0.7), 0px 4px 20px 0px rgba(30, 30, 30, 0.8);
524
558
  --atomix-box-shadow-xs: 0px 1px 2px 0px rgba(30, 30, 30, 0.5), 0px 2px 4px 0px rgba(30, 30, 30, 0.5);
525
559
  --atomix-box-shadow-sm: 0px 2px 4px -2px rgba(30, 30, 30, 0.5), 0px 4px 8px -2px rgba(30, 30, 30, 0.5);
@@ -1423,12 +1457,12 @@ a, a:hover {
1423
1457
  --atomix-accordion-body-padding-x: 1.25rem;
1424
1458
  --atomix-accordion-body-padding-y: 0.5rem;
1425
1459
  --atomix-accordion-body-color: var(--atomix-body-color);
1426
- --atomix-accordion-body-bg: var(--atomix-secondary-bg-subtle);
1460
+ --atomix-accordion-body-bg: var(--atomix-body-bg);
1427
1461
  --atomix-accordion-header-padding-x: 1.25rem;
1428
1462
  --atomix-accordion-header-padding-y: 1rem;
1429
1463
  --atomix-accordion-header-color: var(--atomix-body-color);
1430
- --atomix-accordion-header-bg: var(--atomix-secondary-bg-subtle);
1431
- --atomix-accordion-header-bg-hover: var(--atomix-tertiary-bg-subtle);
1464
+ --atomix-accordion-header-bg: var(--atomix-body-bg);
1465
+ --atomix-accordion-header-bg-hover: var(--atomix-body-bg);
1432
1466
  --atomix-accordion-icon-size: 1.25rem;
1433
1467
  --atomix-accordion-icon-color: var(--atomix-body-color);
1434
1468
  --atomix-accordion-icon-transform: 180deg;
@@ -1444,12 +1478,17 @@ a, a:hover {
1444
1478
  display: flex;
1445
1479
  align-items: center;
1446
1480
  justify-content: space-between;
1481
+ width: 100%;
1447
1482
  color: var(--atomix-accordion-header-color);
1448
1483
  padding: var(--atomix-accordion-header-padding-y) var(--atomix-accordion-header-padding-x);
1449
- background-color: var(--atomix-accordion-header-bg);
1450
1484
  border: none;
1485
+ outline: none;
1451
1486
  cursor: pointer;
1452
- width: 100%;
1487
+ transition-property: background;
1488
+ transition-duration: 0.2s;
1489
+ transition-timing-function: ease-in-out;
1490
+ transition-delay: 0s;
1491
+ background-color: var(--atomix-accordion-header-bg);
1453
1492
  }
1454
1493
  .c-accordion__header--icon-left {
1455
1494
  flex-direction: row-reverse;
@@ -1483,8 +1522,8 @@ a, a:hover {
1483
1522
  .c-accordion__body {
1484
1523
  color: var(--atomix-accordion-body-color);
1485
1524
  padding: var(--atomix-accordion-body-padding-y) var(--atomix-accordion-body-padding-x);
1486
- background-color: var(--atomix-accordion-body-bg);
1487
1525
  border-radius: 0 0 var(--atomix-accordion-border-radius) var(--atomix-accordion-border-radius);
1526
+ background-color: var(--atomix-accordion-body-bg);
1488
1527
  }
1489
1528
  .c-accordion:focus, .c-accordion.is-focused {
1490
1529
  --atomix-accordion-border-color: var(--atomix-focus-border-color);
@@ -1501,6 +1540,15 @@ a, a:hover {
1501
1540
  --atomix-accordion-body-color: var(--atomix-accordion-disable-color);
1502
1541
  --atomix-accordion-icon-color: var(--atomix-accordion-disable-color);
1503
1542
  }
1543
+ .c-accordion--glass {
1544
+ border-color: transparent;
1545
+ }
1546
+ .c-accordion--glass .c-accordion__header {
1547
+ background-color: color-mix(in srgb, var(--atomix-accordion-header-bg) 50%, transparent);
1548
+ }
1549
+ .c-accordion--glass .c-accordion__body {
1550
+ background-color: color-mix(in srgb, var(--atomix-accordion-header-bg) 50%, transparent);
1551
+ }
1504
1552
  .c-avatar {
1505
1553
  --atomix-avatar-fit: cover;
1506
1554
  --atomix-avatar-size: 2.5rem;
@@ -1713,6 +1761,10 @@ a, a:hover {
1713
1761
  .c-badge--lg {
1714
1762
  --atomix-tag-padding-y: 0.5rem;
1715
1763
  }
1764
+ .c-badge--glass {
1765
+ background-color: color-mix(in srgb, var(--atomix-tag-bg-color) 80%, transparent);
1766
+ border: 1px solid color-mix(in srgb, var(--atomix-tag-color) 20%, transparent);
1767
+ }
1716
1768
  .c-badge--primary {
1717
1769
  --atomix-tag-bg-color: var(--atomix-brand-bg-subtle);
1718
1770
  --atomix-tag-color: var(--atomix-brand-text-emphasis);
@@ -1740,10 +1792,16 @@ a, a:hover {
1740
1792
  .c-badge--light {
1741
1793
  --atomix-tag-bg-color: var(--atomix-light);
1742
1794
  --atomix-tag-color: var(--atomix-dark);
1795
+ border: 1px solid var(--atomix-light);
1743
1796
  }
1744
1797
  .c-badge--dark {
1745
1798
  --atomix-tag-bg-color: var(--atomix-dark);
1746
1799
  --atomix-tag-color: var(--atomix-light);
1800
+ border: 1px solid var(--atomix-dark);
1801
+ }
1802
+ .c-badge-glass {
1803
+ box-shadow: inset 1px 2px 3px rgba(255, 255, 255, 0.1), inset 0 -2px 2px rgba(0, 0, 0, 0.3);
1804
+ border-radius: 999px;
1747
1805
  }
1748
1806
  .c-breadcrumb {
1749
1807
  --atomix-breadcrumb-font-size: 0.875rem;
@@ -2142,6 +2200,12 @@ a, a:hover {
2142
2200
  border-color: var(--atomix-btn-disabled-border-color);
2143
2201
  opacity: var(--atomix-btn-disabled-opacity);
2144
2202
  }
2203
+ .c-btn--glass {
2204
+ background-color: color-mix(in srgb, var(--atomix-btn-bg) 50%, transparent);
2205
+ }
2206
+ .c-btn--glass:hover {
2207
+ background-color: color-mix(in srgb, var(--atomix-btn-hover-bg) 50%, transparent);
2208
+ }
2145
2209
  .c-datepicker {
2146
2210
  --atomix-datepicker-width: 19rem;
2147
2211
  --atomix-datepicker-padding-x: 0.5rem;
@@ -2264,6 +2328,24 @@ a, a:hover {
2264
2328
  .c-datepicker__calendar--right-end {
2265
2329
  bottom: 0;
2266
2330
  }
2331
+ .c-datepicker__calendar--glass {
2332
+ z-index: auto;
2333
+ z-index: initial;
2334
+ box-shadow: none;
2335
+ border: none;
2336
+ border-radius: 0;
2337
+ padding: 0;
2338
+ background: transparent;
2339
+ }
2340
+ .c-datepicker__glass-content {
2341
+ z-index: auto;
2342
+ z-index: initial;
2343
+ box-shadow: none;
2344
+ border: none;
2345
+ border-radius: var(--atomix-datepicker-border-radius);
2346
+ padding: var(--atomix-datepicker-padding-y) var(--atomix-datepicker-padding-x);
2347
+ background: color-mix(in srgb, var(--atomix-datepicker-bg) 50%, transparent 0%);
2348
+ }
2267
2349
  .c-datepicker--inline {
2268
2350
  --atomix-datepicker-width: calc(
2269
2351
  var(--atomix-datepicker-width) + var(--atomix-datepicker-week-width)
@@ -2572,7 +2654,7 @@ a, a:hover {
2572
2654
  --atomix-card-bg: var(--atomix-primary-bg-subtle);
2573
2655
  --atomix-card-bg-hover: var(--atomix-secondary-bg-subtle);
2574
2656
  --atomix-card-icon-size: 1.25rem;
2575
- --atomix-card-icon-padding: 0.625rem;
2657
+ --atomix-card-icon-padding: 0.375rem;
2576
2658
  --atomix-card-icon-bg: var(--atomix-brand-bg-subtle);
2577
2659
  --atomix-card-icon-color: var(--atomix-brand-text-emphasis);
2578
2660
  --atomix-card-width: 100%;
@@ -2581,11 +2663,11 @@ a, a:hover {
2581
2663
  padding: var(--atomix-card-spacer-y) var(--atomix-card-spacer-x);
2582
2664
  border: var(--atomix-card-border-width) solid var(--atomix-card-border-color);
2583
2665
  border-radius: var(--atomix-card-border-radius);
2584
- background-color: var(--atomix-card-bg);
2585
2666
  transition-property: all;
2586
2667
  transition-duration: 0.2s;
2587
2668
  transition-timing-function: ease-in-out;
2588
2669
  transition-delay: 0s;
2670
+ background-color: var(--atomix-card-bg);
2589
2671
  }
2590
2672
  .c-card__header {
2591
2673
  margin-bottom: var(--atomix-card-header-spacer-y);
@@ -2663,6 +2745,21 @@ a, a:hover {
2663
2745
  padding: var(--atomix-card-row-spacer-y) var(--atomix-card-row-spacer-x);
2664
2746
  padding-top: 0;
2665
2747
  }
2748
+ .c-card--glass {
2749
+ background-color: transparent;
2750
+ padding: 0;
2751
+ border: none;
2752
+ display: block;
2753
+ border-radius: 0;
2754
+ }
2755
+ .c-card--glass .c-card__glass-content {
2756
+ padding: var(--atomix-card-spacer-y) var(--atomix-card-spacer-x);
2757
+ max-width: var(--atomix-card-width);
2758
+ border-radius: var(--atomix-card-border-radius);
2759
+ width: 100%;
2760
+ background-color: color-mix(in srgb, var(--atomix-card-bg) 50%, transparent);
2761
+ background-blend-mode: overlay;
2762
+ }
2666
2763
  .is-elevated .c-card {
2667
2764
  box-shadow: var(--atomix-box-shadow-lg, 0 16px 48px rgba(0, 0, 0, 0.175));
2668
2765
  z-index: 1;
@@ -2674,7 +2771,7 @@ a, a:hover {
2674
2771
  --atomix-chart-border-radius: 0.625rem;
2675
2772
  --atomix-chart-padding: 1rem;
2676
2773
  --atomix-chart-gap: 0.5rem;
2677
- --atomix-chart-border-width: 1px;
2774
+ --atomix-chart-border-width: var(--atomix-border-width);
2678
2775
  --atomix-chart-border-color: var(--atomix-border-color);
2679
2776
  --atomix-chart-bg: var(--atomix-body-bg);
2680
2777
  --atomix-chart-min-height: 13rem;
@@ -2707,7 +2804,7 @@ a, a:hover {
2707
2804
  border-color: var(--atomix-primary-border-subtle);
2708
2805
  }
2709
2806
  .c-chart:focus-visible {
2710
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 0 3px var(--atomix-primary-border-subtle);
2807
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 0 calc(var(--atomix-border-width) * 3) var(--atomix-primary-border-subtle);
2711
2808
  }
2712
2809
  .c-chart--xs {
2713
2810
  --atomix-chart-min-height: 7rem;
@@ -2890,8 +2987,8 @@ a, a:hover {
2890
2987
  .c-chart__header {
2891
2988
  padding: var(--atomix-chart-padding);
2892
2989
  border-bottom: var(--atomix-chart-border-width) solid var(--atomix-brand-bg-subtle);
2893
- -webkit-backdrop-filter: blur(12px);
2894
- backdrop-filter: blur(12px);
2990
+ -webkit-backdrop-filter: blur(0.75rem);
2991
+ backdrop-filter: blur(0.75rem);
2895
2992
  position: relative;
2896
2993
  display: flex;
2897
2994
  align-items: flex-start;
@@ -3140,7 +3237,7 @@ a, a:hover {
3140
3237
  right: 0;
3141
3238
  bottom: 0;
3142
3239
  background-image: radial-gradient(circle at 1px 1px, var(--atomix-primary-border-subtle) 1px, transparent 0);
3143
- background-size: 20px 20px;
3240
+ background-size: 1.25rem 1.25rem;
3144
3241
  opacity: 0.03;
3145
3242
  pointer-events: none;
3146
3243
  z-index: 0;
@@ -3318,8 +3415,8 @@ a, a:hover {
3318
3415
  position: fixed;
3319
3416
  top: 0;
3320
3417
  left: 0;
3321
- -webkit-backdrop-filter: blur(16px);
3322
- backdrop-filter: blur(16px);
3418
+ -webkit-backdrop-filter: blur(1rem);
3419
+ backdrop-filter: blur(1rem);
3323
3420
  border-radius: 0.625rem;
3324
3421
  padding: 0.75rem 1rem;
3325
3422
  box-shadow: var(--atomix-box-shadow);
@@ -4397,7 +4494,7 @@ a, a:hover {
4397
4494
  animation: none;
4398
4495
  }
4399
4496
  }
4400
- .c-chart:focus-within__data-point:focus {
4497
+ .c-chart:focus-within .c-chart__data-point:focus {
4401
4498
  outline: 2px solid var(--atomix-primary-6);
4402
4499
  outline-offset: 2px;
4403
4500
  z-index: 10;
@@ -4474,9 +4571,9 @@ a, a:hover {
4474
4571
  flex-direction: row;
4475
4572
  }
4476
4573
  .c-checkbox {
4477
- --atomix-checkbox-width: 20px;
4478
- --atomix-checkbox-height: 20px;
4479
- --atomix-checkbox-spacer: 8px;
4574
+ --atomix-checkbox-width: 1.25rem;
4575
+ --atomix-checkbox-height: 1.25rem;
4576
+ --atomix-checkbox-spacer: 0.5rem;
4480
4577
  --atomix-checkbox-font-size: 1rem;
4481
4578
  --atomix-checkbox-text-color: var(--atomix-body-color);
4482
4579
  --atomix-checkbox-text-color-disabled: var(--atomix-tertiary-text-emphasis);
@@ -4486,7 +4583,7 @@ a, a:hover {
4486
4583
  --atomix-checkbox-checked-bg: var(--atomix-invert-bg-subtle);
4487
4584
  --atomix-checkbox-checked-bg-hover: var(--atomix-tertiary-text-emphasis);
4488
4585
  --atomix-checkbox-checked-bg-disabled: var(--atomix-disabled-text-emphasis);
4489
- --atomix-checkbox-border-width: 1px;
4586
+ --atomix-checkbox-border-width: var(--atomix-border-width);
4490
4587
  --atomix-checkbox-border-color: var(--atomix-tertiary-text-emphasis);
4491
4588
  --atomix-checkbox-border-color-hover: var(--atomix-primary-text-emphasis);
4492
4589
  --atomix-checkbox-border-color-disabled: var(--atomix-disabled-text-emphasis);
@@ -4800,7 +4897,7 @@ a, a:hover {
4800
4897
  }
4801
4898
  .c-dropdown {
4802
4899
  --atomix-dropdown-min-width: 11.25rem;
4803
- --atomix-dropdown-padding-x: 0;
4900
+ --atomix-dropdown-padding-x: 0rem;
4804
4901
  --atomix-dropdown-padding-y: 0.5rem;
4805
4902
  --atomix-dropdown-spacer: 0.25rem;
4806
4903
  --atomix-dropdown-font-size: 1rem;
@@ -4808,7 +4905,7 @@ a, a:hover {
4808
4905
  --atomix-dropdown-bg: var(--atomix-body-bg);
4809
4906
  --atomix-dropdown-border-color: var(--atomix-primary-border-subtle);
4810
4907
  --atomix-dropdown-border-radius: 0.5rem;
4811
- --atomix-dropdown-border-width: 1px;
4908
+ --atomix-dropdown-border-width: var(--atomix-border-width);
4812
4909
  --atomix-dropdown-box-shadow: var(--atomix-box-shadow);
4813
4910
  --atomix-dropdown-link-color: var(--atomix-body-color);
4814
4911
  --atomix-dropdown-link-hover-color: var(--atomix-brand-text-emphasis);
@@ -4837,7 +4934,6 @@ a, a:hover {
4837
4934
  .c-dropdown__menu-wrapper {
4838
4935
  position: absolute;
4839
4936
  left: 0;
4840
- z-index: 99;
4841
4937
  display: flex;
4842
4938
  opacity: 0;
4843
4939
  visibility: hidden;
@@ -4919,11 +5015,16 @@ a, a:hover {
4919
5015
  padding: var(--atomix-dropdown-padding-y) var(--atomix-dropdown-padding-x);
4920
5016
  list-style: none;
4921
5017
  margin-bottom: 0rem;
5018
+ border: 1px solid rgba(255, 255, 255, 0.08);
4922
5019
  background-color: var(--atomix-dropdown-bg);
4923
5020
  border-radius: var(--atomix-dropdown-border-radius);
4924
5021
  box-shadow: var(--atomix-dropdown-box-shadow);
4925
5022
  overflow: hidden;
4926
5023
  }
5024
+ .c-dropdown__menu--glass {
5025
+ background-color: color-mix(in srgb, var(--atomix-dropdown-bg) 50%, transparent);
5026
+ box-shadow: var(--atomix-dropdown-box-shadow);
5027
+ }
4927
5028
  .c-dropdown__menu-item {
4928
5029
  display: block;
4929
5030
  width: 100%;
@@ -5043,7 +5144,7 @@ a, a:hover {
5043
5144
  .c-edge-panel__backdrop {
5044
5145
  position: absolute;
5045
5146
  inset: 0;
5046
- background: var(--atomix-edge-panel-backdrop-bg);
5147
+ background-color: var(--atomix-edge-panel-backdrop-bg);
5047
5148
  -webkit-backdrop-filter: blur(var(--atomix-edge-panel-backdrop-blur));
5048
5149
  backdrop-filter: blur(var(--atomix-edge-panel-backdrop-blur));
5049
5150
  opacity: 0;
@@ -5203,84 +5304,1072 @@ a, a:hover {
5203
5304
  width: 100%;
5204
5305
  height: 100%;
5205
5306
  }
5206
- @keyframes fadeIn {
5207
- from {
5208
- opacity: 0;
5209
- }
5210
- to {
5211
- opacity: var(--atomix-edge-panel-backdrop-opacity);
5212
- }
5307
+ @keyframes fadeIn {
5308
+ from {
5309
+ opacity: 0;
5310
+ }
5311
+ to {
5312
+ opacity: var(--atomix-edge-panel-backdrop-opacity);
5313
+ }
5314
+ }
5315
+ @keyframes fadeOut {
5316
+ from {
5317
+ opacity: var(--atomix-edge-panel-backdrop-opacity);
5318
+ }
5319
+ to {
5320
+ opacity: 0;
5321
+ }
5322
+ }
5323
+ @keyframes slideInStart {
5324
+ from {
5325
+ transform: translateX(-100%);
5326
+ }
5327
+ to {
5328
+ transform: translateX(0);
5329
+ }
5330
+ }
5331
+ @keyframes slideOutStart {
5332
+ from {
5333
+ transform: translateX(0);
5334
+ }
5335
+ to {
5336
+ transform: translateX(-100%);
5337
+ }
5338
+ }
5339
+ @keyframes slideInEnd {
5340
+ from {
5341
+ transform: translateX(100%);
5342
+ }
5343
+ to {
5344
+ transform: translateX(0);
5345
+ }
5346
+ }
5347
+ @keyframes slideOutEnd {
5348
+ from {
5349
+ transform: translateX(0);
5350
+ }
5351
+ to {
5352
+ transform: translateX(100%);
5353
+ }
5354
+ }
5355
+ @keyframes slideInTop {
5356
+ from {
5357
+ transform: translateY(-100%);
5358
+ }
5359
+ to {
5360
+ transform: translateY(0);
5361
+ }
5362
+ }
5363
+ @keyframes slideOutTop {
5364
+ from {
5365
+ transform: translateY(0);
5366
+ }
5367
+ to {
5368
+ transform: translateY(-100%);
5369
+ }
5370
+ }
5371
+ @keyframes slideInBottom {
5372
+ from {
5373
+ transform: translateY(100%);
5374
+ }
5375
+ to {
5376
+ transform: translateY(0);
5377
+ }
5378
+ }
5379
+ @keyframes slideOutBottom {
5380
+ from {
5381
+ transform: translateY(0);
5382
+ }
5383
+ to {
5384
+ transform: translateY(100%);
5385
+ }
5386
+ }
5387
+ .c-footer {
5388
+ --atomix-footer-padding-x: 1rem;
5389
+ --atomix-footer-padding-y: 3rem;
5390
+ --atomix-footer-container-max-width: 1200px;
5391
+ --atomix-footer-bg: var(--atomix-surface);
5392
+ --atomix-footer-color: var(--atomix-text);
5393
+ --atomix-footer-border-width: 1px;
5394
+ --atomix-footer-border-color: var(--atomix-border);
5395
+ --atomix-footer-brand-margin-bottom: 1.5rem;
5396
+ --atomix-footer-section-margin-bottom: 2rem;
5397
+ --atomix-footer-social-gap: 0.75rem;
5398
+ --atomix-footer-newsletter-padding: 1.5rem;
5399
+ --atomix-footer-bottom-padding-top: 1.5rem;
5400
+ --atomix-footer-bottom-margin-top: 2rem;
5401
+ background-color: var(--atomix-footer-bg);
5402
+ color: var(--atomix-footer-color);
5403
+ border-top: var(--atomix-footer-border-width) solid var(--atomix-footer-border-color);
5404
+ padding: var(--atomix-footer-padding-y) 0;
5405
+ position: relative;
5406
+ }
5407
+ .c-footer__container {
5408
+ display: flex;
5409
+ flex-direction: column;
5410
+ width: 100%;
5411
+ max-width: var(--atomix-footer-container-max-width);
5412
+ margin: 0 auto;
5413
+ padding: 0 var(--atomix-footer-padding-x);
5414
+ }
5415
+ .c-footer__sections {
5416
+ display: grid;
5417
+ grid-gap: var(--atomix-footer-section-margin-bottom);
5418
+ gap: var(--atomix-footer-section-margin-bottom);
5419
+ margin-bottom: var(--atomix-footer-bottom-margin-top);
5420
+ grid-template-columns: 1fr;
5421
+ }
5422
+ @media (min-width: 768px) {
5423
+ .c-footer__sections {
5424
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
5425
+ gap: clamp(2rem, 4vw, 3rem);
5426
+ }
5427
+ }
5428
+ .c-footer__brand {
5429
+ margin-bottom: var(--atomix-footer-brand-margin-bottom);
5430
+ }
5431
+ .c-footer__brand-logo {
5432
+ display: inline-block;
5433
+ margin-bottom: 1rem;
5434
+ transition: opacity 0.2s ease;
5435
+ }
5436
+ .c-footer__brand-logo:hover {
5437
+ opacity: 0.8;
5438
+ }
5439
+ .c-footer__brand-logo img {
5440
+ max-width: 200px;
5441
+ max-height: 60px;
5442
+ height: auto;
5443
+ -o-object-fit: contain;
5444
+ object-fit: contain;
5445
+ }
5446
+ .c-footer__brand-name h3 {
5447
+ margin: 0;
5448
+ font-size: clamp(1.25rem, 2.5vw, 1.5rem);
5449
+ font-weight: 600;
5450
+ color: var(--atomix-text-emphasis);
5451
+ line-height: 1.2;
5452
+ }
5453
+ .c-footer__brand-description {
5454
+ margin-top: 0.5rem;
5455
+ font-size: 0.875rem;
5456
+ color: var(--atomix-text-muted);
5457
+ line-height: 1.6;
5458
+ max-width: 35ch;
5459
+ }
5460
+ .c-footer__section {
5461
+ margin-bottom: var(--atomix-footer-section-margin-bottom);
5462
+ }
5463
+ .c-footer__section-header {
5464
+ margin-bottom: 1rem;
5465
+ }
5466
+ .c-footer__section-header-content {
5467
+ display: flex;
5468
+ align-items: center;
5469
+ gap: 0.5rem;
5470
+ }
5471
+ .c-footer__section-toggle {
5472
+ display: flex;
5473
+ align-items: center;
5474
+ justify-content: space-between;
5475
+ width: 100%;
5476
+ padding: 0.75rem 0;
5477
+ background: none;
5478
+ border: none;
5479
+ cursor: pointer;
5480
+ color: inherit;
5481
+ font: inherit;
5482
+ text-align: left;
5483
+ border-radius: 0.25rem;
5484
+ transition: color 0.2s ease;
5485
+ }
5486
+ .c-footer__section-toggle:hover {
5487
+ color: var(--atomix-primary);
5488
+ }
5489
+ .c-footer__section-toggle:focus-visible {
5490
+ outline: 2px solid var(--atomix-primary);
5491
+ outline-offset: 2px;
5492
+ }
5493
+ .c-footer__section-title {
5494
+ margin: 0;
5495
+ font-size: 1.125rem;
5496
+ font-weight: 600;
5497
+ color: var(--atomix-text-emphasis);
5498
+ line-height: 1.3;
5499
+ }
5500
+ .c-footer__section-icon {
5501
+ display: flex;
5502
+ align-items: center;
5503
+ margin-right: 0.5rem;
5504
+ font-size: 1.1em;
5505
+ }
5506
+ .c-footer__section-chevron {
5507
+ font-size: 0.875rem;
5508
+ transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
5509
+ color: var(--atomix-text-muted);
5510
+ }
5511
+ .c-footer__section-content {
5512
+ display: flex;
5513
+ flex-direction: column;
5514
+ gap: 0.5rem;
5515
+ }
5516
+ @media (max-width: 767.98px) {
5517
+ .c-footer__section--collapsible .c-footer__section-content {
5518
+ overflow: hidden;
5519
+ transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
5520
+ }
5521
+ .c-footer__section--collapsible.c-footer__section--collapsed .c-footer__section-content {
5522
+ max-height: 0;
5523
+ }
5524
+ .c-footer__section--collapsible.c-footer__section--collapsed .c-footer__section-chevron {
5525
+ transform: rotate(-90deg);
5526
+ }
5527
+ .c-footer__section--collapsible:not(.c-footer__section--collapsed) .c-footer__section-content {
5528
+ max-height: 500px;
5529
+ }
5530
+ }
5531
+ @media (min-width: 768px) {
5532
+ .c-footer__section--collapsible .c-footer__section-toggle {
5533
+ pointer-events: none;
5534
+ }
5535
+ .c-footer__section--collapsible .c-footer__section-chevron {
5536
+ display: none;
5537
+ }
5538
+ }
5539
+ .c-footer__link {
5540
+ display: inline-flex;
5541
+ align-items: center;
5542
+ gap: 0.5rem;
5543
+ padding: 0.25rem 0;
5544
+ color: var(--atomix-text);
5545
+ text-decoration: none;
5546
+ transition: color 0.15s ease-in-out;
5547
+ border-radius: 0.25rem;
5548
+ position: relative;
5549
+ }
5550
+ .c-footer__link::before {
5551
+ content: "";
5552
+ position: absolute;
5553
+ left: 0;
5554
+ bottom: 0;
5555
+ width: 0;
5556
+ height: 2px;
5557
+ background-color: var(--atomix-primary);
5558
+ transition: width 0.3s ease;
5559
+ }
5560
+ .c-footer__link:hover, .c-footer__link:focus {
5561
+ color: var(--atomix-primary);
5562
+ text-decoration: underline;
5563
+ }
5564
+ .c-footer__link:hover::before, .c-footer__link:focus::before {
5565
+ width: 100%;
5566
+ }
5567
+ .c-footer__link:focus-visible {
5568
+ outline: 2px solid var(--atomix-primary);
5569
+ outline-offset: 2px;
5570
+ }
5571
+ .c-footer__link--active {
5572
+ color: var(--atomix-primary);
5573
+ font-weight: 500;
5574
+ }
5575
+ .c-footer__link--active::before {
5576
+ width: 100%;
5577
+ }
5578
+ .c-footer__link--disabled {
5579
+ color: var(--atomix-text-disabled);
5580
+ cursor: not-allowed;
5581
+ pointer-events: none;
5582
+ opacity: 0.6;
5583
+ }
5584
+ .c-footer__link-icon {
5585
+ display: flex;
5586
+ align-items: center;
5587
+ font-size: 0.875em;
5588
+ transition: transform 0.2s ease;
5589
+ }
5590
+ .c-footer__link:hover .c-footer__link-icon {
5591
+ transform: translateX(2px);
5592
+ }
5593
+ .c-footer__link-text {
5594
+ flex: 1 1;
5595
+ }
5596
+ .c-footer__link-external {
5597
+ font-size: 0.75em;
5598
+ opacity: 0.7;
5599
+ margin-left: auto;
5600
+ }
5601
+ .c-footer__social {
5602
+ display: flex;
5603
+ flex-wrap: wrap;
5604
+ gap: var(--atomix-footer-social-gap);
5605
+ margin-top: 1rem;
5606
+ }
5607
+ .c-footer__social-link {
5608
+ display: flex;
5609
+ align-items: center;
5610
+ justify-content: center;
5611
+ width: 2.5rem;
5612
+ height: 2.5rem;
5613
+ background-color: var(--atomix-surface-variant);
5614
+ color: var(--atomix-text);
5615
+ border-radius: 50%;
5616
+ text-decoration: none;
5617
+ transition: all 0.15s ease-in-out;
5618
+ position: relative;
5619
+ overflow: hidden;
5620
+ }
5621
+ .c-footer__social-link::before {
5622
+ content: "";
5623
+ position: absolute;
5624
+ inset: 0;
5625
+ background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
5626
+ transform: translateX(-100%);
5627
+ transition: transform 0.6s ease;
5628
+ }
5629
+ .c-footer__social-link:hover, .c-footer__social-link:focus {
5630
+ background-color: var(--atomix-primary);
5631
+ color: var(--atomix-primary-contrast);
5632
+ transform: translateY(-3px) scale(1.05);
5633
+ box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
5634
+ }
5635
+ .c-footer__social-link:hover::before, .c-footer__social-link:focus::before {
5636
+ transform: translateX(100%);
5637
+ }
5638
+ .c-footer__social-link:focus-visible {
5639
+ outline: 2px solid var(--atomix-primary);
5640
+ outline-offset: 2px;
5641
+ }
5642
+ .c-footer__social-link--sm {
5643
+ width: 2rem;
5644
+ height: 2rem;
5645
+ }
5646
+ .c-footer__social-link--lg {
5647
+ width: 3rem;
5648
+ height: 3rem;
5649
+ }
5650
+ .c-footer__social-link--disabled {
5651
+ opacity: 0.5;
5652
+ cursor: not-allowed;
5653
+ pointer-events: none;
5654
+ }
5655
+ .c-footer__social-link-icon {
5656
+ font-size: 1.25em;
5657
+ z-index: 1;
5658
+ }
5659
+ .c-footer__social-link-label {
5660
+ position: absolute;
5661
+ width: 1px;
5662
+ height: 1px;
5663
+ padding: 0;
5664
+ margin: -1px;
5665
+ overflow: hidden;
5666
+ clip: rect(0, 0, 0, 0);
5667
+ white-space: nowrap;
5668
+ border: 0;
5669
+ }
5670
+ .c-footer__social-link--facebook:hover {
5671
+ background: linear-gradient(135deg, #1877f2, #42a5f5);
5672
+ }
5673
+ .c-footer__social-link--twitter:hover {
5674
+ background: linear-gradient(135deg, #1da1f2, #64b5f6);
5675
+ }
5676
+ .c-footer__social-link--instagram:hover {
5677
+ background: linear-gradient(135deg, #e4405f, #f06292, #ba68c8);
5678
+ }
5679
+ .c-footer__social-link--linkedin:hover {
5680
+ background: linear-gradient(135deg, #0077b5, #42a5f5);
5681
+ }
5682
+ .c-footer__social-link--youtube:hover {
5683
+ background: linear-gradient(135deg, #ff0000, #ff5722);
5684
+ }
5685
+ .c-footer__social-link--github:hover {
5686
+ background: linear-gradient(135deg, #333, #666);
5687
+ }
5688
+ .c-footer__social-link--discord:hover {
5689
+ background: linear-gradient(135deg, #5865f2, #7289da);
5690
+ }
5691
+ .c-footer__social-link--tiktok:hover {
5692
+ background: linear-gradient(135deg, #000, #ff0050);
5693
+ }
5694
+ .c-footer__social-link--whatsapp:hover {
5695
+ background: linear-gradient(135deg, #25d366, #66bb6a);
5696
+ }
5697
+ .c-footer__newsletter {
5698
+ background-color: linear-gradient(135deg, var(--atomix-surface-variant), rgba(var(--atomix-surface-variant), 0.8));
5699
+ padding: 1.5rem;
5700
+ border-radius: 0.5rem;
5701
+ border: 1px solid var(--atomix-border-subtle);
5702
+ position: relative;
5703
+ overflow: hidden;
5704
+ }
5705
+ .c-footer__newsletter::before {
5706
+ content: "";
5707
+ position: absolute;
5708
+ top: 0;
5709
+ left: 0;
5710
+ right: 0;
5711
+ height: 1px;
5712
+ background: linear-gradient(90deg, transparent, var(--atomix-primary), transparent);
5713
+ }
5714
+ .c-footer__newsletter-title {
5715
+ margin: 0 0 0.5rem 0;
5716
+ font-size: clamp(1.125rem, 2vw, 1.125rem);
5717
+ font-weight: 600;
5718
+ color: var(--atomix-text-emphasis);
5719
+ line-height: 1.3;
5720
+ }
5721
+ .c-footer__newsletter-description {
5722
+ margin: 0 0 1rem 0;
5723
+ font-size: 0.875rem;
5724
+ color: var(--atomix-text-muted);
5725
+ line-height: 1.6;
5726
+ max-width: 45ch;
5727
+ }
5728
+ .c-footer__newsletter-form {
5729
+ display: flex;
5730
+ gap: 0.75rem;
5731
+ align-items: flex-end;
5732
+ }
5733
+ @media (max-width: 575.98px) {
5734
+ .c-footer__newsletter-form {
5735
+ flex-direction: column;
5736
+ align-items: stretch;
5737
+ }
5738
+ }
5739
+ .c-footer__newsletter-input-group {
5740
+ display: flex;
5741
+ flex: 1 1;
5742
+ gap: 0.75rem;
5743
+ position: relative;
5744
+ }
5745
+ @media (max-width: 575.98px) {
5746
+ .c-footer__newsletter-input-group {
5747
+ flex-direction: column;
5748
+ }
5749
+ }
5750
+ .c-footer__newsletter-input {
5751
+ flex: 1 1;
5752
+ padding: 0.75rem 1rem;
5753
+ font-size: 0.875rem;
5754
+ background-color: var(--atomix-surface);
5755
+ color: var(--atomix-text);
5756
+ border: 1px solid var(--atomix-border);
5757
+ border-radius: 0.375rem;
5758
+ outline: none;
5759
+ transition: all 0.3s ease;
5760
+ }
5761
+ .c-footer__newsletter-input:focus {
5762
+ border-color: var(--atomix-primary);
5763
+ box-shadow: 0 0 0 0.125rem rgba(var(--atomix-primary-rgb), 0.25);
5764
+ transform: translateY(-1px);
5765
+ }
5766
+ .c-footer__newsletter-input::-moz-placeholder {
5767
+ color: var(--atomix-text-muted);
5768
+ -moz-transition: opacity 0.3s ease;
5769
+ transition: opacity 0.3s ease;
5770
+ }
5771
+ .c-footer__newsletter-input::placeholder {
5772
+ color: var(--atomix-text-muted);
5773
+ transition: opacity 0.3s ease;
5774
+ }
5775
+ .c-footer__newsletter-input:focus::-moz-placeholder {
5776
+ opacity: 0.7;
5777
+ }
5778
+ .c-footer__newsletter-input:focus::placeholder {
5779
+ opacity: 0.7;
5780
+ }
5781
+ .c-footer__newsletter-button {
5782
+ padding: 0.75rem 1.5rem;
5783
+ background-color: var(--atomix-primary);
5784
+ color: var(--atomix-primary-contrast);
5785
+ border: none;
5786
+ border-radius: 0.375rem;
5787
+ font-weight: 500;
5788
+ cursor: pointer;
5789
+ transition: background-color 0.15s ease-in-out;
5790
+ white-space: nowrap;
5791
+ position: relative;
5792
+ overflow: hidden;
5793
+ }
5794
+ .c-footer__newsletter-button::before {
5795
+ content: "";
5796
+ position: absolute;
5797
+ inset: 0;
5798
+ background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
5799
+ transform: translateX(-100%);
5800
+ transition: transform 0.6s ease;
5801
+ }
5802
+ .c-footer__newsletter-button:hover, .c-footer__newsletter-button:focus {
5803
+ background-color: var(--atomix-primary-hover);
5804
+ transform: translateY(-2px);
5805
+ box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
5806
+ }
5807
+ .c-footer__newsletter-button:hover::before, .c-footer__newsletter-button:focus::before {
5808
+ transform: translateX(100%);
5809
+ }
5810
+ .c-footer__newsletter-button:focus-visible {
5811
+ outline: 2px solid var(--atomix-primary);
5812
+ outline-offset: 2px;
5813
+ }
5814
+ .c-footer__bottom {
5815
+ display: flex;
5816
+ align-items: center;
5817
+ justify-content: space-between;
5818
+ padding-top: var(--atomix-footer-bottom-padding-top);
5819
+ border-top: 1px solid var(--atomix-border);
5820
+ position: relative;
5821
+ }
5822
+ @media (max-width: 575.98px) {
5823
+ .c-footer__bottom {
5824
+ flex-direction: column;
5825
+ gap: 1.5rem;
5826
+ text-align: center;
5827
+ }
5828
+ }
5829
+ .c-footer__copyright {
5830
+ font-size: 0.875rem;
5831
+ color: var(--atomix-text-muted);
5832
+ line-height: 1.5;
5833
+ }
5834
+ .c-footer__copyright a {
5835
+ color: inherit;
5836
+ text-decoration: underline;
5837
+ text-decoration-color: transparent;
5838
+ transition: text-decoration-color 0.3s ease;
5839
+ }
5840
+ .c-footer__copyright a:hover, .c-footer__copyright a:focus {
5841
+ text-decoration-color: currentColor;
5842
+ }
5843
+ .c-footer__back-to-top {
5844
+ display: flex;
5845
+ align-items: center;
5846
+ gap: 0.5rem;
5847
+ padding: 0.75rem 1.25rem;
5848
+ background-color: var(--atomix-surface-variant);
5849
+ border: 1px solid var(--atomix-border-subtle);
5850
+ color: var(--atomix-text);
5851
+ font-size: 0.875rem;
5852
+ font-weight: 500;
5853
+ cursor: pointer;
5854
+ transition: color 0.15s ease-in-out;
5855
+ border-radius: 2rem;
5856
+ position: relative;
5857
+ overflow: hidden;
5858
+ }
5859
+ .c-footer__back-to-top::before {
5860
+ content: "";
5861
+ position: absolute;
5862
+ inset: 0;
5863
+ background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
5864
+ transform: translateX(-100%);
5865
+ transition: transform 0.6s ease;
5866
+ }
5867
+ .c-footer__back-to-top:hover, .c-footer__back-to-top:focus {
5868
+ color: var(--atomix-primary);
5869
+ background-color: var(--atomix-primary);
5870
+ border-color: var(--atomix-primary);
5871
+ transform: translateY(-2px);
5872
+ box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
5873
+ }
5874
+ .c-footer__back-to-top:hover::before, .c-footer__back-to-top:focus::before {
5875
+ transform: translateX(100%);
5876
+ }
5877
+ .c-footer__back-to-top:hover .c-footer__back-to-top-icon, .c-footer__back-to-top:focus .c-footer__back-to-top-icon {
5878
+ transform: translateY(-2px);
5879
+ }
5880
+ .c-footer__back-to-top:focus-visible {
5881
+ outline: 2px solid var(--atomix-primary);
5882
+ outline-offset: 2px;
5883
+ }
5884
+ .c-footer__back-to-top-icon {
5885
+ font-size: 1.25em;
5886
+ font-weight: bold;
5887
+ transition: transform 0.3s ease;
5888
+ }
5889
+ @media (max-width: 575.98px) {
5890
+ .c-footer__back-to-top-text {
5891
+ display: none;
5892
+ }
5893
+ }
5894
+ .c-footer__divider {
5895
+ margin: 2rem 0;
5896
+ border: none;
5897
+ height: 1px;
5898
+ background: linear-gradient(90deg, transparent, 1px solid var(--atomix-border), transparent);
5899
+ opacity: 0.5;
5900
+ }
5901
+ @media (min-width: 768px) {
5902
+ .c-footer--columns .c-footer__sections {
5903
+ display: grid;
5904
+ grid-template-columns: minmax(300px, 1fr) 2fr minmax(250px, 1fr);
5905
+ grid-gap: clamp(2rem, 5vw, 4rem);
5906
+ gap: clamp(2rem, 5vw, 4rem);
5907
+ align-items: start;
5908
+ }
5909
+ }
5910
+ @media (min-width: 992px) {
5911
+ .c-footer--columns .c-footer__sections {
5912
+ grid-template-columns: minmax(350px, 1fr) 3fr minmax(300px, 1fr);
5913
+ }
5914
+ }
5915
+ .c-footer--centered {
5916
+ text-align: center;
5917
+ }
5918
+ .c-footer--centered .c-footer__sections {
5919
+ justify-content: center;
5920
+ align-items: center;
5921
+ }
5922
+ .c-footer--centered .c-footer__social {
5923
+ justify-content: center;
5924
+ }
5925
+ .c-footer--centered .c-footer__brand-description {
5926
+ margin-left: auto;
5927
+ margin-right: auto;
5928
+ }
5929
+ .c-footer--minimal {
5930
+ --atomix-footer-padding-y: 2rem;
5931
+ }
5932
+ .c-footer--minimal .c-footer__sections {
5933
+ margin-bottom: 1rem;
5934
+ gap: 1.5rem;
5935
+ }
5936
+ .c-footer--minimal .c-footer__section {
5937
+ margin-bottom: 1rem;
5938
+ }
5939
+ .c-footer--minimal .c-footer__newsletter {
5940
+ padding: 1.5rem;
5941
+ }
5942
+ .c-footer--stacked .c-footer__sections {
5943
+ display: flex;
5944
+ flex-direction: column;
5945
+ align-items: center;
5946
+ text-align: center;
5947
+ gap: clamp(1.5rem, 4vw, 2.5rem);
5948
+ max-width: 600px;
5949
+ margin-left: auto;
5950
+ margin-right: auto;
5951
+ }
5952
+ .c-footer--sm {
5953
+ --atomix-footer-padding-y: 2rem;
5954
+ --atomix-footer-section-margin-bottom: 1.5rem;
5955
+ --atomix-footer-brand-margin-bottom: 1rem;
5956
+ --atomix-footer-social-gap: 0.75rem;
5957
+ }
5958
+ .c-footer--md {
5959
+ --atomix-footer-padding-y: 3rem;
5960
+ --atomix-footer-section-margin-bottom: 2rem;
5961
+ }
5962
+ .c-footer--lg {
5963
+ --atomix-footer-padding-y: 4rem;
5964
+ --atomix-footer-section-margin-bottom: 2.5rem;
5965
+ --atomix-footer-brand-margin-bottom: 2rem;
5966
+ --atomix-footer-social-gap: 1.25rem;
5967
+ }
5968
+ .c-footer--lg .c-footer__sections {
5969
+ gap: clamp(2.5rem, 5vw, 4rem);
5970
+ }
5971
+ .c-footer--primary {
5972
+ --atomix-footer-bg: var(--atomix-primary-bg-subtle);
5973
+ --atomix-footer-border-color: var(--atomix-primary-border-subtle);
5974
+ --atomix-footer-color: var(--atomix-primary-text);
5975
+ }
5976
+ .c-footer--primary .c-footer__brand-name h3,
5977
+ .c-footer--primary .c-footer__section-title {
5978
+ color: var(--atomix-primary-text-emphasis);
5979
+ }
5980
+ .c-footer--primary .c-footer__brand-description,
5981
+ .c-footer--primary .c-footer__copyright {
5982
+ color: var(--atomix-primary-text-muted);
5983
+ }
5984
+ .c-footer--primary .c-footer__link {
5985
+ color: var(--atomix-primary-text);
5986
+ }
5987
+ .c-footer--primary .c-footer__link:hover, .c-footer--primary .c-footer__link:focus {
5988
+ color: var(--atomix-primary);
5989
+ }
5990
+ .c-footer--primary .c-footer__link::before {
5991
+ background-color: var(--atomix-primary);
5992
+ }
5993
+ .c-footer--primary .c-footer__newsletter {
5994
+ background: linear-gradient(135deg, var(--atomix-primary-bg), rgba(var(--atomix-primary-bg-rgb), 0.8));
5995
+ border-color: var(--atomix-primary-border);
5996
+ }
5997
+ .c-footer--primary .c-footer__newsletter::before {
5998
+ background: linear-gradient(90deg, transparent, var(--atomix-primary), transparent);
5999
+ }
6000
+ .c-footer--secondary {
6001
+ --atomix-footer-bg: var(--atomix-secondary-bg-subtle);
6002
+ --atomix-footer-border-color: var(--atomix-secondary-border-subtle);
6003
+ --atomix-footer-color: var(--atomix-secondary-text);
6004
+ }
6005
+ .c-footer--secondary .c-footer__brand-name h3,
6006
+ .c-footer--secondary .c-footer__section-title {
6007
+ color: var(--atomix-secondary-text-emphasis);
6008
+ }
6009
+ .c-footer--secondary .c-footer__brand-description,
6010
+ .c-footer--secondary .c-footer__copyright {
6011
+ color: var(--atomix-secondary-text-muted);
6012
+ }
6013
+ .c-footer--secondary .c-footer__link {
6014
+ color: var(--atomix-secondary-text);
6015
+ }
6016
+ .c-footer--secondary .c-footer__link:hover, .c-footer--secondary .c-footer__link:focus {
6017
+ color: var(--atomix-secondary);
6018
+ }
6019
+ .c-footer--secondary .c-footer__link::before {
6020
+ background-color: var(--atomix-secondary);
6021
+ }
6022
+ .c-footer--secondary .c-footer__newsletter {
6023
+ background: linear-gradient(135deg, var(--atomix-secondary-bg), rgba(var(--atomix-secondary-bg-rgb), 0.8));
6024
+ border-color: var(--atomix-secondary-border);
6025
+ }
6026
+ .c-footer--secondary .c-footer__newsletter::before {
6027
+ background: linear-gradient(90deg, transparent, var(--atomix-secondary), transparent);
6028
+ }
6029
+ .c-footer--tertiary {
6030
+ --atomix-footer-bg: var(--atomix-tertiary-bg-subtle);
6031
+ --atomix-footer-border-color: var(--atomix-tertiary-border-subtle);
6032
+ --atomix-footer-color: var(--atomix-tertiary-text);
6033
+ }
6034
+ .c-footer--tertiary .c-footer__brand-name h3,
6035
+ .c-footer--tertiary .c-footer__section-title {
6036
+ color: var(--atomix-tertiary-text-emphasis);
6037
+ }
6038
+ .c-footer--tertiary .c-footer__brand-description,
6039
+ .c-footer--tertiary .c-footer__copyright {
6040
+ color: var(--atomix-tertiary-text-muted);
6041
+ }
6042
+ .c-footer--tertiary .c-footer__link {
6043
+ color: var(--atomix-tertiary-text);
6044
+ }
6045
+ .c-footer--tertiary .c-footer__link:hover, .c-footer--tertiary .c-footer__link:focus {
6046
+ color: var(--atomix-tertiary);
6047
+ }
6048
+ .c-footer--tertiary .c-footer__link::before {
6049
+ background-color: var(--atomix-tertiary);
6050
+ }
6051
+ .c-footer--tertiary .c-footer__newsletter {
6052
+ background: linear-gradient(135deg, var(--atomix-tertiary-bg), rgba(var(--atomix-tertiary-bg-rgb), 0.8));
6053
+ border-color: var(--atomix-tertiary-border);
6054
+ }
6055
+ .c-footer--tertiary .c-footer__newsletter::before {
6056
+ background: linear-gradient(90deg, transparent, var(--atomix-tertiary), transparent);
6057
+ }
6058
+ .c-footer--invert {
6059
+ --atomix-footer-bg: var(--atomix-invert-bg-subtle);
6060
+ --atomix-footer-border-color: var(--atomix-invert-border-subtle);
6061
+ --atomix-footer-color: var(--atomix-invert-text);
6062
+ }
6063
+ .c-footer--invert .c-footer__brand-name h3,
6064
+ .c-footer--invert .c-footer__section-title {
6065
+ color: var(--atomix-invert-text-emphasis);
6066
+ }
6067
+ .c-footer--invert .c-footer__brand-description,
6068
+ .c-footer--invert .c-footer__copyright {
6069
+ color: var(--atomix-invert-text-muted);
6070
+ }
6071
+ .c-footer--invert .c-footer__link {
6072
+ color: var(--atomix-invert-text);
6073
+ }
6074
+ .c-footer--invert .c-footer__link:hover, .c-footer--invert .c-footer__link:focus {
6075
+ color: var(--atomix-invert);
6076
+ }
6077
+ .c-footer--invert .c-footer__link::before {
6078
+ background-color: var(--atomix-invert);
6079
+ }
6080
+ .c-footer--invert .c-footer__newsletter {
6081
+ background: linear-gradient(135deg, var(--atomix-invert-bg), rgba(var(--atomix-invert-bg-rgb), 0.8));
6082
+ border-color: var(--atomix-invert-border);
6083
+ }
6084
+ .c-footer--invert .c-footer__newsletter::before {
6085
+ background: linear-gradient(90deg, transparent, var(--atomix-invert), transparent);
6086
+ }
6087
+ .c-footer--brand {
6088
+ --atomix-footer-bg: var(--atomix-brand-bg-subtle);
6089
+ --atomix-footer-border-color: var(--atomix-brand-border-subtle);
6090
+ --atomix-footer-color: var(--atomix-brand-text);
6091
+ }
6092
+ .c-footer--brand .c-footer__brand-name h3,
6093
+ .c-footer--brand .c-footer__section-title {
6094
+ color: var(--atomix-brand-text-emphasis);
6095
+ }
6096
+ .c-footer--brand .c-footer__brand-description,
6097
+ .c-footer--brand .c-footer__copyright {
6098
+ color: var(--atomix-brand-text-muted);
6099
+ }
6100
+ .c-footer--brand .c-footer__link {
6101
+ color: var(--atomix-brand-text);
6102
+ }
6103
+ .c-footer--brand .c-footer__link:hover, .c-footer--brand .c-footer__link:focus {
6104
+ color: var(--atomix-brand);
6105
+ }
6106
+ .c-footer--brand .c-footer__link::before {
6107
+ background-color: var(--atomix-brand);
6108
+ }
6109
+ .c-footer--brand .c-footer__newsletter {
6110
+ background: linear-gradient(135deg, var(--atomix-brand-bg), rgba(var(--atomix-brand-bg-rgb), 0.8));
6111
+ border-color: var(--atomix-brand-border);
6112
+ }
6113
+ .c-footer--brand .c-footer__newsletter::before {
6114
+ background: linear-gradient(90deg, transparent, var(--atomix-brand), transparent);
6115
+ }
6116
+ .c-footer--error {
6117
+ --atomix-footer-bg: var(--atomix-error-bg-subtle);
6118
+ --atomix-footer-border-color: var(--atomix-error-border-subtle);
6119
+ --atomix-footer-color: var(--atomix-error-text);
6120
+ }
6121
+ .c-footer--error .c-footer__brand-name h3,
6122
+ .c-footer--error .c-footer__section-title {
6123
+ color: var(--atomix-error-text-emphasis);
6124
+ }
6125
+ .c-footer--error .c-footer__brand-description,
6126
+ .c-footer--error .c-footer__copyright {
6127
+ color: var(--atomix-error-text-muted);
6128
+ }
6129
+ .c-footer--error .c-footer__link {
6130
+ color: var(--atomix-error-text);
6131
+ }
6132
+ .c-footer--error .c-footer__link:hover, .c-footer--error .c-footer__link:focus {
6133
+ color: var(--atomix-error);
6134
+ }
6135
+ .c-footer--error .c-footer__link::before {
6136
+ background-color: var(--atomix-error);
6137
+ }
6138
+ .c-footer--error .c-footer__newsletter {
6139
+ background: linear-gradient(135deg, var(--atomix-error-bg), rgba(var(--atomix-error-bg-rgb), 0.8));
6140
+ border-color: var(--atomix-error-border);
6141
+ }
6142
+ .c-footer--error .c-footer__newsletter::before {
6143
+ background: linear-gradient(90deg, transparent, var(--atomix-error), transparent);
6144
+ }
6145
+ .c-footer--success {
6146
+ --atomix-footer-bg: var(--atomix-success-bg-subtle);
6147
+ --atomix-footer-border-color: var(--atomix-success-border-subtle);
6148
+ --atomix-footer-color: var(--atomix-success-text);
6149
+ }
6150
+ .c-footer--success .c-footer__brand-name h3,
6151
+ .c-footer--success .c-footer__section-title {
6152
+ color: var(--atomix-success-text-emphasis);
6153
+ }
6154
+ .c-footer--success .c-footer__brand-description,
6155
+ .c-footer--success .c-footer__copyright {
6156
+ color: var(--atomix-success-text-muted);
6157
+ }
6158
+ .c-footer--success .c-footer__link {
6159
+ color: var(--atomix-success-text);
6160
+ }
6161
+ .c-footer--success .c-footer__link:hover, .c-footer--success .c-footer__link:focus {
6162
+ color: var(--atomix-success);
6163
+ }
6164
+ .c-footer--success .c-footer__link::before {
6165
+ background-color: var(--atomix-success);
6166
+ }
6167
+ .c-footer--success .c-footer__newsletter {
6168
+ background: linear-gradient(135deg, var(--atomix-success-bg), rgba(var(--atomix-success-bg-rgb), 0.8));
6169
+ border-color: var(--atomix-success-border);
6170
+ }
6171
+ .c-footer--success .c-footer__newsletter::before {
6172
+ background: linear-gradient(90deg, transparent, var(--atomix-success), transparent);
6173
+ }
6174
+ .c-footer--warning {
6175
+ --atomix-footer-bg: var(--atomix-warning-bg-subtle);
6176
+ --atomix-footer-border-color: var(--atomix-warning-border-subtle);
6177
+ --atomix-footer-color: var(--atomix-warning-text);
6178
+ }
6179
+ .c-footer--warning .c-footer__brand-name h3,
6180
+ .c-footer--warning .c-footer__section-title {
6181
+ color: var(--atomix-warning-text-emphasis);
6182
+ }
6183
+ .c-footer--warning .c-footer__brand-description,
6184
+ .c-footer--warning .c-footer__copyright {
6185
+ color: var(--atomix-warning-text-muted);
6186
+ }
6187
+ .c-footer--warning .c-footer__link {
6188
+ color: var(--atomix-warning-text);
6189
+ }
6190
+ .c-footer--warning .c-footer__link:hover, .c-footer--warning .c-footer__link:focus {
6191
+ color: var(--atomix-warning);
6192
+ }
6193
+ .c-footer--warning .c-footer__link::before {
6194
+ background-color: var(--atomix-warning);
6195
+ }
6196
+ .c-footer--warning .c-footer__newsletter {
6197
+ background: linear-gradient(135deg, var(--atomix-warning-bg), rgba(var(--atomix-warning-bg-rgb), 0.8));
6198
+ border-color: var(--atomix-warning-border);
6199
+ }
6200
+ .c-footer--warning .c-footer__newsletter::before {
6201
+ background: linear-gradient(90deg, transparent, var(--atomix-warning), transparent);
6202
+ }
6203
+ .c-footer--info {
6204
+ --atomix-footer-bg: var(--atomix-info-bg-subtle);
6205
+ --atomix-footer-border-color: var(--atomix-info-border-subtle);
6206
+ --atomix-footer-color: var(--atomix-info-text);
6207
+ }
6208
+ .c-footer--info .c-footer__brand-name h3,
6209
+ .c-footer--info .c-footer__section-title {
6210
+ color: var(--atomix-info-text-emphasis);
6211
+ }
6212
+ .c-footer--info .c-footer__brand-description,
6213
+ .c-footer--info .c-footer__copyright {
6214
+ color: var(--atomix-info-text-muted);
6215
+ }
6216
+ .c-footer--info .c-footer__link {
6217
+ color: var(--atomix-info-text);
6218
+ }
6219
+ .c-footer--info .c-footer__link:hover, .c-footer--info .c-footer__link:focus {
6220
+ color: var(--atomix-info);
6221
+ }
6222
+ .c-footer--info .c-footer__link::before {
6223
+ background-color: var(--atomix-info);
6224
+ }
6225
+ .c-footer--info .c-footer__newsletter {
6226
+ background: linear-gradient(135deg, var(--atomix-info-bg), rgba(var(--atomix-info-bg-rgb), 0.8));
6227
+ border-color: var(--atomix-info-border);
6228
+ }
6229
+ .c-footer--info .c-footer__newsletter::before {
6230
+ background: linear-gradient(90deg, transparent, var(--atomix-info), transparent);
6231
+ }
6232
+ .c-footer--light {
6233
+ --atomix-footer-bg: var(--atomix-light-bg-subtle);
6234
+ --atomix-footer-border-color: var(--atomix-light-border-subtle);
6235
+ --atomix-footer-color: var(--atomix-light-text);
6236
+ }
6237
+ .c-footer--light .c-footer__brand-name h3,
6238
+ .c-footer--light .c-footer__section-title {
6239
+ color: var(--atomix-light-text-emphasis);
6240
+ }
6241
+ .c-footer--light .c-footer__brand-description,
6242
+ .c-footer--light .c-footer__copyright {
6243
+ color: var(--atomix-light-text-muted);
6244
+ }
6245
+ .c-footer--light .c-footer__link {
6246
+ color: var(--atomix-light-text);
6247
+ }
6248
+ .c-footer--light .c-footer__link:hover, .c-footer--light .c-footer__link:focus {
6249
+ color: var(--atomix-light);
6250
+ }
6251
+ .c-footer--light .c-footer__link::before {
6252
+ background-color: var(--atomix-light);
6253
+ }
6254
+ .c-footer--light .c-footer__newsletter {
6255
+ background: linear-gradient(135deg, var(--atomix-light-bg), rgba(var(--atomix-light-bg-rgb), 0.8));
6256
+ border-color: var(--atomix-light-border);
6257
+ }
6258
+ .c-footer--light .c-footer__newsletter::before {
6259
+ background: linear-gradient(90deg, transparent, var(--atomix-light), transparent);
6260
+ }
6261
+ .c-footer--dark {
6262
+ --atomix-footer-bg: var(--atomix-dark-bg-subtle);
6263
+ --atomix-footer-border-color: var(--atomix-dark-border-subtle);
6264
+ --atomix-footer-color: var(--atomix-dark-text);
6265
+ }
6266
+ .c-footer--dark .c-footer__brand-name h3,
6267
+ .c-footer--dark .c-footer__section-title {
6268
+ color: var(--atomix-dark-text-emphasis);
6269
+ }
6270
+ .c-footer--dark .c-footer__brand-description,
6271
+ .c-footer--dark .c-footer__copyright {
6272
+ color: var(--atomix-dark-text-muted);
6273
+ }
6274
+ .c-footer--dark .c-footer__link {
6275
+ color: var(--atomix-dark-text);
6276
+ }
6277
+ .c-footer--dark .c-footer__link:hover, .c-footer--dark .c-footer__link:focus {
6278
+ color: var(--atomix-dark);
6279
+ }
6280
+ .c-footer--dark .c-footer__link::before {
6281
+ background-color: var(--atomix-dark);
6282
+ }
6283
+ .c-footer--dark .c-footer__newsletter {
6284
+ background: linear-gradient(135deg, var(--atomix-dark-bg), rgba(var(--atomix-dark-bg-rgb), 0.8));
6285
+ border-color: var(--atomix-dark-border);
6286
+ }
6287
+ .c-footer--dark .c-footer__newsletter::before {
6288
+ background: linear-gradient(90deg, transparent, var(--atomix-dark), transparent);
5213
6289
  }
5214
- @keyframes fadeOut {
5215
- from {
5216
- opacity: var(--atomix-edge-panel-backdrop-opacity);
5217
- }
5218
- to {
5219
- opacity: 0;
5220
- }
6290
+ .c-footer--sticky {
6291
+ position: sticky;
6292
+ bottom: 0;
6293
+ z-index: 10;
6294
+ box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
6295
+ -webkit-backdrop-filter: blur(10px);
6296
+ backdrop-filter: blur(10px);
6297
+ background-color: rgba(var(--atomix-footer-bg-rgb), 0.95);
5221
6298
  }
5222
- @keyframes slideInStart {
5223
- from {
5224
- transform: translateX(-100%);
5225
- }
5226
- to {
5227
- transform: translateX(0);
6299
+ @media (prefers-color-scheme: dark) {
6300
+ .c-footer {
6301
+ --atomix-footer-bg: var(--atomix-surface-dark);
6302
+ --atomix-footer-color: var(--atomix-text-dark);
6303
+ --atomix-footer-border-color: var(--atomix-border-dark);
5228
6304
  }
5229
6305
  }
5230
- @keyframes slideOutStart {
5231
- from {
5232
- transform: translateX(0);
5233
- }
5234
- to {
5235
- transform: translateX(-100%);
5236
- }
6306
+ .dark-mode .c-footer {
6307
+ --atomix-footer-bg: var(--atomix-surface-dark);
6308
+ --atomix-footer-color: var(--atomix-text-dark);
6309
+ --atomix-footer-border-color: var(--atomix-border-dark);
5237
6310
  }
5238
- @keyframes slideInEnd {
5239
- from {
5240
- transform: translateX(100%);
5241
- }
5242
- to {
5243
- transform: translateX(0);
5244
- }
6311
+ .dark-mode .c-footer .c-footer__newsletter {
6312
+ background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
6313
+ border-color: rgba(255, 255, 255, 0.1);
5245
6314
  }
5246
- @keyframes slideOutEnd {
5247
- from {
5248
- transform: translateX(0);
5249
- }
5250
- to {
5251
- transform: translateX(100%);
5252
- }
6315
+ .dark-mode .c-footer .c-footer__social-link {
6316
+ background-color: rgba(255, 255, 255, 0.1);
5253
6317
  }
5254
- @keyframes slideInTop {
5255
- from {
5256
- transform: translateY(-100%);
6318
+ .dark-mode .c-footer .c-footer__social-link:hover {
6319
+ background-color: rgba(255, 255, 255, 0.2);
6320
+ }
6321
+ @media (prefers-reduced-motion: reduce) {
6322
+ .c-footer *,
6323
+ .c-footer *::before,
6324
+ .c-footer *::after {
6325
+ animation-duration: 0.01ms !important;
6326
+ animation-iteration-count: 1 !important;
6327
+ transition-duration: 0.01ms !important;
6328
+ scroll-behavior: auto !important;
6329
+ }
6330
+ .c-footer .c-footer__social-link:hover,
6331
+ .c-footer .c-footer__back-to-top:hover,
6332
+ .c-footer .c-footer__newsletter-button:hover {
6333
+ transform: none;
5257
6334
  }
5258
- to {
5259
- transform: translateY(0);
6335
+ }
6336
+ @media (prefers-contrast: high) {
6337
+ .c-footer .c-footer__link,
6338
+ .c-footer .c-footer__social-link,
6339
+ .c-footer .c-footer__back-to-top {
6340
+ border: 2px solid currentColor;
5260
6341
  }
5261
6342
  }
5262
- @keyframes slideOutTop {
5263
- from {
5264
- transform: translateY(0);
6343
+ @media print {
6344
+ .c-footer {
6345
+ background: white !important;
6346
+ color: black !important;
6347
+ box-shadow: none !important;
5265
6348
  }
5266
- to {
5267
- transform: translateY(-100%);
6349
+ .c-footer .c-footer__back-to-top,
6350
+ .c-footer .c-footer__newsletter,
6351
+ .c-footer .c-footer__section-toggle {
6352
+ display: none !important;
5268
6353
  }
5269
- }
5270
- @keyframes slideInBottom {
5271
- from {
5272
- transform: translateY(100%);
6354
+ .c-footer .c-footer__social-link::after {
6355
+ content: " (" attr(href) ")";
6356
+ font-size: 0.8em;
6357
+ color: inherit;
5273
6358
  }
5274
- to {
5275
- transform: translateY(0);
6359
+ .c-footer .c-footer__section--collapsible .c-footer__section-content {
6360
+ max-height: none !important;
6361
+ overflow: visible !important;
5276
6362
  }
5277
6363
  }
5278
- @keyframes slideOutBottom {
5279
- from {
5280
- transform: translateY(0);
6364
+ @container (min-width: 768px) {
6365
+ .c-footer .c-footer__sections {
6366
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
5281
6367
  }
5282
- to {
5283
- transform: translateY(100%);
6368
+ }
6369
+ @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
6370
+ .c-footer .c-footer__brand-logo img {
6371
+ image-rendering: -webkit-optimize-contrast;
6372
+ image-rendering: crisp-edges;
5284
6373
  }
5285
6374
  }
5286
6375
  .c-form {
@@ -5312,7 +6401,7 @@ a, a:hover {
5312
6401
  --atomix-hero-subtitle-font-weight: 400;
5313
6402
  --atomix-hero-title-font-weight: 700;
5314
6403
  --atomix-hero-text-font-weight: 400;
5315
- --atomix-hero-subtitle-margin-bottom: 12px;
6404
+ --atomix-hero-subtitle-margin-bottom: 0.75rem;
5316
6405
  --atomix-hero-text-margin-top: 0.75rem;
5317
6406
  --atomix-hero-actions-margin-top: 1.5rem;
5318
6407
  --atomix-hero-actions-inner-gap: 0.75rem;
@@ -5345,13 +6434,12 @@ a, a:hover {
5345
6434
  .c-hero__overlay {
5346
6435
  position: absolute;
5347
6436
  inset: 0;
5348
- background: var(--atomix-hero-overlay);
6437
+ background-color: var(--atomix-hero-overlay);
5349
6438
  opacity: var(--atomix-hero-overlay-opacity);
5350
- z-index: 1;
6439
+ z-index: 0;
5351
6440
  }
5352
6441
  .c-hero__container {
5353
6442
  position: relative;
5354
- z-index: 2;
5355
6443
  }
5356
6444
  .c-hero__grid {
5357
6445
  --atomix-gutter-x: var(--atomix-hero-grid-gutter);
@@ -5466,7 +6554,7 @@ a, a:hover {
5466
6554
  --atomix-input-padding-x: 0.75rem;
5467
6555
  --atomix-input-padding-y: 0.625rem;
5468
6556
  --atomix-input-border-color: var(--atomix-primary-border-subtle);
5469
- --atomix-input-border-width: 1px;
6557
+ --atomix-input-border-width: var(--atomix-border-width);
5470
6558
  --atomix-input-border-radius: 0.75rem;
5471
6559
  --atomix-input-bg: var(--atomix-body-bg);
5472
6560
  --atomix-input-textarea-height: 100px;
@@ -5551,6 +6639,21 @@ a, a:hover {
5551
6639
  --atomix-input-bg: var(--atomix-secondary-bg-subtle);
5552
6640
  pointer-events: none;
5553
6641
  }
6642
+ .c-input--glass {
6643
+ background-color: color-mix(in srgb, var(--atomix-input-bg) 50%, transparent);
6644
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
6645
+ }
6646
+ .c-input--glass:focus, .c-input--glass:hover {
6647
+ background-color: color-mix(in srgb, var(--atomix-input-bg) 50%, transparent);
6648
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2) inset, 0 0 0 2px rgba(var(--atomix-primary-rgb, 122, 255, 215), 0.3);
6649
+ }
6650
+ .c-input--glass.c-input--textarea {
6651
+ resize: vertical;
6652
+ }
6653
+ .c-input--glass:disabled, .c-input--glass.is-disabled {
6654
+ background-color: color-mix(in srgb, var(--atomix-input-bg) 50%, transparent);
6655
+ opacity: 0.6;
6656
+ }
5554
6657
  .c-list-group {
5555
6658
  --atomix-list-group-width: 100%;
5556
6659
  --atomix-list-group-bg: ;
@@ -5560,7 +6663,7 @@ a, a:hover {
5560
6663
  --atomix-list-group-item-color: var(--atomix-body-color);
5561
6664
  --atomix-list-group-item-disabled-color: var(--atomix-disabled-text-emphasis);
5562
6665
  --atomix-list-group-item-border-color: var(--atomix-primary-border-subtle);
5563
- --atomix-list-group-item-border-width: 1px;
6666
+ --atomix-list-group-item-border-width: var(--atomix-border-width);
5564
6667
  --atomix-list-group-item-bg: var(--atomix-body-bg);
5565
6668
  display: flex;
5566
6669
  flex-direction: column;
@@ -5569,14 +6672,14 @@ a, a:hover {
5569
6672
  list-style: none;
5570
6673
  width: 100%;
5571
6674
  max-width: var(--atomix-list-group-width);
5572
- background: var(--atomix-list-group-bg);
6675
+ background-color: var(--atomix-list-group-bg);
5573
6676
  }
5574
6677
  .c-list-group__item {
5575
6678
  padding: var(--atomix-list-group-item-padding-y) var(--atomix-list-group-item-padding-x);
5576
6679
  font-size: var(--atomix-list-group-item-font-size);
5577
6680
  color: var(--atomix-list-group-item-color);
5578
6681
  border-bottom: var(--atomix-list-group-item-border-width) solid var(--atomix-list-group-item-border-color);
5579
- background: var(--atomix-list-group-item-bg);
6682
+ background-color: var(--atomix-list-group-item-bg);
5580
6683
  }
5581
6684
  .c-list-group__item--primary {
5582
6685
  --atomix-list-group-item-bg: var(--atomix-brand-bg-subtle);
@@ -5641,7 +6744,7 @@ a, a:hover {
5641
6744
  left: 0;
5642
6745
  width: var(--atomix-list-item-dash-width);
5643
6746
  height: var(--atomix-list-item-dash-height);
5644
- background: var(--atomix-list-color);
6747
+ background-color: var(--atomix-list-color);
5645
6748
  transform: translateY(-50%);
5646
6749
  }
5647
6750
  .c-list--number {
@@ -5658,17 +6761,17 @@ a, a:hover {
5658
6761
  --atomix-menu-bg: var(--atomix-body-bg);
5659
6762
  --atomix-menu-border-radius: 1rem;
5660
6763
  --atomix-menu-box-shadow: var(--atomix-box-shadow);
5661
- --atomix-menu-items-gap: 4px;
5662
- --atomix-menu-item-padding-x: 8px;
5663
- --atomix-menu-item-padding-y: 8px;
5664
- --atomix-menu-item-inner-gap: 8px;
6764
+ --atomix-menu-items-gap: 0.25rem;
6765
+ --atomix-menu-item-padding-x: 0.5rem;
6766
+ --atomix-menu-item-padding-y: 0.5rem;
6767
+ --atomix-menu-item-inner-gap: 0.5rem;
5665
6768
  --atomix-menu-item-color: var(--atomix-primary-text-emphasis);
5666
6769
  --atomix-menu-item-font-size: 1rem;
5667
6770
  --atomix-menu-item-font-weight: 700;
5668
6771
  --atomix-menu-item-bg: var(--atomix-body-bg);
5669
6772
  --atomix-menu-item-bg-hover: var(--atomix-secondary-bg-subtle);
5670
6773
  --atomix-menu-item-bg-active: var(--atomix-brand-bg-subtle);
5671
- --atomix-menu-item-icon-size: 20px;
6774
+ --atomix-menu-item-icon-size: 1.25rem;
5672
6775
  --atomix-menu-subitem-color: var(--atomix-secondary-text-emphasis);
5673
6776
  --atomix-menu-subitem-color-active: var(--atomix-brand-text-emphasis);
5674
6777
  --atomix-menu-subitem-font-weight: 400;
@@ -5876,12 +6979,12 @@ a, a:hover {
5876
6979
  --atomix-messages-text-font-size: 0.875rem;
5877
6980
  --atomix-messages-text-bg: var(--atomix-tertiary-bg-subtle);
5878
6981
  --atomix-messages-text-border-radius: 1rem;
5879
- --atomix-messages-file-padding-x: 12px;
5880
- --atomix-messages-file-padding-y: 12px;
6982
+ --atomix-messages-file-padding-x: 0.75rem;
6983
+ --atomix-messages-file-padding-y: 0.75rem;
5881
6984
  --atomix-messages-file-text-font-size: 0.875rem;
5882
6985
  --atomix-messages-file-text-color: var(--atomix-body-color);
5883
6986
  --atomix-messages-file-icon-size: 2.5rem;
5884
- --atomix-messages-file-icon-margin-right: 8px;
6987
+ --atomix-messages-file-icon-margin-right: 0.5rem;
5885
6988
  --atomix-messages-file-icon-bg: #e4d0fa;
5886
6989
  --atomix-messages-file-info-font-size: 0.75rem;
5887
6990
  --atomix-messages-file-info-color: var(--atomix-tertiary-text-emphasis);
@@ -5901,7 +7004,7 @@ a, a:hover {
5901
7004
  --atomix-messages-input-border-width: 1px;
5902
7005
  --atomix-messages-input-border-color: var(--atomix-secondary-border-subtle);
5903
7006
  --atomix-messages-input-border-radius: 0.75rem;
5904
- --atomix-messages-input-options-icons-size: 24px;
7007
+ --atomix-messages-input-options-icons-size: 1.5rem;
5905
7008
  --atomix-messages-input-options-row-gap: 0.5rem;
5906
7009
  --atomix-messages-body-height: calc(100vh - 600px);
5907
7010
  width: 100%;
@@ -5968,7 +7071,7 @@ a, a:hover {
5968
7071
  flex-wrap: wrap;
5969
7072
  padding: var(--atomix-messages-file-padding-y) var(--atomix-messages-file-padding-x);
5970
7073
  border-radius: 0.25rem var(--atomix-messages-file-border-radius) var(--atomix-messages-file-border-radius) 0.25rem;
5971
- background: var(--atomix-messages-file-bg);
7074
+ background-color: var(--atomix-messages-file-bg);
5972
7075
  }
5973
7076
  .c-messages__file-icon {
5974
7077
  display: grid !important;
@@ -6126,7 +7229,7 @@ a, a:hover {
6126
7229
  --atomix-modal-sub-margin-top: 0.25rem;
6127
7230
  --atomix-modal-sub-color: var(--atomix-tertiary-text-emphasis);
6128
7231
  --atomix-modal-sub-font-size: 0.875rem;
6129
- --atomix-modal-footer-items-gap: 0.5rem;
7232
+ --atomix-modal-footer-items-gap: 2rem;
6130
7233
  --atomix-modal-backdrop-bg: var(--atomix-invert-bg-subtle);
6131
7234
  --atomix-modal-backdrop-opacity: 0.5;
6132
7235
  --atomix-modal-backdrop-blur: 10px;
@@ -6344,14 +7447,14 @@ a, a:hover {
6344
7447
  left: 50%;
6345
7448
  transform: translateX(-50%);
6346
7449
  z-index: 1000;
6347
- background: var(--atomix-body-bg);
7450
+ background-color: var(--atomix-body-bg);
6348
7451
  border: 1px solid var(--atomix-border-color);
6349
7452
  border-radius: 50rem;
6350
7453
  box-shadow: var(--atomix-box-shadow-lg);
6351
7454
  padding: 0.5rem 1rem;
6352
7455
  -webkit-backdrop-filter: blur(10px);
6353
7456
  backdrop-filter: blur(10px);
6354
- background: rgba(var(--atomix-body-bg-rgb), 0.95);
7457
+ background-color: rgba(var(--atomix-body-bg-rgb), 0.95);
6355
7458
  }
6356
7459
  .c-nav--float-top-center .c-nav__item + .c-nav--float-top-center .c-nav__item, .c-nav--float-top-center .c-nav__item + .c-nav--float-bottom-center .c-nav__item, .c-nav--float-bottom-center .c-nav__item + .c-nav--float-top-center .c-nav__item, .c-nav--float-bottom-center .c-nav__item + .c-nav--float-bottom-center .c-nav__item {
6357
7460
  margin-left: 0.25rem;
@@ -6374,7 +7477,7 @@ a, a:hover {
6374
7477
  --atomix-navbar-padding-y: 0.5rem;
6375
7478
  --atomix-navbar-container-max-width: 1600px;
6376
7479
  --atomix-navbar-bg: var(--atomix-body-bg);
6377
- --atomix-navbar-border-width: 1px;
7480
+ --atomix-navbar-border-width: var(--atomix-border-width);
6378
7481
  --atomix-navbar-border-color: var(--atomix-primary-border-subtle);
6379
7482
  --atomix-navbar-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
6380
7483
  --atomix-navbar-brand-margin-end: 1.875rem;
@@ -6385,7 +7488,7 @@ a, a:hover {
6385
7488
  --atomix-navbar-toggler-color: var(--atomix-body-color);
6386
7489
  --atomix-navbar-toggler-bg: transparent;
6387
7490
  --atomix-navbar-toggler-border: 0;
6388
- --atomix-navbar-toggler-border-radius: 4px;
7491
+ --atomix-navbar-toggler-border-radius: 0.25rem;
6389
7492
  --atomix-navbar-toggler-focus-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
6390
7493
  --atomix-navbar-collapse-padding-top: 0.5rem;
6391
7494
  --atomix-navbar-collapse-transition: all 0.3s ease-in-out;
@@ -6732,24 +7835,24 @@ a, a:hover {
6732
7835
  --atomix-callout-padding-y: 1rem;
6733
7836
  --atomix-callout-tost-padding-x: 1rem;
6734
7837
  --atomix-callout-tost-padding-y: 1rem;
6735
- --atomix-callout-bg: #ffffff;
7838
+ --atomix-callout-bg: var(--atomix-body-bg);
6736
7839
  --atomix-callout-border-radius: 0.5rem;
6737
- --atomix-callout-border-color: #e5e7eb;
7840
+ --atomix-callout-border-color: var(--atomix-border-color);
6738
7841
  --atomix-callout-border-witdh: var(--atomix-border-width);
6739
7842
  --atomix-callout-title-font-size: 1rem;
6740
7843
  --atomix-callout-title-font-weight: 600;
6741
- --atomix-callout-title-color: #1f2937;
7844
+ --atomix-callout-title-color: var(--atomix-body-color);
6742
7845
  --atomix-callout-text-font-size: 0.875rem;
6743
7846
  --atomix-callout-text-font-weight: 400;
6744
- --atomix-callout-text-color: #4b5563;
7847
+ --atomix-callout-text-color: var(--atomix-body-color);
6745
7848
  --atomix-callout-message-spacer: 0.75rem;
6746
7849
  --atomix-callout-icon-size: 1.25rem;
6747
- --atomix-callout-icon-color: #7c3aed;
7850
+ --atomix-callout-icon-color: var(--atomix-primary);
6748
7851
  --atomix-callout-close-btn-size: 1.25rem;
6749
7852
  --atomix-callout-actions-spacer: 0.5rem;
6750
7853
  --atomix-callout-actions-spacer-y: 0.75rem;
6751
- --atomix-callout-toast-bg: #ffffff;
6752
- --atomix-callout-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
7854
+ --atomix-callout-toast-bg: var(--atomix-body-bg);
7855
+ --atomix-callout-box-shadow: var(--atomix-box-shadow);
6753
7856
  --atomix-callout-transition-duration: 0.3s;
6754
7857
  --atomix-callout-transition-timing: cubic-bezier(0.16, 1, 0.3, 1);
6755
7858
  display: inline-flex;
@@ -6759,7 +7862,7 @@ a, a:hover {
6759
7862
  max-width: var(--atomix-callout-width);
6760
7863
  gap: var(--atomix-callout-actions-spacer);
6761
7864
  padding: var(--atomix-callout-padding-y) var(--atomix-callout-padding-x);
6762
- background: var(--atomix-callout-bg);
7865
+ background-color: var(--atomix-callout-bg);
6763
7866
  border-radius: var(--atomix-callout-border-radius);
6764
7867
  border: var(--atomix-callout-border-witdh) solid var(--atomix-callout-border-color);
6765
7868
  transition: opacity var(--atomix-callout-transition-duration) var(--atomix-callout-transition-timing), transform var(--atomix-callout-transition-duration) var(--atomix-callout-transition-timing);
@@ -6798,9 +7901,9 @@ a, a:hover {
6798
7901
  .c-callout__actions {
6799
7902
  display: flex;
6800
7903
  align-items: center;
6801
- flex-wrap: wrap;
6802
7904
  gap: var(--atomix-callout-actions-spacer);
6803
7905
  margin-left: auto;
7906
+ margin-right: 10px;
6804
7907
  }
6805
7908
  .c-callout__close-btn {
6806
7909
  display: inline-flex;
@@ -6902,9 +8005,35 @@ a, a:hover {
6902
8005
  --atomix-callout-title-color: var(--atomix-light);
6903
8006
  --atomix-callout-text-color: #d1d5db;
6904
8007
  --atomix-callout-bg: var(--atomix-dark);
6905
- --atomix-callout-border-color: var(--atomix-primary-border-subtle);
8008
+ --atomix-callout-border-color: var(--atomix-dark-border-subtle);
6906
8009
  --atomix-callout-icon-color: var(--atomix-light);
6907
8010
  }
8011
+ .c-callout--glass {
8012
+ background-color: color-mix(in srgb, var(--atomix-callout-bg) 50%, transparent);
8013
+ padding: 0;
8014
+ border: none;
8015
+ display: block;
8016
+ }
8017
+ .c-callout--glass .c-callout__glass-content {
8018
+ display: flex;
8019
+ justify-content: center;
8020
+ align-items: center;
8021
+ padding: var(--atomix-callout-padding-y) var(--atomix-callout-padding-x);
8022
+ border: var(--atomix-callout-border-witdh) solid var(--atomix-callout-border-color);
8023
+ max-width: var(--atomix-callout-width);
8024
+ border-radius: var(--atomix-callout-border-radius);
8025
+ width: 100%;
8026
+ }
8027
+ .c-callout--glass .c-callout__title {
8028
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
8029
+ }
8030
+ .c-callout--glass .c-callout__text {
8031
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
8032
+ }
8033
+ .c-callout--glass.c-callout--toast {
8034
+ background-color: color-mix(in srgb, var(--atomix-callout-bg) 50%, transparent);
8035
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
8036
+ }
6908
8037
  .c-callout.is-hide {
6909
8038
  opacity: 0;
6910
8039
  transform: translateY(-10px);
@@ -6982,7 +8111,7 @@ a, a:hover {
6982
8111
  --atomix-pagination-color: var(--atomix-secondary-text-emphasis);
6983
8112
  --atomix-pagination-bg: var(--atomix-body-bg);
6984
8113
  --atomix-pagination-focus-border-color: var(--atomix-brand-border-subtle);
6985
- --atomix-pagination-focus-border-width: 2px;
8114
+ --atomix-pagination-focus-border-width: calc(var(--atomix-border-width) * 2);
6986
8115
  --atomix-pagination-hover-color: var(--atomix-body-color);
6987
8116
  --atomix-pagination-hover-bg: var(--atomix-secondary-bg-subtle);
6988
8117
  --atomix-pagination-active-color: var(--atomix-body-color);
@@ -7129,7 +8258,7 @@ a, a:hover {
7129
8258
  flex-direction: column;
7130
8259
  gap: var(--atomix-popover-inner-gap-y) var(--atomix-popover-inner-gap-x);
7131
8260
  padding: var(--atomix-popover-padding-y) var(--atomix-popover-padding-x);
7132
- background: var(--atomix-popover-bg);
8261
+ background-color: var(--atomix-popover-bg);
7133
8262
  border-radius: var(--atomix-popover-border-radius);
7134
8263
  box-shadow: var(--atomix-popover-box-shadow);
7135
8264
  }
@@ -7137,7 +8266,7 @@ a, a:hover {
7137
8266
  position: absolute;
7138
8267
  width: var(--atomix-popover-arrow-size);
7139
8268
  height: var(--atomix-popover-arrow-size);
7140
- background: var(--atomix-popover-bg);
8269
+ background-color: var(--atomix-popover-bg);
7141
8270
  box-shadow: var(--atomix-popover-box-shadow);
7142
8271
  z-index: 1;
7143
8272
  transform-origin: center;
@@ -7324,7 +8453,7 @@ a, a:hover {
7324
8453
  --atomix-progress-bar-bg: var(--atomix-dark);
7325
8454
  }
7326
8455
  .c-rating {
7327
- --atomix-rating-star-size: 32px;
8456
+ --atomix-rating-star-size: 2rem;
7328
8457
  --atomix-rating-star-bg: var(--atomix-primary);
7329
8458
  --atomix-rating-star-half-bg: var(--atomix-primary);
7330
8459
  --atomix-rating-stars-gap: 0.125rem;
@@ -7430,11 +8559,11 @@ a, a:hover {
7430
8559
  font-size: var(--atomix-rating-value-font-size);
7431
8560
  }
7432
8561
  .c-rating--sm {
7433
- --atomix-rating-star-size: 16px;
8562
+ --atomix-rating-star-size: 1rem;
7434
8563
  --atomix-rating-stars-gap: 0.0625rem;
7435
8564
  }
7436
8565
  .c-rating--lg {
7437
- --atomix-rating-star-size: 48px;
8566
+ --atomix-rating-star-size: 3rem;
7438
8567
  --atomix-rating-stars-gap: 0.25rem;
7439
8568
  }
7440
8569
  .c-rating-container {
@@ -7522,7 +8651,7 @@ a, a:hover {
7522
8651
  .c-river__overlay {
7523
8652
  position: absolute;
7524
8653
  inset: 0;
7525
- background: var(--atomix-river-overlay);
8654
+ background-color: var(--atomix-river-overlay);
7526
8655
  opacity: var(--atomix-river-overlay-opacity);
7527
8656
  border-radius: var(--atomix-river-border-radius);
7528
8657
  }
@@ -7661,7 +8790,7 @@ a, a:hover {
7661
8790
  --atomix-sectionintro-text-font-weight: 400;
7662
8791
  --atomix-sectionintro-label-margin-bottom: 0.75rem;
7663
8792
  --atomix-sectionintro-text-margin-top: 0.75rem;
7664
- --atomix-sectionintro-actions-margin-top: 1.4375rem;
8793
+ --atomix-sectionintro-actions-margin-top: 0.75rem;
7665
8794
  --atomix-sectionintro-actions-inner-gap: 0.75rem;
7666
8795
  --atomix-sectionintro-width: 40.5rem;
7667
8796
  --atomix-sectionintro-image-margin-top: 1.5rem;
@@ -7904,7 +9033,7 @@ a, a:hover {
7904
9033
  --atomix-side-menu-padding-y: 1.5rem;
7905
9034
  --atomix-side-menu-bg: var(--atomix-body-bg);
7906
9035
  --atomix-side-menu-border-radius: 0.75rem;
7907
- --atomix-side-menu-border-width: 1px;
9036
+ --atomix-side-menu-border-width: var(--atomix-border-width);
7908
9037
  --atomix-side-menu-border-color: var(--atomix-border-color);
7909
9038
  --atomix-side-menu-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
7910
9039
  --atomix-side-menu-title-font-size: 1rem;
@@ -7938,14 +9067,14 @@ a, a:hover {
7938
9067
  --atomix-side-menu-inner-padding-top: 1.25rem;
7939
9068
  width: 100%;
7940
9069
  padding: var(--atomix-side-menu-padding-y) var(--atomix-side-menu-padding-x);
7941
- background: var(--atomix-side-menu-bg);
9070
+ background-color: var(--atomix-side-menu-bg);
7942
9071
  border-radius: var(--atomix-side-menu-border-radius);
7943
9072
  border: var(--atomix-side-menu-border-width) solid var(--atomix-side-menu-border-color);
7944
9073
  box-shadow: var(--atomix-side-menu-box-shadow);
7945
9074
  }
7946
9075
  @media (max-width: 991.98px) {
7947
9076
  .c-side-menu {
7948
- padding: 0.75rem 1rem;
9077
+ padding: 1rem 1rem;
7949
9078
  }
7950
9079
  }
7951
9080
  @media (max-width: 991.98px) {
@@ -7976,7 +9105,7 @@ a, a:hover {
7976
9105
  justify-content: space-between;
7977
9106
  width: 100%;
7978
9107
  padding: var(--atomix-side-menu-toggler-padding-y) var(--atomix-side-menu-toggler-padding-x);
7979
- background: var(--atomix-side-menu-toggler-bg);
9108
+ background-color: var(--atomix-side-menu-toggler-bg);
7980
9109
  border: none;
7981
9110
  border-radius: var(--atomix-side-menu-toggler-border-radius);
7982
9111
  cursor: pointer;
@@ -7992,7 +9121,7 @@ a, a:hover {
7992
9121
  }
7993
9122
  }
7994
9123
  .c-side-menu__toggler:hover {
7995
- background: var(--atomix-side-menu-toggler-hover-bg);
9124
+ background-color: var(--atomix-side-menu-toggler-hover-bg);
7996
9125
  }
7997
9126
  .c-side-menu__toggler:focus {
7998
9127
  outline: 2px solid var(--atomix-focus-ring-color);
@@ -8030,7 +9159,7 @@ a, a:hover {
8030
9159
  color: var(--atomix-side-menu-item-color);
8031
9160
  font-size: var(--atomix-side-menu-item-font-size);
8032
9161
  font-weight: var(--atomix-side-menu-item-font-weight);
8033
- background: var(--atomix-side-menu-item-bg);
9162
+ background-color: var(--atomix-side-menu-item-bg);
8034
9163
  border: none;
8035
9164
  border-radius: var(--atomix-side-menu-item-border-radius);
8036
9165
  text-decoration: none;
@@ -8039,7 +9168,7 @@ a, a:hover {
8039
9168
  }
8040
9169
  .c-side-menu__link:hover {
8041
9170
  color: var(--atomix-side-menu-item-hover-color);
8042
- background: var(--atomix-side-menu-item-hover-bg);
9171
+ background-color: var(--atomix-side-menu-item-hover-bg);
8043
9172
  text-decoration: none;
8044
9173
  }
8045
9174
  .c-side-menu__link:focus {
@@ -8051,12 +9180,12 @@ a, a:hover {
8051
9180
  }
8052
9181
  .c-side-menu__link.is-active {
8053
9182
  color: var(--atomix-side-menu-item-active-color);
8054
- background: var(--atomix-side-menu-item-active-bg);
9183
+ background-color: var(--atomix-side-menu-item-active-bg);
8055
9184
  font-weight: 500;
8056
9185
  }
8057
9186
  .c-side-menu__link.is-disabled, .c-side-menu__link[aria-disabled=true] {
8058
9187
  color: var(--atomix-side-menu-item-disabled-color);
8059
- background: var(--atomix-side-menu-item-disabled-bg);
9188
+ background-color: var(--atomix-side-menu-item-disabled-bg);
8060
9189
  cursor: not-allowed;
8061
9190
  pointer-events: none;
8062
9191
  opacity: 0.6;
@@ -8100,7 +9229,7 @@ a, a:hover {
8100
9229
  display: inline-block;
8101
9230
  width: var(--atomix-skeleton-width);
8102
9231
  min-height: var(--atomix-skeleton-height);
8103
- background: linear-gradient(90deg, var(--atomix-skeleton-gradient-from-color) 25%, var(--atomix-skeleton-gradient-to-color) 37%, var(--atomix-skeleton-gradient-from-color) 63%);
9232
+ background-color: linear-gradient(90deg, var(--atomix-skeleton-gradient-from-color) 25%, var(--atomix-skeleton-gradient-to-color) 37%, var(--atomix-skeleton-gradient-from-color) 63%);
8104
9233
  background-size: 400% 100%;
8105
9234
  border-radius: var(--atomix-skeleton-border-radius);
8106
9235
  animation-name: atomix--skeleton-loading;
@@ -8196,7 +9325,7 @@ a, a:hover {
8196
9325
  display: flex;
8197
9326
  align-items: center;
8198
9327
  justify-content: center;
8199
- background: var(--atomix-secondary-bg-subtle);
9328
+ background-color: var(--atomix-secondary-bg-subtle);
8200
9329
  border: 2px dashed var(--atomix-primary-border-subtle);
8201
9330
  border-radius: 0.25rem;
8202
9331
  }
@@ -8236,7 +9365,7 @@ a, a:hover {
8236
9365
  height: var(--atomix-slider-nav-size);
8237
9366
  border: none;
8238
9367
  border-radius: 50rem;
8239
- background: var(--atomix-primary-bg-subtle);
9368
+ background-color: var(--atomix-primary-bg-subtle);
8240
9369
  color: var(--atomix-primary-text);
8241
9370
  cursor: pointer;
8242
9371
  pointer-events: auto;
@@ -8249,7 +9378,7 @@ a, a:hover {
8249
9378
  }
8250
9379
  .c-slider__navigation-prev:hover,
8251
9380
  .c-slider__navigation-next:hover {
8252
- background: var(--atomix-secondary-bg-subtle);
9381
+ background-color: var(--atomix-secondary-bg-subtle);
8253
9382
  transform: translateY(-50%) scale(1.05);
8254
9383
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
8255
9384
  }
@@ -8301,20 +9430,20 @@ a, a:hover {
8301
9430
  height: 0.5rem;
8302
9431
  border-radius: 50rem;
8303
9432
  border: none;
8304
- background: var(--atomix-tertiary-bg-subtle);
9433
+ background-color: var(--atomix-tertiary-bg-subtle);
8305
9434
  cursor: pointer;
8306
9435
  pointer-events: auto;
8307
9436
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
8308
9437
  }
8309
9438
  .c-slider__pagination-bullet:hover {
8310
- background: var(--atomix-secondary-bg-subtle);
9439
+ background-color: var(--atomix-secondary-bg-subtle);
8311
9440
  transform: scale(1.2);
8312
9441
  }
8313
9442
  .c-slider__pagination-bullet:active {
8314
9443
  transform: scale(1.1);
8315
9444
  }
8316
9445
  .c-slider__pagination-bullet--active {
8317
- background: var(--atomix-primary);
9446
+ background-color: var(--atomix-primary);
8318
9447
  transform: scale(1.2);
8319
9448
  }
8320
9449
  .c-slider__empty-message {
@@ -8432,7 +9561,7 @@ a, a:hover {
8432
9561
  --atomix-steps-item-number-bg: var(--atomix-secondary-bg-subtle);
8433
9562
  --atomix-steps-item-number-color: var(--atomix-tertiary-text-emphasis);
8434
9563
  --atomix-steps-item-number-active-color: var(--atomix-gray-1);
8435
- --atomix-steps-item-number-size: 28px;
9564
+ --atomix-steps-item-number-size: 1.75rem;
8436
9565
  --atomix-steps-item-number-font-size: 0.875rem;
8437
9566
  --atomix-steps-item-number-border-radius: 50rem;
8438
9567
  --atomix-steps-item-font-size: 0.875rem;
@@ -8522,7 +9651,7 @@ a, a:hover {
8522
9651
  --atomix-tabs-nav-btn-bg-active: var(--atomix-body-bg);
8523
9652
  --atomix-tabs-nav-btn-bg-disabled: var(--atomix-body-bg);
8524
9653
  --atomix-tabs-nav-btn-border-radius: 0px;
8525
- --atomix-tabs-nav-btn-border-width: 2px;
9654
+ --atomix-tabs-nav-btn-border-width: calc(var(--atomix-border-width) * 2);
8526
9655
  --atomix-tabs-nav-btn-border-color: transparent;
8527
9656
  --atomix-tabs-nav-btn-border-active-color: var(--atomix-brand-border-subtle);
8528
9657
  --atomix-tabs-nav-btn-border-disabled-color: var(--atomix-primary-border-subtle);
@@ -8612,7 +9741,7 @@ a, a:hover {
8612
9741
  --atomix-testimonial-width: 100%;
8613
9742
  --atomix-testimonial-padding-x: 0rem;
8614
9743
  --atomix-testimonial-padding-y: 0rem;
8615
- --atomix-testimonial-inner-spacer: 1.25rem;
9744
+ --atomix-testimonial-inner-spacer: 5rem;
8616
9745
  --atomix-testimonial-bg: ;
8617
9746
  --atomix-testimonial-quote-font-size: 1.5rem;
8618
9747
  --atomix-testimonial-quote-font-size-sm: 1.125rem;
@@ -8623,11 +9752,11 @@ a, a:hover {
8623
9752
  --atomix-testimonial-author-color: var(--atomix-body-color);
8624
9753
  --atomix-testimonial-author-role-font-size: 0.75rem;
8625
9754
  --atomix-testimonial-author-role-color: var(--atomix-tertiary-text-emphasis);
8626
- --atomix-testimonial-author-inner-spacer: 12px;
9755
+ --atomix-testimonial-author-inner-spacer: 3rem;
8627
9756
  width: 100%;
8628
9757
  max-width: var(--atomix-testimonial-width);
8629
9758
  padding: var(--atomix-testimonial-padding-y) var(--atomix-testimonial-padding-x);
8630
- background: var(--atomix-testimonial-bg);
9759
+ background-color: var(--atomix-testimonial-bg);
8631
9760
  }
8632
9761
  .c-testimonial__quote {
8633
9762
  color: var(--atomix-testimonial-quote-color);
@@ -8818,7 +9947,7 @@ a, a:hover {
8818
9947
  width: var(--atomix-toggle-switch-handle-width);
8819
9948
  height: var(--atomix-toggle-switch-handle-height);
8820
9949
  margin: var(--atomix-toggle-switch-handle-margin);
8821
- background: var(--atomix-toggle-switch-handle-bg);
9950
+ background-color: var(--atomix-toggle-switch-handle-bg);
8822
9951
  border-radius: var(--atomix-toggle-switch-handle-border-radius);
8823
9952
  transition-property: all;
8824
9953
  transition-duration: 0.2s;
@@ -8839,7 +9968,7 @@ a, a:hover {
8839
9968
  pointer-events: none;
8840
9969
  }
8841
9970
  .c-toggle.is-disabled:not(.is-on) .c-toggle__switch {
8842
- background: var(--atomix-toggle-switch-disabled-bg);
9971
+ background-color: var(--atomix-toggle-switch-disabled-bg);
8843
9972
  }
8844
9973
  .c-toggle.is-disabled.is-on {
8845
9974
  pointer-events: none;
@@ -8848,7 +9977,7 @@ a, a:hover {
8848
9977
  content: "";
8849
9978
  position: absolute;
8850
9979
  inset: 0;
8851
- background: rgba(107, 114, 128, 0.6);
9980
+ background-color: rgba(107, 114, 128, 0.6);
8852
9981
  border-radius: var(--atomix-toggle-switch-handle-border-radius);
8853
9982
  }
8854
9983
  .c-tooltip {
@@ -8968,12 +10097,12 @@ a, a:hover {
8968
10097
  --atomix-upload-inner-padding-x: 0.75rem;
8969
10098
  --atomix-upload-inner-padding-y: 0.75rem;
8970
10099
  --atomix-upload-border-radius: 0.5rem;
8971
- --atomix-upload-border-width: 0.0625rem;
10100
+ --atomix-upload-border-width: var(--atomix-border-width);
8972
10101
  --atomix-upload-border-color: var(--atomix-primary-border-subtle);
8973
10102
  --atomix-upload-bg: var(--atomix-body-bg);
8974
10103
  --atomix-upload-hover-bg: ;
8975
- --atomix-upload-icon-size: 32px;
8976
- --atomix-upload-icon-padding: 0px;
10104
+ --atomix-upload-icon-size: 2rem;
10105
+ --atomix-upload-icon-padding: 0rem;
8977
10106
  --atomix-upload-icon-bg: var(--atomix-body-bg);
8978
10107
  --atomix-upload-title-font-size: 1.25rem;
8979
10108
  --atomix-upload-title-font-weight: 700;
@@ -8982,7 +10111,7 @@ a, a:hover {
8982
10111
  --atomix-upload-text-font-size: 0.875rem;
8983
10112
  --atomix-upload-text-font-weight: 400;
8984
10113
  --atomix-upload-text-color: var(--atomix-body-color);
8985
- --atomix-upload-text-margin-top: 0.25rem;
10114
+ --atomix-upload-text-margin-top: 1rem;
8986
10115
  --atomix-upload-btn-margin-top: 1.25rem;
8987
10116
  --atomix-upload-btn-margin-left: 1rem;
8988
10117
  --atomix-upload-helper-text-font-size: 0.875rem;
@@ -8992,9 +10121,9 @@ a, a:hover {
8992
10121
  --atomix-upload-loader-padding-x: 0.75rem;
8993
10122
  --atomix-upload-loader-padding-y: 0.75rem;
8994
10123
  --atomix-upload-loader-border-radius: 0.5rem;
8995
- --atomix-upload-loader-border-width: 1px;
10124
+ --atomix-upload-loader-border-width: var(--atomix-border-width);
8996
10125
  --atomix-upload-loader-border-color: var(--atomix-primary-border-subtle);
8997
- --atomix-upload-loader-margin-top: 20px;
10126
+ --atomix-upload-loader-margin-top: 1.25rem;
8998
10127
  --atomix-upload-loader-title-color: var(--atomix-body-color);
8999
10128
  --atomix-upload-loader-title-font-size: 0.875rem;
9000
10129
  --atomix-upload-loader-title-font-weight: 400;
@@ -9008,7 +10137,7 @@ a, a:hover {
9008
10137
  --atomix-upload-loader-progress: 39%;
9009
10138
  --atomix-upload-content-margin-left: 1rem;
9010
10139
  --atomix-upload-disabled-opacity: 0.5;
9011
- --atomix-upload-loader-control-icon-size: 20px;
10140
+ --atomix-upload-loader-control-icon-size: 1.25rem;
9012
10141
  --atomix-upload-loader-contorl-color: var(--atomix-body-color);
9013
10142
  width: 100%;
9014
10143
  max-width: var(--atomix-upload-width);
@@ -9172,34 +10301,34 @@ a, a:hover {
9172
10301
  pointer-events: none;
9173
10302
  }
9174
10303
  .c-video-player {
9175
- --atomix-video-player-bg: #000;
9176
- --atomix-video-player-border-radius: 8px;
9177
- --atomix-video-player-controls-padding: 20px 16px 16px;
9178
- --atomix-video-player-progress-height: 4px;
9179
- --atomix-video-player-button-size: 40px;
9180
- --atomix-video-player-font-size: 14px;
9181
- --atomix-video-player-transition: all 0.3s ease;
9182
- --atomix-video-player-volume-width: 80px;
9183
- --atomix-video-player-volume-width-mobile: 60px;
9184
- --atomix-video-player-volume-height: 4px;
9185
- --atomix-video-player-volume-height-hover: 6px;
9186
- --atomix-video-player-volume-thumb-size: 12px;
9187
- --atomix-video-player-volume-bg: rgba(255, 255, 255, 0.3);
9188
- --atomix-video-player-volume-bg-hover: rgba(255, 255, 255, 0.5);
9189
- --atomix-video-player-volume-fill: var(--atomix-color-primary);
9190
- --atomix-video-player-volume-fill-hover: var(--atomix-color-primary-light);
9191
- --atomix-video-player-volume-fill-active: var(--atomix-color-primary-dark);
9192
- --atomix-video-player-subtitle-bg: rgba(0, 0, 0, 0.85);
9193
- --atomix-video-player-subtitle-color: #ffffff;
9194
- --atomix-video-player-subtitle-font-size: 18px;
9195
- --atomix-video-player-subtitle-font-weight: 500;
9196
- --atomix-video-player-subtitle-line-height: 1.5;
9197
- --atomix-video-player-subtitle-border-radius: 6px;
9198
- --atomix-video-player-subtitle-text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
9199
- --atomix-video-player-subtitle-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
10304
+ --atomix--video-player-bg: #000;
10305
+ --atomix--video-player-border-radius: 8px;
10306
+ --atomix--video-player-controls-padding: 20px 16px 16px;
10307
+ --atomix--video-player-progress-height: 4px;
10308
+ --atomix--video-player-button-size: 40px;
10309
+ --atomix--video-player-font-size: 14px;
10310
+ --atomix--video-player-transition: all 0.3s ease;
10311
+ --atomix--video-player-volume-width: 80px;
10312
+ --atomix--video-player-volume-width-mobile: 60px;
10313
+ --atomix--video-player-volume-height: 4px;
10314
+ --atomix--video-player-volume-height-hover: 6px;
10315
+ --atomix--video-player-volume-thumb-size: 12px;
10316
+ --atomix--video-player-volume-bg: rgba(255, 255, 255, 0.3);
10317
+ --atomix--video-player-volume-bg-hover: rgba(255, 255, 255, 0.5);
10318
+ --atomix--video-player-volume-fill: var(--atomix-color-primary);
10319
+ --atomix--video-player-volume-fill-hover: var(--atomix-color-primary-light);
10320
+ --atomix--video-player-volume-fill-active: var(--atomix-color-primary-dark);
10321
+ --atomix--video-player-subtitle-bg: rgba(0, 0, 0, 0.85);
10322
+ --atomix--video-player-subtitle-color: #ffffff;
10323
+ --atomix--video-player-subtitle-font-size: 18px;
10324
+ --atomix--video-player-subtitle-font-weight: 500;
10325
+ --atomix--video-player-subtitle-line-height: 1.5;
10326
+ --atomix--video-player-subtitle-border-radius: 6px;
10327
+ --atomix--video-player-subtitle-text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
10328
+ --atomix--video-player-subtitle-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
9200
10329
  position: relative;
9201
10330
  width: 100%;
9202
- background: var(--atomix--video-player-bg, #000);
10331
+ background-color: var(--atomix--video-player-bg, #000);
9203
10332
  border-radius: var(--atomix--video-player-border-radius, 0.5rem);
9204
10333
  overflow: hidden;
9205
10334
  font-family: var(--atomix--font-family-base);
@@ -9453,7 +10582,7 @@ a, a:hover {
9453
10582
  bottom: 3.125rem;
9454
10583
  right: 0;
9455
10584
  min-width: 12.5rem;
9456
- background: rgba(var(--atomix-primary-rgb), 0.7);
10585
+ background-color: rgba(var(--atomix-primary-rgb), 0.7);
9457
10586
  border-radius: 0.5rem;
9458
10587
  padding: 0.5rem;
9459
10588
  -webkit-backdrop-filter: blur(10px);
@@ -9649,6 +10778,24 @@ a, a:hover {
9649
10778
  .c-video-player--ambient .c-video-player__ambient-canvas {
9650
10779
  display: block;
9651
10780
  }
10781
+ .c-video-player--glass {
10782
+ position: relative;
10783
+ }
10784
+ .c-video-player__glass-overlay {
10785
+ overflow: hidden;
10786
+ position: absolute;
10787
+ top: 0;
10788
+ left: 0;
10789
+ border-radius: var(--atomix--video-player-border-radius, 0.5rem);
10790
+ }
10791
+ .c-video-player__glass-content {
10792
+ position: absolute;
10793
+ top: 0;
10794
+ left: 0;
10795
+ right: 0;
10796
+ bottom: 0;
10797
+ pointer-events: auto;
10798
+ }
9652
10799
  .c-video-player__subtitles {
9653
10800
  position: absolute;
9654
10801
  bottom: 5rem;
@@ -9703,7 +10850,7 @@ a, a:hover {
9703
10850
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
9704
10851
  }
9705
10852
  .c-photo-viewer__container {
9706
- background: var(--atomix-body-bg);
10853
+ background-color: var(--atomix-body-bg);
9707
10854
  border: 1px solid var(--atomix-primary-border-subtle);
9708
10855
  border-radius: 0.625rem;
9709
10856
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.175);
@@ -9757,7 +10904,7 @@ a, a:hover {
9757
10904
  border: 2px solid transparent;
9758
10905
  border-radius: 0.5rem;
9759
10906
  padding: 0;
9760
- background: transparent;
10907
+ background-color: transparent;
9761
10908
  cursor: pointer;
9762
10909
  overflow: hidden;
9763
10910
  position: relative;
@@ -9815,7 +10962,7 @@ body.is-open-photoviewer {
9815
10962
  width: 100vw;
9816
10963
  height: 100vh;
9817
10964
  z-index: 1000;
9818
- background: transparent;
10965
+ background-color: transparent;
9819
10966
  opacity: 1;
9820
10967
  transition-property: opacity;
9821
10968
  }
@@ -11380,19 +12527,19 @@ body.is-open-photoviewer {
11380
12527
  .u-m-1 {
11381
12528
  margin: 0.25rem;
11382
12529
  }
11383
- .u-m-1\.5 {
12530
+ .u-m-2 {
11384
12531
  margin: 0.375rem;
11385
12532
  }
11386
12533
  .u-m-2 {
11387
12534
  margin: 0.5rem;
11388
12535
  }
11389
- .u-m-2\.5 {
12536
+ .u-m-3 {
11390
12537
  margin: 0.625rem;
11391
12538
  }
11392
12539
  .u-m-3 {
11393
12540
  margin: 0.75rem;
11394
12541
  }
11395
- .u-m-3\.5 {
12542
+ .u-m-4 {
11396
12543
  margin: 0.875rem;
11397
12544
  }
11398
12545
  .u-m-4 {
@@ -11401,12 +12548,18 @@ body.is-open-photoviewer {
11401
12548
  .u-m-5 {
11402
12549
  margin: 1.25rem;
11403
12550
  }
12551
+ .u-m-6 {
12552
+ margin: 1.375rem;
12553
+ }
11404
12554
  .u-m-6 {
11405
12555
  margin: 1.5rem;
11406
12556
  }
11407
12557
  .u-m-7 {
11408
12558
  margin: 1.75rem;
11409
12559
  }
12560
+ .u-m-8 {
12561
+ margin: 1.875rem;
12562
+ }
11410
12563
  .u-m-8 {
11411
12564
  margin: 2rem;
11412
12565
  }
@@ -11487,7 +12640,7 @@ body.is-open-photoviewer {
11487
12640
  margin-right: 0.25rem;
11488
12641
  margin-left: 0.25rem;
11489
12642
  }
11490
- .u-mx-1\.5 {
12643
+ .u-mx-2 {
11491
12644
  margin-right: 0.375rem;
11492
12645
  margin-left: 0.375rem;
11493
12646
  }
@@ -11495,7 +12648,7 @@ body.is-open-photoviewer {
11495
12648
  margin-right: 0.5rem;
11496
12649
  margin-left: 0.5rem;
11497
12650
  }
11498
- .u-mx-2\.5 {
12651
+ .u-mx-3 {
11499
12652
  margin-right: 0.625rem;
11500
12653
  margin-left: 0.625rem;
11501
12654
  }
@@ -11503,7 +12656,7 @@ body.is-open-photoviewer {
11503
12656
  margin-right: 0.75rem;
11504
12657
  margin-left: 0.75rem;
11505
12658
  }
11506
- .u-mx-3\.5 {
12659
+ .u-mx-4 {
11507
12660
  margin-right: 0.875rem;
11508
12661
  margin-left: 0.875rem;
11509
12662
  }
@@ -11515,6 +12668,10 @@ body.is-open-photoviewer {
11515
12668
  margin-right: 1.25rem;
11516
12669
  margin-left: 1.25rem;
11517
12670
  }
12671
+ .u-mx-6 {
12672
+ margin-right: 1.375rem;
12673
+ margin-left: 1.375rem;
12674
+ }
11518
12675
  .u-mx-6 {
11519
12676
  margin-right: 1.5rem;
11520
12677
  margin-left: 1.5rem;
@@ -11523,6 +12680,10 @@ body.is-open-photoviewer {
11523
12680
  margin-right: 1.75rem;
11524
12681
  margin-left: 1.75rem;
11525
12682
  }
12683
+ .u-mx-8 {
12684
+ margin-right: 1.875rem;
12685
+ margin-left: 1.875rem;
12686
+ }
11526
12687
  .u-mx-8 {
11527
12688
  margin-right: 2rem;
11528
12689
  margin-left: 2rem;
@@ -11627,7 +12788,7 @@ body.is-open-photoviewer {
11627
12788
  margin-top: 0.25rem;
11628
12789
  margin-bottom: 0.25rem;
11629
12790
  }
11630
- .u-my-1\.5 {
12791
+ .u-my-2 {
11631
12792
  margin-top: 0.375rem;
11632
12793
  margin-bottom: 0.375rem;
11633
12794
  }
@@ -11635,7 +12796,7 @@ body.is-open-photoviewer {
11635
12796
  margin-top: 0.5rem;
11636
12797
  margin-bottom: 0.5rem;
11637
12798
  }
11638
- .u-my-2\.5 {
12799
+ .u-my-3 {
11639
12800
  margin-top: 0.625rem;
11640
12801
  margin-bottom: 0.625rem;
11641
12802
  }
@@ -11643,7 +12804,7 @@ body.is-open-photoviewer {
11643
12804
  margin-top: 0.75rem;
11644
12805
  margin-bottom: 0.75rem;
11645
12806
  }
11646
- .u-my-3\.5 {
12807
+ .u-my-4 {
11647
12808
  margin-top: 0.875rem;
11648
12809
  margin-bottom: 0.875rem;
11649
12810
  }
@@ -11655,6 +12816,10 @@ body.is-open-photoviewer {
11655
12816
  margin-top: 1.25rem;
11656
12817
  margin-bottom: 1.25rem;
11657
12818
  }
12819
+ .u-my-6 {
12820
+ margin-top: 1.375rem;
12821
+ margin-bottom: 1.375rem;
12822
+ }
11658
12823
  .u-my-6 {
11659
12824
  margin-top: 1.5rem;
11660
12825
  margin-bottom: 1.5rem;
@@ -11663,6 +12828,10 @@ body.is-open-photoviewer {
11663
12828
  margin-top: 1.75rem;
11664
12829
  margin-bottom: 1.75rem;
11665
12830
  }
12831
+ .u-my-8 {
12832
+ margin-top: 1.875rem;
12833
+ margin-bottom: 1.875rem;
12834
+ }
11666
12835
  .u-my-8 {
11667
12836
  margin-top: 2rem;
11668
12837
  margin-bottom: 2rem;
@@ -11765,19 +12934,19 @@ body.is-open-photoviewer {
11765
12934
  .u-mt-1 {
11766
12935
  margin-top: 0.25rem;
11767
12936
  }
11768
- .u-mt-1\.5 {
12937
+ .u-mt-2 {
11769
12938
  margin-top: 0.375rem;
11770
12939
  }
11771
12940
  .u-mt-2 {
11772
12941
  margin-top: 0.5rem;
11773
12942
  }
11774
- .u-mt-2\.5 {
12943
+ .u-mt-3 {
11775
12944
  margin-top: 0.625rem;
11776
12945
  }
11777
12946
  .u-mt-3 {
11778
12947
  margin-top: 0.75rem;
11779
12948
  }
11780
- .u-mt-3\.5 {
12949
+ .u-mt-4 {
11781
12950
  margin-top: 0.875rem;
11782
12951
  }
11783
12952
  .u-mt-4 {
@@ -11786,12 +12955,18 @@ body.is-open-photoviewer {
11786
12955
  .u-mt-5 {
11787
12956
  margin-top: 1.25rem;
11788
12957
  }
12958
+ .u-mt-6 {
12959
+ margin-top: 1.375rem;
12960
+ }
11789
12961
  .u-mt-6 {
11790
12962
  margin-top: 1.5rem;
11791
12963
  }
11792
12964
  .u-mt-7 {
11793
12965
  margin-top: 1.75rem;
11794
12966
  }
12967
+ .u-mt-8 {
12968
+ margin-top: 1.875rem;
12969
+ }
11795
12970
  .u-mt-8 {
11796
12971
  margin-top: 2rem;
11797
12972
  }
@@ -11870,19 +13045,19 @@ body.is-open-photoviewer {
11870
13045
  .u-me-1 {
11871
13046
  margin-right: 0.25rem;
11872
13047
  }
11873
- .u-me-1\.5 {
13048
+ .u-me-2 {
11874
13049
  margin-right: 0.375rem;
11875
13050
  }
11876
13051
  .u-me-2 {
11877
13052
  margin-right: 0.5rem;
11878
13053
  }
11879
- .u-me-2\.5 {
13054
+ .u-me-3 {
11880
13055
  margin-right: 0.625rem;
11881
13056
  }
11882
13057
  .u-me-3 {
11883
13058
  margin-right: 0.75rem;
11884
13059
  }
11885
- .u-me-3\.5 {
13060
+ .u-me-4 {
11886
13061
  margin-right: 0.875rem;
11887
13062
  }
11888
13063
  .u-me-4 {
@@ -11891,12 +13066,18 @@ body.is-open-photoviewer {
11891
13066
  .u-me-5 {
11892
13067
  margin-right: 1.25rem;
11893
13068
  }
13069
+ .u-me-6 {
13070
+ margin-right: 1.375rem;
13071
+ }
11894
13072
  .u-me-6 {
11895
13073
  margin-right: 1.5rem;
11896
13074
  }
11897
13075
  .u-me-7 {
11898
13076
  margin-right: 1.75rem;
11899
13077
  }
13078
+ .u-me-8 {
13079
+ margin-right: 1.875rem;
13080
+ }
11900
13081
  .u-me-8 {
11901
13082
  margin-right: 2rem;
11902
13083
  }
@@ -11975,19 +13156,19 @@ body.is-open-photoviewer {
11975
13156
  .u-mb-1 {
11976
13157
  margin-bottom: 0.25rem;
11977
13158
  }
11978
- .u-mb-1\.5 {
13159
+ .u-mb-2 {
11979
13160
  margin-bottom: 0.375rem;
11980
13161
  }
11981
13162
  .u-mb-2 {
11982
13163
  margin-bottom: 0.5rem;
11983
13164
  }
11984
- .u-mb-2\.5 {
13165
+ .u-mb-3 {
11985
13166
  margin-bottom: 0.625rem;
11986
13167
  }
11987
13168
  .u-mb-3 {
11988
13169
  margin-bottom: 0.75rem;
11989
13170
  }
11990
- .u-mb-3\.5 {
13171
+ .u-mb-4 {
11991
13172
  margin-bottom: 0.875rem;
11992
13173
  }
11993
13174
  .u-mb-4 {
@@ -11996,12 +13177,18 @@ body.is-open-photoviewer {
11996
13177
  .u-mb-5 {
11997
13178
  margin-bottom: 1.25rem;
11998
13179
  }
13180
+ .u-mb-6 {
13181
+ margin-bottom: 1.375rem;
13182
+ }
11999
13183
  .u-mb-6 {
12000
13184
  margin-bottom: 1.5rem;
12001
13185
  }
12002
13186
  .u-mb-7 {
12003
13187
  margin-bottom: 1.75rem;
12004
13188
  }
13189
+ .u-mb-8 {
13190
+ margin-bottom: 1.875rem;
13191
+ }
12005
13192
  .u-mb-8 {
12006
13193
  margin-bottom: 2rem;
12007
13194
  }
@@ -12080,19 +13267,19 @@ body.is-open-photoviewer {
12080
13267
  .u-ms-1 {
12081
13268
  margin-left: 0.25rem;
12082
13269
  }
12083
- .u-ms-1\.5 {
13270
+ .u-ms-2 {
12084
13271
  margin-left: 0.375rem;
12085
13272
  }
12086
13273
  .u-ms-2 {
12087
13274
  margin-left: 0.5rem;
12088
13275
  }
12089
- .u-ms-2\.5 {
13276
+ .u-ms-3 {
12090
13277
  margin-left: 0.625rem;
12091
13278
  }
12092
13279
  .u-ms-3 {
12093
13280
  margin-left: 0.75rem;
12094
13281
  }
12095
- .u-ms-3\.5 {
13282
+ .u-ms-4 {
12096
13283
  margin-left: 0.875rem;
12097
13284
  }
12098
13285
  .u-ms-4 {
@@ -12101,12 +13288,18 @@ body.is-open-photoviewer {
12101
13288
  .u-ms-5 {
12102
13289
  margin-left: 1.25rem;
12103
13290
  }
13291
+ .u-ms-6 {
13292
+ margin-left: 1.375rem;
13293
+ }
12104
13294
  .u-ms-6 {
12105
13295
  margin-left: 1.5rem;
12106
13296
  }
12107
13297
  .u-ms-7 {
12108
13298
  margin-left: 1.75rem;
12109
13299
  }
13300
+ .u-ms-8 {
13301
+ margin-left: 1.875rem;
13302
+ }
12110
13303
  .u-ms-8 {
12111
13304
  margin-left: 2rem;
12112
13305
  }
@@ -12185,19 +13378,19 @@ body.is-open-photoviewer {
12185
13378
  .u-p-1 {
12186
13379
  padding: 0.25rem;
12187
13380
  }
12188
- .u-p-1\.5 {
13381
+ .u-p-2 {
12189
13382
  padding: 0.375rem;
12190
13383
  }
12191
13384
  .u-p-2 {
12192
13385
  padding: 0.5rem;
12193
13386
  }
12194
- .u-p-2\.5 {
13387
+ .u-p-3 {
12195
13388
  padding: 0.625rem;
12196
13389
  }
12197
13390
  .u-p-3 {
12198
13391
  padding: 0.75rem;
12199
13392
  }
12200
- .u-p-3\.5 {
13393
+ .u-p-4 {
12201
13394
  padding: 0.875rem;
12202
13395
  }
12203
13396
  .u-p-4 {
@@ -12206,12 +13399,18 @@ body.is-open-photoviewer {
12206
13399
  .u-p-5 {
12207
13400
  padding: 1.25rem;
12208
13401
  }
13402
+ .u-p-6 {
13403
+ padding: 1.375rem;
13404
+ }
12209
13405
  .u-p-6 {
12210
13406
  padding: 1.5rem;
12211
13407
  }
12212
13408
  .u-p-7 {
12213
13409
  padding: 1.75rem;
12214
13410
  }
13411
+ .u-p-8 {
13412
+ padding: 1.875rem;
13413
+ }
12215
13414
  .u-p-8 {
12216
13415
  padding: 2rem;
12217
13416
  }
@@ -12289,7 +13488,7 @@ body.is-open-photoviewer {
12289
13488
  padding-right: 0.25rem;
12290
13489
  padding-left: 0.25rem;
12291
13490
  }
12292
- .u-px-1\.5 {
13491
+ .u-px-2 {
12293
13492
  padding-right: 0.375rem;
12294
13493
  padding-left: 0.375rem;
12295
13494
  }
@@ -12297,7 +13496,7 @@ body.is-open-photoviewer {
12297
13496
  padding-right: 0.5rem;
12298
13497
  padding-left: 0.5rem;
12299
13498
  }
12300
- .u-px-2\.5 {
13499
+ .u-px-3 {
12301
13500
  padding-right: 0.625rem;
12302
13501
  padding-left: 0.625rem;
12303
13502
  }
@@ -12305,7 +13504,7 @@ body.is-open-photoviewer {
12305
13504
  padding-right: 0.75rem;
12306
13505
  padding-left: 0.75rem;
12307
13506
  }
12308
- .u-px-3\.5 {
13507
+ .u-px-4 {
12309
13508
  padding-right: 0.875rem;
12310
13509
  padding-left: 0.875rem;
12311
13510
  }
@@ -12317,6 +13516,10 @@ body.is-open-photoviewer {
12317
13516
  padding-right: 1.25rem;
12318
13517
  padding-left: 1.25rem;
12319
13518
  }
13519
+ .u-px-6 {
13520
+ padding-right: 1.375rem;
13521
+ padding-left: 1.375rem;
13522
+ }
12320
13523
  .u-px-6 {
12321
13524
  padding-right: 1.5rem;
12322
13525
  padding-left: 1.5rem;
@@ -12325,6 +13528,10 @@ body.is-open-photoviewer {
12325
13528
  padding-right: 1.75rem;
12326
13529
  padding-left: 1.75rem;
12327
13530
  }
13531
+ .u-px-8 {
13532
+ padding-right: 1.875rem;
13533
+ padding-left: 1.875rem;
13534
+ }
12328
13535
  .u-px-8 {
12329
13536
  padding-right: 2rem;
12330
13537
  padding-left: 2rem;
@@ -12425,7 +13632,7 @@ body.is-open-photoviewer {
12425
13632
  padding-top: 0.25rem;
12426
13633
  padding-bottom: 0.25rem;
12427
13634
  }
12428
- .u-py-1\.5 {
13635
+ .u-py-2 {
12429
13636
  padding-top: 0.375rem;
12430
13637
  padding-bottom: 0.375rem;
12431
13638
  }
@@ -12433,7 +13640,7 @@ body.is-open-photoviewer {
12433
13640
  padding-top: 0.5rem;
12434
13641
  padding-bottom: 0.5rem;
12435
13642
  }
12436
- .u-py-2\.5 {
13643
+ .u-py-3 {
12437
13644
  padding-top: 0.625rem;
12438
13645
  padding-bottom: 0.625rem;
12439
13646
  }
@@ -12441,7 +13648,7 @@ body.is-open-photoviewer {
12441
13648
  padding-top: 0.75rem;
12442
13649
  padding-bottom: 0.75rem;
12443
13650
  }
12444
- .u-py-3\.5 {
13651
+ .u-py-4 {
12445
13652
  padding-top: 0.875rem;
12446
13653
  padding-bottom: 0.875rem;
12447
13654
  }
@@ -12453,6 +13660,10 @@ body.is-open-photoviewer {
12453
13660
  padding-top: 1.25rem;
12454
13661
  padding-bottom: 1.25rem;
12455
13662
  }
13663
+ .u-py-6 {
13664
+ padding-top: 1.375rem;
13665
+ padding-bottom: 1.375rem;
13666
+ }
12456
13667
  .u-py-6 {
12457
13668
  padding-top: 1.5rem;
12458
13669
  padding-bottom: 1.5rem;
@@ -12461,6 +13672,10 @@ body.is-open-photoviewer {
12461
13672
  padding-top: 1.75rem;
12462
13673
  padding-bottom: 1.75rem;
12463
13674
  }
13675
+ .u-py-8 {
13676
+ padding-top: 1.875rem;
13677
+ padding-bottom: 1.875rem;
13678
+ }
12464
13679
  .u-py-8 {
12465
13680
  padding-top: 2rem;
12466
13681
  padding-bottom: 2rem;
@@ -12559,19 +13774,19 @@ body.is-open-photoviewer {
12559
13774
  .u-pt-1 {
12560
13775
  padding-top: 0.25rem;
12561
13776
  }
12562
- .u-pt-1\.5 {
13777
+ .u-pt-2 {
12563
13778
  padding-top: 0.375rem;
12564
13779
  }
12565
13780
  .u-pt-2 {
12566
13781
  padding-top: 0.5rem;
12567
13782
  }
12568
- .u-pt-2\.5 {
13783
+ .u-pt-3 {
12569
13784
  padding-top: 0.625rem;
12570
13785
  }
12571
13786
  .u-pt-3 {
12572
13787
  padding-top: 0.75rem;
12573
13788
  }
12574
- .u-pt-3\.5 {
13789
+ .u-pt-4 {
12575
13790
  padding-top: 0.875rem;
12576
13791
  }
12577
13792
  .u-pt-4 {
@@ -12580,12 +13795,18 @@ body.is-open-photoviewer {
12580
13795
  .u-pt-5 {
12581
13796
  padding-top: 1.25rem;
12582
13797
  }
13798
+ .u-pt-6 {
13799
+ padding-top: 1.375rem;
13800
+ }
12583
13801
  .u-pt-6 {
12584
13802
  padding-top: 1.5rem;
12585
13803
  }
12586
13804
  .u-pt-7 {
12587
13805
  padding-top: 1.75rem;
12588
13806
  }
13807
+ .u-pt-8 {
13808
+ padding-top: 1.875rem;
13809
+ }
12589
13810
  .u-pt-8 {
12590
13811
  padding-top: 2rem;
12591
13812
  }
@@ -12661,19 +13882,19 @@ body.is-open-photoviewer {
12661
13882
  .u-pe-1 {
12662
13883
  padding-right: 0.25rem;
12663
13884
  }
12664
- .u-pe-1\.5 {
13885
+ .u-pe-2 {
12665
13886
  padding-right: 0.375rem;
12666
13887
  }
12667
13888
  .u-pe-2 {
12668
13889
  padding-right: 0.5rem;
12669
13890
  }
12670
- .u-pe-2\.5 {
13891
+ .u-pe-3 {
12671
13892
  padding-right: 0.625rem;
12672
13893
  }
12673
13894
  .u-pe-3 {
12674
13895
  padding-right: 0.75rem;
12675
13896
  }
12676
- .u-pe-3\.5 {
13897
+ .u-pe-4 {
12677
13898
  padding-right: 0.875rem;
12678
13899
  }
12679
13900
  .u-pe-4 {
@@ -12682,12 +13903,18 @@ body.is-open-photoviewer {
12682
13903
  .u-pe-5 {
12683
13904
  padding-right: 1.25rem;
12684
13905
  }
13906
+ .u-pe-6 {
13907
+ padding-right: 1.375rem;
13908
+ }
12685
13909
  .u-pe-6 {
12686
13910
  padding-right: 1.5rem;
12687
13911
  }
12688
13912
  .u-pe-7 {
12689
13913
  padding-right: 1.75rem;
12690
13914
  }
13915
+ .u-pe-8 {
13916
+ padding-right: 1.875rem;
13917
+ }
12691
13918
  .u-pe-8 {
12692
13919
  padding-right: 2rem;
12693
13920
  }
@@ -12763,19 +13990,19 @@ body.is-open-photoviewer {
12763
13990
  .u-pb-1 {
12764
13991
  padding-bottom: 0.25rem;
12765
13992
  }
12766
- .u-pb-1\.5 {
13993
+ .u-pb-2 {
12767
13994
  padding-bottom: 0.375rem;
12768
13995
  }
12769
13996
  .u-pb-2 {
12770
13997
  padding-bottom: 0.5rem;
12771
13998
  }
12772
- .u-pb-2\.5 {
13999
+ .u-pb-3 {
12773
14000
  padding-bottom: 0.625rem;
12774
14001
  }
12775
14002
  .u-pb-3 {
12776
14003
  padding-bottom: 0.75rem;
12777
14004
  }
12778
- .u-pb-3\.5 {
14005
+ .u-pb-4 {
12779
14006
  padding-bottom: 0.875rem;
12780
14007
  }
12781
14008
  .u-pb-4 {
@@ -12784,12 +14011,18 @@ body.is-open-photoviewer {
12784
14011
  .u-pb-5 {
12785
14012
  padding-bottom: 1.25rem;
12786
14013
  }
14014
+ .u-pb-6 {
14015
+ padding-bottom: 1.375rem;
14016
+ }
12787
14017
  .u-pb-6 {
12788
14018
  padding-bottom: 1.5rem;
12789
14019
  }
12790
14020
  .u-pb-7 {
12791
14021
  padding-bottom: 1.75rem;
12792
14022
  }
14023
+ .u-pb-8 {
14024
+ padding-bottom: 1.875rem;
14025
+ }
12793
14026
  .u-pb-8 {
12794
14027
  padding-bottom: 2rem;
12795
14028
  }
@@ -12865,19 +14098,19 @@ body.is-open-photoviewer {
12865
14098
  .u-ps-1 {
12866
14099
  padding-left: 0.25rem;
12867
14100
  }
12868
- .u-ps-1\.5 {
14101
+ .u-ps-2 {
12869
14102
  padding-left: 0.375rem;
12870
14103
  }
12871
14104
  .u-ps-2 {
12872
14105
  padding-left: 0.5rem;
12873
14106
  }
12874
- .u-ps-2\.5 {
14107
+ .u-ps-3 {
12875
14108
  padding-left: 0.625rem;
12876
14109
  }
12877
14110
  .u-ps-3 {
12878
14111
  padding-left: 0.75rem;
12879
14112
  }
12880
- .u-ps-3\.5 {
14113
+ .u-ps-4 {
12881
14114
  padding-left: 0.875rem;
12882
14115
  }
12883
14116
  .u-ps-4 {
@@ -12886,12 +14119,18 @@ body.is-open-photoviewer {
12886
14119
  .u-ps-5 {
12887
14120
  padding-left: 1.25rem;
12888
14121
  }
14122
+ .u-ps-6 {
14123
+ padding-left: 1.375rem;
14124
+ }
12889
14125
  .u-ps-6 {
12890
14126
  padding-left: 1.5rem;
12891
14127
  }
12892
14128
  .u-ps-7 {
12893
14129
  padding-left: 1.75rem;
12894
14130
  }
14131
+ .u-ps-8 {
14132
+ padding-left: 1.875rem;
14133
+ }
12895
14134
  .u-ps-8 {
12896
14135
  padding-left: 2rem;
12897
14136
  }
@@ -12967,19 +14206,19 @@ body.is-open-photoviewer {
12967
14206
  .u-gap-1 {
12968
14207
  gap: 0.25rem;
12969
14208
  }
12970
- .u-gap-1\.5 {
14209
+ .u-gap-2 {
12971
14210
  gap: 0.375rem;
12972
14211
  }
12973
14212
  .u-gap-2 {
12974
14213
  gap: 0.5rem;
12975
14214
  }
12976
- .u-gap-2\.5 {
14215
+ .u-gap-3 {
12977
14216
  gap: 0.625rem;
12978
14217
  }
12979
14218
  .u-gap-3 {
12980
14219
  gap: 0.75rem;
12981
14220
  }
12982
- .u-gap-3\.5 {
14221
+ .u-gap-4 {
12983
14222
  gap: 0.875rem;
12984
14223
  }
12985
14224
  .u-gap-4 {
@@ -12988,12 +14227,18 @@ body.is-open-photoviewer {
12988
14227
  .u-gap-5 {
12989
14228
  gap: 1.25rem;
12990
14229
  }
14230
+ .u-gap-6 {
14231
+ gap: 1.375rem;
14232
+ }
12991
14233
  .u-gap-6 {
12992
14234
  gap: 1.5rem;
12993
14235
  }
12994
14236
  .u-gap-7 {
12995
14237
  gap: 1.75rem;
12996
14238
  }
14239
+ .u-gap-8 {
14240
+ gap: 1.875rem;
14241
+ }
12997
14242
  .u-gap-8 {
12998
14243
  gap: 2rem;
12999
14244
  }
@@ -13069,19 +14314,19 @@ body.is-open-photoviewer {
13069
14314
  .u-row-gap-1 {
13070
14315
  row-gap: 0.25rem;
13071
14316
  }
13072
- .u-row-gap-1\.5 {
14317
+ .u-row-gap-2 {
13073
14318
  row-gap: 0.375rem;
13074
14319
  }
13075
14320
  .u-row-gap-2 {
13076
14321
  row-gap: 0.5rem;
13077
14322
  }
13078
- .u-row-gap-2\.5 {
14323
+ .u-row-gap-3 {
13079
14324
  row-gap: 0.625rem;
13080
14325
  }
13081
14326
  .u-row-gap-3 {
13082
14327
  row-gap: 0.75rem;
13083
14328
  }
13084
- .u-row-gap-3\.5 {
14329
+ .u-row-gap-4 {
13085
14330
  row-gap: 0.875rem;
13086
14331
  }
13087
14332
  .u-row-gap-4 {
@@ -13090,12 +14335,18 @@ body.is-open-photoviewer {
13090
14335
  .u-row-gap-5 {
13091
14336
  row-gap: 1.25rem;
13092
14337
  }
14338
+ .u-row-gap-6 {
14339
+ row-gap: 1.375rem;
14340
+ }
13093
14341
  .u-row-gap-6 {
13094
14342
  row-gap: 1.5rem;
13095
14343
  }
13096
14344
  .u-row-gap-7 {
13097
14345
  row-gap: 1.75rem;
13098
14346
  }
14347
+ .u-row-gap-8 {
14348
+ row-gap: 1.875rem;
14349
+ }
13099
14350
  .u-row-gap-8 {
13100
14351
  row-gap: 2rem;
13101
14352
  }
@@ -13173,7 +14424,7 @@ body.is-open-photoviewer {
13173
14424
  -moz-column-gap: 0.25rem;
13174
14425
  column-gap: 0.25rem;
13175
14426
  }
13176
- .u-column-gap-1\.5 {
14427
+ .u-column-gap-2 {
13177
14428
  -moz-column-gap: 0.375rem;
13178
14429
  column-gap: 0.375rem;
13179
14430
  }
@@ -13181,7 +14432,7 @@ body.is-open-photoviewer {
13181
14432
  -moz-column-gap: 0.5rem;
13182
14433
  column-gap: 0.5rem;
13183
14434
  }
13184
- .u-column-gap-2\.5 {
14435
+ .u-column-gap-3 {
13185
14436
  -moz-column-gap: 0.625rem;
13186
14437
  column-gap: 0.625rem;
13187
14438
  }
@@ -13189,7 +14440,7 @@ body.is-open-photoviewer {
13189
14440
  -moz-column-gap: 0.75rem;
13190
14441
  column-gap: 0.75rem;
13191
14442
  }
13192
- .u-column-gap-3\.5 {
14443
+ .u-column-gap-4 {
13193
14444
  -moz-column-gap: 0.875rem;
13194
14445
  column-gap: 0.875rem;
13195
14446
  }
@@ -13201,6 +14452,10 @@ body.is-open-photoviewer {
13201
14452
  -moz-column-gap: 1.25rem;
13202
14453
  column-gap: 1.25rem;
13203
14454
  }
14455
+ .u-column-gap-6 {
14456
+ -moz-column-gap: 1.375rem;
14457
+ column-gap: 1.375rem;
14458
+ }
13204
14459
  .u-column-gap-6 {
13205
14460
  -moz-column-gap: 1.5rem;
13206
14461
  column-gap: 1.5rem;
@@ -13209,6 +14464,10 @@ body.is-open-photoviewer {
13209
14464
  -moz-column-gap: 1.75rem;
13210
14465
  column-gap: 1.75rem;
13211
14466
  }
14467
+ .u-column-gap-8 {
14468
+ -moz-column-gap: 1.875rem;
14469
+ column-gap: 1.875rem;
14470
+ }
13212
14471
  .u-column-gap-8 {
13213
14472
  -moz-column-gap: 2rem;
13214
14473
  column-gap: 2rem;