@orioncactuscorp/ui 1.6.0 → 1.7.0

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 (81) hide show
  1. package/README.md +22 -3
  2. package/dist/components/Accordion/Accordion.css +1 -1
  3. package/dist/components/Accordion/Accordion.js +206 -214
  4. package/dist/components/ActionArea/ActionArea.css +1 -1
  5. package/dist/components/ActionArea/ActionAreaLayout.css +1 -1
  6. package/dist/components/BackgroundIconButton/BackgroundIconButton.css +1 -1
  7. package/dist/components/Badge/Badge.css +1 -1
  8. package/dist/components/Badge/Badge.js +13 -13
  9. package/dist/components/Cell/Cell.css +1 -1
  10. package/dist/components/IconButton/IconButton.css +1 -1
  11. package/dist/components/IconButton/IconButton.js +1 -1
  12. package/dist/components/Loading/Loading.css +1 -1
  13. package/dist/components/Menu/Menu.css +1 -1
  14. package/dist/components/Menu/Menu.js +156 -140
  15. package/dist/components/Modal/Modal.css +1 -1
  16. package/dist/components/Modal/Modal.js +571 -391
  17. package/dist/components/Modal/Modal.module.scss.js +58 -38
  18. package/dist/components/Modal/snapPoints.js +59 -35
  19. package/dist/components/Modal/useModalDrag.js +754 -579
  20. package/dist/components/Modal.js +7 -6
  21. package/dist/components/Skeleton/Skeleton.css +1 -0
  22. package/dist/components/Skeleton/Skeleton.js +55 -0
  23. package/dist/components/Skeleton/Skeleton.module.scss.js +16 -0
  24. package/dist/components/Skeleton.d.ts +6 -0
  25. package/dist/components/Skeleton.js +4 -0
  26. package/dist/components/TextButton/TextButton.css +1 -1
  27. package/dist/components/TextButton/TextButton.js +45 -48
  28. package/dist/components/internal/DisclosureIndicator.js +39 -0
  29. package/dist/components/internal/Pressable.js +28 -27
  30. package/dist/foundations/motion.css +1 -1
  31. package/dist/foundations/space.css +1 -1
  32. package/dist/foundations.css +2 -2
  33. package/dist/index.js +90 -87
  34. package/dist/react/motion.js +79 -74
  35. package/dist/styles.css +14 -13
  36. package/dist/ui/src/components/Accordion/Accordion.d.ts.map +1 -1
  37. package/dist/ui/src/components/Menu/Menu.d.ts +1 -1
  38. package/dist/ui/src/components/Menu/Menu.d.ts.map +1 -1
  39. package/dist/ui/src/components/Menu/index.d.ts +1 -1
  40. package/dist/ui/src/components/Menu/index.d.ts.map +1 -1
  41. package/dist/ui/src/components/Menu/types.d.ts +6 -2
  42. package/dist/ui/src/components/Menu/types.d.ts.map +1 -1
  43. package/dist/ui/src/components/Modal/Modal.d.ts +3 -1
  44. package/dist/ui/src/components/Modal/Modal.d.ts.map +1 -1
  45. package/dist/ui/src/components/Modal/contexts.d.ts +2 -0
  46. package/dist/ui/src/components/Modal/contexts.d.ts.map +1 -1
  47. package/dist/ui/src/components/Modal/index.d.ts +2 -2
  48. package/dist/ui/src/components/Modal/index.d.ts.map +1 -1
  49. package/dist/ui/src/components/Modal/snapPoints.d.ts +7 -10
  50. package/dist/ui/src/components/Modal/snapPoints.d.ts.map +1 -1
  51. package/dist/ui/src/components/Modal/types.d.ts +17 -0
  52. package/dist/ui/src/components/Modal/types.d.ts.map +1 -1
  53. package/dist/ui/src/components/Modal/useModalDrag.d.ts +2 -1
  54. package/dist/ui/src/components/Modal/useModalDrag.d.ts.map +1 -1
  55. package/dist/ui/src/components/Skeleton/Skeleton.d.ts +4 -0
  56. package/dist/ui/src/components/Skeleton/Skeleton.d.ts.map +1 -0
  57. package/dist/ui/src/components/Skeleton/index.d.ts +3 -0
  58. package/dist/ui/src/components/Skeleton/index.d.ts.map +1 -0
  59. package/dist/ui/src/components/Skeleton/types.d.ts +17 -0
  60. package/dist/ui/src/components/Skeleton/types.d.ts.map +1 -0
  61. package/dist/ui/src/components/TextButton/TextButton.d.ts.map +1 -1
  62. package/dist/ui/src/components/TextButton/types.d.ts +4 -2
  63. package/dist/ui/src/components/TextButton/types.d.ts.map +1 -1
  64. package/dist/ui/src/components/internal/DisclosureIndicator.d.ts +10 -0
  65. package/dist/ui/src/components/internal/DisclosureIndicator.d.ts.map +1 -0
  66. package/dist/ui/src/components/internal/Pressable.d.ts +8 -1
  67. package/dist/ui/src/components/internal/Pressable.d.ts.map +1 -1
  68. package/dist/ui/src/index.d.ts +5 -3
  69. package/dist/ui/src/index.d.ts.map +1 -1
  70. package/dist/ui/src/react/motion/index.d.ts +3 -1
  71. package/dist/ui/src/react/motion/index.d.ts.map +1 -1
  72. package/dist/ui/src/utils/motion.d.ts +2 -2
  73. package/dist/ui/src/utils/motion.d.ts.map +1 -1
  74. package/dist/utils/motion.js +24 -18
  75. package/dist/vscode/oc-ui-vars.css +6 -4
  76. package/package.json +1 -1
  77. package/src/scss/foundations/motion.scss +3 -1
  78. package/src/scss/foundations/responsive.test.ts +22 -0
  79. package/src/scss/foundations/space.scss +9 -4
  80. package/src/scss/mixins/_motion.scss +5 -8
  81. package/src/scss/mixins/_motion.test.ts +20 -0
@@ -1,11 +1,12 @@
1
- import { ModalBody as a, ModalClose as l, ModalContent as e, ModalFooter as M, ModalHeader as r, ModalRoot as t, ModalTrigger as f, default as g } from "./Modal/Modal.js";
1
+ import { ModalBody as d, ModalClose as l, ModalContent as e, ModalFooter as t, ModalHeader as M, ModalNavigationSection as r, ModalRoot as i, ModalTrigger as n, default as g } from "./Modal/Modal.js";
2
2
  export {
3
- a as ModalBody,
3
+ d as ModalBody,
4
4
  l as ModalClose,
5
5
  e as ModalContent,
6
- M as ModalFooter,
7
- r as ModalHeader,
8
- t as ModalRoot,
9
- f as ModalTrigger,
6
+ t as ModalFooter,
7
+ M as ModalHeader,
8
+ r as ModalNavigationSection,
9
+ i as ModalRoot,
10
+ n as ModalTrigger,
10
11
  g as default
11
12
  };
@@ -0,0 +1 @@
1
+ .oc-Skeleton-module__skeleton__-VV98{display:block;flex:none;inline-size:var(--oc-skeleton-inline-size);block-size:var(--oc-skeleton-block-size);border-radius:var(--oc-skeleton-radius);pointer-events:none}.oc-Skeleton-module__skeleton__-VV98>[data-oc-part=fill]{display:block;inline-size:100%;block-size:100%;border-radius:inherit;background-color:var(--oc-skeleton-color);opacity:var(--oc-skeleton-opacity)}.oc-Skeleton-module__skeleton__-VV98{--oc-skeleton-inline-size: 100%;--oc-skeleton-block-size: 100%;--oc-skeleton-color: var(--oc-color-theme-fill-normal);--oc-skeleton-opacity: var(--oc-color-global-opacity-100);--oc-skeleton-radius: var(--oc-atomic-radius-small)}.oc-Skeleton-module__text__4oj9n{display:inline-flex;align-items:center;justify-content:flex-start;inline-size:100%;block-size:var(--oc-skeleton-block-size);padding-block:.125rem}.oc-Skeleton-module__text__4oj9n>[data-oc-part=fill]{inline-size:var(--oc-skeleton-inline-size)}.oc-Skeleton-module__text__4oj9n{--oc-skeleton-block-size: 1.375rem;--oc-skeleton-radius: var(--oc-atomic-radius-micro);--oc-skeleton-color: var(--oc-color-theme-fill-normal)}.oc-Skeleton-module__text__4oj9n[data-oc-align=center]{justify-content:center}.oc-Skeleton-module__text__4oj9n[data-oc-align=end]{justify-content:flex-end}.oc-Skeleton-module__rectangle__o2mZx{--oc-skeleton-color: var(--oc-color-theme-fill-alternative)}.oc-Skeleton-module__circle__o-WgD{aspect-ratio:1;block-size:var(--oc-skeleton-inline-size);--oc-skeleton-color: var(--oc-color-theme-fill-normal);--oc-skeleton-radius: var(--oc-atomic-radius-max)}.oc-Skeleton-module__animation__ZVuOk{animation:oc-Skeleton-module__oc-skeleton-pulse__4WWzi calc(var(--oc-motion-duration-ambient) * var(--oc-motion-duration-factor) * var(--oc-motion-pace-slow)) var(--oc-motion-timing-ambient) infinite}@media(prefers-reduced-motion:reduce){.oc-Skeleton-module__animation__ZVuOk{animation:none}}@keyframes oc-Skeleton-module__oc-skeleton-pulse__4WWzi{0%,to{opacity:.5}50%{opacity:1}}
@@ -0,0 +1,55 @@
1
+ import { jsx as c } from "react/jsx-runtime";
2
+ import n from "./Skeleton.module.scss.js";
3
+ function t(o) {
4
+ if (o !== void 0)
5
+ return typeof o == "number" ? `${o}px` : o;
6
+ }
7
+ function h({
8
+ className: o = "",
9
+ variant: e = "text",
10
+ width: i,
11
+ height: l,
12
+ radius: a,
13
+ color: s,
14
+ opacity: r,
15
+ align: u = "start",
16
+ animation: d = !0,
17
+ ref: f,
18
+ style: k,
19
+ role: b,
20
+ tabIndex: v,
21
+ "aria-hidden": y,
22
+ ...m
23
+ }) {
24
+ const p = [
25
+ n.skeleton,
26
+ n[e],
27
+ d ? n.animation : "",
28
+ o
29
+ ].filter(Boolean).join(" "), x = {
30
+ ...k,
31
+ ...i !== void 0 ? { "--oc-skeleton-inline-size": t(i) } : null,
32
+ ...l !== void 0 ? { "--oc-skeleton-block-size": t(l) } : null,
33
+ ...a !== void 0 ? { "--oc-skeleton-radius": t(a) } : null,
34
+ ...s !== void 0 ? { "--oc-skeleton-color": s } : null,
35
+ ...r !== void 0 ? { "--oc-skeleton-opacity": String(r) } : null
36
+ };
37
+ return /* @__PURE__ */ c(
38
+ "span",
39
+ {
40
+ ...m,
41
+ ref: f,
42
+ className: p,
43
+ style: x,
44
+ "aria-hidden": "true",
45
+ "data-oc-component": "skeleton",
46
+ "data-oc-variant": e,
47
+ "data-oc-align": u,
48
+ "data-oc-animation": String(d),
49
+ children: /* @__PURE__ */ c("span", { "data-oc-part": "fill" })
50
+ }
51
+ );
52
+ }
53
+ export {
54
+ h as default
55
+ };
@@ -0,0 +1,16 @@
1
+ import './Skeleton.css';const e = "oc-Skeleton-module__skeleton__-VV98", o = "oc-Skeleton-module__text__4oj9n", t = "oc-Skeleton-module__rectangle__o2mZx", l = "oc-Skeleton-module__circle__o-WgD", n = "oc-Skeleton-module__animation__ZVuOk", _ = {
2
+ skeleton: e,
3
+ text: o,
4
+ rectangle: t,
5
+ circle: l,
6
+ animation: n,
7
+ "oc-skeleton-pulse": "oc-Skeleton-module__oc-skeleton-pulse__4WWzi"
8
+ };
9
+ export {
10
+ n as animation,
11
+ l as circle,
12
+ _ as default,
13
+ t as rectangle,
14
+ e as skeleton,
15
+ o as text
16
+ };
@@ -0,0 +1,6 @@
1
+ export * from '../ui/src/components/Skeleton/index'
2
+ export {}
3
+ import _default from '../ui/src/components/Skeleton/index'
4
+ export default _default
5
+ export * from '../ui/src/components/Skeleton/index'
6
+ export {}
@@ -0,0 +1,4 @@
1
+ import { default as o } from "./Skeleton/Skeleton.js";
2
+ export {
3
+ o as default
4
+ };
@@ -1 +1 @@
1
- .oc-TextButton-module__textButton__71n5b{position:relative;display:inline-flex;align-items:center;justify-content:center;appearance:none;border:none;background-color:transparent;padding:0;cursor:pointer;text-decoration:none;color:inherit;will-change:transform;transition:transform calc(var(--oc-motion-duration-feedback) * var(--oc-motion-duration-factor) * var(--oc-motion-pace-normal) * 1) var(--oc-motion-timing-feedback)}.oc-TextButton-module__textButton__71n5b{-webkit-tap-highlight-color:transparent;user-select:none;-webkit-user-select:none;display:inline-flex;align-items:center;gap:.125em;color:var(--oc-text-button-color);transition:transform calc(var(--oc-motion-duration-feedback) * var(--oc-motion-duration-factor) * var(--oc-motion-pace-normal) * 1) var(--oc-motion-timing-feedback)}@media(prefers-reduced-motion:reduce){.oc-TextButton-module__textButton__71n5b{transition:none;transform:none}}.oc-TextButton-module__textButton__71n5b{--oc-text-button-color: inherit;--oc-interaction-color: currentcolor;--oc-interaction-scale: .95;--oc-interaction-time: .15s;--oc-interaction-inset-x: -.375em;--oc-interaction-inset-y: -.1em;--oc-interaction-radius: max(0px, .3125em * var(--oc-atomic-radius-factor))}.oc-TextButton-module__textButton__71n5b>[data-oc-part=icon]{display:inline-flex;align-items:center;justify-content:center;width:1.125em;height:1.125em}.oc-TextButton-module__textButton__71n5b>[data-oc-part=icon]>svg{width:100%;height:100%}.oc-TextButton-module__textButton__71n5b:focus-visible>[data-oc-component=interaction]{opacity:var(--oc-interaction-opacity-focus);transform:scale(1)}.oc-TextButton-module__textButton__71n5b:active{transform:scale(max(0,1 + (.95 - 1) * var(--oc-motion-scale-factor-feedback)))}.oc-TextButton-module__textButton__71n5b:active>[data-oc-component=interaction]{opacity:var(--oc-interaction-opacity-active);transform:scale(1)}.oc-TextButton-module__textButton__71n5b:where(.oc-TextButton-module__primary__dlRiO){--oc-text-button-color: var(--oc-color-theme-primary-normal)}.oc-TextButton-module__textButton__71n5b:where(.oc-TextButton-module__assistive__wUKa-){--oc-text-button-color: var(--oc-color-theme-label-alternative)}.oc-TextButton-module__textButton__71n5b:where(.oc-TextButton-module__medium__1VOra){font-size:calc(var(--oc-typo-size-body1) * var(--oc-typo-size-factor, 1));line-height:calc(var(--oc-typo-height-body1) * var(--oc-typo-size-factor, 1));letter-spacing:var(--oc-typo-spacing-body1);font-weight:var(--oc-typo-weight-body1-bold)}.oc-TextButton-module__textButton__71n5b:where(.oc-TextButton-module__small__zxHdc){font-size:calc(var(--oc-typo-size-label1) * var(--oc-typo-size-factor, 1));line-height:calc(var(--oc-typo-height-label1) * var(--oc-typo-size-factor, 1));letter-spacing:var(--oc-typo-spacing-label1);font-weight:var(--oc-typo-weight-label1-bold)}@media(prefers-reduced-motion:reduce){.oc-TextButton-module__textButton__71n5b:active{transform:none}}
1
+ .oc-TextButton-module__textButton__71n5b{position:relative;display:inline-flex;align-items:center;justify-content:center;appearance:none;border:none;background-color:transparent;padding:0;cursor:pointer;text-decoration:none;color:inherit;will-change:transform;transition:transform calc(var(--oc-motion-duration-feedback) * var(--oc-motion-duration-factor) * var(--oc-motion-pace-normal) * 1) var(--oc-motion-timing-feedback)}@media(prefers-reduced-motion:reduce){.oc-TextButton-module__textButton__71n5b{transition:none;transform:none}}.oc-TextButton-module__textButton__71n5b{-webkit-tap-highlight-color:transparent;user-select:none;-webkit-user-select:none;display:inline-flex;align-items:center;gap:.125em;color:var(--oc-text-button-color);transition:color calc(var(--oc-motion-duration-feedback) * var(--oc-motion-duration-factor) * var(--oc-motion-pace-normal) * 1) var(--oc-motion-timing-feedback),transform calc(var(--oc-motion-duration-feedback) * var(--oc-motion-duration-factor) * var(--oc-motion-pace-normal) * 1) var(--oc-motion-timing-feedback)}@media(prefers-reduced-motion:reduce){.oc-TextButton-module__textButton__71n5b{transition-property:color;transition-duration:calc(var(--oc-motion-duration-feedback) * var(--oc-motion-duration-factor-reduced) * var(--oc-motion-pace-normal) * 1);transition-timing-function:var(--oc-motion-timing-feedback);transform:none}}.oc-TextButton-module__textButton__71n5b{--oc-text-button-color: inherit;--oc-interaction-color: currentcolor;--oc-interaction-scale: .95;--oc-interaction-time: .225s;--oc-interaction-inset-x: -.375em;--oc-interaction-inset-y: -.1em;--oc-interaction-radius: max(0px, .3125em * var(--oc-atomic-radius-factor))}.oc-TextButton-module__textButton__71n5b>[data-oc-part=icon]{display:inline-flex;align-items:center;justify-content:center;width:1.125em;height:1.125em}.oc-TextButton-module__textButton__71n5b>[data-oc-part=icon]>svg{width:100%;height:100%}.oc-TextButton-module__textButton__71n5b:focus-visible:not(:disabled,[aria-disabled=true])>[data-oc-component=interaction]{opacity:var(--oc-interaction-opacity-focus);transform:scale(1)}@media(hover:hover){.oc-TextButton-module__textButton__71n5b:hover:not(:disabled,[aria-disabled=true])>[data-oc-component=interaction]{opacity:var(--oc-interaction-opacity-hover);transform:scale(1)}}.oc-TextButton-module__textButton__71n5b:active:not(:disabled,[aria-disabled=true]){transform:scale(max(0,1 + (.95 - 1) * var(--oc-motion-scale-factor-feedback)))}.oc-TextButton-module__textButton__71n5b:active:not(:disabled,[aria-disabled=true])>[data-oc-component=interaction]{opacity:var(--oc-interaction-opacity-active);transform:scale(1)}.oc-TextButton-module__textButton__71n5b:where(.oc-TextButton-module__primary__dlRiO){--oc-text-button-color: var(--oc-color-theme-primary-normal)}.oc-TextButton-module__textButton__71n5b:where(.oc-TextButton-module__assistive__wUKa-){--oc-text-button-color: var(--oc-color-theme-label-alternative)}.oc-TextButton-module__textButton__71n5b:disabled,.oc-TextButton-module__textButton__71n5b[aria-disabled=true]{--oc-text-button-color: var(--oc-color-theme-label-disable);cursor:not-allowed}.oc-TextButton-module__textButton__71n5b:where(.oc-TextButton-module__medium__1VOra){font-size:calc(var(--oc-typo-size-body1) * var(--oc-typo-size-factor, 1));line-height:calc(var(--oc-typo-height-body1) * var(--oc-typo-size-factor, 1));letter-spacing:var(--oc-typo-spacing-body1);font-weight:var(--oc-typo-weight-body1-bold)}.oc-TextButton-module__textButton__71n5b:where(.oc-TextButton-module__small__zxHdc){font-size:calc(var(--oc-typo-size-label1) * var(--oc-typo-size-factor, 1));line-height:calc(var(--oc-typo-height-label1) * var(--oc-typo-size-factor, 1));letter-spacing:var(--oc-typo-spacing-label1);font-weight:var(--oc-typo-weight-label1-bold)}@media(prefers-reduced-motion:reduce){.oc-TextButton-module__textButton__71n5b:active:not(:disabled,[aria-disabled=true]){transform:none}}
@@ -1,74 +1,71 @@
1
- import { jsx as t, jsxs as P, Fragment as j } from "react/jsx-runtime";
2
- import g from "../Interaction/Interaction.js";
1
+ 'use client';
2
+ import { jsx as t, jsxs as x, Fragment as P } from "react/jsx-runtime";
3
+ import N from "../Interaction/Interaction.js";
4
+ import u from "../internal/Pressable.js";
3
5
  import n from "./TextButton.module.scss.js";
4
- function A({
5
- children: l,
6
- padding: m = !1,
7
- variant: o = "assistive",
8
- size: a = "medium",
9
- className: h = "",
10
- as: p = "a",
11
- leftIcon: u,
12
- rightIcon: f,
6
+ function y({
7
+ children: m,
8
+ padding: l = !1,
9
+ variant: a = "assistive",
10
+ size: o = "medium",
11
+ className: f = "",
12
+ as: e = "a",
13
+ leftIcon: i,
14
+ rightIcon: d,
13
15
  ...r
14
16
  }) {
15
- const e = [
17
+ const s = [
16
18
  n.textButton,
17
- n[o],
18
19
  n[a],
19
- m ? n.padding : "",
20
- h
21
- ].filter(Boolean).join(" "), s = /* @__PURE__ */ P(j, { children: [
22
- u && /* @__PURE__ */ t("span", { "data-oc-part": "icon", "aria-hidden": "true", children: /* @__PURE__ */ t(u, { size: "custom" }) }),
23
- /* @__PURE__ */ t("span", { "data-oc-part": "label", children: l }),
24
- f && /* @__PURE__ */ t("span", { "data-oc-part": "icon", "aria-hidden": "true", children: /* @__PURE__ */ t(f, { size: "custom" }) }),
25
- /* @__PURE__ */ t(g, { self: !0 })
20
+ n[o],
21
+ l ? n.padding : "",
22
+ f
23
+ ].filter(Boolean).join(" "), c = /* @__PURE__ */ x(P, { children: [
24
+ i && /* @__PURE__ */ t("span", { "data-oc-part": "icon", "aria-hidden": "true", children: /* @__PURE__ */ t(i, { size: "custom" }) }),
25
+ /* @__PURE__ */ t("span", { "data-oc-part": "label", children: m }),
26
+ d && /* @__PURE__ */ t("span", { "data-oc-part": "icon", "aria-hidden": "true", children: /* @__PURE__ */ t(d, { size: "custom" }) }),
27
+ /* @__PURE__ */ t(N, {})
26
28
  ] });
27
- if (p === "button") {
28
- const c = r, { type: i = "button", ref: d, ...N } = c;
29
+ if (e === "button")
29
30
  return /* @__PURE__ */ t(
30
- "button",
31
+ u,
31
32
  {
32
- ...N,
33
- ref: d,
34
- className: e,
35
- type: i,
33
+ ...r,
34
+ className: s,
36
35
  "data-oc-component": "text-button",
37
- "data-oc-variant": o,
38
- "data-oc-size": a,
39
- children: s
36
+ "data-oc-variant": a,
37
+ "data-oc-size": o,
38
+ children: c
40
39
  }
41
40
  );
42
- }
43
- if (p === "span") {
44
- const c = r, { ref: i, ...d } = c;
41
+ if (e === "span") {
42
+ const p = r, { ref: h, ...b } = p;
45
43
  return /* @__PURE__ */ t(
46
44
  "span",
47
45
  {
48
- ...d,
49
- ref: i,
50
- className: e,
46
+ ...b,
47
+ ref: h,
48
+ className: s,
51
49
  "data-oc-component": "text-button",
52
- "data-oc-variant": o,
53
- "data-oc-size": a,
54
- children: s
50
+ "data-oc-variant": a,
51
+ "data-oc-size": o,
52
+ children: c
55
53
  }
56
54
  );
57
55
  }
58
- const b = r, { ref: x, ...B } = b;
59
56
  return /* @__PURE__ */ t(
60
- "a",
57
+ u,
61
58
  {
62
- ...B,
63
- ref: x,
64
- className: e,
59
+ ...r,
60
+ asAnchor: !0,
61
+ className: s,
65
62
  "data-oc-component": "text-button",
66
- "data-oc-variant": o,
67
- "data-oc-size": a,
68
- children: s
63
+ "data-oc-variant": a,
64
+ "data-oc-size": o,
65
+ children: c
69
66
  }
70
67
  );
71
68
  }
72
69
  export {
73
- A as default
70
+ y as default
74
71
  };
@@ -0,0 +1,39 @@
1
+ import { jsx as e } from "react/jsx-runtime";
2
+ import { useRef as I, useState as R, useEffect as S } from "react";
3
+ import E from "@orioncactuscorp/icons/orioncactus/ChevronDownTight";
4
+ import { normalizeSlotIcon as p } from "./slot.js";
5
+ const i = 180;
6
+ function h({
7
+ open: t,
8
+ children: o,
9
+ part: n = "indicator",
10
+ rotationVariable: c = "--oc-disclosure-indicator-rotation",
11
+ style: s,
12
+ ...a
13
+ }) {
14
+ const r = I(t), [u, d] = R(
15
+ () => t ? i : 0
16
+ ), f = o === void 0 ? /* @__PURE__ */ e(E, { size: "custom" }) : o, m = {
17
+ ...s,
18
+ [c]: `${u}deg`
19
+ };
20
+ return S(() => {
21
+ r.current !== t && (r.current = t, d(
22
+ (l) => l + i
23
+ ));
24
+ }, [t]), /* @__PURE__ */ e(
25
+ "span",
26
+ {
27
+ ...a,
28
+ "aria-hidden": "true",
29
+ "data-oc-part": n,
30
+ "data-oc-state": t ? "open" : "closed",
31
+ style: m,
32
+ children: p(f)
33
+ }
34
+ );
35
+ }
36
+ export {
37
+ h as DisclosureIndicator,
38
+ h as default
39
+ };
@@ -2,31 +2,32 @@ import { jsx as c } from "react/jsx-runtime";
2
2
  function t(r, e = !0) {
3
3
  r.preventDefault(), e && r.stopPropagation();
4
4
  }
5
- function j({
5
+ function B({
6
6
  children: r,
7
7
  className: e,
8
8
  style: u,
9
9
  disabled: o = !1,
10
+ asAnchor: s = !1,
10
11
  href: a,
11
12
  ...i
12
13
  }) {
13
- if (a !== void 0) {
14
- const w = i, {
15
- "aria-disabled": h,
16
- onAuxClick: k,
17
- onClick: p,
18
- onKeyDown: P,
19
- onMouseDown: x,
20
- onPointerDown: C,
21
- ref: y,
22
- tabIndex: A,
23
- ...d
24
- } = w;
14
+ if (s || a !== void 0) {
15
+ const h = i, {
16
+ "aria-disabled": k,
17
+ onAuxClick: p,
18
+ onClick: P,
19
+ onKeyDown: x,
20
+ onMouseDown: C,
21
+ onPointerDown: y,
22
+ ref: A,
23
+ tabIndex: d,
24
+ ...K
25
+ } = h;
25
26
  return /* @__PURE__ */ c(
26
27
  "a",
27
28
  {
28
- ...d,
29
- ref: y,
29
+ ...K,
30
+ ref: A,
30
31
  className: e,
31
32
  style: u,
32
33
  href: a,
@@ -35,56 +36,56 @@ function j({
35
36
  t(n);
36
37
  return;
37
38
  }
38
- k?.(n);
39
+ p?.(n);
39
40
  },
40
41
  onClick: (n) => {
41
42
  if (o) {
42
43
  t(n, !1);
43
44
  return;
44
45
  }
45
- p?.(n);
46
+ P?.(n);
46
47
  },
47
48
  onKeyDown: (n) => {
48
49
  if ((n.key === "Enter" || n.key === " ") && o) {
49
50
  t(n);
50
51
  return;
51
52
  }
52
- P?.(n);
53
+ x?.(n);
53
54
  },
54
55
  onMouseDown: (n) => {
55
56
  if (o) {
56
57
  t(n);
57
58
  return;
58
59
  }
59
- x?.(n);
60
+ C?.(n);
60
61
  },
61
62
  onPointerDown: (n) => {
62
63
  if (o) {
63
64
  t(n);
64
65
  return;
65
66
  }
66
- C?.(n);
67
+ y?.(n);
67
68
  },
68
- "aria-disabled": o ? "true" : h,
69
- tabIndex: o ? -1 : A,
69
+ "aria-disabled": o ? "true" : k,
70
+ tabIndex: o ? -1 : d,
70
71
  children: r
71
72
  }
72
73
  );
73
74
  }
74
- const s = i, { ref: f, type: l = "button", ...D } = s;
75
+ const f = i, { ref: l, type: D = "button", ...w } = f;
75
76
  return /* @__PURE__ */ c(
76
77
  "button",
77
78
  {
78
- ...D,
79
- ref: f,
79
+ ...w,
80
+ ref: l,
80
81
  className: e,
81
82
  style: u,
82
- type: l,
83
+ type: D,
83
84
  disabled: o,
84
85
  children: r
85
86
  }
86
87
  );
87
88
  }
88
89
  export {
89
- j as default
90
+ B as default
90
91
  };
@@ -1 +1 @@
1
- :root{--oc-motion-duration-factor: 1;--oc-motion-duration-factor-reduced: 0.75;--oc-motion-duration-factor-preserve: 1;--oc-motion-scale-factor: 1;--oc-motion-scale-factor-feedback: var(--oc-motion-scale-factor);--oc-motion-scale-factor-spatial: var(--oc-motion-scale-factor);--oc-motion-distance-factor: 1;--oc-motion-distance-factor-reject: var(--oc-motion-distance-factor);--oc-motion-distance-factor-spatial: var(--oc-motion-distance-factor);--oc-motion-pace-quick: 0.75;--oc-motion-pace-normal: 1;--oc-motion-pace-slow: 1.35;--oc-motion-duration-feedback: 0.2s;--oc-motion-duration-fade: 0.2s;--oc-motion-duration-reject: 0.598s;--oc-motion-duration-disclosure: 0.2s;--oc-motion-duration-disclosure-exit: 0.14s;--oc-motion-duration-surface: 0.26s;--oc-motion-duration-surface-exit: 0.24s;--oc-motion-duration-sheet: 0.26s;--oc-motion-duration-sheet-exit: 0.33s;--oc-motion-duration-sheet-release: 0.33s;--oc-motion-duration-expand: 0.3s;--oc-motion-duration-expand-exit: 0.24s;--oc-motion-duration-move: 0.3s;--oc-motion-duration-gesture: 0.2s;--oc-motion-duration-gesture-release: 0.52s;--oc-motion-duration-ambient: 1.2s;--oc-motion-timing-feedback: ease;--oc-motion-timing-fade: ease;--oc-motion-timing-reject: linear(0 0%, 0.0149 1.56%, 0.0529 3.13%, 0.1059 4.69%, 0.1677 6.25%, 0.2339 7.81%, 0.3013 9.38%, 0.3676 10.94%, 0.4313 12.5%, 0.4914 14.06%, 0.5474 15.63%, 0.5989 17.19%, 0.6458 18.75%, 0.6883 20.31%, 0.7265 21.88%, 0.7606 23.44%, 0.791 25%, 0.8179 26.56%, 0.8417 28.13%, 0.8626 29.69%, 0.881 31.25%, 0.897 32.81%, 0.911 34.38%, 0.9233 35.94%, 0.9339 37.5%, 0.9431 39.06%, 0.9511 40.63%, 0.958 42.19%, 0.9639 43.75%, 0.9691 45.31%, 0.9735 46.88%, 0.9773 48.44%, 0.9806 50%, 0.9834 51.56%, 0.9859 53.13%, 0.9879 54.69%, 0.9897 56.25%, 0.9912 57.81%, 0.9925 59.38%, 0.9936 60.94%, 0.9946 62.5%, 0.9954 64.06%, 0.9961 65.63%, 0.9967 67.19%, 0.9972 68.75%, 0.9976 70.31%, 0.998 71.88%, 0.9983 73.44%, 0.9985 75%, 0.9988 76.56%, 0.9989 78.13%, 0.9991 79.69%, 0.9992 81.25%, 0.9994 82.81%, 0.9995 84.38%, 0.9995 85.94%, 0.9996 87.5%, 0.9997 89.06%, 0.9997 90.63%, 0.9998 92.19%, 0.9998 93.75%, 0.9998 95.31%, 0.9999 96.88%, 0.9999 98.44%, 1 100%);--oc-motion-timing-disclosure: ease;--oc-motion-timing-disclosure-exit: cubic-bezier(0.8, 0, 1, 1);--oc-motion-timing-surface: ease;--oc-motion-timing-surface-exit: ease-in;--oc-motion-timing-sheet: ease;--oc-motion-timing-sheet-exit: ease-in;--oc-motion-timing-sheet-release: ease;--oc-motion-timing-expand: ease;--oc-motion-timing-expand-exit: ease-in;--oc-motion-timing-move: cubic-bezier(0.32, 0.72, 0, 1);--oc-motion-timing-gesture: ease;--oc-motion-timing-gesture-release: cubic-bezier(0.32, 0.72, 0, 1);--oc-motion-timing-ambient: linear;--oc-spring-smooth-timing: linear(0 0%, 0.0149 1.56%, 0.053 3.13%, 0.106 4.69%, 0.1678 6.25%, 0.2341 7.81%, 0.3015 9.38%, 0.3679 10.94%, 0.4316 12.5%, 0.4918 14.06%, 0.5477 15.63%, 0.5992 17.19%, 0.6462 18.75%, 0.6886 20.31%, 0.7268 21.88%, 0.7609 23.44%, 0.7913 25%, 0.8182 26.56%, 0.842 28.13%, 0.8629 29.69%, 0.8812 31.25%, 0.8972 32.81%, 0.9112 34.38%, 0.9234 35.94%, 0.934 37.5%, 0.9432 39.06%, 0.9512 40.63%, 0.9581 42.19%, 0.964 43.75%, 0.9692 45.31%, 0.9736 46.88%, 0.9774 48.44%, 0.9807 50%, 0.9835 51.56%, 0.9859 53.13%, 0.988 54.69%, 0.9897 56.25%, 0.9913 57.81%, 0.9926 59.38%, 0.9937 60.94%, 0.9946 62.5%, 0.9954 64.06%, 0.9961 65.63%, 0.9967 67.19%, 0.9972 68.75%, 0.9976 70.31%, 0.998 71.88%, 0.9983 73.44%, 0.9985 75%, 0.9988 76.56%, 0.999 78.13%, 0.9991 79.69%, 0.9992 81.25%, 0.9994 82.81%, 0.9995 84.38%, 0.9995 85.94%, 0.9996 87.5%, 0.9997 89.06%, 0.9997 90.63%, 0.9998 92.19%, 0.9998 93.75%, 0.9998 95.31%, 0.9999 96.88%, 0.9999 98.44%, 1 100%);--oc-spring-smooth-duration-scale: 1.87;--oc-spring-snappy-timing: linear(0 0%, 0.0117 1.56%, 0.0427 3.13%, 0.0878 4.69%, 0.1425 6.25%, 0.2034 7.81%, 0.2676 9.38%, 0.3329 10.94%, 0.3975 12.5%, 0.4603 14.06%, 0.5202 15.63%, 0.5765 17.19%, 0.6289 18.75%, 0.6771 20.31%, 0.7211 21.88%, 0.7608 23.44%, 0.7964 25%, 0.8281 26.56%, 0.8561 28.13%, 0.8807 29.69%, 0.902 31.25%, 0.9205 32.81%, 0.9363 34.38%, 0.9498 35.94%, 0.9612 37.5%, 0.9708 39.06%, 0.9787 40.63%, 0.9853 42.19%, 0.9905 43.75%, 0.9948 45.31%, 0.9981 46.88%, 1.0007 48.44%, 1.0027 50%, 1.0041 51.56%, 1.0051 53.13%, 1.0058 54.69%, 1.0061 56.25%, 1.0063 57.81%, 1.0062 59.38%, 1.0061 60.94%, 1.0058 62.5%, 1.0055 64.06%, 1.0051 65.63%, 1.0047 67.19%, 1.0043 68.75%, 1.0039 70.31%, 1.0035 71.88%, 1.0031 73.44%, 1.0028 75%, 1.0024 76.56%, 1.0021 78.13%, 1.0018 79.69%, 1.0016 81.25%, 1.0013 82.81%, 1.0011 84.38%, 1.0009 85.94%, 1.0008 87.5%, 1.0007 89.06%, 1.0005 90.63%, 1.0004 92.19%, 1.0003 93.75%, 1.0003 95.31%, 1.0002 96.88%, 1.0001 98.44%, 1 100%);--oc-spring-snappy-duration-scale: 1.63;--oc-spring-bouncy-timing: linear(0 0%, 0.0154 1.56%, 0.0563 3.13%, 0.1157 4.69%, 0.1878 6.25%, 0.2675 7.81%, 0.3508 9.38%, 0.4343 10.94%, 0.5157 12.5%, 0.5929 14.06%, 0.6647 15.63%, 0.7301 17.19%, 0.7887 18.75%, 0.8403 20.31%, 0.8849 21.88%, 0.9228 23.44%, 0.9545 25%, 0.9803 26.56%, 1.0009 28.13%, 1.0168 29.69%, 1.0286 31.25%, 1.0369 32.81%, 1.0422 34.38%, 1.0451 35.94%, 1.046 37.5%, 1.0453 39.06%, 1.0435 40.63%, 1.0408 42.19%, 1.0375 43.75%, 1.0338 45.31%, 1.03 46.88%, 1.0262 48.44%, 1.0224 50%, 1.0189 51.56%, 1.0155 53.13%, 1.0125 54.69%, 1.0098 56.25%, 1.0074 57.81%, 1.0054 59.38%, 1.0036 60.94%, 1.0021 62.5%, 1.0009 64.06%, 1 65.63%, 0.9993 67.19%, 0.9987 68.75%, 0.9983 70.31%, 0.9981 71.88%, 0.9979 73.44%, 0.9979 75%, 0.9979 76.56%, 0.998 78.13%, 0.9981 79.69%, 0.9983 81.25%, 0.9984 82.81%, 0.9986 84.38%, 0.9988 85.94%, 0.999 87.5%, 0.9991 89.06%, 0.9993 90.63%, 0.9994 92.19%, 0.9995 93.75%, 0.9997 95.31%, 0.9997 96.88%, 0.9998 98.44%, 1 100%);--oc-spring-bouncy-duration-scale: 1.864}@media(prefers-reduced-motion: reduce){:root{--oc-motion-duration-factor: var(--oc-motion-duration-factor-reduced)}}
1
+ :root{--oc-motion-duration-factor: 1;--oc-motion-duration-factor-reduced: 0.75;--oc-motion-duration-factor-preserve: 1;--oc-motion-scale-factor: 1;--oc-motion-scale-factor-feedback: var(--oc-motion-scale-factor);--oc-motion-scale-factor-spatial: var(--oc-motion-scale-factor);--oc-motion-distance-factor: 1;--oc-motion-distance-factor-reject: var(--oc-motion-distance-factor);--oc-motion-distance-factor-spatial: var(--oc-motion-distance-factor);--oc-motion-pace-quick: 0.75;--oc-motion-pace-normal: 1;--oc-motion-pace-slow: 1.35;--oc-motion-duration-feedback: 0.2s;--oc-motion-duration-fade: 0.2s;--oc-motion-duration-reject: 0.598s;--oc-motion-duration-disclosure: 0.2s;--oc-motion-duration-disclosure-exit: 0.14s;--oc-motion-duration-surface: 0.26s;--oc-motion-duration-surface-exit: 0.24s;--oc-motion-duration-sheet: 0.26s;--oc-motion-duration-sheet-exit: 0.33s;--oc-motion-duration-sheet-release: 0.33s;--oc-motion-duration-expand: 0.3s;--oc-motion-duration-expand-exit: 0.24s;--oc-motion-duration-move: 0.3s;--oc-motion-duration-gesture: 0.2s;--oc-motion-duration-gesture-release: 0.52s;--oc-motion-duration-ambient: 1.2s;--oc-motion-duration-continuous: 2.2s;--oc-motion-timing-feedback: ease;--oc-motion-timing-fade: ease;--oc-motion-timing-reject: linear(0 0%, 0.0149 1.56%, 0.0529 3.13%, 0.1059 4.69%, 0.1677 6.25%, 0.2339 7.81%, 0.3013 9.38%, 0.3676 10.94%, 0.4313 12.5%, 0.4914 14.06%, 0.5474 15.63%, 0.5989 17.19%, 0.6458 18.75%, 0.6883 20.31%, 0.7265 21.88%, 0.7606 23.44%, 0.791 25%, 0.8179 26.56%, 0.8417 28.13%, 0.8626 29.69%, 0.881 31.25%, 0.897 32.81%, 0.911 34.38%, 0.9233 35.94%, 0.9339 37.5%, 0.9431 39.06%, 0.9511 40.63%, 0.958 42.19%, 0.9639 43.75%, 0.9691 45.31%, 0.9735 46.88%, 0.9773 48.44%, 0.9806 50%, 0.9834 51.56%, 0.9859 53.13%, 0.9879 54.69%, 0.9897 56.25%, 0.9912 57.81%, 0.9925 59.38%, 0.9936 60.94%, 0.9946 62.5%, 0.9954 64.06%, 0.9961 65.63%, 0.9967 67.19%, 0.9972 68.75%, 0.9976 70.31%, 0.998 71.88%, 0.9983 73.44%, 0.9985 75%, 0.9988 76.56%, 0.9989 78.13%, 0.9991 79.69%, 0.9992 81.25%, 0.9994 82.81%, 0.9995 84.38%, 0.9995 85.94%, 0.9996 87.5%, 0.9997 89.06%, 0.9997 90.63%, 0.9998 92.19%, 0.9998 93.75%, 0.9998 95.31%, 0.9999 96.88%, 0.9999 98.44%, 1 100%);--oc-motion-timing-disclosure: ease;--oc-motion-timing-disclosure-exit: cubic-bezier(0.8, 0, 1, 1);--oc-motion-timing-surface: ease;--oc-motion-timing-surface-exit: ease-in;--oc-motion-timing-sheet: ease;--oc-motion-timing-sheet-exit: ease-in;--oc-motion-timing-sheet-release: ease;--oc-motion-timing-expand: ease;--oc-motion-timing-expand-exit: ease-in;--oc-motion-timing-move: cubic-bezier(0.32, 0.72, 0, 1);--oc-motion-timing-gesture: ease;--oc-motion-timing-gesture-release: cubic-bezier(0.32, 0.72, 0, 1);--oc-motion-timing-ambient: ease-in-out;--oc-motion-timing-continuous: linear;--oc-spring-smooth-timing: linear(0 0%, 0.0149 1.56%, 0.053 3.13%, 0.106 4.69%, 0.1678 6.25%, 0.2341 7.81%, 0.3015 9.38%, 0.3679 10.94%, 0.4316 12.5%, 0.4918 14.06%, 0.5477 15.63%, 0.5992 17.19%, 0.6462 18.75%, 0.6886 20.31%, 0.7268 21.88%, 0.7609 23.44%, 0.7913 25%, 0.8182 26.56%, 0.842 28.13%, 0.8629 29.69%, 0.8812 31.25%, 0.8972 32.81%, 0.9112 34.38%, 0.9234 35.94%, 0.934 37.5%, 0.9432 39.06%, 0.9512 40.63%, 0.9581 42.19%, 0.964 43.75%, 0.9692 45.31%, 0.9736 46.88%, 0.9774 48.44%, 0.9807 50%, 0.9835 51.56%, 0.9859 53.13%, 0.988 54.69%, 0.9897 56.25%, 0.9913 57.81%, 0.9926 59.38%, 0.9937 60.94%, 0.9946 62.5%, 0.9954 64.06%, 0.9961 65.63%, 0.9967 67.19%, 0.9972 68.75%, 0.9976 70.31%, 0.998 71.88%, 0.9983 73.44%, 0.9985 75%, 0.9988 76.56%, 0.999 78.13%, 0.9991 79.69%, 0.9992 81.25%, 0.9994 82.81%, 0.9995 84.38%, 0.9995 85.94%, 0.9996 87.5%, 0.9997 89.06%, 0.9997 90.63%, 0.9998 92.19%, 0.9998 93.75%, 0.9998 95.31%, 0.9999 96.88%, 0.9999 98.44%, 1 100%);--oc-spring-smooth-duration-scale: 1.87;--oc-spring-snappy-timing: linear(0 0%, 0.0117 1.56%, 0.0427 3.13%, 0.0878 4.69%, 0.1425 6.25%, 0.2034 7.81%, 0.2676 9.38%, 0.3329 10.94%, 0.3975 12.5%, 0.4603 14.06%, 0.5202 15.63%, 0.5765 17.19%, 0.6289 18.75%, 0.6771 20.31%, 0.7211 21.88%, 0.7608 23.44%, 0.7964 25%, 0.8281 26.56%, 0.8561 28.13%, 0.8807 29.69%, 0.902 31.25%, 0.9205 32.81%, 0.9363 34.38%, 0.9498 35.94%, 0.9612 37.5%, 0.9708 39.06%, 0.9787 40.63%, 0.9853 42.19%, 0.9905 43.75%, 0.9948 45.31%, 0.9981 46.88%, 1.0007 48.44%, 1.0027 50%, 1.0041 51.56%, 1.0051 53.13%, 1.0058 54.69%, 1.0061 56.25%, 1.0063 57.81%, 1.0062 59.38%, 1.0061 60.94%, 1.0058 62.5%, 1.0055 64.06%, 1.0051 65.63%, 1.0047 67.19%, 1.0043 68.75%, 1.0039 70.31%, 1.0035 71.88%, 1.0031 73.44%, 1.0028 75%, 1.0024 76.56%, 1.0021 78.13%, 1.0018 79.69%, 1.0016 81.25%, 1.0013 82.81%, 1.0011 84.38%, 1.0009 85.94%, 1.0008 87.5%, 1.0007 89.06%, 1.0005 90.63%, 1.0004 92.19%, 1.0003 93.75%, 1.0003 95.31%, 1.0002 96.88%, 1.0001 98.44%, 1 100%);--oc-spring-snappy-duration-scale: 1.63;--oc-spring-bouncy-timing: linear(0 0%, 0.0154 1.56%, 0.0563 3.13%, 0.1157 4.69%, 0.1878 6.25%, 0.2675 7.81%, 0.3508 9.38%, 0.4343 10.94%, 0.5157 12.5%, 0.5929 14.06%, 0.6647 15.63%, 0.7301 17.19%, 0.7887 18.75%, 0.8403 20.31%, 0.8849 21.88%, 0.9228 23.44%, 0.9545 25%, 0.9803 26.56%, 1.0009 28.13%, 1.0168 29.69%, 1.0286 31.25%, 1.0369 32.81%, 1.0422 34.38%, 1.0451 35.94%, 1.046 37.5%, 1.0453 39.06%, 1.0435 40.63%, 1.0408 42.19%, 1.0375 43.75%, 1.0338 45.31%, 1.03 46.88%, 1.0262 48.44%, 1.0224 50%, 1.0189 51.56%, 1.0155 53.13%, 1.0125 54.69%, 1.0098 56.25%, 1.0074 57.81%, 1.0054 59.38%, 1.0036 60.94%, 1.0021 62.5%, 1.0009 64.06%, 1 65.63%, 0.9993 67.19%, 0.9987 68.75%, 0.9983 70.31%, 0.9981 71.88%, 0.9979 73.44%, 0.9979 75%, 0.9979 76.56%, 0.998 78.13%, 0.9981 79.69%, 0.9983 81.25%, 0.9984 82.81%, 0.9986 84.38%, 0.9988 85.94%, 0.999 87.5%, 0.9991 89.06%, 0.9993 90.63%, 0.9994 92.19%, 0.9995 93.75%, 0.9997 95.31%, 0.9997 96.88%, 0.9998 98.44%, 1 100%);--oc-spring-bouncy-duration-scale: 1.864}@media(prefers-reduced-motion: reduce){:root{--oc-motion-duration-factor: var(--oc-motion-duration-factor-reduced)}}
@@ -1 +1 @@
1
- :root{--oc-space-section-padding-viewport: var(--oc-space-section-padding-viewport-y) var(--oc-space-section-padding-viewport-x);--oc-space-section-padding-viewport-x-safe-left: max(var(--oc-space-section-padding-viewport-x), env(safe-area-inset-left));--oc-space-section-padding-viewport-x-safe-right: max(var(--oc-space-section-padding-viewport-x), env(safe-area-inset-right));--oc-space-section-padding-viewport-y-safe-top: max(var(--oc-space-section-padding-viewport-y), env(safe-area-inset-top));--oc-space-section-padding-viewport-y-safe-bottom: max(var(--oc-space-section-padding-viewport-y), env(safe-area-inset-bottom));--oc-space-section-padding-viewport-x: 1rem;--oc-space-section-padding-viewport-y: 1rem;--oc-space-section-gap-section: 3rem;--oc-space-section-gap-xlarge: 2.5rem;--oc-space-section-gap-large: 2rem;--oc-space-section-gap-medium: 1.25rem;--oc-space-item-padding-large: 1.5rem;--oc-space-item-padding-medium: 1.25rem;--oc-space-item-padding-small: 1rem;--oc-space-item-padding-xsmall: 0.75rem;--oc-space-item-padding-mini: 0.5rem;--oc-space-item-padding-tiny: 0.375rem;--oc-space-item-padding-micro: 0.25rem;--oc-space-item-padding-nano: 0.25rem;--oc-space-item-padding-atom: 0.125rem;--oc-space-item-gap-huge: 1.5rem;--oc-space-item-gap-xlarge: 1.25rem;--oc-space-item-gap-large: 1.125rem;--oc-space-item-gap-medium: 1rem;--oc-space-item-gap-small: 0.75rem;--oc-space-item-gap-xsmall: 0.625rem;--oc-space-item-gap-mini: 0.5rem;--oc-space-item-gap-tiny: 0.375rem;--oc-space-item-gap-micro: 0.25rem;--oc-space-item-gap-nano: 0.25rem;--oc-space-item-gap-atom: 0.125rem}@media screen and (max-width: 768px){:root{--oc-space-section-padding-viewport-x: clamp(1.5rem, 32 / 768 * 100vw, 2rem);--oc-space-section-padding-viewport-y: clamp(1rem, 24 / 768 * 100vw, 1.5rem);--oc-space-section-gap-section: clamp(3rem, 72 / 768 * 100vw, 4.5rem);--oc-space-section-gap-xlarge: clamp(2.5rem, 52 / 768 * 100vw, 3.25rem);--oc-space-section-gap-large: clamp(2rem, 40 / 768 * 100vw, 2.5rem);--oc-space-section-gap-medium: clamp(1.25rem, 26 / 768 * 100vw, 1.625rem);--oc-space-item-padding-large: clamp(1.5rem, 28 / 768 * 100vw, 1.75rem);--oc-space-item-padding-medium: clamp(1.25rem, 24 / 768 * 100vw, 1.5rem);--oc-space-item-padding-small: clamp(1rem, 20 / 768 * 100vw, 1.25rem);--oc-space-item-padding-xsmall: clamp(0.75rem, 14 / 768 * 100vw, 0.875rem);--oc-space-item-padding-mini: clamp(0.5rem, 10 / 768 * 100vw, 0.625rem);--oc-space-item-padding-tiny: clamp(0.375rem, 8 / 768 * 100vw, 0.5rem);--oc-space-item-padding-micro: clamp(0.25rem, 6 / 768 * 100vw, 0.375rem);--oc-space-item-gap-huge: clamp(1.5rem, 32 / 768 * 100vw, 2rem);--oc-space-item-gap-xlarge: clamp(1.25rem, 26 / 768 * 100vw, 1.625rem);--oc-space-item-gap-large: clamp(1.125rem, 22 / 768 * 100vw, 1.375rem);--oc-space-item-gap-medium: clamp(1rem, 18 / 768 * 100vw, 1.125rem);--oc-space-item-gap-small: clamp(0.75rem, 14 / 768 * 100vw, 0.875rem);--oc-space-item-gap-xsmall: clamp(0.625rem, 12 / 768 * 100vw, 0.75rem);--oc-space-item-gap-mini: clamp(0.5rem, 10 / 768 * 100vw, 0.625rem);--oc-space-item-gap-tiny: clamp(0.375rem, 8 / 768 * 100vw, 0.5rem);--oc-space-item-gap-micro: clamp(0.25rem, 6 / 768 * 100vw, 0.375rem)}}@media screen and (max-width: 480px){:root{--oc-space-section-padding-viewport-x: clamp(1rem, 24 / 480 * 100vw, 1.5rem)}}@media screen and (min-width: 769px){:root{--oc-space-section-padding-viewport-x: clamp(2rem, 32 / 768 * 100vw, 3rem);--oc-space-section-padding-viewport-y: clamp(1.5rem, 24 / 768 * 100vw, 2rem);--oc-space-section-gap-section: clamp(4.5rem, 96 / 1600 * 100vw, 6rem);--oc-space-section-gap-xlarge: clamp(3.25rem, 64 / 1600 * 100vw, 4rem);--oc-space-section-gap-large: clamp(2.5rem, 48 / 1600 * 100vw, 3rem);--oc-space-section-gap-medium: clamp(1.625rem, 32 / 1600 * 100vw, 2rem);--oc-space-item-padding-large: clamp(1.75rem, 32 / 1600 * 100vw, 2rem);--oc-space-item-padding-medium: clamp(1.5rem, 28 / 1600 * 100vw, 1.75rem);--oc-space-item-padding-small: clamp(1.25rem, 24 / 1600 * 100vw, 1.5rem);--oc-space-item-padding-xsmall: clamp(0.875rem, 16 / 1600 * 100vw, 1rem);--oc-space-item-padding-mini: clamp(0.625rem, 12 / 1600 * 100vw, 0.75rem);--oc-space-item-padding-tiny: 0.5rem;--oc-space-item-padding-micro: 0.375rem;--oc-space-item-gap-huge: clamp(2rem, 40 / 1600 * 100vw, 2.5rem);--oc-space-item-gap-xlarge: clamp(1.625rem, 32 / 1600 * 100vw, 2rem);--oc-space-item-gap-large: clamp(1.375rem, 24 / 1600 * 100vw, 1.5rem);--oc-space-item-gap-medium: clamp(1.125rem, 20 / 1600 * 100vw, 1.25rem);--oc-space-item-gap-small: clamp(0.875rem, 16 / 1600 * 100vw, 1rem);--oc-space-item-gap-xsmall: 0.75rem;--oc-space-item-gap-mini: 0.625rem;--oc-space-item-gap-tiny: 0.5rem;--oc-space-item-gap-micro: 0.375rem}}@media screen and (min-width: 1921px){:root{--oc-space-section-padding-viewport-x: clamp(3rem, 48 / 1920 * 100vw, 4rem);--oc-space-section-padding-viewport-y: clamp(2rem, 32 / 1920 * 100vw, 2.6666666667rem)}}
1
+ :root{--oc-space-section-padding-viewport: var(--oc-space-section-padding-viewport-y) var(--oc-space-section-padding-viewport-x);--oc-space-section-padding-viewport-inline-safe-start: max(var(--oc-space-section-padding-viewport-x), env(safe-area-inset-left, 0px));--oc-space-section-padding-viewport-inline-safe-end: max(var(--oc-space-section-padding-viewport-x), env(safe-area-inset-right, 0px));--oc-space-section-padding-viewport-block-safe-start: max(var(--oc-space-section-padding-viewport-y), env(safe-area-inset-top, 0px));--oc-space-section-padding-viewport-block-safe-end: max(var(--oc-space-section-padding-viewport-y), env(safe-area-inset-bottom, 0px));--oc-space-section-padding-viewport-x: 1rem;--oc-space-section-padding-viewport-y: 1rem;--oc-space-section-gap-section: 3rem;--oc-space-section-gap-xlarge: 2.5rem;--oc-space-section-gap-large: 2rem;--oc-space-section-gap-medium: 1.25rem;--oc-space-item-padding-large: 1.5rem;--oc-space-item-padding-medium: 1.25rem;--oc-space-item-padding-small: 1rem;--oc-space-item-padding-xsmall: 0.75rem;--oc-space-item-padding-mini: 0.5rem;--oc-space-item-padding-tiny: 0.375rem;--oc-space-item-padding-micro: 0.25rem;--oc-space-item-padding-nano: 0.25rem;--oc-space-item-padding-atom: 0.125rem;--oc-space-item-gap-huge: 1.5rem;--oc-space-item-gap-xlarge: 1.25rem;--oc-space-item-gap-large: 1.125rem;--oc-space-item-gap-medium: 1rem;--oc-space-item-gap-small: 0.75rem;--oc-space-item-gap-xsmall: 0.625rem;--oc-space-item-gap-mini: 0.5rem;--oc-space-item-gap-tiny: 0.375rem;--oc-space-item-gap-micro: 0.25rem;--oc-space-item-gap-nano: 0.25rem;--oc-space-item-gap-atom: 0.125rem}@media screen and (max-width: 768px){:root{--oc-space-section-padding-viewport-x: clamp(1.5rem, 32 / 768 * 100vw, 2rem);--oc-space-section-padding-viewport-y: clamp(1rem, 24 / 768 * 100vw, 1.5rem);--oc-space-section-gap-section: clamp(3rem, 72 / 768 * 100vw, 4.5rem);--oc-space-section-gap-xlarge: clamp(2.5rem, 52 / 768 * 100vw, 3.25rem);--oc-space-section-gap-large: clamp(2rem, 40 / 768 * 100vw, 2.5rem);--oc-space-section-gap-medium: clamp(1.25rem, 26 / 768 * 100vw, 1.625rem);--oc-space-item-padding-large: clamp(1.5rem, 28 / 768 * 100vw, 1.75rem);--oc-space-item-padding-medium: clamp(1.25rem, 24 / 768 * 100vw, 1.5rem);--oc-space-item-padding-small: clamp(1rem, 20 / 768 * 100vw, 1.25rem);--oc-space-item-padding-xsmall: clamp(0.75rem, 14 / 768 * 100vw, 0.875rem);--oc-space-item-padding-mini: clamp(0.5rem, 10 / 768 * 100vw, 0.625rem);--oc-space-item-padding-tiny: clamp(0.375rem, 8 / 768 * 100vw, 0.5rem);--oc-space-item-padding-micro: clamp(0.25rem, 6 / 768 * 100vw, 0.375rem);--oc-space-item-gap-huge: clamp(1.5rem, 32 / 768 * 100vw, 2rem);--oc-space-item-gap-xlarge: clamp(1.25rem, 26 / 768 * 100vw, 1.625rem);--oc-space-item-gap-large: clamp(1.125rem, 22 / 768 * 100vw, 1.375rem);--oc-space-item-gap-medium: clamp(1rem, 18 / 768 * 100vw, 1.125rem);--oc-space-item-gap-small: clamp(0.75rem, 14 / 768 * 100vw, 0.875rem);--oc-space-item-gap-xsmall: clamp(0.625rem, 12 / 768 * 100vw, 0.75rem);--oc-space-item-gap-mini: clamp(0.5rem, 10 / 768 * 100vw, 0.625rem);--oc-space-item-gap-tiny: clamp(0.375rem, 8 / 768 * 100vw, 0.5rem);--oc-space-item-gap-micro: clamp(0.25rem, 6 / 768 * 100vw, 0.375rem)}}@media screen and (max-width: 480px){:root{--oc-space-section-padding-viewport-x: clamp(1rem, 24 / 480 * 100vw, 1.5rem)}}@media screen and (min-width: 769px){:root{--oc-space-section-padding-viewport-x: clamp(2rem, 32 / 768 * 100vw, 3rem);--oc-space-section-padding-viewport-y: clamp(1.5rem, 24 / 768 * 100vw, 2rem);--oc-space-section-gap-section: clamp(4.5rem, 96 / 1600 * 100vw, 6rem);--oc-space-section-gap-xlarge: clamp(3.25rem, 64 / 1600 * 100vw, 4rem);--oc-space-section-gap-large: clamp(2.5rem, 48 / 1600 * 100vw, 3rem);--oc-space-section-gap-medium: clamp(1.625rem, 32 / 1600 * 100vw, 2rem);--oc-space-item-padding-large: clamp(1.75rem, 32 / 1600 * 100vw, 2rem);--oc-space-item-padding-medium: clamp(1.5rem, 28 / 1600 * 100vw, 1.75rem);--oc-space-item-padding-small: clamp(1.25rem, 24 / 1600 * 100vw, 1.5rem);--oc-space-item-padding-xsmall: clamp(0.875rem, 16 / 1600 * 100vw, 1rem);--oc-space-item-padding-mini: clamp(0.625rem, 12 / 1600 * 100vw, 0.75rem);--oc-space-item-padding-tiny: 0.5rem;--oc-space-item-padding-micro: 0.375rem;--oc-space-item-gap-huge: clamp(2rem, 40 / 1600 * 100vw, 2.5rem);--oc-space-item-gap-xlarge: clamp(1.625rem, 32 / 1600 * 100vw, 2rem);--oc-space-item-gap-large: clamp(1.375rem, 24 / 1600 * 100vw, 1.5rem);--oc-space-item-gap-medium: clamp(1.125rem, 20 / 1600 * 100vw, 1.25rem);--oc-space-item-gap-small: clamp(0.875rem, 16 / 1600 * 100vw, 1rem);--oc-space-item-gap-xsmall: 0.75rem;--oc-space-item-gap-mini: 0.625rem;--oc-space-item-gap-tiny: 0.5rem;--oc-space-item-gap-micro: 0.375rem}}@media screen and (min-width: 1921px){:root{--oc-space-section-padding-viewport-x: clamp(3rem, 48 / 1920 * 100vw, 4rem);--oc-space-section-padding-viewport-y: clamp(2rem, 32 / 1920 * 100vw, 2.6666666667rem)}}:root:dir(rtl){--oc-space-section-padding-viewport-inline-safe-start: max(var(--oc-space-section-padding-viewport-x), env(safe-area-inset-right, 0px));--oc-space-section-padding-viewport-inline-safe-end: max(var(--oc-space-section-padding-viewport-x), env(safe-area-inset-left, 0px))}
@@ -3,9 +3,9 @@
3
3
  @media(prefers-color-scheme: dark){:root{--oc-color-theme-static-white: var(--oc-color-global-common-100);--oc-color-theme-static-black: var(--oc-color-global-common-0);--oc-color-theme-static-transparent: var(--oc-color-global-common-transparent);--oc-color-theme-primary-normal: var(--oc-color-global-redOrange-60);--oc-color-theme-label-strong: var(--oc-color-global-common-100);--oc-color-theme-label-normal: var(--oc-color-global-coolNeutral-99);--oc-color-theme-label-neutral: color-mix(in srgb, var(--oc-color-global-coolNeutral-90), transparent calc(100% - (100% * var(--oc-color-global-opacity-88))));--oc-color-theme-label-alternative: color-mix(in srgb, var(--oc-color-global-coolNeutral-80), transparent calc(100% - (100% * var(--oc-color-global-opacity-61))));--oc-color-theme-label-assistive: color-mix(in srgb, var(--oc-color-global-coolNeutral-80), transparent calc(100% - (100% * var(--oc-color-global-opacity-28))));--oc-color-theme-label-disable: color-mix(in srgb, var(--oc-color-global-coolNeutral-70), transparent calc(100% - (100% * var(--oc-color-global-opacity-16))));--oc-color-theme-background-normal-normal: var(--oc-color-global-coolNeutral-15);--oc-color-theme-background-normal-alternative: var(--oc-color-global-coolNeutral-5);--oc-color-theme-background-elevated-normal: var(--oc-color-global-coolNeutral-17);--oc-color-theme-background-elevated-alternative: var(--oc-color-global-coolNeutral-7);--oc-color-theme-interaction-inactive: var(--oc-color-global-coolNeutral-40);--oc-color-theme-interaction-disable: var(--oc-color-global-coolNeutral-22);--oc-color-theme-line-normal-strong: color-mix(in srgb, var(--oc-color-global-coolNeutral-90), transparent calc(100% - (100% * var(--oc-color-global-opacity-52))));--oc-color-theme-line-normal-normal: color-mix(in srgb, var(--oc-color-global-coolNeutral-50), transparent calc(100% - (100% * 0.32)));--oc-color-theme-line-normal-neutral: color-mix(in srgb, var(--oc-color-global-coolNeutral-50), transparent calc(100% - (100% * var(--oc-color-global-opacity-28))));--oc-color-theme-line-normal-alternative: color-mix(in srgb, var(--oc-color-global-coolNeutral-50), transparent calc(100% - (100% * var(--oc-color-global-opacity-22))));--oc-color-theme-line-solid-strong: var(--oc-color-global-coolNeutral-50);--oc-color-theme-line-solid-normal: var(--oc-color-global-coolNeutral-25);--oc-color-theme-line-solid-neutral: var(--oc-color-global-coolNeutral-23);--oc-color-theme-line-solid-alternative: var(--oc-color-global-coolNeutral-22);--oc-color-theme-fill-normal: color-mix(in srgb, var(--oc-color-global-coolNeutral-50), transparent calc(100% - (100% * var(--oc-color-global-opacity-22))));--oc-color-theme-fill-strong: color-mix(in srgb, var(--oc-color-global-coolNeutral-50), transparent calc(100% - (100% * var(--oc-color-global-opacity-28))));--oc-color-theme-fill-alternative: color-mix(in srgb, var(--oc-color-global-coolNeutral-50), transparent calc(100% - (100% * var(--oc-color-global-opacity-12))));--oc-color-theme-accent-background-red: var(--oc-color-global-red-60);--oc-color-theme-accent-background-orange: var(--oc-color-global-orange-60);--oc-color-theme-accent-background-lime: var(--oc-color-global-lime-60);--oc-color-theme-accent-background-green: var(--oc-color-global-green-60);--oc-color-theme-accent-background-cyan: var(--oc-color-global-cyan-60);--oc-color-theme-accent-background-lightBlue: var(--oc-color-global-lightBlue-60);--oc-color-theme-accent-background-blue: var(--oc-color-global-blue-60);--oc-color-theme-accent-background-violet: var(--oc-color-global-violet-60);--oc-color-theme-accent-background-purple: var(--oc-color-global-purple-60);--oc-color-theme-accent-background-pink: var(--oc-color-global-pink-60);--oc-color-theme-accent-background-redOrange: var(--oc-color-global-redOrange-60);--oc-color-theme-accent-foreground-red: var(--oc-color-global-red-60);--oc-color-theme-accent-foreground-redOrange: var(--oc-color-global-redOrange-60);--oc-color-theme-accent-foreground-orange: var(--oc-color-global-orange-50);--oc-color-theme-accent-foreground-lime: var(--oc-color-global-lime-50);--oc-color-theme-accent-foreground-green: var(--oc-color-global-green-60);--oc-color-theme-accent-foreground-cyan: var(--oc-color-global-cyan-50);--oc-color-theme-accent-foreground-lightBlue: var(--oc-color-global-lightBlue-50);--oc-color-theme-accent-foreground-blue: var(--oc-color-global-blue-65);--oc-color-theme-accent-foreground-violet: var(--oc-color-global-violet-70);--oc-color-theme-accent-foreground-purple: var(--oc-color-global-purple-60);--oc-color-theme-accent-foreground-pink: var(--oc-color-global-pink-60);--oc-color-theme-status-positive: var(--oc-color-theme-accent-background-green);--oc-color-theme-status-cautionary: var(--oc-color-theme-accent-background-orange);--oc-color-theme-status-negative: var(--oc-color-theme-accent-background-red);--oc-color-theme-inverse-primary: var(--oc-color-global-redOrange-50);--oc-color-theme-inverse-background: var(--oc-color-global-common-100);--oc-color-theme-inverse-label: var(--oc-color-global-coolNeutral-10);--oc-color-theme-material-dimmer: color-mix(in srgb, var(--oc-color-global-coolNeutral-10), transparent calc(100% - (100% * var(--oc-color-global-opacity-74))))}}[data-theme=dark]{--oc-color-theme-static-white: var(--oc-color-global-common-100);--oc-color-theme-static-black: var(--oc-color-global-common-0);--oc-color-theme-static-transparent: var(--oc-color-global-common-transparent);--oc-color-theme-primary-normal: var(--oc-color-global-redOrange-60);--oc-color-theme-label-strong: var(--oc-color-global-common-100);--oc-color-theme-label-normal: var(--oc-color-global-coolNeutral-99);--oc-color-theme-label-neutral: color-mix(in srgb, var(--oc-color-global-coolNeutral-90), transparent calc(100% - (100% * var(--oc-color-global-opacity-88))));--oc-color-theme-label-alternative: color-mix(in srgb, var(--oc-color-global-coolNeutral-80), transparent calc(100% - (100% * var(--oc-color-global-opacity-61))));--oc-color-theme-label-assistive: color-mix(in srgb, var(--oc-color-global-coolNeutral-80), transparent calc(100% - (100% * var(--oc-color-global-opacity-28))));--oc-color-theme-label-disable: color-mix(in srgb, var(--oc-color-global-coolNeutral-70), transparent calc(100% - (100% * var(--oc-color-global-opacity-16))));--oc-color-theme-background-normal-normal: var(--oc-color-global-coolNeutral-15);--oc-color-theme-background-normal-alternative: var(--oc-color-global-coolNeutral-5);--oc-color-theme-background-elevated-normal: var(--oc-color-global-coolNeutral-17);--oc-color-theme-background-elevated-alternative: var(--oc-color-global-coolNeutral-7);--oc-color-theme-interaction-inactive: var(--oc-color-global-coolNeutral-40);--oc-color-theme-interaction-disable: var(--oc-color-global-coolNeutral-22);--oc-color-theme-line-normal-strong: color-mix(in srgb, var(--oc-color-global-coolNeutral-90), transparent calc(100% - (100% * var(--oc-color-global-opacity-52))));--oc-color-theme-line-normal-normal: color-mix(in srgb, var(--oc-color-global-coolNeutral-50), transparent calc(100% - (100% * 0.32)));--oc-color-theme-line-normal-neutral: color-mix(in srgb, var(--oc-color-global-coolNeutral-50), transparent calc(100% - (100% * var(--oc-color-global-opacity-28))));--oc-color-theme-line-normal-alternative: color-mix(in srgb, var(--oc-color-global-coolNeutral-50), transparent calc(100% - (100% * var(--oc-color-global-opacity-22))));--oc-color-theme-line-solid-strong: var(--oc-color-global-coolNeutral-50);--oc-color-theme-line-solid-normal: var(--oc-color-global-coolNeutral-25);--oc-color-theme-line-solid-neutral: var(--oc-color-global-coolNeutral-23);--oc-color-theme-line-solid-alternative: var(--oc-color-global-coolNeutral-22);--oc-color-theme-fill-normal: color-mix(in srgb, var(--oc-color-global-coolNeutral-50), transparent calc(100% - (100% * var(--oc-color-global-opacity-22))));--oc-color-theme-fill-strong: color-mix(in srgb, var(--oc-color-global-coolNeutral-50), transparent calc(100% - (100% * var(--oc-color-global-opacity-28))));--oc-color-theme-fill-alternative: color-mix(in srgb, var(--oc-color-global-coolNeutral-50), transparent calc(100% - (100% * var(--oc-color-global-opacity-12))));--oc-color-theme-accent-background-red: var(--oc-color-global-red-60);--oc-color-theme-accent-background-orange: var(--oc-color-global-orange-60);--oc-color-theme-accent-background-lime: var(--oc-color-global-lime-60);--oc-color-theme-accent-background-green: var(--oc-color-global-green-60);--oc-color-theme-accent-background-cyan: var(--oc-color-global-cyan-60);--oc-color-theme-accent-background-lightBlue: var(--oc-color-global-lightBlue-60);--oc-color-theme-accent-background-blue: var(--oc-color-global-blue-60);--oc-color-theme-accent-background-violet: var(--oc-color-global-violet-60);--oc-color-theme-accent-background-purple: var(--oc-color-global-purple-60);--oc-color-theme-accent-background-pink: var(--oc-color-global-pink-60);--oc-color-theme-accent-background-redOrange: var(--oc-color-global-redOrange-60);--oc-color-theme-accent-foreground-red: var(--oc-color-global-red-60);--oc-color-theme-accent-foreground-redOrange: var(--oc-color-global-redOrange-60);--oc-color-theme-accent-foreground-orange: var(--oc-color-global-orange-50);--oc-color-theme-accent-foreground-lime: var(--oc-color-global-lime-50);--oc-color-theme-accent-foreground-green: var(--oc-color-global-green-60);--oc-color-theme-accent-foreground-cyan: var(--oc-color-global-cyan-50);--oc-color-theme-accent-foreground-lightBlue: var(--oc-color-global-lightBlue-50);--oc-color-theme-accent-foreground-blue: var(--oc-color-global-blue-65);--oc-color-theme-accent-foreground-violet: var(--oc-color-global-violet-70);--oc-color-theme-accent-foreground-purple: var(--oc-color-global-purple-60);--oc-color-theme-accent-foreground-pink: var(--oc-color-global-pink-60);--oc-color-theme-status-positive: var(--oc-color-theme-accent-background-green);--oc-color-theme-status-cautionary: var(--oc-color-theme-accent-background-orange);--oc-color-theme-status-negative: var(--oc-color-theme-accent-background-red);--oc-color-theme-inverse-primary: var(--oc-color-global-redOrange-50);--oc-color-theme-inverse-background: var(--oc-color-global-common-100);--oc-color-theme-inverse-label: var(--oc-color-global-coolNeutral-10);--oc-color-theme-material-dimmer: color-mix(in srgb, var(--oc-color-global-coolNeutral-10), transparent calc(100% - (100% * var(--oc-color-global-opacity-74))))}
4
4
  :root{--oc-breakpoint-sm: 480px;--oc-breakpoint-md: 768px;--oc-breakpoint-lg: 1280px;--oc-breakpoint-xl: 1600px;--oc-breakpoint-hg: 1920px}
5
5
  :root{--oc-typo-font-family: system-ui, sans-serif;--oc-typo-size-factor: 1;--oc-typo-size-display1: 3rem;--oc-typo-size-display2: 2.5rem;--oc-typo-size-display3: 2.25rem;--oc-typo-size-title1: 2rem;--oc-typo-size-title2: 1.75rem;--oc-typo-size-title3: 1.5rem;--oc-typo-size-heading1: 1.375rem;--oc-typo-size-heading2: 1.25rem;--oc-typo-size-headline1: 1.125rem;--oc-typo-size-headline2: 1.0625rem;--oc-typo-size-body1: 1rem;--oc-typo-size-body1reading: 1rem;--oc-typo-size-body2: 0.9375rem;--oc-typo-size-body2reading: 0.9375rem;--oc-typo-size-label1: 0.875rem;--oc-typo-size-label1reading: 0.875rem;--oc-typo-size-label2: 0.8125rem;--oc-typo-size-caption1: 0.75rem;--oc-typo-size-caption2: 0.6875rem}@media screen and (max-width: 768px){:root{--oc-typo-size-body1: clamp(1rem, 17 / 375 * 100vw, 1.0625rem);--oc-typo-size-body1reading: clamp(1rem, 17 / 375 * 100vw, 1.0625rem);--oc-typo-size-body2: clamp(0.9375rem, 16 / 375 * 100vw, 1rem);--oc-typo-size-body2reading: clamp(0.9375rem, 16 / 375 * 100vw, 1rem);--oc-typo-size-label1: clamp(0.875rem, 15 / 375 * 100vw, 0.9375rem);--oc-typo-size-label1reading: clamp(0.875rem, 15 / 375 * 100vw, 0.9375rem);--oc-typo-size-label2: clamp(0.8125rem, 14 / 375 * 100vw, 0.875rem);--oc-typo-size-caption1: clamp(0.75rem, 13 / 375 * 100vw, 0.8125rem);--oc-typo-size-caption2: clamp(0.6875rem, 12 / 375 * 100vw, 0.75rem)}}@media screen and (min-width: 769px){:root{--oc-typo-size-display1: clamp(3rem, 64 / 1280 * 100vw, 4rem);--oc-typo-size-display2: clamp(2.5rem, 48 / 1280 * 100vw, 3rem);--oc-typo-size-display3: clamp(2.25rem, 40 / 1280 * 100vw, 2.5rem);--oc-typo-size-title1: clamp(2rem, 36 / 1280 * 100vw, 2.25rem);--oc-typo-size-title2: clamp(1.75rem, 32 / 1280 * 100vw, 2rem);--oc-typo-size-title3: clamp(1.5rem, 28 / 1280 * 100vw, 1.75rem);--oc-typo-size-heading1: clamp(1.375rem, 24 / 1280 * 100vw, 1.5rem);--oc-typo-size-heading2: clamp(1.25rem, 22 / 1280 * 100vw, 1.375rem);--oc-typo-size-headline1: clamp(1.125rem, 20 / 1280 * 100vw, 1.25rem);--oc-typo-size-headline2: clamp(1.0625rem, 18 / 1280 * 100vw, 1.125rem);--oc-typo-size-body1: clamp(1.0625rem, 18 / 1280 * 100vw, 1.125rem);--oc-typo-size-body1reading: clamp(1.0625rem, 18 / 1280 * 100vw, 1.125rem);--oc-typo-size-body2: clamp(1rem, 17 / 1280 * 100vw, 1.0625rem);--oc-typo-size-body2reading: clamp(1rem, 17 / 1280 * 100vw, 1.0625rem);--oc-typo-size-label1: clamp(0.9375rem, 16 / 1280 * 100vw, 1rem);--oc-typo-size-label1reading: clamp(0.9375rem, 16 / 1280 * 100vw, 1rem);--oc-typo-size-label2: clamp(0.875rem, 15 / 1280 * 100vw, 0.9375rem);--oc-typo-size-caption1: clamp(0.8125rem, 14 / 1280 * 100vw, 0.875rem);--oc-typo-size-caption2: clamp(0.75rem, 13 / 1280 * 100vw, 0.8125rem)}}@media screen and (min-width: 1281px){:root{--oc-typo-size-heading1: clamp(1.5rem, 26 / 1600 * 100vw, 1.625rem);--oc-typo-size-heading2: clamp(1.375rem, 24 / 1600 * 100vw, 1.5rem);--oc-typo-size-headline1: clamp(1.25rem, 22 / 1600 * 100vw, 1.375rem);--oc-typo-size-headline2: clamp(1.125rem, 20 / 1600 * 100vw, 1.25rem);--oc-typo-size-body1: clamp(1.125rem, 20 / 1600 * 100vw, 1.25rem);--oc-typo-size-body1reading: clamp(1.125rem, 20 / 1600 * 100vw, 1.25rem);--oc-typo-size-body2: clamp(1.0625rem, 18 / 1600 * 100vw, 1.125rem);--oc-typo-size-body2reading: clamp(1.0625rem, 18 / 1600 * 100vw, 1.125rem);--oc-typo-size-label1: clamp(1rem, 17 / 1600 * 100vw, 1.0625rem);--oc-typo-size-label1reading: clamp(1rem, 17 / 1600 * 100vw, 1.0625rem);--oc-typo-size-label2: clamp(0.9375rem, 16 / 1600 * 100vw, 1rem);--oc-typo-size-caption1: clamp(0.875rem, 15 / 1600 * 100vw, 0.9375rem);--oc-typo-size-caption2: clamp(0.8125rem, 14 / 1600 * 100vw, 0.875rem)}}:root{--oc-typo-height-display1: 3.875rem;--oc-typo-height-display2: 3.25rem;--oc-typo-height-display3: 3rem;--oc-typo-height-title1: 2.75rem;--oc-typo-height-title2: 2.375rem;--oc-typo-height-title3: 2rem;--oc-typo-height-heading1: 1.875rem;--oc-typo-height-heading2: 1.75rem;--oc-typo-height-headline1: 1.625rem;--oc-typo-height-headline2: 1.5rem;--oc-typo-height-body1: 1.5rem;--oc-typo-height-body1reading: 1.625rem;--oc-typo-height-body2: 1.375rem;--oc-typo-height-body2reading: 1.5rem;--oc-typo-height-label1: 1.25rem;--oc-typo-height-label1reading: 1.375rem;--oc-typo-height-label2: 1.125rem;--oc-typo-height-caption1: 1rem;--oc-typo-height-caption2: 0.875rem}@media screen and (max-width: 768px){:root{--oc-typo-height-body1: clamp(1.5rem, 26 / 375 * 100vw, 1.625rem);--oc-typo-height-body1reading: clamp(1.625rem, 28 / 375 * 100vw, 1.75rem);--oc-typo-height-body2: clamp(1.375rem, 24 / 375 * 100vw, 1.5rem);--oc-typo-height-body2reading: clamp(1.5rem, 26 / 375 * 100vw, 1.625rem);--oc-typo-height-label1: clamp(1.25rem, 22 / 375 * 100vw, 1.375rem);--oc-typo-height-label1reading: clamp(1.375rem, 24 / 375 * 100vw, 1.5rem);--oc-typo-height-label2: clamp(1.125rem, 20 / 375 * 100vw, 1.25rem);--oc-typo-height-caption1: clamp(1rem, 18 / 375 * 100vw, 1.125rem);--oc-typo-height-caption2: clamp(0.875rem, 16 / 375 * 100vw, 1rem)}}@media screen and (min-width: 769px){:root{--oc-typo-height-display1: clamp(3.875rem, 82 / 1280 * 100vw, 5.125rem);--oc-typo-height-display2: clamp(3.25rem, 62 / 1280 * 100vw, 3.875rem);--oc-typo-height-display3: clamp(3rem, 52 / 1280 * 100vw, 3.25rem);--oc-typo-height-title1: clamp(2.75rem, 48 / 1280 * 100vw, 3rem);--oc-typo-height-title2: clamp(2.375rem, 42 / 1280 * 100vw, 2.625rem);--oc-typo-height-title3: clamp(2rem, 36 / 1280 * 100vw, 2.25rem);--oc-typo-height-heading1: clamp(1.875rem, 32 / 1280 * 100vw, 2rem);--oc-typo-height-heading2: clamp(1.75rem, 30 / 1280 * 100vw, 1.875rem);--oc-typo-height-headline1: clamp(1.625rem, 28 / 1280 * 100vw, 1.75rem);--oc-typo-height-headline2: clamp(1.5rem, 26 / 1280 * 100vw, 1.625rem);--oc-typo-height-body1: clamp(1.625rem, 28 / 1280 * 100vw, 1.75rem);--oc-typo-height-body1reading: clamp(1.75rem, 30 / 1280 * 100vw, 1.875rem);--oc-typo-height-body2: clamp(1.5rem, 26 / 1280 * 100vw, 1.625rem);--oc-typo-height-body2reading: clamp(1.625rem, 28 / 1280 * 100vw, 1.75rem);--oc-typo-height-label1: clamp(1.375rem, 24 / 1280 * 100vw, 1.5rem);--oc-typo-height-label1reading: clamp(1.5rem, 26 / 1280 * 100vw, 1.625rem);--oc-typo-height-label2: clamp(1.25rem, 22 / 1280 * 100vw, 1.375rem);--oc-typo-height-caption1: clamp(1.125rem, 20 / 1280 * 100vw, 1.25rem);--oc-typo-height-caption2: clamp(1rem, 18 / 1280 * 100vw, 1.125rem)}}@media screen and (min-width: 1281px){:root{--oc-typo-height-heading1: clamp(2rem, 34 / 1600 * 100vw, 2.125rem);--oc-typo-height-heading2: clamp(1.875rem, 32 / 1600 * 100vw, 2rem);--oc-typo-height-headline1: clamp(1.75rem, 30 / 1600 * 100vw, 1.875rem);--oc-typo-height-headline2: clamp(1.625rem, 28 / 1600 * 100vw, 1.75rem);--oc-typo-height-body1: clamp(1.75rem, 30 / 1600 * 100vw, 1.875rem);--oc-typo-height-body1reading: clamp(1.875rem, 32 / 1600 * 100vw, 2rem);--oc-typo-height-body2: clamp(1.625rem, 28 / 1600 * 100vw, 1.75rem);--oc-typo-height-body2reading: clamp(1.75rem, 30 / 1600 * 100vw, 1.875rem);--oc-typo-height-label1: clamp(1.5rem, 26 / 1600 * 100vw, 1.625rem);--oc-typo-height-label1reading: clamp(1.625rem, 28 / 1600 * 100vw, 1.75rem);--oc-typo-height-label2: clamp(1.375rem, 24 / 1600 * 100vw, 1.5rem);--oc-typo-height-caption1: clamp(1.25rem, 22 / 1600 * 100vw, 1.375rem);--oc-typo-height-caption2: clamp(1.125rem, 20 / 1600 * 100vw, 1.25rem)}}:root{--oc-typo-spacing-display1: 0em;--oc-typo-spacing-display2: 0em;--oc-typo-spacing-display3: 0em;--oc-typo-spacing-title1: 0em;--oc-typo-spacing-title2: 0em;--oc-typo-spacing-title3: 0em;--oc-typo-spacing-heading1: 0em;--oc-typo-spacing-heading2: 0em;--oc-typo-spacing-headline1: 0em;--oc-typo-spacing-headline2: 0em;--oc-typo-spacing-body1: 0em;--oc-typo-spacing-body1reading: 0em;--oc-typo-spacing-body2: 0em;--oc-typo-spacing-body2reading: 0em;--oc-typo-spacing-label1: 0.01em;--oc-typo-spacing-label1reading: 0.01em;--oc-typo-spacing-label2: 0.01em;--oc-typo-spacing-caption1: 0.01em;--oc-typo-spacing-caption2: 0.01em;--oc-typo-weight-display1-normal: 400;--oc-typo-weight-display1-medium: 500;--oc-typo-weight-display1-bold: 700;--oc-typo-weight-display2-normal: 400;--oc-typo-weight-display2-medium: 500;--oc-typo-weight-display2-bold: 700;--oc-typo-weight-display3-normal: 400;--oc-typo-weight-display3-medium: 500;--oc-typo-weight-display3-bold: 700;--oc-typo-weight-title1-normal: 400;--oc-typo-weight-title1-medium: 500;--oc-typo-weight-title1-bold: 700;--oc-typo-weight-title2-normal: 400;--oc-typo-weight-title2-medium: 500;--oc-typo-weight-title2-bold: 700;--oc-typo-weight-title3-normal: 400;--oc-typo-weight-title3-medium: 500;--oc-typo-weight-title3-bold: 700;--oc-typo-weight-heading1-normal: 400;--oc-typo-weight-heading1-medium: 500;--oc-typo-weight-heading1-bold: 600;--oc-typo-weight-heading2-normal: 400;--oc-typo-weight-heading2-medium: 500;--oc-typo-weight-heading2-bold: 600;--oc-typo-weight-headline1-normal: 400;--oc-typo-weight-headline1-medium: 500;--oc-typo-weight-headline1-bold: 600;--oc-typo-weight-headline2-normal: 400;--oc-typo-weight-headline2-medium: 500;--oc-typo-weight-headline2-bold: 600;--oc-typo-weight-body1-normal: 400;--oc-typo-weight-body1-medium: 500;--oc-typo-weight-body1-bold: 600;--oc-typo-weight-body1reading-normal: 400;--oc-typo-weight-body1reading-medium: 500;--oc-typo-weight-body1reading-bold: 600;--oc-typo-weight-body2-normal: 400;--oc-typo-weight-body2-medium: 500;--oc-typo-weight-body2-bold: 600;--oc-typo-weight-body2reading-normal: 400;--oc-typo-weight-body2reading-medium: 500;--oc-typo-weight-body2reading-bold: 600;--oc-typo-weight-label1-normal: 400;--oc-typo-weight-label1-medium: 500;--oc-typo-weight-label1-bold: 550;--oc-typo-weight-label1reading-normal: 400;--oc-typo-weight-label1reading-medium: 500;--oc-typo-weight-label1reading-bold: 550;--oc-typo-weight-label2-normal: 400;--oc-typo-weight-label2-medium: 500;--oc-typo-weight-label2-bold: 550;--oc-typo-weight-caption1-normal: 400;--oc-typo-weight-caption1-medium: 500;--oc-typo-weight-caption1-bold: 540;--oc-typo-weight-caption2-normal: 400;--oc-typo-weight-caption2-medium: 500;--oc-typo-weight-caption2-bold: 530}
6
- :root{--oc-space-section-padding-viewport: var(--oc-space-section-padding-viewport-y) var(--oc-space-section-padding-viewport-x);--oc-space-section-padding-viewport-x-safe-left: max(var(--oc-space-section-padding-viewport-x), env(safe-area-inset-left));--oc-space-section-padding-viewport-x-safe-right: max(var(--oc-space-section-padding-viewport-x), env(safe-area-inset-right));--oc-space-section-padding-viewport-y-safe-top: max(var(--oc-space-section-padding-viewport-y), env(safe-area-inset-top));--oc-space-section-padding-viewport-y-safe-bottom: max(var(--oc-space-section-padding-viewport-y), env(safe-area-inset-bottom));--oc-space-section-padding-viewport-x: 1rem;--oc-space-section-padding-viewport-y: 1rem;--oc-space-section-gap-section: 3rem;--oc-space-section-gap-xlarge: 2.5rem;--oc-space-section-gap-large: 2rem;--oc-space-section-gap-medium: 1.25rem;--oc-space-item-padding-large: 1.5rem;--oc-space-item-padding-medium: 1.25rem;--oc-space-item-padding-small: 1rem;--oc-space-item-padding-xsmall: 0.75rem;--oc-space-item-padding-mini: 0.5rem;--oc-space-item-padding-tiny: 0.375rem;--oc-space-item-padding-micro: 0.25rem;--oc-space-item-padding-nano: 0.25rem;--oc-space-item-padding-atom: 0.125rem;--oc-space-item-gap-huge: 1.5rem;--oc-space-item-gap-xlarge: 1.25rem;--oc-space-item-gap-large: 1.125rem;--oc-space-item-gap-medium: 1rem;--oc-space-item-gap-small: 0.75rem;--oc-space-item-gap-xsmall: 0.625rem;--oc-space-item-gap-mini: 0.5rem;--oc-space-item-gap-tiny: 0.375rem;--oc-space-item-gap-micro: 0.25rem;--oc-space-item-gap-nano: 0.25rem;--oc-space-item-gap-atom: 0.125rem}@media screen and (max-width: 768px){:root{--oc-space-section-padding-viewport-x: clamp(1.5rem, 32 / 768 * 100vw, 2rem);--oc-space-section-padding-viewport-y: clamp(1rem, 24 / 768 * 100vw, 1.5rem);--oc-space-section-gap-section: clamp(3rem, 72 / 768 * 100vw, 4.5rem);--oc-space-section-gap-xlarge: clamp(2.5rem, 52 / 768 * 100vw, 3.25rem);--oc-space-section-gap-large: clamp(2rem, 40 / 768 * 100vw, 2.5rem);--oc-space-section-gap-medium: clamp(1.25rem, 26 / 768 * 100vw, 1.625rem);--oc-space-item-padding-large: clamp(1.5rem, 28 / 768 * 100vw, 1.75rem);--oc-space-item-padding-medium: clamp(1.25rem, 24 / 768 * 100vw, 1.5rem);--oc-space-item-padding-small: clamp(1rem, 20 / 768 * 100vw, 1.25rem);--oc-space-item-padding-xsmall: clamp(0.75rem, 14 / 768 * 100vw, 0.875rem);--oc-space-item-padding-mini: clamp(0.5rem, 10 / 768 * 100vw, 0.625rem);--oc-space-item-padding-tiny: clamp(0.375rem, 8 / 768 * 100vw, 0.5rem);--oc-space-item-padding-micro: clamp(0.25rem, 6 / 768 * 100vw, 0.375rem);--oc-space-item-gap-huge: clamp(1.5rem, 32 / 768 * 100vw, 2rem);--oc-space-item-gap-xlarge: clamp(1.25rem, 26 / 768 * 100vw, 1.625rem);--oc-space-item-gap-large: clamp(1.125rem, 22 / 768 * 100vw, 1.375rem);--oc-space-item-gap-medium: clamp(1rem, 18 / 768 * 100vw, 1.125rem);--oc-space-item-gap-small: clamp(0.75rem, 14 / 768 * 100vw, 0.875rem);--oc-space-item-gap-xsmall: clamp(0.625rem, 12 / 768 * 100vw, 0.75rem);--oc-space-item-gap-mini: clamp(0.5rem, 10 / 768 * 100vw, 0.625rem);--oc-space-item-gap-tiny: clamp(0.375rem, 8 / 768 * 100vw, 0.5rem);--oc-space-item-gap-micro: clamp(0.25rem, 6 / 768 * 100vw, 0.375rem)}}@media screen and (max-width: 480px){:root{--oc-space-section-padding-viewport-x: clamp(1rem, 24 / 480 * 100vw, 1.5rem)}}@media screen and (min-width: 769px){:root{--oc-space-section-padding-viewport-x: clamp(2rem, 32 / 768 * 100vw, 3rem);--oc-space-section-padding-viewport-y: clamp(1.5rem, 24 / 768 * 100vw, 2rem);--oc-space-section-gap-section: clamp(4.5rem, 96 / 1600 * 100vw, 6rem);--oc-space-section-gap-xlarge: clamp(3.25rem, 64 / 1600 * 100vw, 4rem);--oc-space-section-gap-large: clamp(2.5rem, 48 / 1600 * 100vw, 3rem);--oc-space-section-gap-medium: clamp(1.625rem, 32 / 1600 * 100vw, 2rem);--oc-space-item-padding-large: clamp(1.75rem, 32 / 1600 * 100vw, 2rem);--oc-space-item-padding-medium: clamp(1.5rem, 28 / 1600 * 100vw, 1.75rem);--oc-space-item-padding-small: clamp(1.25rem, 24 / 1600 * 100vw, 1.5rem);--oc-space-item-padding-xsmall: clamp(0.875rem, 16 / 1600 * 100vw, 1rem);--oc-space-item-padding-mini: clamp(0.625rem, 12 / 1600 * 100vw, 0.75rem);--oc-space-item-padding-tiny: 0.5rem;--oc-space-item-padding-micro: 0.375rem;--oc-space-item-gap-huge: clamp(2rem, 40 / 1600 * 100vw, 2.5rem);--oc-space-item-gap-xlarge: clamp(1.625rem, 32 / 1600 * 100vw, 2rem);--oc-space-item-gap-large: clamp(1.375rem, 24 / 1600 * 100vw, 1.5rem);--oc-space-item-gap-medium: clamp(1.125rem, 20 / 1600 * 100vw, 1.25rem);--oc-space-item-gap-small: clamp(0.875rem, 16 / 1600 * 100vw, 1rem);--oc-space-item-gap-xsmall: 0.75rem;--oc-space-item-gap-mini: 0.625rem;--oc-space-item-gap-tiny: 0.5rem;--oc-space-item-gap-micro: 0.375rem}}@media screen and (min-width: 1921px){:root{--oc-space-section-padding-viewport-x: clamp(3rem, 48 / 1920 * 100vw, 4rem);--oc-space-section-padding-viewport-y: clamp(2rem, 32 / 1920 * 100vw, 2.6666666667rem)}}
6
+ :root{--oc-space-section-padding-viewport: var(--oc-space-section-padding-viewport-y) var(--oc-space-section-padding-viewport-x);--oc-space-section-padding-viewport-inline-safe-start: max(var(--oc-space-section-padding-viewport-x), env(safe-area-inset-left, 0px));--oc-space-section-padding-viewport-inline-safe-end: max(var(--oc-space-section-padding-viewport-x), env(safe-area-inset-right, 0px));--oc-space-section-padding-viewport-block-safe-start: max(var(--oc-space-section-padding-viewport-y), env(safe-area-inset-top, 0px));--oc-space-section-padding-viewport-block-safe-end: max(var(--oc-space-section-padding-viewport-y), env(safe-area-inset-bottom, 0px));--oc-space-section-padding-viewport-x: 1rem;--oc-space-section-padding-viewport-y: 1rem;--oc-space-section-gap-section: 3rem;--oc-space-section-gap-xlarge: 2.5rem;--oc-space-section-gap-large: 2rem;--oc-space-section-gap-medium: 1.25rem;--oc-space-item-padding-large: 1.5rem;--oc-space-item-padding-medium: 1.25rem;--oc-space-item-padding-small: 1rem;--oc-space-item-padding-xsmall: 0.75rem;--oc-space-item-padding-mini: 0.5rem;--oc-space-item-padding-tiny: 0.375rem;--oc-space-item-padding-micro: 0.25rem;--oc-space-item-padding-nano: 0.25rem;--oc-space-item-padding-atom: 0.125rem;--oc-space-item-gap-huge: 1.5rem;--oc-space-item-gap-xlarge: 1.25rem;--oc-space-item-gap-large: 1.125rem;--oc-space-item-gap-medium: 1rem;--oc-space-item-gap-small: 0.75rem;--oc-space-item-gap-xsmall: 0.625rem;--oc-space-item-gap-mini: 0.5rem;--oc-space-item-gap-tiny: 0.375rem;--oc-space-item-gap-micro: 0.25rem;--oc-space-item-gap-nano: 0.25rem;--oc-space-item-gap-atom: 0.125rem}@media screen and (max-width: 768px){:root{--oc-space-section-padding-viewport-x: clamp(1.5rem, 32 / 768 * 100vw, 2rem);--oc-space-section-padding-viewport-y: clamp(1rem, 24 / 768 * 100vw, 1.5rem);--oc-space-section-gap-section: clamp(3rem, 72 / 768 * 100vw, 4.5rem);--oc-space-section-gap-xlarge: clamp(2.5rem, 52 / 768 * 100vw, 3.25rem);--oc-space-section-gap-large: clamp(2rem, 40 / 768 * 100vw, 2.5rem);--oc-space-section-gap-medium: clamp(1.25rem, 26 / 768 * 100vw, 1.625rem);--oc-space-item-padding-large: clamp(1.5rem, 28 / 768 * 100vw, 1.75rem);--oc-space-item-padding-medium: clamp(1.25rem, 24 / 768 * 100vw, 1.5rem);--oc-space-item-padding-small: clamp(1rem, 20 / 768 * 100vw, 1.25rem);--oc-space-item-padding-xsmall: clamp(0.75rem, 14 / 768 * 100vw, 0.875rem);--oc-space-item-padding-mini: clamp(0.5rem, 10 / 768 * 100vw, 0.625rem);--oc-space-item-padding-tiny: clamp(0.375rem, 8 / 768 * 100vw, 0.5rem);--oc-space-item-padding-micro: clamp(0.25rem, 6 / 768 * 100vw, 0.375rem);--oc-space-item-gap-huge: clamp(1.5rem, 32 / 768 * 100vw, 2rem);--oc-space-item-gap-xlarge: clamp(1.25rem, 26 / 768 * 100vw, 1.625rem);--oc-space-item-gap-large: clamp(1.125rem, 22 / 768 * 100vw, 1.375rem);--oc-space-item-gap-medium: clamp(1rem, 18 / 768 * 100vw, 1.125rem);--oc-space-item-gap-small: clamp(0.75rem, 14 / 768 * 100vw, 0.875rem);--oc-space-item-gap-xsmall: clamp(0.625rem, 12 / 768 * 100vw, 0.75rem);--oc-space-item-gap-mini: clamp(0.5rem, 10 / 768 * 100vw, 0.625rem);--oc-space-item-gap-tiny: clamp(0.375rem, 8 / 768 * 100vw, 0.5rem);--oc-space-item-gap-micro: clamp(0.25rem, 6 / 768 * 100vw, 0.375rem)}}@media screen and (max-width: 480px){:root{--oc-space-section-padding-viewport-x: clamp(1rem, 24 / 480 * 100vw, 1.5rem)}}@media screen and (min-width: 769px){:root{--oc-space-section-padding-viewport-x: clamp(2rem, 32 / 768 * 100vw, 3rem);--oc-space-section-padding-viewport-y: clamp(1.5rem, 24 / 768 * 100vw, 2rem);--oc-space-section-gap-section: clamp(4.5rem, 96 / 1600 * 100vw, 6rem);--oc-space-section-gap-xlarge: clamp(3.25rem, 64 / 1600 * 100vw, 4rem);--oc-space-section-gap-large: clamp(2.5rem, 48 / 1600 * 100vw, 3rem);--oc-space-section-gap-medium: clamp(1.625rem, 32 / 1600 * 100vw, 2rem);--oc-space-item-padding-large: clamp(1.75rem, 32 / 1600 * 100vw, 2rem);--oc-space-item-padding-medium: clamp(1.5rem, 28 / 1600 * 100vw, 1.75rem);--oc-space-item-padding-small: clamp(1.25rem, 24 / 1600 * 100vw, 1.5rem);--oc-space-item-padding-xsmall: clamp(0.875rem, 16 / 1600 * 100vw, 1rem);--oc-space-item-padding-mini: clamp(0.625rem, 12 / 1600 * 100vw, 0.75rem);--oc-space-item-padding-tiny: 0.5rem;--oc-space-item-padding-micro: 0.375rem;--oc-space-item-gap-huge: clamp(2rem, 40 / 1600 * 100vw, 2.5rem);--oc-space-item-gap-xlarge: clamp(1.625rem, 32 / 1600 * 100vw, 2rem);--oc-space-item-gap-large: clamp(1.375rem, 24 / 1600 * 100vw, 1.5rem);--oc-space-item-gap-medium: clamp(1.125rem, 20 / 1600 * 100vw, 1.25rem);--oc-space-item-gap-small: clamp(0.875rem, 16 / 1600 * 100vw, 1rem);--oc-space-item-gap-xsmall: 0.75rem;--oc-space-item-gap-mini: 0.625rem;--oc-space-item-gap-tiny: 0.5rem;--oc-space-item-gap-micro: 0.375rem}}@media screen and (min-width: 1921px){:root{--oc-space-section-padding-viewport-x: clamp(3rem, 48 / 1920 * 100vw, 4rem);--oc-space-section-padding-viewport-y: clamp(2rem, 32 / 1920 * 100vw, 2.6666666667rem)}}:root:dir(rtl){--oc-space-section-padding-viewport-inline-safe-start: max(var(--oc-space-section-padding-viewport-x), env(safe-area-inset-right, 0px));--oc-space-section-padding-viewport-inline-safe-end: max(var(--oc-space-section-padding-viewport-x), env(safe-area-inset-left, 0px))}
7
7
  :root{--oc-atomic-radius-factor: 1;--oc-atomic-radius-max: max(0px, 10000px * var(--oc-atomic-radius-factor));--oc-atomic-radius-huge: max(0px, clamp(1.5rem, 24 / 768 * 100vw, 4rem) * var(--oc-atomic-radius-factor));--oc-atomic-radius-xlarge: max(0px, clamp(0.75rem, 12 / 768 * 100vw, 2rem) * var(--oc-atomic-radius-factor));--oc-atomic-radius-large: max(0px, clamp(0.75rem, 12 / 768 * 100vw, 1.5rem) * var(--oc-atomic-radius-factor));--oc-atomic-radius-medium: max(0px, clamp(0.75rem, 12 / 768 * 100vw, 1rem) * var(--oc-atomic-radius-factor));--oc-atomic-radius-small: max(0px, clamp(0.625rem, 10 / 768 * 100vw, 0.75rem) * var(--oc-atomic-radius-factor));--oc-atomic-radius-xsmall: max(0px, clamp(0.5rem, 8 / 768 * 100vw, 0.625rem) * var(--oc-atomic-radius-factor));--oc-atomic-radius-mini: max(0px, clamp(0.375rem, 6 / 768 * 100vw, 0.5rem) * var(--oc-atomic-radius-factor));--oc-atomic-radius-tiny: max(0px, clamp(0.25rem, 4 / 768 * 100vw, 0.375rem) * var(--oc-atomic-radius-factor));--oc-atomic-radius-micro: max(0px, 0.25rem * var(--oc-atomic-radius-factor));--oc-atomic-width-content: 35em;--oc-atomic-width-section-large: 60rem;--oc-atomic-width-section-medium: 48rem;--oc-atomic-width-section-small: 30rem;--oc-atomic-width-section-xsmall: 24rem;--oc-atomic-blur-normal: 64px;--oc-atomic-blur-compact: 28px;--oc-atomic-shadow-normal-xsmall: 0 1px 4px -1px color-mix(in srgb, var(--oc-color-global-coolNeutral-10), transparent calc(100% - (100% * 0.06)));--oc-atomic-shadow-normal-small: 0 2px 6px -1px color-mix(in srgb, var(--oc-color-global-coolNeutral-10), transparent calc(100% - (100% * var(--oc-color-global-opacity-8))));--oc-atomic-shadow-normal-medium: 0 4px 12px -2px color-mix(in srgb, var(--oc-color-global-coolNeutral-10), transparent calc(100% - (100% * var(--oc-color-global-opacity-8))));--oc-atomic-shadow-normal-large: 0 6px 18px -2px color-mix(in srgb, var(--oc-color-global-coolNeutral-10), transparent calc(100% - (100% * var(--oc-color-global-opacity-8))));--oc-atomic-shadow-normal-xlarge: 0 12px 32px -4px color-mix(in srgb, var(--oc-color-global-coolNeutral-10), transparent calc(100% - (100% * var(--oc-color-global-opacity-12))));--oc-atomic-shadow-spread-small: 0 0 32px -2px color-mix(in srgb, var(--oc-color-global-coolNeutral-10), transparent calc(100% - (100% * 0.06)));--oc-atomic-shadow-spread-xlarge: 0 12px 160px -4px color-mix(in srgb, var(--oc-color-global-coolNeutral-10), transparent calc(100% - (100% * 0.1)))}
8
- :root{--oc-motion-duration-factor: 1;--oc-motion-duration-factor-reduced: 0.75;--oc-motion-duration-factor-preserve: 1;--oc-motion-scale-factor: 1;--oc-motion-scale-factor-feedback: var(--oc-motion-scale-factor);--oc-motion-scale-factor-spatial: var(--oc-motion-scale-factor);--oc-motion-distance-factor: 1;--oc-motion-distance-factor-reject: var(--oc-motion-distance-factor);--oc-motion-distance-factor-spatial: var(--oc-motion-distance-factor);--oc-motion-pace-quick: 0.75;--oc-motion-pace-normal: 1;--oc-motion-pace-slow: 1.35;--oc-motion-duration-feedback: 0.2s;--oc-motion-duration-fade: 0.2s;--oc-motion-duration-reject: 0.598s;--oc-motion-duration-disclosure: 0.2s;--oc-motion-duration-disclosure-exit: 0.14s;--oc-motion-duration-surface: 0.26s;--oc-motion-duration-surface-exit: 0.24s;--oc-motion-duration-sheet: 0.26s;--oc-motion-duration-sheet-exit: 0.33s;--oc-motion-duration-sheet-release: 0.33s;--oc-motion-duration-expand: 0.3s;--oc-motion-duration-expand-exit: 0.24s;--oc-motion-duration-move: 0.3s;--oc-motion-duration-gesture: 0.2s;--oc-motion-duration-gesture-release: 0.52s;--oc-motion-duration-ambient: 1.2s;--oc-motion-timing-feedback: ease;--oc-motion-timing-fade: ease;--oc-motion-timing-reject: linear(0 0%, 0.0149 1.56%, 0.0529 3.13%, 0.1059 4.69%, 0.1677 6.25%, 0.2339 7.81%, 0.3013 9.38%, 0.3676 10.94%, 0.4313 12.5%, 0.4914 14.06%, 0.5474 15.63%, 0.5989 17.19%, 0.6458 18.75%, 0.6883 20.31%, 0.7265 21.88%, 0.7606 23.44%, 0.791 25%, 0.8179 26.56%, 0.8417 28.13%, 0.8626 29.69%, 0.881 31.25%, 0.897 32.81%, 0.911 34.38%, 0.9233 35.94%, 0.9339 37.5%, 0.9431 39.06%, 0.9511 40.63%, 0.958 42.19%, 0.9639 43.75%, 0.9691 45.31%, 0.9735 46.88%, 0.9773 48.44%, 0.9806 50%, 0.9834 51.56%, 0.9859 53.13%, 0.9879 54.69%, 0.9897 56.25%, 0.9912 57.81%, 0.9925 59.38%, 0.9936 60.94%, 0.9946 62.5%, 0.9954 64.06%, 0.9961 65.63%, 0.9967 67.19%, 0.9972 68.75%, 0.9976 70.31%, 0.998 71.88%, 0.9983 73.44%, 0.9985 75%, 0.9988 76.56%, 0.9989 78.13%, 0.9991 79.69%, 0.9992 81.25%, 0.9994 82.81%, 0.9995 84.38%, 0.9995 85.94%, 0.9996 87.5%, 0.9997 89.06%, 0.9997 90.63%, 0.9998 92.19%, 0.9998 93.75%, 0.9998 95.31%, 0.9999 96.88%, 0.9999 98.44%, 1 100%);--oc-motion-timing-disclosure: ease;--oc-motion-timing-disclosure-exit: cubic-bezier(0.8, 0, 1, 1);--oc-motion-timing-surface: ease;--oc-motion-timing-surface-exit: ease-in;--oc-motion-timing-sheet: ease;--oc-motion-timing-sheet-exit: ease-in;--oc-motion-timing-sheet-release: ease;--oc-motion-timing-expand: ease;--oc-motion-timing-expand-exit: ease-in;--oc-motion-timing-move: cubic-bezier(0.32, 0.72, 0, 1);--oc-motion-timing-gesture: ease;--oc-motion-timing-gesture-release: cubic-bezier(0.32, 0.72, 0, 1);--oc-motion-timing-ambient: linear;--oc-spring-smooth-timing: linear(0 0%, 0.0149 1.56%, 0.053 3.13%, 0.106 4.69%, 0.1678 6.25%, 0.2341 7.81%, 0.3015 9.38%, 0.3679 10.94%, 0.4316 12.5%, 0.4918 14.06%, 0.5477 15.63%, 0.5992 17.19%, 0.6462 18.75%, 0.6886 20.31%, 0.7268 21.88%, 0.7609 23.44%, 0.7913 25%, 0.8182 26.56%, 0.842 28.13%, 0.8629 29.69%, 0.8812 31.25%, 0.8972 32.81%, 0.9112 34.38%, 0.9234 35.94%, 0.934 37.5%, 0.9432 39.06%, 0.9512 40.63%, 0.9581 42.19%, 0.964 43.75%, 0.9692 45.31%, 0.9736 46.88%, 0.9774 48.44%, 0.9807 50%, 0.9835 51.56%, 0.9859 53.13%, 0.988 54.69%, 0.9897 56.25%, 0.9913 57.81%, 0.9926 59.38%, 0.9937 60.94%, 0.9946 62.5%, 0.9954 64.06%, 0.9961 65.63%, 0.9967 67.19%, 0.9972 68.75%, 0.9976 70.31%, 0.998 71.88%, 0.9983 73.44%, 0.9985 75%, 0.9988 76.56%, 0.999 78.13%, 0.9991 79.69%, 0.9992 81.25%, 0.9994 82.81%, 0.9995 84.38%, 0.9995 85.94%, 0.9996 87.5%, 0.9997 89.06%, 0.9997 90.63%, 0.9998 92.19%, 0.9998 93.75%, 0.9998 95.31%, 0.9999 96.88%, 0.9999 98.44%, 1 100%);--oc-spring-smooth-duration-scale: 1.87;--oc-spring-snappy-timing: linear(0 0%, 0.0117 1.56%, 0.0427 3.13%, 0.0878 4.69%, 0.1425 6.25%, 0.2034 7.81%, 0.2676 9.38%, 0.3329 10.94%, 0.3975 12.5%, 0.4603 14.06%, 0.5202 15.63%, 0.5765 17.19%, 0.6289 18.75%, 0.6771 20.31%, 0.7211 21.88%, 0.7608 23.44%, 0.7964 25%, 0.8281 26.56%, 0.8561 28.13%, 0.8807 29.69%, 0.902 31.25%, 0.9205 32.81%, 0.9363 34.38%, 0.9498 35.94%, 0.9612 37.5%, 0.9708 39.06%, 0.9787 40.63%, 0.9853 42.19%, 0.9905 43.75%, 0.9948 45.31%, 0.9981 46.88%, 1.0007 48.44%, 1.0027 50%, 1.0041 51.56%, 1.0051 53.13%, 1.0058 54.69%, 1.0061 56.25%, 1.0063 57.81%, 1.0062 59.38%, 1.0061 60.94%, 1.0058 62.5%, 1.0055 64.06%, 1.0051 65.63%, 1.0047 67.19%, 1.0043 68.75%, 1.0039 70.31%, 1.0035 71.88%, 1.0031 73.44%, 1.0028 75%, 1.0024 76.56%, 1.0021 78.13%, 1.0018 79.69%, 1.0016 81.25%, 1.0013 82.81%, 1.0011 84.38%, 1.0009 85.94%, 1.0008 87.5%, 1.0007 89.06%, 1.0005 90.63%, 1.0004 92.19%, 1.0003 93.75%, 1.0003 95.31%, 1.0002 96.88%, 1.0001 98.44%, 1 100%);--oc-spring-snappy-duration-scale: 1.63;--oc-spring-bouncy-timing: linear(0 0%, 0.0154 1.56%, 0.0563 3.13%, 0.1157 4.69%, 0.1878 6.25%, 0.2675 7.81%, 0.3508 9.38%, 0.4343 10.94%, 0.5157 12.5%, 0.5929 14.06%, 0.6647 15.63%, 0.7301 17.19%, 0.7887 18.75%, 0.8403 20.31%, 0.8849 21.88%, 0.9228 23.44%, 0.9545 25%, 0.9803 26.56%, 1.0009 28.13%, 1.0168 29.69%, 1.0286 31.25%, 1.0369 32.81%, 1.0422 34.38%, 1.0451 35.94%, 1.046 37.5%, 1.0453 39.06%, 1.0435 40.63%, 1.0408 42.19%, 1.0375 43.75%, 1.0338 45.31%, 1.03 46.88%, 1.0262 48.44%, 1.0224 50%, 1.0189 51.56%, 1.0155 53.13%, 1.0125 54.69%, 1.0098 56.25%, 1.0074 57.81%, 1.0054 59.38%, 1.0036 60.94%, 1.0021 62.5%, 1.0009 64.06%, 1 65.63%, 0.9993 67.19%, 0.9987 68.75%, 0.9983 70.31%, 0.9981 71.88%, 0.9979 73.44%, 0.9979 75%, 0.9979 76.56%, 0.998 78.13%, 0.9981 79.69%, 0.9983 81.25%, 0.9984 82.81%, 0.9986 84.38%, 0.9988 85.94%, 0.999 87.5%, 0.9991 89.06%, 0.9993 90.63%, 0.9994 92.19%, 0.9995 93.75%, 0.9997 95.31%, 0.9997 96.88%, 0.9998 98.44%, 1 100%);--oc-spring-bouncy-duration-scale: 1.864}@media(prefers-reduced-motion: reduce){:root{--oc-motion-duration-factor: var(--oc-motion-duration-factor-reduced)}}
8
+ :root{--oc-motion-duration-factor: 1;--oc-motion-duration-factor-reduced: 0.75;--oc-motion-duration-factor-preserve: 1;--oc-motion-scale-factor: 1;--oc-motion-scale-factor-feedback: var(--oc-motion-scale-factor);--oc-motion-scale-factor-spatial: var(--oc-motion-scale-factor);--oc-motion-distance-factor: 1;--oc-motion-distance-factor-reject: var(--oc-motion-distance-factor);--oc-motion-distance-factor-spatial: var(--oc-motion-distance-factor);--oc-motion-pace-quick: 0.75;--oc-motion-pace-normal: 1;--oc-motion-pace-slow: 1.35;--oc-motion-duration-feedback: 0.2s;--oc-motion-duration-fade: 0.2s;--oc-motion-duration-reject: 0.598s;--oc-motion-duration-disclosure: 0.2s;--oc-motion-duration-disclosure-exit: 0.14s;--oc-motion-duration-surface: 0.26s;--oc-motion-duration-surface-exit: 0.24s;--oc-motion-duration-sheet: 0.26s;--oc-motion-duration-sheet-exit: 0.33s;--oc-motion-duration-sheet-release: 0.33s;--oc-motion-duration-expand: 0.3s;--oc-motion-duration-expand-exit: 0.24s;--oc-motion-duration-move: 0.3s;--oc-motion-duration-gesture: 0.2s;--oc-motion-duration-gesture-release: 0.52s;--oc-motion-duration-ambient: 1.2s;--oc-motion-duration-continuous: 2.2s;--oc-motion-timing-feedback: ease;--oc-motion-timing-fade: ease;--oc-motion-timing-reject: linear(0 0%, 0.0149 1.56%, 0.0529 3.13%, 0.1059 4.69%, 0.1677 6.25%, 0.2339 7.81%, 0.3013 9.38%, 0.3676 10.94%, 0.4313 12.5%, 0.4914 14.06%, 0.5474 15.63%, 0.5989 17.19%, 0.6458 18.75%, 0.6883 20.31%, 0.7265 21.88%, 0.7606 23.44%, 0.791 25%, 0.8179 26.56%, 0.8417 28.13%, 0.8626 29.69%, 0.881 31.25%, 0.897 32.81%, 0.911 34.38%, 0.9233 35.94%, 0.9339 37.5%, 0.9431 39.06%, 0.9511 40.63%, 0.958 42.19%, 0.9639 43.75%, 0.9691 45.31%, 0.9735 46.88%, 0.9773 48.44%, 0.9806 50%, 0.9834 51.56%, 0.9859 53.13%, 0.9879 54.69%, 0.9897 56.25%, 0.9912 57.81%, 0.9925 59.38%, 0.9936 60.94%, 0.9946 62.5%, 0.9954 64.06%, 0.9961 65.63%, 0.9967 67.19%, 0.9972 68.75%, 0.9976 70.31%, 0.998 71.88%, 0.9983 73.44%, 0.9985 75%, 0.9988 76.56%, 0.9989 78.13%, 0.9991 79.69%, 0.9992 81.25%, 0.9994 82.81%, 0.9995 84.38%, 0.9995 85.94%, 0.9996 87.5%, 0.9997 89.06%, 0.9997 90.63%, 0.9998 92.19%, 0.9998 93.75%, 0.9998 95.31%, 0.9999 96.88%, 0.9999 98.44%, 1 100%);--oc-motion-timing-disclosure: ease;--oc-motion-timing-disclosure-exit: cubic-bezier(0.8, 0, 1, 1);--oc-motion-timing-surface: ease;--oc-motion-timing-surface-exit: ease-in;--oc-motion-timing-sheet: ease;--oc-motion-timing-sheet-exit: ease-in;--oc-motion-timing-sheet-release: ease;--oc-motion-timing-expand: ease;--oc-motion-timing-expand-exit: ease-in;--oc-motion-timing-move: cubic-bezier(0.32, 0.72, 0, 1);--oc-motion-timing-gesture: ease;--oc-motion-timing-gesture-release: cubic-bezier(0.32, 0.72, 0, 1);--oc-motion-timing-ambient: ease-in-out;--oc-motion-timing-continuous: linear;--oc-spring-smooth-timing: linear(0 0%, 0.0149 1.56%, 0.053 3.13%, 0.106 4.69%, 0.1678 6.25%, 0.2341 7.81%, 0.3015 9.38%, 0.3679 10.94%, 0.4316 12.5%, 0.4918 14.06%, 0.5477 15.63%, 0.5992 17.19%, 0.6462 18.75%, 0.6886 20.31%, 0.7268 21.88%, 0.7609 23.44%, 0.7913 25%, 0.8182 26.56%, 0.842 28.13%, 0.8629 29.69%, 0.8812 31.25%, 0.8972 32.81%, 0.9112 34.38%, 0.9234 35.94%, 0.934 37.5%, 0.9432 39.06%, 0.9512 40.63%, 0.9581 42.19%, 0.964 43.75%, 0.9692 45.31%, 0.9736 46.88%, 0.9774 48.44%, 0.9807 50%, 0.9835 51.56%, 0.9859 53.13%, 0.988 54.69%, 0.9897 56.25%, 0.9913 57.81%, 0.9926 59.38%, 0.9937 60.94%, 0.9946 62.5%, 0.9954 64.06%, 0.9961 65.63%, 0.9967 67.19%, 0.9972 68.75%, 0.9976 70.31%, 0.998 71.88%, 0.9983 73.44%, 0.9985 75%, 0.9988 76.56%, 0.999 78.13%, 0.9991 79.69%, 0.9992 81.25%, 0.9994 82.81%, 0.9995 84.38%, 0.9995 85.94%, 0.9996 87.5%, 0.9997 89.06%, 0.9997 90.63%, 0.9998 92.19%, 0.9998 93.75%, 0.9998 95.31%, 0.9999 96.88%, 0.9999 98.44%, 1 100%);--oc-spring-smooth-duration-scale: 1.87;--oc-spring-snappy-timing: linear(0 0%, 0.0117 1.56%, 0.0427 3.13%, 0.0878 4.69%, 0.1425 6.25%, 0.2034 7.81%, 0.2676 9.38%, 0.3329 10.94%, 0.3975 12.5%, 0.4603 14.06%, 0.5202 15.63%, 0.5765 17.19%, 0.6289 18.75%, 0.6771 20.31%, 0.7211 21.88%, 0.7608 23.44%, 0.7964 25%, 0.8281 26.56%, 0.8561 28.13%, 0.8807 29.69%, 0.902 31.25%, 0.9205 32.81%, 0.9363 34.38%, 0.9498 35.94%, 0.9612 37.5%, 0.9708 39.06%, 0.9787 40.63%, 0.9853 42.19%, 0.9905 43.75%, 0.9948 45.31%, 0.9981 46.88%, 1.0007 48.44%, 1.0027 50%, 1.0041 51.56%, 1.0051 53.13%, 1.0058 54.69%, 1.0061 56.25%, 1.0063 57.81%, 1.0062 59.38%, 1.0061 60.94%, 1.0058 62.5%, 1.0055 64.06%, 1.0051 65.63%, 1.0047 67.19%, 1.0043 68.75%, 1.0039 70.31%, 1.0035 71.88%, 1.0031 73.44%, 1.0028 75%, 1.0024 76.56%, 1.0021 78.13%, 1.0018 79.69%, 1.0016 81.25%, 1.0013 82.81%, 1.0011 84.38%, 1.0009 85.94%, 1.0008 87.5%, 1.0007 89.06%, 1.0005 90.63%, 1.0004 92.19%, 1.0003 93.75%, 1.0003 95.31%, 1.0002 96.88%, 1.0001 98.44%, 1 100%);--oc-spring-snappy-duration-scale: 1.63;--oc-spring-bouncy-timing: linear(0 0%, 0.0154 1.56%, 0.0563 3.13%, 0.1157 4.69%, 0.1878 6.25%, 0.2675 7.81%, 0.3508 9.38%, 0.4343 10.94%, 0.5157 12.5%, 0.5929 14.06%, 0.6647 15.63%, 0.7301 17.19%, 0.7887 18.75%, 0.8403 20.31%, 0.8849 21.88%, 0.9228 23.44%, 0.9545 25%, 0.9803 26.56%, 1.0009 28.13%, 1.0168 29.69%, 1.0286 31.25%, 1.0369 32.81%, 1.0422 34.38%, 1.0451 35.94%, 1.046 37.5%, 1.0453 39.06%, 1.0435 40.63%, 1.0408 42.19%, 1.0375 43.75%, 1.0338 45.31%, 1.03 46.88%, 1.0262 48.44%, 1.0224 50%, 1.0189 51.56%, 1.0155 53.13%, 1.0125 54.69%, 1.0098 56.25%, 1.0074 57.81%, 1.0054 59.38%, 1.0036 60.94%, 1.0021 62.5%, 1.0009 64.06%, 1 65.63%, 0.9993 67.19%, 0.9987 68.75%, 0.9983 70.31%, 0.9981 71.88%, 0.9979 73.44%, 0.9979 75%, 0.9979 76.56%, 0.998 78.13%, 0.9981 79.69%, 0.9983 81.25%, 0.9984 82.81%, 0.9986 84.38%, 0.9988 85.94%, 0.999 87.5%, 0.9991 89.06%, 0.9993 90.63%, 0.9994 92.19%, 0.9995 93.75%, 0.9997 95.31%, 0.9997 96.88%, 0.9998 98.44%, 1 100%);--oc-spring-bouncy-duration-scale: 1.864}@media(prefers-reduced-motion: reduce){:root{--oc-motion-duration-factor: var(--oc-motion-duration-factor-reduced)}}
9
9
  :root{--oc-zindex-0: -1;--oc-zindex-1: 0;--oc-zindex-2: 10;--oc-zindex-3: 1000;--oc-zindex-4: 1400;--oc-zindex-5: 1800}
10
10
  }@layer oc-reset{*,*::before,*::after{box-sizing:border-box}html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none}body{min-height:100dvh}body,h1,h2,h3,h4,h5,h6,p,ul,figure,blockquote,dl,dd,input{margin:0}h1,h2,h3,h4,h5,h6,input,button,textarea,select,label{font:inherit}h1,h2,h3,h4,h5,h6{text-wrap:balance}ul,ol{list-style:none;padding:0}a:not([class]){text-decoration-skip-ink:auto;color:currentColor}a:visited{color:currentColor}img,picture{max-width:100%;display:block;object-fit:cover}textarea:not([rows]){min-height:10em}:target{scroll-margin-block:5ex}svg{fill:currentColor;stroke:rgba(0,0,0,0)}textarea,button{padding:0;appearance:none}button:focus-visible{outline:none}textarea,input[type=text]{color:currentColor;background-color:rgba(0,0,0,0)}input:not(input:-webkit-autofill)::-webkit-contacts-auto-fill-button{background-color:currentColor}iframe,textarea,button{border:none}
11
11
  }