@uoguelph/react-components 1.0.0-rc.8 → 1.0.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.
- package/dist/accordion-button.js +1 -1
- package/dist/alert-footer.js +1 -1
- package/dist/alert-message.js +1 -1
- package/dist/alert-title.js +4 -4
- package/dist/blockquote-author.d.ts +2 -0
- package/dist/blockquote-author.js +30 -0
- package/dist/blockquote-content.d.ts +2 -0
- package/dist/blockquote-content.js +54 -0
- package/dist/blockquote-context.d.ts +2 -0
- package/dist/blockquote-context.js +5 -0
- package/dist/blockquote.js +11 -40
- package/dist/button.js +8 -77
- package/dist/card-content.js +1 -1
- package/dist/card-footer.js +1 -1
- package/dist/carousel.js +18 -18
- package/dist/checkbox.js +24 -36
- package/dist/components/alert/alert-title.d.ts +1 -1
- package/dist/components/blockquote/blockquote-author.d.ts +7 -0
- package/dist/components/blockquote/blockquote-content.d.ts +10 -0
- package/dist/components/blockquote/blockquote-context.d.ts +5 -0
- package/dist/components/blockquote/blockquote.d.ts +3 -1
- package/dist/components/button/button.d.ts +2 -2
- package/dist/components/checkbox/checkbox.d.ts +2 -2
- package/dist/components/info/info.d.ts +1 -1
- package/dist/components/media-caption/media-caption.d.ts +1 -1
- package/dist/contact.js +1 -1
- package/dist/divider.js +2 -2
- package/dist/embedded-video-modal-button.js +6 -6
- package/dist/embedded-video.js +13 -13
- package/dist/index.css +1 -1
- package/dist/info.js +2 -2
- package/dist/media-caption.js +4 -4
- package/dist/modal.js +1 -1
- package/dist/navigation-link.js +1 -1
- package/dist/text-input.js +1 -1
- package/package.json +3 -3
package/dist/accordion-button.js
CHANGED
package/dist/alert-footer.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as t } from "react/jsx-runtime";
|
|
2
2
|
import { twMerge as g } from "tailwind-merge";
|
|
3
3
|
function l({ children: o, className: r }) {
|
|
4
|
-
const e = g("uog:flex uog:bg-light
|
|
4
|
+
const e = g("uog:flex uog:bg-grey-light uog:px-4 uog:py-2", r);
|
|
5
5
|
return /* @__PURE__ */ t("div", { className: `uofg-alert-footer ${e}`, children: o });
|
|
6
6
|
}
|
|
7
7
|
l.displayName = "AlertFooter";
|
package/dist/alert-message.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsx as g } from "react/jsx-runtime";
|
|
|
2
2
|
import { twMerge as s } from "tailwind-merge";
|
|
3
3
|
function t({ children: e, className: o }) {
|
|
4
4
|
const r = s(
|
|
5
|
-
"uog:flex uog:flex-col uog:border-x uog:border-b uog:border-light
|
|
5
|
+
"uog:flex uog:flex-col uog:border-x uog:border-b uog:border-grey-light uog:bg-white uog:px-4 uog:py-3",
|
|
6
6
|
o
|
|
7
7
|
);
|
|
8
8
|
return /* @__PURE__ */ g("div", { className: `uofg-alert-message ${r}`, children: e });
|
package/dist/alert-title.js
CHANGED
|
@@ -24,11 +24,11 @@ function x({ color: e = "red", className: o, children: r }) {
|
|
|
24
24
|
green: {
|
|
25
25
|
container: "uog:bg-green uog:text-green-contrast"
|
|
26
26
|
},
|
|
27
|
-
"light
|
|
28
|
-
container: "uog:bg-light
|
|
27
|
+
"grey-light": {
|
|
28
|
+
container: "uog:bg-grey-light uog:text-grey-light-contrast"
|
|
29
29
|
},
|
|
30
|
-
"dark
|
|
31
|
-
container: "uog:bg-dark
|
|
30
|
+
"grey-dark": {
|
|
31
|
+
container: "uog:bg-grey-dark uog:text-grey-dark-contrast"
|
|
32
32
|
},
|
|
33
33
|
black: {
|
|
34
34
|
container: "uog:bg-black uog:text-black-contrast"
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { jsxs as c, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import { useContext as i } from "react";
|
|
3
|
+
import { tv as g } from "tailwind-variants";
|
|
4
|
+
import { BlockquoteContext as n } from "./blockquote-context.js";
|
|
5
|
+
function h({ name: l, title: e }) {
|
|
6
|
+
const o = i(n), s = g({
|
|
7
|
+
slots: {
|
|
8
|
+
base: "uog:border-l-3 uog:pl-4 uog:flex uog:flex-col uog:gap-1 uog:items-start uog:font-light",
|
|
9
|
+
name: "uog:text-base uog:not-italic uog:font-bold",
|
|
10
|
+
title: "uog:text-base uog:italic"
|
|
11
|
+
},
|
|
12
|
+
variants: {
|
|
13
|
+
color: {
|
|
14
|
+
yellow: {
|
|
15
|
+
base: "uog:border-yellow"
|
|
16
|
+
},
|
|
17
|
+
blue: {
|
|
18
|
+
base: "uog:border-blue"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}), { base: u, name: a, title: r } = s({ color: (o == null ? void 0 : o.color) ?? "yellow" });
|
|
23
|
+
return /* @__PURE__ */ c("div", { className: `uofg-blockquote-author ${u()}`, children: [
|
|
24
|
+
/* @__PURE__ */ t("cite", { className: `uofg-blockquote-author-name ${a()}`, children: l }),
|
|
25
|
+
e && /* @__PURE__ */ t("span", { className: `uofg-blockquote-author-title ${r()}`, children: e })
|
|
26
|
+
] });
|
|
27
|
+
}
|
|
28
|
+
export {
|
|
29
|
+
h as BlockquoteAuthor
|
|
30
|
+
};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { jsxs as u, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import { f as r, a as m } from "./solid-DM6GVhkF.js";
|
|
3
|
+
import { FontAwesomeIcon as c } from "@fortawesome/react-fontawesome";
|
|
4
|
+
import { useContext as a } from "react";
|
|
5
|
+
import { twMerge as g } from "tailwind-merge";
|
|
6
|
+
import { tv as f } from "tailwind-variants";
|
|
7
|
+
import { BlockquoteContext as b } from "./blockquote-context.js";
|
|
8
|
+
function k({ className: l, children: n }) {
|
|
9
|
+
const o = a(b), i = f({
|
|
10
|
+
slots: {
|
|
11
|
+
base: "uog:font-light uog:block uog:w-full uog:text-center uog:text-3xl uog:italic",
|
|
12
|
+
icons: "uog:inline-block uog:h-[1em]"
|
|
13
|
+
},
|
|
14
|
+
variants: {
|
|
15
|
+
color: {
|
|
16
|
+
yellow: {
|
|
17
|
+
icons: "uog:text-yellow"
|
|
18
|
+
},
|
|
19
|
+
blue: {
|
|
20
|
+
icons: "uog:text-blue"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
direction: {
|
|
24
|
+
left: {
|
|
25
|
+
icons: "uog:mr-[0.3em]"
|
|
26
|
+
},
|
|
27
|
+
right: {
|
|
28
|
+
icons: "uog:ml-[0.25em]"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}), { base: s, icons: e } = i({ color: (o == null ? void 0 : o.color) ?? "yellow" });
|
|
33
|
+
return /* @__PURE__ */ u("blockquote", { className: `uofg-blockquote-content ${g(s(), l)}`, children: [
|
|
34
|
+
/* @__PURE__ */ t(
|
|
35
|
+
c,
|
|
36
|
+
{
|
|
37
|
+
icon: r,
|
|
38
|
+
className: `uofg-blockquote-content-left-quote ${e({ direction: "left" })}`
|
|
39
|
+
}
|
|
40
|
+
),
|
|
41
|
+
/* @__PURE__ */ t("span", { className: "uofg-blockquote-content-text", children: n }),
|
|
42
|
+
/* @__PURE__ */ t(
|
|
43
|
+
c,
|
|
44
|
+
{
|
|
45
|
+
icon: m,
|
|
46
|
+
className: `uofg-blockquote-content-right-quote ${e({ direction: "right" })}`
|
|
47
|
+
}
|
|
48
|
+
)
|
|
49
|
+
] });
|
|
50
|
+
}
|
|
51
|
+
k.displayName = "BlockquoteContent";
|
|
52
|
+
export {
|
|
53
|
+
k as BlockquoteContent
|
|
54
|
+
};
|
package/dist/blockquote.js
CHANGED
|
@@ -1,43 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
function
|
|
7
|
-
|
|
8
|
-
slots: {
|
|
9
|
-
base: a("uog:font-light uog:block uog:w-full uog:text-center uog:text-3xl uog:italic", l),
|
|
10
|
-
icons: "uog:inline-block uog:h-[1em]"
|
|
11
|
-
},
|
|
12
|
-
variants: {
|
|
13
|
-
color: {
|
|
14
|
-
red: {
|
|
15
|
-
icons: "uog:text-red"
|
|
16
|
-
},
|
|
17
|
-
yellow: {
|
|
18
|
-
icons: "uog:text-yellow"
|
|
19
|
-
},
|
|
20
|
-
blue: {
|
|
21
|
-
icons: "uog:text-blue"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
direction: {
|
|
25
|
-
left: {
|
|
26
|
-
icons: "uog:mr-[0.3em]"
|
|
27
|
-
},
|
|
28
|
-
right: {
|
|
29
|
-
icons: "uog:ml-[0.25em]"
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
}), { base: s, icons: t } = i({ color: u });
|
|
34
|
-
return /* @__PURE__ */ n("blockquote", { className: `uofg-blockquote ${s()}`, children: [
|
|
35
|
-
/* @__PURE__ */ o(e, { icon: r, className: `uofg-blockquote-left-quote ${t({ direction: "left" })}` }),
|
|
36
|
-
/* @__PURE__ */ o("span", { className: "uofg-blockquote-content", children: c }),
|
|
37
|
-
/* @__PURE__ */ o(e, { icon: g, className: `uofg-blockquote-right-quote ${t({ direction: "right" })}` })
|
|
38
|
-
] });
|
|
1
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import { twMerge as l } from "tailwind-merge";
|
|
3
|
+
import { BlockquoteContext as u } from "./blockquote-context.js";
|
|
4
|
+
import { BlockquoteAuthor as x } from "./blockquote-author.js";
|
|
5
|
+
import { BlockquoteContent as k } from "./blockquote-content.js";
|
|
6
|
+
function c({ className: e, children: t, color: r = "yellow" }) {
|
|
7
|
+
return /* @__PURE__ */ o(u.Provider, { value: { color: r }, children: /* @__PURE__ */ o("div", { className: `uofg-blockquote ${l("flex flex-col gap-2", e)}`, children: t }) });
|
|
39
8
|
}
|
|
40
|
-
|
|
9
|
+
c.displayName = "Blockquote";
|
|
41
10
|
export {
|
|
42
|
-
|
|
11
|
+
c as Blockquote,
|
|
12
|
+
x as BlockquoteAuthor,
|
|
13
|
+
k as BlockquoteContent
|
|
43
14
|
};
|
package/dist/button.js
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { jsx as a } from "react/jsx-runtime";
|
|
2
2
|
import { twMerge as b } from "tailwind-merge";
|
|
3
|
-
import { tv as
|
|
4
|
-
const
|
|
3
|
+
import { tv as n } from "tailwind-variants";
|
|
4
|
+
const d = "button";
|
|
5
5
|
function f({
|
|
6
|
-
as:
|
|
6
|
+
as: e,
|
|
7
7
|
color: l = "red",
|
|
8
8
|
outlined: s = !1,
|
|
9
9
|
children: u,
|
|
10
10
|
className: t,
|
|
11
|
-
disabled:
|
|
11
|
+
disabled: o = !1,
|
|
12
12
|
...r
|
|
13
13
|
}) {
|
|
14
|
-
const
|
|
14
|
+
const c = e ?? d, i = n({
|
|
15
15
|
base: "uog:font-medium uog:shadow-sm uog:inline-flex uog:items-center uog:justify-center uog:px-6 uog:py-4 uog:text-lg uog:no-underline uog:transition-colors uog:focus-visible:outline-none uog:focus-visible:ring-2 uog:focus-visible:ring-offset-2",
|
|
16
16
|
variants: {
|
|
17
17
|
color: {
|
|
@@ -19,10 +19,7 @@ function f({
|
|
|
19
19
|
yellow: "uog:focus-visible:ring-yellow",
|
|
20
20
|
blue: "uog:focus-visible:ring-blue",
|
|
21
21
|
green: "uog:focus-visible:ring-green",
|
|
22
|
-
|
|
23
|
-
"dark-grey": "uog:focus-visible:ring-dark-grey",
|
|
24
|
-
black: "uog:focus-visible:ring-black",
|
|
25
|
-
white: "uog:focus-visible:ring-white"
|
|
22
|
+
black: "uog:focus-visible:ring-black"
|
|
26
23
|
},
|
|
27
24
|
outlined: {
|
|
28
25
|
true: "uog:border-2"
|
|
@@ -120,50 +117,6 @@ function f({
|
|
|
120
117
|
disabled: !1,
|
|
121
118
|
class: "uog:hocus-visible:bg-green uog:hocus-visible:text-green-contrast"
|
|
122
119
|
},
|
|
123
|
-
{
|
|
124
|
-
color: "light-grey",
|
|
125
|
-
outlined: !1,
|
|
126
|
-
class: "uog:bg-light-grey uog:text-light-grey-contrast"
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
color: "light-grey",
|
|
130
|
-
outlined: !0,
|
|
131
|
-
class: "uog:border-light-grey uog:text-light-grey"
|
|
132
|
-
},
|
|
133
|
-
{
|
|
134
|
-
color: "light-grey",
|
|
135
|
-
outlined: !1,
|
|
136
|
-
disabled: !1,
|
|
137
|
-
class: "uog:hocus-visible:bg-light-grey-focus"
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
color: "light-grey",
|
|
141
|
-
outlined: !0,
|
|
142
|
-
disabled: !1,
|
|
143
|
-
class: "uog:hocus-visible:bg-light-grey uog:hocus-visible:text-light-grey-contrast"
|
|
144
|
-
},
|
|
145
|
-
{
|
|
146
|
-
color: "dark-grey",
|
|
147
|
-
outlined: !1,
|
|
148
|
-
class: "uog:bg-dark-grey uog:text-dark-grey-contrast"
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
color: "dark-grey",
|
|
152
|
-
outlined: !0,
|
|
153
|
-
class: "uog:border-dark-grey uog:text-dark-grey"
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
color: "dark-grey",
|
|
157
|
-
outlined: !1,
|
|
158
|
-
disabled: !1,
|
|
159
|
-
class: "uog:hocus-visible:bg-dark-grey-focus"
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
color: "dark-grey",
|
|
163
|
-
outlined: !0,
|
|
164
|
-
disabled: !1,
|
|
165
|
-
class: "uog:hocus-visible:bg-dark-grey uog:hocus-visible:text-dark-grey-contrast"
|
|
166
|
-
},
|
|
167
120
|
{
|
|
168
121
|
color: "black",
|
|
169
122
|
outlined: !1,
|
|
@@ -185,32 +138,10 @@ function f({
|
|
|
185
138
|
outlined: !0,
|
|
186
139
|
disabled: !1,
|
|
187
140
|
class: "uog:hocus-visible:bg-black uog:hocus-visible:text-black-contrast"
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
color: "white",
|
|
191
|
-
outlined: !1,
|
|
192
|
-
class: "uog:bg-white uog:text-white-contrast"
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
color: "white",
|
|
196
|
-
outlined: !0,
|
|
197
|
-
class: "uog:border-white uog:text-white"
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
color: "white",
|
|
201
|
-
outlined: !1,
|
|
202
|
-
disabled: !1,
|
|
203
|
-
class: "uog:hocus-visible:bg-white-focus"
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
color: "white",
|
|
207
|
-
outlined: !0,
|
|
208
|
-
disabled: !1,
|
|
209
|
-
class: "uog:hocus-visible:bg-white uog:hocus-visible:text-white-contrast"
|
|
210
141
|
}
|
|
211
142
|
]
|
|
212
|
-
}),
|
|
213
|
-
return /* @__PURE__ */ a(
|
|
143
|
+
}), g = b(i({ color: l, outlined: s, disabled: o }), t);
|
|
144
|
+
return /* @__PURE__ */ a(c, { className: `uofg-button ${g}`, disabled: o, ...r, children: u });
|
|
214
145
|
}
|
|
215
146
|
f.displayName = "Button";
|
|
216
147
|
export {
|
package/dist/card-content.js
CHANGED
|
@@ -5,7 +5,7 @@ import { tv as n } from "tailwind-variants";
|
|
|
5
5
|
import { CardContext as u } from "./card-context.js";
|
|
6
6
|
function a({ children: t, className: r }) {
|
|
7
7
|
const o = s(u), e = n({
|
|
8
|
-
base: "uog:flex uog:flex-col uog:gap-2 uog:bg-light-
|
|
8
|
+
base: "uog:flex uog:flex-col uog:gap-2 uog:bg-grey-light-bg uog:p-5 uog:text-grey-light-contrast",
|
|
9
9
|
variants: {
|
|
10
10
|
isLink: {
|
|
11
11
|
true: "uog:transition-colors uog:group-hocus-visible:bg-yellow uog:group-hocus-visible:text-yellow-contrast"
|
package/dist/card-footer.js
CHANGED
|
@@ -5,7 +5,7 @@ import { tv as n } from "tailwind-variants";
|
|
|
5
5
|
import { CardContext as s } from "./card-context.js";
|
|
6
6
|
function u({ children: r, className: t }) {
|
|
7
7
|
const o = g(s), e = n({
|
|
8
|
-
base: "uog:flex uog:gap-2 uog:bg-light
|
|
8
|
+
base: "uog:flex uog:gap-2 uog:bg-grey-light uog:px-5 uog:py-2 uog:text-grey-light-contrast uog:transition-colors",
|
|
9
9
|
variants: {
|
|
10
10
|
centered: {
|
|
11
11
|
true: "uog:justify-center"
|
package/dist/carousel.js
CHANGED
|
@@ -1,42 +1,42 @@
|
|
|
1
1
|
import { jsxs as g, jsx as u } from "react/jsx-runtime";
|
|
2
|
-
import { b as
|
|
2
|
+
import { b as k, c as I } from "./solid-DM6GVhkF.js";
|
|
3
3
|
import { FontAwesomeIcon as p } from "@fortawesome/react-fontawesome";
|
|
4
4
|
import { Children as A, useRef as d, useState as F, useEffect as L } from "react";
|
|
5
5
|
import { tv as S } from "tailwind-variants";
|
|
6
6
|
import { l as q, b as M, m as w, c as R } from "./math-utils-BwzyIQRL.js";
|
|
7
|
-
const z = (
|
|
8
|
-
const n =
|
|
7
|
+
const z = (c, m, e) => {
|
|
8
|
+
const n = c.scrollLeft, s = performance.now();
|
|
9
9
|
return new Promise((r) => {
|
|
10
10
|
const a = (o) => {
|
|
11
11
|
const f = o - s, i = M(Math.min(f / e, 1), 0.25, 0, 0.25, 1);
|
|
12
|
-
|
|
12
|
+
c.scrollLeft = q(n, m, i), f < e ? requestAnimationFrame(a) : r();
|
|
13
13
|
};
|
|
14
14
|
requestAnimationFrame(a);
|
|
15
15
|
});
|
|
16
16
|
};
|
|
17
|
-
function H({ children:
|
|
18
|
-
const n = A.count(
|
|
17
|
+
function H({ children: c, display: m = 1, loop: e = "none" }) {
|
|
18
|
+
const n = A.count(c), s = Math.max(m, 1), r = d(null), a = d(0), [o, f] = F(0), i = n - s, h = d(!1);
|
|
19
19
|
L(() => {
|
|
20
20
|
var t;
|
|
21
21
|
if (!r.current)
|
|
22
22
|
return;
|
|
23
|
-
const
|
|
24
|
-
(e === "jump" || e === "none") && (h.current = !0, z(r.current,
|
|
23
|
+
const l = ((t = r.current) == null ? void 0 : t.offsetWidth) / s;
|
|
24
|
+
(e === "jump" || e === "none") && (h.current = !0, z(r.current, l * o, 250).then(() => {
|
|
25
25
|
h.current = !1;
|
|
26
26
|
})), a.current = o;
|
|
27
27
|
}, [o, e, i, s]);
|
|
28
|
-
const x = (
|
|
28
|
+
const x = (l) => {
|
|
29
29
|
if (h.current) return;
|
|
30
30
|
let t;
|
|
31
31
|
switch (e) {
|
|
32
32
|
case "none":
|
|
33
|
-
t = R(o +
|
|
33
|
+
t = R(o + l, 0, i);
|
|
34
34
|
break;
|
|
35
35
|
case "jump":
|
|
36
|
-
t = w(o +
|
|
36
|
+
t = w(o + l, i + 1);
|
|
37
37
|
break;
|
|
38
38
|
case "continuous":
|
|
39
|
-
t = w(o +
|
|
39
|
+
t = w(o + l, n);
|
|
40
40
|
break;
|
|
41
41
|
default:
|
|
42
42
|
t = 0;
|
|
@@ -47,7 +47,7 @@ function H({ children: l, display: m = 1, loop: e = "none" }) {
|
|
|
47
47
|
base: "uog:relative uog:flex uog:h-fit uog:min-h-[7rem] uog:w-full uog:flex-col-reverse",
|
|
48
48
|
contentContainer: "uog:grid uog:w-full uog:flex-1 uog:grid-cols-[repeat(var(--items),calc(100%/var(--display)))] uog:overflow-x-hidden [&>*]:[grid-row:1]",
|
|
49
49
|
controlContainer: "uog:md:contents uog:flex uog:h-16 uog:w-full uog:pt-8",
|
|
50
|
-
control: "uog:sm:text-6xl uog:md:absolute uog:flex uog:h-full uog:w-16 uog:flex-1 uog:items-center uog:justify-center uog:text-3xl uog:text-
|
|
50
|
+
control: "uog:sm:text-6xl uog:md:absolute uog:flex uog:h-full uog:w-16 uog:flex-1 uog:items-center uog:justify-center uog:text-3xl uog:text-blue uog:transition-[transform,color,opacity,visibility] uog:focus-visible:ring-2 uog:focus-visible:ring-offset-2 uog:focus-visible:outline-none uog:hocus-visible:text-blue-focus"
|
|
51
51
|
},
|
|
52
52
|
variants: {
|
|
53
53
|
showControls: {
|
|
@@ -67,9 +67,9 @@ function H({ children: l, display: m = 1, loop: e = "none" }) {
|
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
|
-
}), b = n > s, { base: y, contentContainer:
|
|
70
|
+
}), b = n > s, { base: y, contentContainer: N, controlContainer: j, control: v } = C({ showControls: b });
|
|
71
71
|
return /* @__PURE__ */ g("div", { className: y(), children: [
|
|
72
|
-
b && /* @__PURE__ */ g("div", { className:
|
|
72
|
+
b && /* @__PURE__ */ g("div", { className: j(), children: [
|
|
73
73
|
/* @__PURE__ */ g(
|
|
74
74
|
"button",
|
|
75
75
|
{
|
|
@@ -77,7 +77,7 @@ function H({ children: l, display: m = 1, loop: e = "none" }) {
|
|
|
77
77
|
className: v({ showControls: !(e === "none" && o === 0), direction: "left" }),
|
|
78
78
|
children: [
|
|
79
79
|
/* @__PURE__ */ u("span", { className: "uog:sr-only", children: "Shift left" }),
|
|
80
|
-
/* @__PURE__ */ u(p, { icon:
|
|
80
|
+
/* @__PURE__ */ u(p, { icon: k })
|
|
81
81
|
]
|
|
82
82
|
}
|
|
83
83
|
),
|
|
@@ -96,14 +96,14 @@ function H({ children: l, display: m = 1, loop: e = "none" }) {
|
|
|
96
96
|
/* @__PURE__ */ u(
|
|
97
97
|
"div",
|
|
98
98
|
{
|
|
99
|
-
className:
|
|
99
|
+
className: N(),
|
|
100
100
|
ref: r,
|
|
101
101
|
style: {
|
|
102
102
|
// Define CSS variables for the grid layout
|
|
103
103
|
"--items": n,
|
|
104
104
|
"--display": s
|
|
105
105
|
},
|
|
106
|
-
children:
|
|
106
|
+
children: c
|
|
107
107
|
}
|
|
108
108
|
)
|
|
109
109
|
] });
|
package/dist/checkbox.js
CHANGED
|
@@ -1,33 +1,29 @@
|
|
|
1
|
-
import { jsxs as
|
|
1
|
+
import { jsxs as i, jsx as e } from "react/jsx-runtime";
|
|
2
2
|
import { e as p } from "./regular-BRNZck7j.js";
|
|
3
3
|
import { FontAwesomeIcon as y } from "@fortawesome/react-fontawesome";
|
|
4
|
-
import { Field as
|
|
4
|
+
import { Field as w, Checkbox as v, Label as N, Description as C } from "@headlessui/react";
|
|
5
5
|
import { useState as j } from "react";
|
|
6
6
|
import { tv as F } from "tailwind-variants";
|
|
7
7
|
function z({
|
|
8
|
-
checked:
|
|
8
|
+
checked: g = !1,
|
|
9
9
|
label: c,
|
|
10
|
-
description:
|
|
11
|
-
color:
|
|
12
|
-
disabled:
|
|
10
|
+
description: t,
|
|
11
|
+
color: r = "yellow",
|
|
12
|
+
disabled: s = !1,
|
|
13
13
|
onChange: o,
|
|
14
14
|
...l
|
|
15
15
|
}) {
|
|
16
|
-
const [a,
|
|
16
|
+
const [a, n] = j(g), b = F({
|
|
17
17
|
slots: {
|
|
18
18
|
base: "uog:flex uog:flex-col uog:gap-0.5 uog:cursor-pointer",
|
|
19
19
|
container: "uog:flex uog:items-center uog:gap-2",
|
|
20
20
|
box: "uog:group uog:rounded uog:flex uog:size-4 uog:items-center uog:justify-center uog:border uog:bg-white uog:p-3 uog:transition-colors uog:focus-visible:ring-2 uog:focus-visible:ring-offset-2 uog:focus-visible:outline-none",
|
|
21
21
|
check: "uog:h-5 uog:w-5 uog:opacity-0 uog:transition-opacity uog:group-ui-checked:opacity-100 uog:user-select-none",
|
|
22
22
|
label: "uog:text-body-copy",
|
|
23
|
-
description: "uog:text-sm uog:text-dark
|
|
23
|
+
description: "uog:text-sm uog:text-grey-dark"
|
|
24
24
|
},
|
|
25
25
|
variants: {
|
|
26
26
|
color: {
|
|
27
|
-
red: {
|
|
28
|
-
box: "uog:focus-visible:ring-red uog:ui-checked:bg-red",
|
|
29
|
-
check: "uog:text-red-contrast"
|
|
30
|
-
},
|
|
31
27
|
yellow: {
|
|
32
28
|
box: "uog:focus-visible:ring-yellow uog:ui-checked:bg-yellow",
|
|
33
29
|
check: "uog:text-yellow-contrast"
|
|
@@ -40,14 +36,6 @@ function z({
|
|
|
40
36
|
box: "uog:focus-visible:ring-green uog:ui-checked:bg-green",
|
|
41
37
|
check: "uog:text-green-contrast"
|
|
42
38
|
},
|
|
43
|
-
"light-grey": {
|
|
44
|
-
box: "uog:focus-visible:ring-light-grey uog:ui-checked:bg-light-grey",
|
|
45
|
-
check: "uog:text-light-grey-contrast"
|
|
46
|
-
},
|
|
47
|
-
"dark-grey": {
|
|
48
|
-
box: "uog:focus-visible:ring-dark-grey uog:ui-checked:bg-dark-grey",
|
|
49
|
-
check: "uog:text-dark-grey-contrast"
|
|
50
|
-
},
|
|
51
39
|
black: {
|
|
52
40
|
box: "uog:focus-visible:ring-black uog:ui-checked:bg-black",
|
|
53
41
|
check: "uog:text-black-contrast"
|
|
@@ -60,37 +48,37 @@ function z({
|
|
|
60
48
|
disabled: {
|
|
61
49
|
true: {
|
|
62
50
|
base: "uog:opacity-60",
|
|
63
|
-
label: "uog:text-dark
|
|
51
|
+
label: "uog:text-grey-dark"
|
|
64
52
|
},
|
|
65
53
|
false: {}
|
|
66
54
|
}
|
|
67
55
|
}
|
|
68
56
|
}), {
|
|
69
57
|
base: h,
|
|
70
|
-
container:
|
|
71
|
-
box:
|
|
72
|
-
check:
|
|
73
|
-
label:
|
|
58
|
+
container: x,
|
|
59
|
+
box: f,
|
|
60
|
+
check: k,
|
|
61
|
+
label: d,
|
|
74
62
|
description: m
|
|
75
|
-
} =
|
|
76
|
-
return /* @__PURE__ */
|
|
77
|
-
/* @__PURE__ */
|
|
63
|
+
} = b({ color: r, disabled: s });
|
|
64
|
+
return /* @__PURE__ */ i(w, { className: h(), children: [
|
|
65
|
+
/* @__PURE__ */ i("div", { className: x(), children: [
|
|
78
66
|
/* @__PURE__ */ e(
|
|
79
|
-
|
|
67
|
+
v,
|
|
80
68
|
{
|
|
81
69
|
checked: a,
|
|
82
|
-
onChange: (
|
|
83
|
-
|
|
70
|
+
onChange: (u) => {
|
|
71
|
+
n(u), o == null || o(u);
|
|
84
72
|
},
|
|
85
|
-
disabled:
|
|
86
|
-
className:
|
|
73
|
+
disabled: s,
|
|
74
|
+
className: f(),
|
|
87
75
|
...l,
|
|
88
|
-
children: /* @__PURE__ */ e(y, { className:
|
|
76
|
+
children: /* @__PURE__ */ e(y, { className: k(), icon: p })
|
|
89
77
|
}
|
|
90
78
|
),
|
|
91
|
-
c && /* @__PURE__ */ e(N, { className:
|
|
79
|
+
c && /* @__PURE__ */ e(N, { className: d(), children: c })
|
|
92
80
|
] }),
|
|
93
|
-
|
|
81
|
+
t && /* @__PURE__ */ e(C, { className: m(), children: t })
|
|
94
82
|
] });
|
|
95
83
|
}
|
|
96
84
|
z.displayName = "Checkbox";
|
|
@@ -7,7 +7,7 @@ export type AlertTitleProps = PropsWithChildren<{
|
|
|
7
7
|
*
|
|
8
8
|
* @default 'red'
|
|
9
9
|
*/
|
|
10
|
-
color?: 'red' | 'yellow' | 'blue' | 'green' | 'light
|
|
10
|
+
color?: 'red' | 'yellow' | 'blue' | 'green' | 'grey-light' | 'grey-dark' | 'black' | 'white';
|
|
11
11
|
}>;
|
|
12
12
|
/** The AlertTitle component is used to display the title of an alert. */
|
|
13
13
|
export declare function AlertTitle({ color, className, children }: AlertTitleProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export type BlockquoteAuthorProps = {
|
|
2
|
+
/** The author of the blockquote. */
|
|
3
|
+
name: string;
|
|
4
|
+
/** The title of the author. */
|
|
5
|
+
title?: string;
|
|
6
|
+
};
|
|
7
|
+
export declare function BlockquoteAuthor({ name, title }: BlockquoteAuthorProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
export type BlockquoteContentProps = PropsWithChildren<{
|
|
3
|
+
/** Additional classes to apply to the blockquote */
|
|
4
|
+
className?: string;
|
|
5
|
+
}>;
|
|
6
|
+
/** The Blockquote component is used to highlight a quote or excerpt from another source. */
|
|
7
|
+
export declare function BlockquoteContent({ className, children }: BlockquoteContentProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare namespace BlockquoteContent {
|
|
9
|
+
var displayName: string;
|
|
10
|
+
}
|
|
@@ -7,10 +7,12 @@ export type BlockquoteProps = PropsWithChildren<{
|
|
|
7
7
|
*
|
|
8
8
|
* @default 'yellow'
|
|
9
9
|
*/
|
|
10
|
-
color?: 'yellow' | '
|
|
10
|
+
color?: 'yellow' | 'blue';
|
|
11
11
|
}>;
|
|
12
12
|
/** The Blockquote component is used to highlight a quote or excerpt from another source. */
|
|
13
13
|
export declare function Blockquote({ className, children, color }: BlockquoteProps): import("react/jsx-runtime").JSX.Element;
|
|
14
14
|
export declare namespace Blockquote {
|
|
15
15
|
var displayName: string;
|
|
16
16
|
}
|
|
17
|
+
export { BlockquoteAuthor } from './blockquote-author';
|
|
18
|
+
export { BlockquoteContent } from './blockquote-content';
|
|
@@ -12,7 +12,7 @@ type ButtonPropsBase = {
|
|
|
12
12
|
*
|
|
13
13
|
* @default 'red'
|
|
14
14
|
*/
|
|
15
|
-
color?: 'red' | 'yellow' | 'blue' | 'green' | '
|
|
15
|
+
color?: 'red' | 'yellow' | 'blue' | 'green' | 'black';
|
|
16
16
|
/**
|
|
17
17
|
* Whether the button should be outlined
|
|
18
18
|
*
|
|
@@ -30,7 +30,7 @@ type ButtonPropsBase = {
|
|
|
30
30
|
};
|
|
31
31
|
export type ButtonProps<T extends ButtonElementType = typeof defaultElement> = PropsWithChildren<ButtonPropsAs<T> & ComponentPropsWithoutRef<T> & ButtonPropsBase>;
|
|
32
32
|
/**
|
|
33
|
-
* The Button component is
|
|
33
|
+
* The Button component is an interactive component designed to capture user actions (such as submitting forms). It can
|
|
34
34
|
* also function as a link to another page or resource.
|
|
35
35
|
*/
|
|
36
36
|
export declare function Button<T extends ButtonElementType = typeof defaultElement>({ as, color, outlined, children, className, disabled, ...rest }: ButtonProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -13,9 +13,9 @@ export type CheckboxProps = {
|
|
|
13
13
|
/**
|
|
14
14
|
* The color of the checkbox
|
|
15
15
|
*
|
|
16
|
-
* @default '
|
|
16
|
+
* @default 'yellow'
|
|
17
17
|
*/
|
|
18
|
-
color?: '
|
|
18
|
+
color?: 'yellow' | 'blue' | 'green' | 'black' | 'white';
|
|
19
19
|
/**
|
|
20
20
|
* Whether the checkbox is disabled
|
|
21
21
|
*
|
|
@@ -5,7 +5,7 @@ export type InfoProps = PropsWithChildren<{
|
|
|
5
5
|
*
|
|
6
6
|
* @default 'red'
|
|
7
7
|
*/
|
|
8
|
-
color?: 'red' | 'yellow' | 'blue' | 'green' | 'light
|
|
8
|
+
color?: 'red' | 'yellow' | 'blue' | 'green' | 'grey-light' | 'grey-dark' | 'black' | 'white';
|
|
9
9
|
}>;
|
|
10
10
|
export declare function Info({ children, color }: InfoProps): import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
export declare namespace Info {
|
|
@@ -13,7 +13,7 @@ type MediaCaptionPropsAs<T extends MediaCaptionElementType> = {
|
|
|
13
13
|
type MediaCaptionPropsBase = {
|
|
14
14
|
size?: 'small' | 'medium' | 'large';
|
|
15
15
|
position?: 'left' | 'right' | 'above';
|
|
16
|
-
background?: 'none' | 'light
|
|
16
|
+
background?: 'none' | 'grey-light' | 'grey-dark';
|
|
17
17
|
className?: string;
|
|
18
18
|
mediaClassName?: string;
|
|
19
19
|
};
|
package/dist/contact.js
CHANGED
|
@@ -5,7 +5,7 @@ import { ContactName as i } from "./contact-name.js";
|
|
|
5
5
|
import { ContactPhone as u } from "./contact-phone.js";
|
|
6
6
|
import { ContactTitle as s } from "./contact-title.js";
|
|
7
7
|
function c({ children: o, className: t }) {
|
|
8
|
-
const e = a("uog:bg-light-
|
|
8
|
+
const e = a("uog:bg-grey-light-bg uog:mb-2 uog:flex uog:flex-col uog:p-4 uog:text-body-copy", t);
|
|
9
9
|
return /* @__PURE__ */ r("div", { className: e, children: o });
|
|
10
10
|
}
|
|
11
11
|
c.displayName = "Contact";
|
package/dist/divider.js
CHANGED
|
@@ -18,9 +18,9 @@ const i = () => {
|
|
|
18
18
|
}), { base: s, red: r, yellow: a, black: c, hr: d } = e();
|
|
19
19
|
return /* @__PURE__ */ l(g, { children: [
|
|
20
20
|
/* @__PURE__ */ l("div", { className: s(), children: [
|
|
21
|
-
/* @__PURE__ */ o("div", { className: c() }),
|
|
22
21
|
/* @__PURE__ */ o("div", { className: r() }),
|
|
23
|
-
/* @__PURE__ */ o("div", { className: a() })
|
|
22
|
+
/* @__PURE__ */ o("div", { className: a() }),
|
|
23
|
+
/* @__PURE__ */ o("div", { className: c() })
|
|
24
24
|
] }),
|
|
25
25
|
/* @__PURE__ */ o("hr", { className: d() })
|
|
26
26
|
] });
|
|
@@ -4,12 +4,12 @@ import { FontAwesomeIcon as s } from "@fortawesome/react-fontawesome";
|
|
|
4
4
|
import { useContext as m } from "react";
|
|
5
5
|
import { twMerge as l } from "tailwind-merge";
|
|
6
6
|
import { Button as a } from "./button.js";
|
|
7
|
-
import { EmbeddedVideoContext as
|
|
8
|
-
function
|
|
9
|
-
const o = m(
|
|
7
|
+
import { EmbeddedVideoContext as f } from "./embedded-video-context.js";
|
|
8
|
+
function g({ type: e, children: u, className: r }) {
|
|
9
|
+
const o = m(f);
|
|
10
10
|
if (e === "play-button") {
|
|
11
11
|
const n = l(
|
|
12
|
-
"uog:flex uog:aspect-square uog:w-24 uog:items-center uog:justify-center uog:rounded-full uog:bg-
|
|
12
|
+
"uog:flex uog:aspect-square uog:w-24 uog:items-center uog:justify-center uog:rounded-full uog:bg-red uog:text-4xl uog:text-white uog:transition-colors uog:hover:bg-red-focus uog:focus:bg-red-focus",
|
|
13
13
|
r
|
|
14
14
|
);
|
|
15
15
|
return /* @__PURE__ */ d("button", { type: "button", className: n, onClick: () => o == null ? void 0 : o.setModalOpen(!0), children: [
|
|
@@ -19,7 +19,7 @@ function p({ type: e, children: u, className: r }) {
|
|
|
19
19
|
}
|
|
20
20
|
return /* @__PURE__ */ t(a, { type: "button", color: e, className: r, onClick: () => o == null ? void 0 : o.setModalOpen(!0), children: u });
|
|
21
21
|
}
|
|
22
|
-
|
|
22
|
+
g.displayName = "EmbeddedVideoModalButton";
|
|
23
23
|
export {
|
|
24
|
-
|
|
24
|
+
g as EmbeddedVideoModalButton
|
|
25
25
|
};
|
package/dist/embedded-video.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsxs as
|
|
1
|
+
import { jsxs as c, Fragment as p, jsx as n } from "react/jsx-runtime";
|
|
2
2
|
import { useState as w } from "react";
|
|
3
3
|
import { twMerge as f } from "tailwind-merge";
|
|
4
4
|
import { tv as g } from "tailwind-variants";
|
|
@@ -43,15 +43,15 @@ function N(l) {
|
|
|
43
43
|
}
|
|
44
44
|
return { type: e, id: t };
|
|
45
45
|
}
|
|
46
|
-
function
|
|
46
|
+
function m({ src: l, title: e, transcript: t, className: o }) {
|
|
47
47
|
const { id: d, type: i } = N(l), r = g({
|
|
48
48
|
slots: {
|
|
49
49
|
base: f("uog:flex uog:flex-col", o),
|
|
50
50
|
iframe: "uog:w-full uog:h-full uog:aspect-video",
|
|
51
51
|
transcriptButton: "uog:p-3 uog:w-full"
|
|
52
52
|
}
|
|
53
|
-
}), { base:
|
|
54
|
-
return /* @__PURE__ */
|
|
53
|
+
}), { base: a, iframe: u, transcriptButton: s } = r();
|
|
54
|
+
return /* @__PURE__ */ c("div", { className: a(), children: [
|
|
55
55
|
i === "youtube" && d && /* @__PURE__ */ n(
|
|
56
56
|
"iframe",
|
|
57
57
|
{
|
|
@@ -70,36 +70,36 @@ function c({ src: l, title: e, transcript: t, className: o }) {
|
|
|
70
70
|
title: e ?? "Vimeo Embedded Video Player"
|
|
71
71
|
}
|
|
72
72
|
),
|
|
73
|
-
t && /* @__PURE__ */ n(h, { as: "a", color: "
|
|
73
|
+
t && /* @__PURE__ */ n(h, { as: "a", color: "black", className: s(), href: t, download: !0, children: "Download Transcript" })
|
|
74
74
|
] });
|
|
75
75
|
}
|
|
76
76
|
function E({ src: l, title: e, transcript: t, className: o, children: d }) {
|
|
77
77
|
const [i, r] = w(!1);
|
|
78
78
|
if (d) {
|
|
79
|
-
const
|
|
79
|
+
const a = g({
|
|
80
80
|
slots: {
|
|
81
|
-
container: "uog:bg-dark-
|
|
81
|
+
container: "uog:bg-grey-dark-bg uog:flex uog:w-screen uog:max-w-6xl uog:lg:max-w-7xl uog:flex-col uog:gap-4 uog:p-4 uog:text-grey-dark-contrast",
|
|
82
82
|
video: "uog:w-full",
|
|
83
83
|
title: "uog:text-xl uog:font-bold"
|
|
84
84
|
}
|
|
85
|
-
}), { container: u, video:
|
|
86
|
-
return /* @__PURE__ */
|
|
85
|
+
}), { container: u, video: s, title: v } = a();
|
|
86
|
+
return /* @__PURE__ */ c(p, { children: [
|
|
87
87
|
/* @__PURE__ */ n(y.Provider, { value: { modalOpen: i, setModalOpen: r }, children: d }),
|
|
88
|
-
/* @__PURE__ */ n(x, { open: i, onClose: () => r(!1), children: /* @__PURE__ */
|
|
88
|
+
/* @__PURE__ */ n(x, { open: i, onClose: () => r(!1), children: /* @__PURE__ */ c("div", { className: `uofg-embedded-video-container ${u()}`, children: [
|
|
89
89
|
/* @__PURE__ */ n("span", { className: `uofg-embedded-video-title ${v()}`, children: e }),
|
|
90
90
|
/* @__PURE__ */ n(
|
|
91
|
-
|
|
91
|
+
m,
|
|
92
92
|
{
|
|
93
93
|
src: l,
|
|
94
94
|
title: e,
|
|
95
95
|
transcript: t,
|
|
96
|
-
className: `uofg-embedded-video ${f(
|
|
96
|
+
className: `uofg-embedded-video ${f(s(), o)}`
|
|
97
97
|
}
|
|
98
98
|
)
|
|
99
99
|
] }) })
|
|
100
100
|
] });
|
|
101
101
|
}
|
|
102
|
-
return /* @__PURE__ */ n(
|
|
102
|
+
return /* @__PURE__ */ n(m, { src: l, title: e, transcript: t, className: `uofg-embedded-video ${o}` });
|
|
103
103
|
}
|
|
104
104
|
E.displayName = "EmbeddedVideo";
|
|
105
105
|
export {
|
package/dist/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! tailwindcss v4.0.11 | MIT License | https://tailwindcss.com */@layer theme{:root,:host{--uog-font-serif:"Bitter",ui-serif,Georgia,Cambria,"Times New Roman",Times,serif;--uog-color-black:#000;--uog-color-white:#fff;--uog-spacing:.4rem;--uog-container-6xl:72rem;--uog-container-7xl:80rem;--uog-text-sm:1.4rem;--uog-text-sm--line-height:1.4;--uog-text-base:1.6rem;--uog-text-base--line-height:1.4;--uog-text-lg:1.8rem;--uog-text-lg--line-height:1.4;--uog-text-xl:2rem;--uog-text-xl--line-height:1.4;--uog-text-2xl:2.5rem;--uog-text-2xl--line-height:1.4;--uog-text-3xl:3rem;--uog-text-3xl--line-height:1.4;--uog-text-4xl:4rem;--uog-text-4xl--line-height:1.4;--uog-text-6xl:6rem;--uog-text-6xl--line-height:1.6;--uog-font-weight-light:300;--uog-font-weight-normal:400;--uog-font-weight-medium:500;--uog-font-weight-bold:700;--uog-radius-sm:.25rem;--uog-radius-md:.375rem;--uog-ease-out:cubic-bezier(0,0,.2,1);--uog-ease-in-out:cubic-bezier(.4,0,.2,1);--uog-animate-spin:spin 1s linear infinite;--uog-blur-sm:8px;--uog-aspect-video:16/9;--uog-default-transition-duration:.15s;--uog-default-transition-timing-function:cubic-bezier(.4,0,.2,1);--uog-color-white-focus:#ddd;--uog-color-white-contrast:#000;--uog-color-black-focus:#444;--uog-color-black-contrast:#fff;--uog-color-red:#e51937;--uog-color-red-focus:#b3142c;--uog-color-red-contrast:#fff;--uog-color-yellow:#ffc429;--uog-color-yellow-focus:#ffe299;--uog-color-yellow-contrast:#000;--uog-color-blue:#187bb4;--uog-color-blue-focus:#135f8b;--uog-color-blue-on-light:#1775ab;--uog-color-blue-contrast:#fff;--uog-color-green:#318738;--uog-color-green-focus:#27682c;--uog-color-green-contrast:#fff;--uog-color-light-grey:#d8d8d8;--uog-color-light-grey-focus:#bfbfbf;--uog-color-light-grey-contrast:#000;--uog-color-light-grey-bg:#f5f5f5;--uog-color-dark-grey:#747676;--uog-color-dark-grey-focus:#63625f;--uog-color-dark-grey-contrast:#fff;--uog-color-dark-grey-bg:#222;--uog-color-body-copy:#555;--uog-color-body-copy-on-dark:#ccc;--uog-color-body-copy-bold:#333;--uog-color-body-copy-link:#187bb4;--uog-color-body-copy-link-on-light:#166ea2;--uog-color-body-copy-link-on-dark:#1d93d7;--uog-animate-fade-in:fade .25s ease-in-out 1 normal forwards}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}body{line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1;color:color-mix(in oklab,currentColor 50%,transparent)}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}:root{--tw-max-content-width:137rem;font-size:62.5%}body{margin:0;padding:0;font-size:1.6rem}@keyframes fade{0%{opacity:0}to{opacity:1}}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}}@layer components;@layer utilities{.uog\:pointer-events-none{pointer-events:none}.uog\:invisible{visibility:hidden}.uog\:sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.uog\:absolute{position:absolute}.uog\:fixed{position:fixed}.uog\:relative{position:relative}.uog\:inset-0{inset:calc(var(--uog-spacing)*0)}.uog\:top-0{top:calc(var(--uog-spacing)*0)}.uog\:top-1\/2{top:50%}.uog\:right-0{right:calc(var(--uog-spacing)*0)}.uog\:bottom-0{bottom:calc(var(--uog-spacing)*0)}.uog\:left-0{left:calc(var(--uog-spacing)*0)}.uog\:left-1\/2{left:50%}.uog\:z-0{z-index:0}.uog\:z-10{z-index:10}.uog\:z-20{z-index:20}.uog\:z-50{z-index:50}.uog\:col-start-1{grid-column-start:1}.uog\:col-start-2{grid-column-start:2}.uog\:row-start-1{grid-row-start:1}.uog\:container{width:100%}@media (width>=40rem){.uog\:container{max-width:40rem}}@media (width>=48rem){.uog\:container{max-width:48rem}}@media (width>=64rem){.uog\:container{max-width:64rem}}@media (width>=80rem){.uog\:container{max-width:80rem}}@media (width>=96rem){.uog\:container{max-width:96rem}}.uog\:mx-auto{margin-inline:auto}.uog\:my-2{margin-block:calc(var(--uog-spacing)*2)}.uog\:my-7{margin-block:calc(var(--uog-spacing)*7)}.uog\:mt-3\.75{margin-top:calc(var(--uog-spacing)*3.75)}.uog\:mt-7\.5{margin-top:calc(var(--uog-spacing)*7.5)}.uog\:mr-\[0\.3em\]{margin-right:.3em}.uog\:mr-auto{margin-right:auto}.uog\:mb-0{margin-bottom:calc(var(--uog-spacing)*0)}.uog\:mb-1{margin-bottom:calc(var(--uog-spacing)*1)}.uog\:mb-2{margin-bottom:calc(var(--uog-spacing)*2)}.uog\:mb-3\.75{margin-bottom:calc(var(--uog-spacing)*3.75)}.uog\:mb-4{margin-bottom:calc(var(--uog-spacing)*4)}.uog\:ml-4{margin-left:calc(var(--uog-spacing)*4)}.uog\:ml-\[0\.25em\]{margin-left:.25em}.uog\:ml-auto{margin-left:auto}.uog\:block{display:block}.uog\:contents{display:contents}.uog\:flex{display:flex}.uog\:grid{display:grid}.uog\:hidden{display:none}.uog\:inline-block{display:inline-block}.uog\:inline-flex{display:inline-flex}.uog\:aspect-\[16\/9\]{aspect-ratio:16/9}.uog\:aspect-square{aspect-ratio:1}.uog\:aspect-video{aspect-ratio:var(--uog-aspect-video)}.uog\:size-4{width:calc(var(--uog-spacing)*4);height:calc(var(--uog-spacing)*4)}.uog\:h-1{height:calc(var(--uog-spacing)*1)}.uog\:h-2{height:calc(var(--uog-spacing)*2)}.uog\:h-5{height:calc(var(--uog-spacing)*5)}.uog\:h-9{height:calc(var(--uog-spacing)*9)}.uog\:h-16{height:calc(var(--uog-spacing)*16)}.uog\:h-\[\.75em\]{height:.75em}.uog\:h-\[1\.5em\]{height:1.5em}.uog\:h-\[1em\]{height:1em}.uog\:h-auto{height:auto}.uog\:h-fit{height:fit-content}.uog\:h-full{height:100%}.uog\:max-h-\[80vh\]{max-height:80vh}.uog\:max-h-\[calc\(85vh-14rem\)\]{max-height:calc(85vh - 14rem)}.uog\:min-h-\[7rem\]{min-height:7rem}.uog\:min-h-\[50rem\]{min-height:50rem}.uog\:w-2{width:calc(var(--uog-spacing)*2)}.uog\:w-3\/4{width:75%}.uog\:w-5{width:calc(var(--uog-spacing)*5)}.uog\:w-16{width:calc(var(--uog-spacing)*16)}.uog\:w-24{width:calc(var(--uog-spacing)*24)}.uog\:w-\[1em\]{width:1em}.uog\:w-fit{width:fit-content}.uog\:w-full{width:100%}.uog\:w-screen{width:100vw}.uog\:max-w-6xl{max-width:var(--uog-container-6xl)}.uog\:max-w-\[--tw-max-content-width\]{max-width:--tw-max-content-width}.uog\:flex-1{flex:1}.uog\:-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:-translate-y-1\/2{--tw-translate-y: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:rotate-90{rotate:90deg}.uog\:animate-fade-in{animation:var(--uog-animate-fade-in)}.uog\:animate-spin{animation:var(--uog-animate-spin)}.uog\:cursor-not-allowed{cursor:not-allowed}.uog\:cursor-pointer{cursor:pointer}.uog\:list-inside{list-style-position:inside}.uog\:list-\[circle\]{list-style-type:circle}.uog\:list-\[lower-alpha\]{list-style-type:lower-alpha}.uog\:list-\[lower-roman\]{list-style-type:lower-roman}.uog\:list-\[square\]{list-style-type:square}.uog\:list-decimal{list-style-type:decimal}.uog\:list-disc{list-style-type:disc}.uog\:grid-cols-\[1fr_1fr\]{grid-template-columns:1fr 1fr}.uog\:grid-cols-\[1fr_2fr\]{grid-template-columns:1fr 2fr}.uog\:grid-cols-\[1fr_4fr\]{grid-template-columns:1fr 4fr}.uog\:grid-cols-\[2fr_1fr\]{grid-template-columns:2fr 1fr}.uog\:grid-cols-\[4fr_1fr\]{grid-template-columns:4fr 1fr}.uog\:grid-cols-\[repeat\(var\(--items\)\,calc\(100\%\/var\(--display\)\)\)\]{grid-template-columns:repeat(var(--items),calc(100%/var(--display)))}.uog\:flex-col{flex-direction:column}.uog\:flex-col-reverse{flex-direction:column-reverse}.uog\:flex-row{flex-direction:row}.uog\:flex-row-reverse{flex-direction:row-reverse}.uog\:flex-wrap{flex-wrap:wrap}.uog\:items-center{align-items:center}.uog\:items-end{align-items:flex-end}.uog\:items-start{align-items:flex-start}.uog\:justify-between{justify-content:space-between}.uog\:justify-center{justify-content:center}.uog\:justify-end{justify-content:flex-end}.uog\:justify-start{justify-content:flex-start}.uog\:gap-0\.5{gap:calc(var(--uog-spacing)*.5)}.uog\:gap-1{gap:calc(var(--uog-spacing)*1)}.uog\:gap-2{gap:calc(var(--uog-spacing)*2)}.uog\:gap-4{gap:calc(var(--uog-spacing)*4)}.uog\:gap-5{gap:calc(var(--uog-spacing)*5)}.uog\:gap-\[1em\]{gap:1em}.uog\:overflow-hidden{overflow:hidden}.uog\:overflow-x-hidden{overflow-x:hidden}.uog\:rounded{border-radius:.25rem}.uog\:rounded-full{border-radius:3.40282e38px}.uog\:rounded-md{border-radius:var(--uog-radius-md)}.uog\:rounded-t-sm{border-top-left-radius:var(--uog-radius-sm);border-top-right-radius:var(--uog-radius-sm)}.uog\:border{border-style:var(--tw-border-style);border-width:1px}.uog\:border-0{border-style:var(--tw-border-style);border-width:0}.uog\:border-2{border-style:var(--tw-border-style);border-width:2px}.uog\:border-x{border-inline-style:var(--tw-border-style);border-inline-width:1px}.uog\:border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.uog\:border-b-4{border-bottom-style:var(--tw-border-style);border-bottom-width:4px}.uog\:border-l-4{border-left-style:var(--tw-border-style);border-left-width:4px}.uog\:border-black{border-color:var(--uog-color-black)}.uog\:border-blue{border-color:var(--uog-color-blue)}.uog\:border-dark-grey{border-color:var(--uog-color-dark-grey)}.uog\:border-green{border-color:var(--uog-color-green)}.uog\:border-light-grey{border-color:var(--uog-color-light-grey)}.uog\:border-red{border-color:var(--uog-color-red)}.uog\:border-white{border-color:var(--uog-color-white)}.uog\:border-white\/40{border-color:color-mix(in oklab,var(--uog-color-white)40%,transparent)}.uog\:border-yellow{border-color:var(--uog-color-yellow)}.uog\:border-l-black{border-left-color:var(--uog-color-black)}.uog\:border-l-blue{border-left-color:var(--uog-color-blue)}.uog\:border-l-dark-grey{border-left-color:var(--uog-color-dark-grey)}.uog\:border-l-green{border-left-color:var(--uog-color-green)}.uog\:border-l-light-grey{border-left-color:var(--uog-color-light-grey)}.uog\:border-l-red{border-left-color:var(--uog-color-red)}.uog\:border-l-white{border-left-color:var(--uog-color-white)}.uog\:border-l-yellow{border-left-color:var(--uog-color-yellow)}.uog\:bg-black{background-color:var(--uog-color-black)}.uog\:bg-black\/30{background-color:color-mix(in oklab,var(--uog-color-black)30%,transparent)}.uog\:bg-black\/40{background-color:color-mix(in oklab,var(--uog-color-black)40%,transparent)}.uog\:bg-black\/60{background-color:color-mix(in oklab,var(--uog-color-black)60%,transparent)}.uog\:bg-blue{background-color:var(--uog-color-blue)}.uog\:bg-dark-grey{background-color:var(--uog-color-dark-grey)}.uog\:bg-dark-grey-bg{background-color:var(--uog-color-dark-grey-bg)}.uog\:bg-green{background-color:var(--uog-color-green)}.uog\:bg-light-grey{background-color:var(--uog-color-light-grey)}.uog\:bg-light-grey-bg{background-color:var(--uog-color-light-grey-bg)}.uog\:bg-red{background-color:var(--uog-color-red)}.uog\:bg-transparent{background-color:#0000}.uog\:bg-white{background-color:var(--uog-color-white)}.uog\:bg-white\/60{background-color:color-mix(in oklab,var(--uog-color-white)60%,transparent)}.uog\:bg-yellow{background-color:var(--uog-color-yellow)}.uog\:bg-gradient-to-b{--tw-gradient-position:to bottom in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-gradient-to-l{--tw-gradient-position:to left in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-gradient-to-r{--tw-gradient-position:to right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-gradient-to-t{--tw-gradient-position:to top in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-radial{--tw-gradient-position:in oklab;background-image:radial-gradient(var(--tw-gradient-stops))}.uog\:from-black\/50{--tw-gradient-from:color-mix(in oklab,var(--uog-color-black)50%,transparent);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.uog\:from-white\/50{--tw-gradient-from:color-mix(in oklab,var(--uog-color-white)50%,transparent);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.uog\:via-black\/20{--tw-gradient-via:color-mix(in oklab,var(--uog-color-black)20%,transparent);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.uog\:via-white\/20{--tw-gradient-via:color-mix(in oklab,var(--uog-color-white)20%,transparent);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.uog\:via-30\%{--tw-gradient-via-position:30%}.uog\:to-transparent{--tw-gradient-to:transparent;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.uog\:fill-black{fill:var(--uog-color-black)}.uog\:object-cover{object-fit:cover}.uog\:p-0{padding:calc(var(--uog-spacing)*0)}.uog\:p-1{padding:calc(var(--uog-spacing)*1)}.uog\:p-1\.5{padding:calc(var(--uog-spacing)*1.5)}.uog\:p-2\.5{padding:calc(var(--uog-spacing)*2.5)}.uog\:p-3{padding:calc(var(--uog-spacing)*3)}.uog\:p-4{padding:calc(var(--uog-spacing)*4)}.uog\:p-5{padding:calc(var(--uog-spacing)*5)}.uog\:p-6{padding:calc(var(--uog-spacing)*6)}.uog\:p-7{padding:calc(var(--uog-spacing)*7)}.uog\:px-0{padding-inline:calc(var(--uog-spacing)*0)}.uog\:px-4{padding-inline:calc(var(--uog-spacing)*4)}.uog\:px-5{padding-inline:calc(var(--uog-spacing)*5)}.uog\:px-6{padding-inline:calc(var(--uog-spacing)*6)}.uog\:py-0{padding-block:calc(var(--uog-spacing)*0)}.uog\:py-2{padding-block:calc(var(--uog-spacing)*2)}.uog\:py-3{padding-block:calc(var(--uog-spacing)*3)}.uog\:py-4{padding-block:calc(var(--uog-spacing)*4)}.uog\:pt-2{padding-top:calc(var(--uog-spacing)*2)}.uog\:pt-8{padding-top:calc(var(--uog-spacing)*8)}.uog\:pb-4{padding-bottom:calc(var(--uog-spacing)*4)}.uog\:pl-4{padding-left:calc(var(--uog-spacing)*4)}.uog\:pl-5{padding-left:calc(var(--uog-spacing)*5)}.uog\:text-center{text-align:center}.uog\:text-left{text-align:left}.uog\:font-serif{font-family:var(--uog-font-serif)}.uog\:text-2xl{font-size:var(--uog-text-2xl);line-height:var(--tw-leading,var(--uog-text-2xl--line-height))}.uog\:text-3xl{font-size:var(--uog-text-3xl);line-height:var(--tw-leading,var(--uog-text-3xl--line-height))}.uog\:text-4xl{font-size:var(--uog-text-4xl);line-height:var(--tw-leading,var(--uog-text-4xl--line-height))}.uog\:text-base{font-size:var(--uog-text-base);line-height:var(--tw-leading,var(--uog-text-base--line-height))}.uog\:text-lg{font-size:var(--uog-text-lg);line-height:var(--tw-leading,var(--uog-text-lg--line-height))}.uog\:text-sm{font-size:var(--uog-text-sm);line-height:var(--tw-leading,var(--uog-text-sm--line-height))}.uog\:text-xl{font-size:var(--uog-text-xl);line-height:var(--tw-leading,var(--uog-text-xl--line-height))}.uog\:text-\[1\.5rem\]{font-size:1.5rem}.uog\:text-\[4rem\]{font-size:4rem}.uog\:text-\[6rem\]{font-size:6rem}.uog\:text-\[8rem\]{font-size:8rem}.uog\:text-\[14rem\]{font-size:14rem}.uog\:text-\[18rem\]{font-size:18rem}.uog\:leading-\[1\.4\]{--tw-leading:1.4;line-height:1.4}.uog\:leading-\[1\.6\]{--tw-leading:1.6;line-height:1.6}.uog\:font-bold{--tw-font-weight:var(--uog-font-weight-bold);font-weight:var(--uog-font-weight-bold)}.uog\:font-light{--tw-font-weight:var(--uog-font-weight-light);font-weight:var(--uog-font-weight-light)}.uog\:font-medium{--tw-font-weight:var(--uog-font-weight-medium);font-weight:var(--uog-font-weight-medium)}.uog\:font-normal{--tw-font-weight:var(--uog-font-weight-normal);font-weight:var(--uog-font-weight-normal)}.uog\:text-black{color:var(--uog-color-black)}.uog\:text-black-contrast{color:var(--uog-color-black-contrast)}.uog\:text-blue{color:var(--uog-color-blue)}.uog\:text-blue-contrast{color:var(--uog-color-blue-contrast)}.uog\:text-blue-on-light{color:var(--uog-color-blue-on-light)}.uog\:text-body-copy{color:var(--uog-color-body-copy)}.uog\:text-body-copy-bold{color:var(--uog-color-body-copy-bold)}.uog\:text-body-copy-link{color:var(--uog-color-body-copy-link)}.uog\:text-body-copy-link-on-dark{color:var(--uog-color-body-copy-link-on-dark)}.uog\:text-body-copy-link-on-light{color:var(--uog-color-body-copy-link-on-light)}.uog\:text-body-copy-on-dark{color:var(--uog-color-body-copy-on-dark)}.uog\:text-dark-grey{color:var(--uog-color-dark-grey)}.uog\:text-dark-grey-contrast{color:var(--uog-color-dark-grey-contrast)}.uog\:text-green{color:var(--uog-color-green)}.uog\:text-green-contrast{color:var(--uog-color-green-contrast)}.uog\:text-light-grey{color:var(--uog-color-light-grey)}.uog\:text-light-grey-contrast{color:var(--uog-color-light-grey-contrast)}.uog\:text-red{color:var(--uog-color-red)}.uog\:text-red-contrast{color:var(--uog-color-red-contrast)}.uog\:text-white{color:var(--uog-color-white)}.uog\:text-white-contrast{color:var(--uog-color-white-contrast)}.uog\:text-yellow{color:var(--uog-color-yellow)}.uog\:text-yellow-contrast{color:var(--uog-color-yellow-contrast)}.uog\:italic{font-style:italic}.uog\:no-underline{text-decoration-line:none}.uog\:underline{text-decoration-line:underline}.uog\:decoration-current{text-decoration-color:currentColor}.uog\:decoration-transparent{text-decoration-color:#0000}.uog\:decoration-1{text-decoration-thickness:1px}.uog\:opacity-0{opacity:0}.uog\:opacity-50{opacity:.5}.uog\:opacity-60{opacity:.6}.uog\:shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.uog\:blur-sm{--tw-blur:blur(var(--uog-blur-sm));filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.uog\:transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-\[transform\,color\,opacity\,visibility\]{transition-property:transform,color,opacity,visibility;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:duration-200{--tw-duration:.2s;transition-duration:.2s}.uog\:duration-300{--tw-duration:.3s;transition-duration:.3s}.uog\:ease-in-out{--tw-ease:var(--uog-ease-in-out);transition-timing-function:var(--uog-ease-in-out)}.uog\:ease-out{--tw-ease:var(--uog-ease-out);transition-timing-function:var(--uog-ease-out)}@media (hover:hover){.uog\:group-hover\:scale-110:is(:where(.uog\:group):hover *){--tw-scale-x:110%;--tw-scale-y:110%;--tw-scale-z:110%;scale:var(--tw-scale-x)var(--tw-scale-y)}.uog\:group-hover\:bg-yellow:is(:where(.uog\:group):hover *){background-color:var(--uog-color-yellow)}}.uog\:group-ui-checked\:opacity-100:is(:where(.uog\:group)[data-headlessui-state~=checked] *),.uog\:group-ui-checked\:opacity-100:is(:where([data-headlessui-state~=checked]) :where(.uog\:group) *){opacity:1}.uog\:group-hocus-visible\:bg-yellow:is(:is(:where(.uog\:group):hover,:where(.uog\:group):focus-visible) *){background-color:var(--uog-color-yellow)}.uog\:group-hocus-visible\:text-blue-contrast:is(:is(:where(.uog\:group):hover,:where(.uog\:group):focus-visible) *){color:var(--uog-color-blue-contrast)}.uog\:group-hocus-visible\:text-yellow-contrast:is(:is(:where(.uog\:group):hover,:where(.uog\:group):focus-visible) *){color:var(--uog-color-yellow-contrast)}.uog\:focus-within\:border-blue:focus-within{border-color:var(--uog-color-blue)}@media (hover:hover){.uog\:hover\:bg-red:hover{background-color:var(--uog-color-red)}.uog\:hover\:bg-red\/30:hover{background-color:color-mix(in oklab,var(--uog-color-red)30%,transparent)}.uog\:hover\:decoration-transparent:hover{text-decoration-color:#0000}}.uog\:focus\:bg-red\/30:focus{background-color:color-mix(in oklab,var(--uog-color-red)30%,transparent)}.uog\:focus\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.uog\:focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.uog\:focus-visible\:-translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:focus-visible\:translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:focus-visible\:text-black:focus-visible{color:var(--uog-color-black)}.uog\:focus-visible\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.uog\:focus-visible\:ring-black:focus-visible{--tw-ring-color:var(--uog-color-black)}.uog\:focus-visible\:ring-blue:focus-visible{--tw-ring-color:var(--uog-color-blue)}.uog\:focus-visible\:ring-body-copy-link:focus-visible{--tw-ring-color:var(--uog-color-body-copy-link)}.uog\:focus-visible\:ring-body-copy-link-on-light:focus-visible{--tw-ring-color:var(--uog-color-body-copy-link-on-light)}.uog\:focus-visible\:ring-dark-grey:focus-visible{--tw-ring-color:var(--uog-color-dark-grey)}.uog\:focus-visible\:ring-green:focus-visible{--tw-ring-color:var(--uog-color-green)}.uog\:focus-visible\:ring-light-grey:focus-visible{--tw-ring-color:var(--uog-color-light-grey)}.uog\:focus-visible\:ring-red:focus-visible{--tw-ring-color:var(--uog-color-red)}.uog\:focus-visible\:ring-white:focus-visible{--tw-ring-color:var(--uog-color-white)}.uog\:focus-visible\:ring-yellow:focus-visible{--tw-ring-color:var(--uog-color-yellow)}.uog\:focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.uog\:focus-visible\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.uog\:has-\[strong\]\:text-body-copy-bold:has(:is(strong)){color:var(--uog-color-body-copy-bold)}.uog\:data-\[closed\]\:opacity-0[data-closed]{opacity:0}@media (width>=40rem){.uog\:sm\:px-16{padding-inline:calc(var(--uog-spacing)*16)}.uog\:sm\:text-6xl{font-size:var(--uog-text-6xl);line-height:var(--tw-leading,var(--uog-text-6xl--line-height))}}@media (width>=48rem){.uog\:md\:sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.uog\:md\:absolute{position:absolute}.uog\:md\:z-20{z-index:20}.uog\:md\:block{display:block}.uog\:md\:contents{display:contents}.uog\:md\:grid{display:grid}.uog\:md\:aspect-\[2\.625\]{aspect-ratio:2.625}.uog\:md\:w-1\/3{width:33.3333%}.uog\:md\:w-9{width:calc(var(--uog-spacing)*9)}.uog\:md\:flex-row{flex-direction:row}.uog\:md\:rounded-full{border-radius:3.40282e38px}.uog\:md\:bg-black\/70{background-color:color-mix(in oklab,var(--uog-color-black)70%,transparent)}.uog\:md\:p-4{padding:calc(var(--uog-spacing)*4)}.uog\:md\:px-4{padding-inline:calc(var(--uog-spacing)*4)}.uog\:md\:text-4xl{font-size:var(--uog-text-4xl);line-height:var(--tw-leading,var(--uog-text-4xl--line-height))}}@media (width>=64rem){.uog\:lg\:absolute{position:absolute}.uog\:lg\:bottom-0{bottom:calc(var(--uog-spacing)*0)}.uog\:lg\:left-1\/2{left:50%}.uog\:lg\:container{width:100%}@media (width>=40rem){.uog\:lg\:container{max-width:40rem}}@media (width>=48rem){.uog\:lg\:container{max-width:48rem}}.uog\:lg\:container{max-width:64rem}@media (width>=80rem){.uog\:lg\:container{max-width:80rem}}@media (width>=96rem){.uog\:lg\:container{max-width:96rem}}.uog\:lg\:mx-auto{margin-inline:auto}.uog\:lg\:ml-auto{margin-left:auto}.uog\:lg\:max-w-7xl{max-width:var(--uog-container-7xl)}.uog\:lg\:max-w-\[50\%\]{max-width:50%}.uog\:lg\:-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:lg\:items-center{align-items:center}.uog\:lg\:items-end{align-items:flex-end}.uog\:lg\:bg-black\/80{background-color:color-mix(in oklab,var(--uog-color-black)80%,transparent)}.uog\:lg\:p-4{padding:calc(var(--uog-spacing)*4)}.uog\:lg\:text-center{text-align:center}.uog\:lg\:text-right{text-align:right}.uog\:lg\:backdrop-blur{--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}}.uog\:ui-checked\:bg-black[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-black{background-color:var(--uog-color-black)}.uog\:ui-checked\:bg-blue[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-blue{background-color:var(--uog-color-blue)}.uog\:ui-checked\:bg-dark-grey[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-dark-grey{background-color:var(--uog-color-dark-grey)}.uog\:ui-checked\:bg-green[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-green{background-color:var(--uog-color-green)}.uog\:ui-checked\:bg-light-grey[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-light-grey{background-color:var(--uog-color-light-grey)}.uog\:ui-checked\:bg-red[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-red{background-color:var(--uog-color-red)}.uog\:ui-checked\:bg-white[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-white{background-color:var(--uog-color-white)}.uog\:ui-checked\:bg-yellow[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-yellow{background-color:var(--uog-color-yellow)}.uog\:hocus-visible\:-translate-x-1:hover,.uog\:hocus-visible\:-translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:hocus-visible\:translate-x-1:hover,.uog\:hocus-visible\:translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:hocus-visible\:bg-black:hover,.uog\:hocus-visible\:bg-black:focus-visible{background-color:var(--uog-color-black)}.uog\:hocus-visible\:bg-black-focus:hover,.uog\:hocus-visible\:bg-black-focus:focus-visible{background-color:var(--uog-color-black-focus)}.uog\:hocus-visible\:bg-blue:hover,.uog\:hocus-visible\:bg-blue:focus-visible{background-color:var(--uog-color-blue)}.uog\:hocus-visible\:bg-blue-focus:hover,.uog\:hocus-visible\:bg-blue-focus:focus-visible{background-color:var(--uog-color-blue-focus)}.uog\:hocus-visible\:bg-dark-grey:hover,.uog\:hocus-visible\:bg-dark-grey:focus-visible{background-color:var(--uog-color-dark-grey)}.uog\:hocus-visible\:bg-dark-grey-focus:hover,.uog\:hocus-visible\:bg-dark-grey-focus:focus-visible{background-color:var(--uog-color-dark-grey-focus)}.uog\:hocus-visible\:bg-green:hover,.uog\:hocus-visible\:bg-green:focus-visible{background-color:var(--uog-color-green)}.uog\:hocus-visible\:bg-green-focus:hover,.uog\:hocus-visible\:bg-green-focus:focus-visible{background-color:var(--uog-color-green-focus)}.uog\:hocus-visible\:bg-light-grey:hover,.uog\:hocus-visible\:bg-light-grey:focus-visible{background-color:var(--uog-color-light-grey)}.uog\:hocus-visible\:bg-light-grey-focus:hover,.uog\:hocus-visible\:bg-light-grey-focus:focus-visible{background-color:var(--uog-color-light-grey-focus)}.uog\:hocus-visible\:bg-red:hover,.uog\:hocus-visible\:bg-red:focus-visible{background-color:var(--uog-color-red)}.uog\:hocus-visible\:bg-red-focus:hover,.uog\:hocus-visible\:bg-red-focus:focus-visible{background-color:var(--uog-color-red-focus)}.uog\:hocus-visible\:bg-white:hover,.uog\:hocus-visible\:bg-white:focus-visible{background-color:var(--uog-color-white)}.uog\:hocus-visible\:bg-white-focus:hover,.uog\:hocus-visible\:bg-white-focus:focus-visible{background-color:var(--uog-color-white-focus)}.uog\:hocus-visible\:bg-yellow:hover,.uog\:hocus-visible\:bg-yellow:focus-visible{background-color:var(--uog-color-yellow)}.uog\:hocus-visible\:bg-yellow-focus:hover,.uog\:hocus-visible\:bg-yellow-focus:focus-visible{background-color:var(--uog-color-yellow-focus)}.uog\:hocus-visible\:text-black:hover,.uog\:hocus-visible\:text-black:focus-visible{color:var(--uog-color-black)}.uog\:hocus-visible\:text-black-contrast:hover,.uog\:hocus-visible\:text-black-contrast:focus-visible{color:var(--uog-color-black-contrast)}.uog\:hocus-visible\:text-blue-contrast:hover,.uog\:hocus-visible\:text-blue-contrast:focus-visible{color:var(--uog-color-blue-contrast)}.uog\:hocus-visible\:text-dark-grey-contrast:hover,.uog\:hocus-visible\:text-dark-grey-contrast:focus-visible{color:var(--uog-color-dark-grey-contrast)}.uog\:hocus-visible\:text-green-contrast:hover,.uog\:hocus-visible\:text-green-contrast:focus-visible{color:var(--uog-color-green-contrast)}.uog\:hocus-visible\:text-light-grey-contrast:hover,.uog\:hocus-visible\:text-light-grey-contrast:focus-visible{color:var(--uog-color-light-grey-contrast)}.uog\:hocus-visible\:text-red-contrast:hover,.uog\:hocus-visible\:text-red-contrast:focus-visible{color:var(--uog-color-red-contrast)}.uog\:hocus-visible\:text-white-contrast:hover,.uog\:hocus-visible\:text-white-contrast:focus-visible{color:var(--uog-color-white-contrast)}.uog\:hocus-visible\:text-yellow-contrast:hover,.uog\:hocus-visible\:text-yellow-contrast:focus-visible{color:var(--uog-color-yellow-contrast)}.uog\:hocus-visible\:decoration-black:hover,.uog\:hocus-visible\:decoration-black:focus-visible{-webkit-text-decoration-color:var(--uog-color-black);text-decoration-color:var(--uog-color-black)}.uog\:hocus-visible\:decoration-transparent:hover,.uog\:hocus-visible\:decoration-transparent:focus-visible{text-decoration-color:#0000}.uog\:\[\&_p\:last-child\]\:mb-0 p:last-child{margin-bottom:calc(var(--uog-spacing)*0)}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@keyframes spin{to{transform:rotate(360deg)}}
|
|
1
|
+
/*! tailwindcss v4.0.11 | MIT License | https://tailwindcss.com */@layer theme{:root,:host{--uog-font-serif:"Bitter",ui-serif,Georgia,Cambria,"Times New Roman",Times,serif;--uog-color-black:#000;--uog-color-white:#fff;--uog-spacing:.4rem;--uog-container-6xl:72rem;--uog-container-7xl:80rem;--uog-text-sm:1.4rem;--uog-text-sm--line-height:1.4;--uog-text-base:1.6rem;--uog-text-base--line-height:1.4;--uog-text-lg:1.8rem;--uog-text-lg--line-height:1.4;--uog-text-xl:2rem;--uog-text-xl--line-height:1.4;--uog-text-2xl:2.5rem;--uog-text-2xl--line-height:1.4;--uog-text-3xl:3rem;--uog-text-3xl--line-height:1.4;--uog-text-4xl:4rem;--uog-text-4xl--line-height:1.4;--uog-text-6xl:6rem;--uog-text-6xl--line-height:1.6;--uog-font-weight-light:300;--uog-font-weight-normal:400;--uog-font-weight-medium:500;--uog-font-weight-bold:700;--uog-radius-sm:.25rem;--uog-radius-md:.375rem;--uog-ease-out:cubic-bezier(0,0,.2,1);--uog-ease-in-out:cubic-bezier(.4,0,.2,1);--uog-animate-spin:spin 1s linear infinite;--uog-blur-sm:8px;--uog-aspect-video:16/9;--uog-default-transition-duration:.15s;--uog-default-transition-timing-function:cubic-bezier(.4,0,.2,1);--uog-color-white-contrast:#000;--uog-color-black-focus:#444;--uog-color-black-contrast:#fff;--uog-color-red:#e51937;--uog-color-red-focus:#b3142c;--uog-color-red-contrast:#fff;--uog-color-yellow:#ffc429;--uog-color-yellow-focus:#ffe299;--uog-color-yellow-contrast:#000;--uog-color-blue:#187bb4;--uog-color-blue-focus:#135f8b;--uog-color-blue-on-light:#1775ab;--uog-color-blue-contrast:#fff;--uog-color-green:#318738;--uog-color-green-focus:#27682c;--uog-color-green-contrast:#fff;--uog-color-grey-light:#d8d8d8;--uog-color-grey-light-contrast:#000;--uog-color-grey-light-bg:#f5f5f5;--uog-color-grey-dark:#747676;--uog-color-grey-dark-contrast:#fff;--uog-color-grey-dark-bg:#222;--uog-color-body-copy:#555;--uog-color-body-copy-on-dark:#ccc;--uog-color-body-copy-bold:#333;--uog-color-body-copy-link:#187bb4;--uog-color-body-copy-link-on-light:#166ea2;--uog-color-body-copy-link-on-dark:#1d93d7;--uog-animate-fade-in:fade .25s ease-in-out 1 normal forwards}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}body{line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1;color:color-mix(in oklab,currentColor 50%,transparent)}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}:root{--tw-max-content-width:137rem;font-size:62.5%}body{margin:0;padding:0;font-size:1.6rem}@keyframes fade{0%{opacity:0}to{opacity:1}}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}}@layer components;@layer utilities{.uog\:pointer-events-none{pointer-events:none}.uog\:invisible{visibility:hidden}.uog\:sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.uog\:absolute{position:absolute}.uog\:fixed{position:fixed}.uog\:relative{position:relative}.uog\:inset-0{inset:calc(var(--uog-spacing)*0)}.uog\:top-0{top:calc(var(--uog-spacing)*0)}.uog\:top-1\/2{top:50%}.uog\:right-0{right:calc(var(--uog-spacing)*0)}.uog\:bottom-0{bottom:calc(var(--uog-spacing)*0)}.uog\:left-0{left:calc(var(--uog-spacing)*0)}.uog\:left-1\/2{left:50%}.uog\:z-0{z-index:0}.uog\:z-10{z-index:10}.uog\:z-20{z-index:20}.uog\:z-50{z-index:50}.uog\:col-start-1{grid-column-start:1}.uog\:col-start-2{grid-column-start:2}.uog\:row-start-1{grid-row-start:1}.uog\:container{width:100%}@media (width>=40rem){.uog\:container{max-width:40rem}}@media (width>=48rem){.uog\:container{max-width:48rem}}@media (width>=64rem){.uog\:container{max-width:64rem}}@media (width>=80rem){.uog\:container{max-width:80rem}}@media (width>=96rem){.uog\:container{max-width:96rem}}.uog\:mx-auto{margin-inline:auto}.uog\:my-2{margin-block:calc(var(--uog-spacing)*2)}.uog\:my-7{margin-block:calc(var(--uog-spacing)*7)}.uog\:mt-3\.75{margin-top:calc(var(--uog-spacing)*3.75)}.uog\:mt-7\.5{margin-top:calc(var(--uog-spacing)*7.5)}.uog\:mr-\[0\.3em\]{margin-right:.3em}.uog\:mr-auto{margin-right:auto}.uog\:mb-0{margin-bottom:calc(var(--uog-spacing)*0)}.uog\:mb-1{margin-bottom:calc(var(--uog-spacing)*1)}.uog\:mb-2{margin-bottom:calc(var(--uog-spacing)*2)}.uog\:mb-3\.75{margin-bottom:calc(var(--uog-spacing)*3.75)}.uog\:mb-4{margin-bottom:calc(var(--uog-spacing)*4)}.uog\:ml-4{margin-left:calc(var(--uog-spacing)*4)}.uog\:ml-\[0\.25em\]{margin-left:.25em}.uog\:ml-auto{margin-left:auto}.uog\:block{display:block}.uog\:contents{display:contents}.uog\:flex{display:flex}.uog\:grid{display:grid}.uog\:hidden{display:none}.uog\:inline-block{display:inline-block}.uog\:inline-flex{display:inline-flex}.uog\:aspect-\[16\/9\]{aspect-ratio:16/9}.uog\:aspect-square{aspect-ratio:1}.uog\:aspect-video{aspect-ratio:var(--uog-aspect-video)}.uog\:size-4{width:calc(var(--uog-spacing)*4);height:calc(var(--uog-spacing)*4)}.uog\:h-1{height:calc(var(--uog-spacing)*1)}.uog\:h-2{height:calc(var(--uog-spacing)*2)}.uog\:h-5{height:calc(var(--uog-spacing)*5)}.uog\:h-9{height:calc(var(--uog-spacing)*9)}.uog\:h-16{height:calc(var(--uog-spacing)*16)}.uog\:h-\[\.75em\]{height:.75em}.uog\:h-\[1\.5em\]{height:1.5em}.uog\:h-\[1em\]{height:1em}.uog\:h-auto{height:auto}.uog\:h-fit{height:fit-content}.uog\:h-full{height:100%}.uog\:max-h-\[80vh\]{max-height:80vh}.uog\:max-h-\[calc\(85vh-14rem\)\]{max-height:calc(85vh - 14rem)}.uog\:min-h-\[7rem\]{min-height:7rem}.uog\:min-h-\[50rem\]{min-height:50rem}.uog\:w-2{width:calc(var(--uog-spacing)*2)}.uog\:w-3\/4{width:75%}.uog\:w-5{width:calc(var(--uog-spacing)*5)}.uog\:w-16{width:calc(var(--uog-spacing)*16)}.uog\:w-24{width:calc(var(--uog-spacing)*24)}.uog\:w-\[1em\]{width:1em}.uog\:w-fit{width:fit-content}.uog\:w-full{width:100%}.uog\:w-screen{width:100vw}.uog\:max-w-6xl{max-width:var(--uog-container-6xl)}.uog\:max-w-\[--tw-max-content-width\]{max-width:--tw-max-content-width}.uog\:flex-1{flex:1}.uog\:-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:-translate-y-1\/2{--tw-translate-y: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:rotate-90{rotate:90deg}.uog\:animate-fade-in{animation:var(--uog-animate-fade-in)}.uog\:animate-spin{animation:var(--uog-animate-spin)}.uog\:cursor-not-allowed{cursor:not-allowed}.uog\:cursor-pointer{cursor:pointer}.uog\:list-inside{list-style-position:inside}.uog\:list-\[circle\]{list-style-type:circle}.uog\:list-\[lower-alpha\]{list-style-type:lower-alpha}.uog\:list-\[lower-roman\]{list-style-type:lower-roman}.uog\:list-\[square\]{list-style-type:square}.uog\:list-decimal{list-style-type:decimal}.uog\:list-disc{list-style-type:disc}.uog\:grid-cols-\[1fr_1fr\]{grid-template-columns:1fr 1fr}.uog\:grid-cols-\[1fr_2fr\]{grid-template-columns:1fr 2fr}.uog\:grid-cols-\[1fr_4fr\]{grid-template-columns:1fr 4fr}.uog\:grid-cols-\[2fr_1fr\]{grid-template-columns:2fr 1fr}.uog\:grid-cols-\[4fr_1fr\]{grid-template-columns:4fr 1fr}.uog\:grid-cols-\[repeat\(var\(--items\)\,calc\(100\%\/var\(--display\)\)\)\]{grid-template-columns:repeat(var(--items),calc(100%/var(--display)))}.uog\:flex-col{flex-direction:column}.uog\:flex-col-reverse{flex-direction:column-reverse}.uog\:flex-row{flex-direction:row}.uog\:flex-row-reverse{flex-direction:row-reverse}.uog\:flex-wrap{flex-wrap:wrap}.uog\:items-center{align-items:center}.uog\:items-end{align-items:flex-end}.uog\:items-start{align-items:flex-start}.uog\:justify-between{justify-content:space-between}.uog\:justify-center{justify-content:center}.uog\:justify-end{justify-content:flex-end}.uog\:justify-start{justify-content:flex-start}.uog\:gap-0\.5{gap:calc(var(--uog-spacing)*.5)}.uog\:gap-1{gap:calc(var(--uog-spacing)*1)}.uog\:gap-2{gap:calc(var(--uog-spacing)*2)}.uog\:gap-4{gap:calc(var(--uog-spacing)*4)}.uog\:gap-5{gap:calc(var(--uog-spacing)*5)}.uog\:gap-\[1em\]{gap:1em}.uog\:overflow-hidden{overflow:hidden}.uog\:overflow-x-hidden{overflow-x:hidden}.uog\:rounded{border-radius:.25rem}.uog\:rounded-full{border-radius:3.40282e38px}.uog\:rounded-md{border-radius:var(--uog-radius-md)}.uog\:rounded-t-sm{border-top-left-radius:var(--uog-radius-sm);border-top-right-radius:var(--uog-radius-sm)}.uog\:border{border-style:var(--tw-border-style);border-width:1px}.uog\:border-0{border-style:var(--tw-border-style);border-width:0}.uog\:border-2{border-style:var(--tw-border-style);border-width:2px}.uog\:border-x{border-inline-style:var(--tw-border-style);border-inline-width:1px}.uog\:border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.uog\:border-b-4{border-bottom-style:var(--tw-border-style);border-bottom-width:4px}.uog\:border-l-3{border-left-style:var(--tw-border-style);border-left-width:3px}.uog\:border-l-4{border-left-style:var(--tw-border-style);border-left-width:4px}.uog\:border-black{border-color:var(--uog-color-black)}.uog\:border-blue{border-color:var(--uog-color-blue)}.uog\:border-green{border-color:var(--uog-color-green)}.uog\:border-grey-light{border-color:var(--uog-color-grey-light)}.uog\:border-red{border-color:var(--uog-color-red)}.uog\:border-white\/40{border-color:color-mix(in oklab,var(--uog-color-white)40%,transparent)}.uog\:border-yellow{border-color:var(--uog-color-yellow)}.uog\:border-l-black{border-left-color:var(--uog-color-black)}.uog\:border-l-blue{border-left-color:var(--uog-color-blue)}.uog\:border-l-green{border-left-color:var(--uog-color-green)}.uog\:border-l-grey-dark{border-left-color:var(--uog-color-grey-dark)}.uog\:border-l-grey-light{border-left-color:var(--uog-color-grey-light)}.uog\:border-l-red{border-left-color:var(--uog-color-red)}.uog\:border-l-white{border-left-color:var(--uog-color-white)}.uog\:border-l-yellow{border-left-color:var(--uog-color-yellow)}.uog\:bg-black{background-color:var(--uog-color-black)}.uog\:bg-black\/40{background-color:color-mix(in oklab,var(--uog-color-black)40%,transparent)}.uog\:bg-black\/60{background-color:color-mix(in oklab,var(--uog-color-black)60%,transparent)}.uog\:bg-blue{background-color:var(--uog-color-blue)}.uog\:bg-green{background-color:var(--uog-color-green)}.uog\:bg-grey-dark{background-color:var(--uog-color-grey-dark)}.uog\:bg-grey-dark-bg{background-color:var(--uog-color-grey-dark-bg)}.uog\:bg-grey-light{background-color:var(--uog-color-grey-light)}.uog\:bg-grey-light-bg{background-color:var(--uog-color-grey-light-bg)}.uog\:bg-red{background-color:var(--uog-color-red)}.uog\:bg-transparent{background-color:#0000}.uog\:bg-white{background-color:var(--uog-color-white)}.uog\:bg-white\/60{background-color:color-mix(in oklab,var(--uog-color-white)60%,transparent)}.uog\:bg-yellow{background-color:var(--uog-color-yellow)}.uog\:bg-gradient-to-b{--tw-gradient-position:to bottom in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-gradient-to-l{--tw-gradient-position:to left in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-gradient-to-r{--tw-gradient-position:to right in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-gradient-to-t{--tw-gradient-position:to top in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.uog\:bg-radial{--tw-gradient-position:in oklab;background-image:radial-gradient(var(--tw-gradient-stops))}.uog\:from-black\/50{--tw-gradient-from:color-mix(in oklab,var(--uog-color-black)50%,transparent);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.uog\:from-white\/50{--tw-gradient-from:color-mix(in oklab,var(--uog-color-white)50%,transparent);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.uog\:via-black\/20{--tw-gradient-via:color-mix(in oklab,var(--uog-color-black)20%,transparent);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.uog\:via-white\/20{--tw-gradient-via:color-mix(in oklab,var(--uog-color-white)20%,transparent);--tw-gradient-via-stops:var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-via)var(--tw-gradient-via-position),var(--tw-gradient-to)var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-via-stops)}.uog\:via-30\%{--tw-gradient-via-position:30%}.uog\:to-transparent{--tw-gradient-to:transparent;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.uog\:fill-black{fill:var(--uog-color-black)}.uog\:object-cover{object-fit:cover}.uog\:p-0{padding:calc(var(--uog-spacing)*0)}.uog\:p-1{padding:calc(var(--uog-spacing)*1)}.uog\:p-1\.5{padding:calc(var(--uog-spacing)*1.5)}.uog\:p-2\.5{padding:calc(var(--uog-spacing)*2.5)}.uog\:p-3{padding:calc(var(--uog-spacing)*3)}.uog\:p-4{padding:calc(var(--uog-spacing)*4)}.uog\:p-5{padding:calc(var(--uog-spacing)*5)}.uog\:p-6{padding:calc(var(--uog-spacing)*6)}.uog\:p-7{padding:calc(var(--uog-spacing)*7)}.uog\:px-0{padding-inline:calc(var(--uog-spacing)*0)}.uog\:px-4{padding-inline:calc(var(--uog-spacing)*4)}.uog\:px-5{padding-inline:calc(var(--uog-spacing)*5)}.uog\:px-6{padding-inline:calc(var(--uog-spacing)*6)}.uog\:py-0{padding-block:calc(var(--uog-spacing)*0)}.uog\:py-2{padding-block:calc(var(--uog-spacing)*2)}.uog\:py-3{padding-block:calc(var(--uog-spacing)*3)}.uog\:py-4{padding-block:calc(var(--uog-spacing)*4)}.uog\:pt-2{padding-top:calc(var(--uog-spacing)*2)}.uog\:pt-8{padding-top:calc(var(--uog-spacing)*8)}.uog\:pb-4{padding-bottom:calc(var(--uog-spacing)*4)}.uog\:pl-4{padding-left:calc(var(--uog-spacing)*4)}.uog\:pl-5{padding-left:calc(var(--uog-spacing)*5)}.uog\:text-center{text-align:center}.uog\:text-left{text-align:left}.uog\:font-serif{font-family:var(--uog-font-serif)}.uog\:text-2xl{font-size:var(--uog-text-2xl);line-height:var(--tw-leading,var(--uog-text-2xl--line-height))}.uog\:text-3xl{font-size:var(--uog-text-3xl);line-height:var(--tw-leading,var(--uog-text-3xl--line-height))}.uog\:text-4xl{font-size:var(--uog-text-4xl);line-height:var(--tw-leading,var(--uog-text-4xl--line-height))}.uog\:text-base{font-size:var(--uog-text-base);line-height:var(--tw-leading,var(--uog-text-base--line-height))}.uog\:text-lg{font-size:var(--uog-text-lg);line-height:var(--tw-leading,var(--uog-text-lg--line-height))}.uog\:text-sm{font-size:var(--uog-text-sm);line-height:var(--tw-leading,var(--uog-text-sm--line-height))}.uog\:text-xl{font-size:var(--uog-text-xl);line-height:var(--tw-leading,var(--uog-text-xl--line-height))}.uog\:text-\[1\.5rem\]{font-size:1.5rem}.uog\:text-\[4rem\]{font-size:4rem}.uog\:text-\[6rem\]{font-size:6rem}.uog\:text-\[8rem\]{font-size:8rem}.uog\:text-\[14rem\]{font-size:14rem}.uog\:text-\[18rem\]{font-size:18rem}.uog\:leading-\[1\.4\]{--tw-leading:1.4;line-height:1.4}.uog\:leading-\[1\.6\]{--tw-leading:1.6;line-height:1.6}.uog\:font-bold{--tw-font-weight:var(--uog-font-weight-bold);font-weight:var(--uog-font-weight-bold)}.uog\:font-light{--tw-font-weight:var(--uog-font-weight-light);font-weight:var(--uog-font-weight-light)}.uog\:font-medium{--tw-font-weight:var(--uog-font-weight-medium);font-weight:var(--uog-font-weight-medium)}.uog\:font-normal{--tw-font-weight:var(--uog-font-weight-normal);font-weight:var(--uog-font-weight-normal)}.uog\:text-black{color:var(--uog-color-black)}.uog\:text-black-contrast{color:var(--uog-color-black-contrast)}.uog\:text-blue{color:var(--uog-color-blue)}.uog\:text-blue-contrast{color:var(--uog-color-blue-contrast)}.uog\:text-blue-on-light{color:var(--uog-color-blue-on-light)}.uog\:text-body-copy{color:var(--uog-color-body-copy)}.uog\:text-body-copy-bold{color:var(--uog-color-body-copy-bold)}.uog\:text-body-copy-link{color:var(--uog-color-body-copy-link)}.uog\:text-body-copy-link-on-dark{color:var(--uog-color-body-copy-link-on-dark)}.uog\:text-body-copy-link-on-light{color:var(--uog-color-body-copy-link-on-light)}.uog\:text-body-copy-on-dark{color:var(--uog-color-body-copy-on-dark)}.uog\:text-green{color:var(--uog-color-green)}.uog\:text-green-contrast{color:var(--uog-color-green-contrast)}.uog\:text-grey-dark{color:var(--uog-color-grey-dark)}.uog\:text-grey-dark-contrast{color:var(--uog-color-grey-dark-contrast)}.uog\:text-grey-light-contrast{color:var(--uog-color-grey-light-contrast)}.uog\:text-red{color:var(--uog-color-red)}.uog\:text-red-contrast{color:var(--uog-color-red-contrast)}.uog\:text-white{color:var(--uog-color-white)}.uog\:text-white-contrast{color:var(--uog-color-white-contrast)}.uog\:text-yellow{color:var(--uog-color-yellow)}.uog\:text-yellow-contrast{color:var(--uog-color-yellow-contrast)}.uog\:italic{font-style:italic}.uog\:not-italic{font-style:normal}.uog\:no-underline{text-decoration-line:none}.uog\:underline{text-decoration-line:underline}.uog\:decoration-current{text-decoration-color:currentColor}.uog\:decoration-transparent{text-decoration-color:#0000}.uog\:decoration-1{text-decoration-thickness:1px}.uog\:opacity-0{opacity:0}.uog\:opacity-50{opacity:.5}.uog\:opacity-60{opacity:.6}.uog\:shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.uog\:blur-sm{--tw-blur:blur(var(--uog-blur-sm));filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.uog\:transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-\[transform\,color\,opacity\,visibility\]{transition-property:transform,color,opacity,visibility;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--uog-default-transition-timing-function));transition-duration:var(--tw-duration,var(--uog-default-transition-duration))}.uog\:duration-200{--tw-duration:.2s;transition-duration:.2s}.uog\:duration-300{--tw-duration:.3s;transition-duration:.3s}.uog\:ease-in-out{--tw-ease:var(--uog-ease-in-out);transition-timing-function:var(--uog-ease-in-out)}.uog\:ease-out{--tw-ease:var(--uog-ease-out);transition-timing-function:var(--uog-ease-out)}@media (hover:hover){.uog\:group-hover\:scale-110:is(:where(.uog\:group):hover *){--tw-scale-x:110%;--tw-scale-y:110%;--tw-scale-z:110%;scale:var(--tw-scale-x)var(--tw-scale-y)}.uog\:group-hover\:bg-yellow:is(:where(.uog\:group):hover *){background-color:var(--uog-color-yellow)}}.uog\:group-ui-checked\:opacity-100:is(:where(.uog\:group)[data-headlessui-state~=checked] *),.uog\:group-ui-checked\:opacity-100:is(:where([data-headlessui-state~=checked]) :where(.uog\:group) *){opacity:1}.uog\:group-hocus-visible\:bg-yellow:is(:is(:where(.uog\:group):hover,:where(.uog\:group):focus-visible) *){background-color:var(--uog-color-yellow)}.uog\:group-hocus-visible\:text-blue-contrast:is(:is(:where(.uog\:group):hover,:where(.uog\:group):focus-visible) *){color:var(--uog-color-blue-contrast)}.uog\:group-hocus-visible\:text-yellow-contrast:is(:is(:where(.uog\:group):hover,:where(.uog\:group):focus-visible) *){color:var(--uog-color-yellow-contrast)}.uog\:focus-within\:border-blue:focus-within{border-color:var(--uog-color-blue)}@media (hover:hover){.uog\:hover\:bg-red:hover{background-color:var(--uog-color-red)}.uog\:hover\:bg-red-focus:hover{background-color:var(--uog-color-red-focus)}.uog\:hover\:decoration-transparent:hover{text-decoration-color:#0000}}.uog\:focus\:bg-red-focus:focus{background-color:var(--uog-color-red-focus)}.uog\:focus\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.uog\:focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.uog\:focus-visible\:-translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:focus-visible\:translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:focus-visible\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.uog\:focus-visible\:ring-black:focus-visible{--tw-ring-color:var(--uog-color-black)}.uog\:focus-visible\:ring-blue:focus-visible{--tw-ring-color:var(--uog-color-blue)}.uog\:focus-visible\:ring-body-copy-link:focus-visible{--tw-ring-color:var(--uog-color-body-copy-link)}.uog\:focus-visible\:ring-body-copy-link-on-light:focus-visible{--tw-ring-color:var(--uog-color-body-copy-link-on-light)}.uog\:focus-visible\:ring-green:focus-visible{--tw-ring-color:var(--uog-color-green)}.uog\:focus-visible\:ring-red:focus-visible{--tw-ring-color:var(--uog-color-red)}.uog\:focus-visible\:ring-white:focus-visible{--tw-ring-color:var(--uog-color-white)}.uog\:focus-visible\:ring-yellow:focus-visible{--tw-ring-color:var(--uog-color-yellow)}.uog\:focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.uog\:focus-visible\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.uog\:has-\[strong\]\:text-body-copy-bold:has(:is(strong)){color:var(--uog-color-body-copy-bold)}.uog\:data-\[closed\]\:opacity-0[data-closed]{opacity:0}@media (width>=40rem){.uog\:sm\:px-16{padding-inline:calc(var(--uog-spacing)*16)}.uog\:sm\:text-6xl{font-size:var(--uog-text-6xl);line-height:var(--tw-leading,var(--uog-text-6xl--line-height))}}@media (width>=48rem){.uog\:md\:sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.uog\:md\:absolute{position:absolute}.uog\:md\:z-20{z-index:20}.uog\:md\:block{display:block}.uog\:md\:contents{display:contents}.uog\:md\:grid{display:grid}.uog\:md\:aspect-\[2\.625\]{aspect-ratio:2.625}.uog\:md\:w-1\/3{width:33.3333%}.uog\:md\:w-9{width:calc(var(--uog-spacing)*9)}.uog\:md\:flex-row{flex-direction:row}.uog\:md\:rounded-full{border-radius:3.40282e38px}.uog\:md\:bg-black\/70{background-color:color-mix(in oklab,var(--uog-color-black)70%,transparent)}.uog\:md\:p-4{padding:calc(var(--uog-spacing)*4)}.uog\:md\:px-4{padding-inline:calc(var(--uog-spacing)*4)}.uog\:md\:text-4xl{font-size:var(--uog-text-4xl);line-height:var(--tw-leading,var(--uog-text-4xl--line-height))}}@media (width>=64rem){.uog\:lg\:absolute{position:absolute}.uog\:lg\:bottom-0{bottom:calc(var(--uog-spacing)*0)}.uog\:lg\:left-1\/2{left:50%}.uog\:lg\:container{width:100%}@media (width>=40rem){.uog\:lg\:container{max-width:40rem}}@media (width>=48rem){.uog\:lg\:container{max-width:48rem}}.uog\:lg\:container{max-width:64rem}@media (width>=80rem){.uog\:lg\:container{max-width:80rem}}@media (width>=96rem){.uog\:lg\:container{max-width:96rem}}.uog\:lg\:mx-auto{margin-inline:auto}.uog\:lg\:ml-auto{margin-left:auto}.uog\:lg\:max-w-7xl{max-width:var(--uog-container-7xl)}.uog\:lg\:max-w-\[50\%\]{max-width:50%}.uog\:lg\:-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:lg\:items-center{align-items:center}.uog\:lg\:items-end{align-items:flex-end}.uog\:lg\:bg-black\/80{background-color:color-mix(in oklab,var(--uog-color-black)80%,transparent)}.uog\:lg\:p-4{padding:calc(var(--uog-spacing)*4)}.uog\:lg\:text-center{text-align:center}.uog\:lg\:text-right{text-align:right}.uog\:lg\:backdrop-blur{--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}}.uog\:ui-checked\:bg-black[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-black{background-color:var(--uog-color-black)}.uog\:ui-checked\:bg-blue[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-blue{background-color:var(--uog-color-blue)}.uog\:ui-checked\:bg-green[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-green{background-color:var(--uog-color-green)}.uog\:ui-checked\:bg-white[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-white{background-color:var(--uog-color-white)}.uog\:ui-checked\:bg-yellow[data-headlessui-state~=checked],:where([data-headlessui-state~=checked]) .uog\:ui-checked\:bg-yellow{background-color:var(--uog-color-yellow)}.uog\:hocus-visible\:-translate-x-1:hover,.uog\:hocus-visible\:-translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:hocus-visible\:translate-x-1:hover,.uog\:hocus-visible\:translate-x-1:focus-visible{--tw-translate-x:calc(var(--uog-spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.uog\:hocus-visible\:bg-black:hover,.uog\:hocus-visible\:bg-black:focus-visible{background-color:var(--uog-color-black)}.uog\:hocus-visible\:bg-black-focus:hover,.uog\:hocus-visible\:bg-black-focus:focus-visible{background-color:var(--uog-color-black-focus)}.uog\:hocus-visible\:bg-blue:hover,.uog\:hocus-visible\:bg-blue:focus-visible{background-color:var(--uog-color-blue)}.uog\:hocus-visible\:bg-blue-focus:hover,.uog\:hocus-visible\:bg-blue-focus:focus-visible{background-color:var(--uog-color-blue-focus)}.uog\:hocus-visible\:bg-green:hover,.uog\:hocus-visible\:bg-green:focus-visible{background-color:var(--uog-color-green)}.uog\:hocus-visible\:bg-green-focus:hover,.uog\:hocus-visible\:bg-green-focus:focus-visible{background-color:var(--uog-color-green-focus)}.uog\:hocus-visible\:bg-grey-light:hover,.uog\:hocus-visible\:bg-grey-light:focus-visible{background-color:var(--uog-color-grey-light)}.uog\:hocus-visible\:bg-red:hover,.uog\:hocus-visible\:bg-red:focus-visible{background-color:var(--uog-color-red)}.uog\:hocus-visible\:bg-red-focus:hover,.uog\:hocus-visible\:bg-red-focus:focus-visible{background-color:var(--uog-color-red-focus)}.uog\:hocus-visible\:bg-yellow:hover,.uog\:hocus-visible\:bg-yellow:focus-visible{background-color:var(--uog-color-yellow)}.uog\:hocus-visible\:bg-yellow-focus:hover,.uog\:hocus-visible\:bg-yellow-focus:focus-visible{background-color:var(--uog-color-yellow-focus)}.uog\:hocus-visible\:text-black-contrast:hover,.uog\:hocus-visible\:text-black-contrast:focus-visible{color:var(--uog-color-black-contrast)}.uog\:hocus-visible\:text-blue-contrast:hover,.uog\:hocus-visible\:text-blue-contrast:focus-visible{color:var(--uog-color-blue-contrast)}.uog\:hocus-visible\:text-blue-focus:hover,.uog\:hocus-visible\:text-blue-focus:focus-visible{color:var(--uog-color-blue-focus)}.uog\:hocus-visible\:text-green-contrast:hover,.uog\:hocus-visible\:text-green-contrast:focus-visible{color:var(--uog-color-green-contrast)}.uog\:hocus-visible\:text-red-contrast:hover,.uog\:hocus-visible\:text-red-contrast:focus-visible{color:var(--uog-color-red-contrast)}.uog\:hocus-visible\:text-yellow-contrast:hover,.uog\:hocus-visible\:text-yellow-contrast:focus-visible{color:var(--uog-color-yellow-contrast)}.uog\:hocus-visible\:decoration-black:hover,.uog\:hocus-visible\:decoration-black:focus-visible{-webkit-text-decoration-color:var(--uog-color-black);text-decoration-color:var(--uog-color-black)}.uog\:hocus-visible\:decoration-transparent:hover,.uog\:hocus-visible\:decoration-transparent:focus-visible{text-decoration-color:#0000}.uog\:\[\&_p\:last-child\]\:mb-0 p:last-child{margin-bottom:calc(var(--uog-spacing)*0)}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@keyframes spin{to{transform:rotate(360deg)}}
|
package/dist/info.js
CHANGED
|
@@ -9,8 +9,8 @@ function u({ children: r, color: o = "red" }) {
|
|
|
9
9
|
yellow: "uog:border-l-yellow",
|
|
10
10
|
blue: "uog:border-l-blue",
|
|
11
11
|
green: "uog:border-l-green",
|
|
12
|
-
"light
|
|
13
|
-
"dark
|
|
12
|
+
"grey-light": "uog:border-l-grey-light",
|
|
13
|
+
"grey-dark": "uog:border-l-grey-dark",
|
|
14
14
|
black: "uog:border-l-black",
|
|
15
15
|
white: "uog:border-l-white"
|
|
16
16
|
}
|
package/dist/media-caption.js
CHANGED
|
@@ -43,11 +43,11 @@ function k({
|
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
background: {
|
|
46
|
-
"light
|
|
47
|
-
caption: "uog:bg-light-
|
|
46
|
+
"grey-light": {
|
|
47
|
+
caption: "uog:bg-grey-light-bg uog:text-body-copy"
|
|
48
48
|
},
|
|
49
|
-
"dark
|
|
50
|
-
caption: "uog:bg-dark-
|
|
49
|
+
"grey-dark": {
|
|
50
|
+
caption: "uog:bg-grey-dark-bg uog:text-body-copy-on-dark"
|
|
51
51
|
},
|
|
52
52
|
none: {}
|
|
53
53
|
}
|
package/dist/modal.js
CHANGED
|
@@ -12,7 +12,7 @@ function v({ open: t, onClose: a = () => {
|
|
|
12
12
|
wrapper: "uog:fixed uog:inset-0 uog:flex uog:w-screen uog:justify-center uog:md:p-4",
|
|
13
13
|
panelWrapper: "uog:relative uog:w-full uog:flex uog:flex-col uog:items-center",
|
|
14
14
|
panel: "",
|
|
15
|
-
closeButton: "uog:bg-dark-
|
|
15
|
+
closeButton: "uog:bg-grey-dark-bg uog:md:absolute uog:border-b uog:border-white/40 uog:top-0 uog:right-0 uog:flex uog:h-9 uog:w-full uog:md:w-9 uog:items-center uog:justify-center uog:md:rounded-full uog:text-xl uog:text-white uog:transition-colors uog:hover:bg-red uog:gap-1"
|
|
16
16
|
},
|
|
17
17
|
variants: {
|
|
18
18
|
centered: {
|
package/dist/navigation-link.js
CHANGED
|
@@ -13,7 +13,7 @@ function f({
|
|
|
13
13
|
const l = e ?? b, r = m({
|
|
14
14
|
slots: {
|
|
15
15
|
listItem: "uog:contents uog:flex-1",
|
|
16
|
-
link: "uog:rounded-t-sm uog:bg-light-
|
|
16
|
+
link: "uog:rounded-t-sm uog:bg-grey-light-bg uog:font-bold uog:hocus-visible:bg-grey-light uog:mb-1 uog:flex uog:items-center uog:justify-center uog:px-4 uog:py-3 uog:text-center uog:text-lg uog:text-black uog:transition-colors uog:focus:outline-none uog:flex-1"
|
|
17
17
|
},
|
|
18
18
|
variants: {
|
|
19
19
|
active: {
|
package/dist/text-input.js
CHANGED
|
@@ -15,7 +15,7 @@ function T({
|
|
|
15
15
|
const [r, g] = j(i), e = B(null), m = E({
|
|
16
16
|
slots: {
|
|
17
17
|
base: "uog:flex uog:flex-col uog:gap-0.5",
|
|
18
|
-
wrapper: "uog:text-input uog:border-light
|
|
18
|
+
wrapper: "uog:text-input uog:border-grey-light uog:flex uog:rounded-md uog:border uog:px-4 uog:py-2 uog:transition-colors uog:focus-within:border-blue uog:focus:outline-none",
|
|
19
19
|
input: "uog:flex-1 uog:focus:outline-none",
|
|
20
20
|
clearButton: "uog:rounded-full uog:text-xl"
|
|
21
21
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uoguelph/react-components",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "University of Guelph React Components Library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@types/node": "^22.13.1",
|
|
49
49
|
"@types/react": "^19.0.8",
|
|
50
50
|
"@types/react-dom": "^19.0.3",
|
|
51
|
-
"@uoguelph/tailwind-theme": "^1.0.0
|
|
51
|
+
"@uoguelph/tailwind-theme": "^1.0.0",
|
|
52
52
|
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
53
53
|
"autoprefixer": "^10.4.20",
|
|
54
54
|
"eslint": "^9.19.0",
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"bugs": {
|
|
73
73
|
"url": "https://github.com/ccswbs/uofg-components/issues"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "e19f9d63b106ce9def4f0d2c07ea242fc667e5fd"
|
|
76
76
|
}
|