@codeforamerica/marcomms-design-system 1.21.1 → 1.21.2
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/components/accordion.js +1 -159
- package/dist/components/avatar.js +1 -102
- package/dist/components/bar.js +1 -121
- package/dist/components/blob.js +1 -132
- package/dist/components/box.js +1 -111
- package/dist/components/breadcrumbs.js +1 -111
- package/dist/components/button.js +1 -158
- package/dist/components/callout.js +1 -134
- package/dist/components/card.js +1 -876
- package/dist/components/carousel.js +1 -290
- package/dist/components/icon.js +1 -90
- package/dist/components/label.js +1 -501
- package/dist/components/logo-card.js +1 -517
- package/dist/components/nav.js +1 -128
- package/dist/components/page-nav.js +1 -162
- package/dist/components/pager.js +1 -710
- package/dist/components/pagination.js +1 -302
- package/dist/components/person-card.js +1 -867
- package/dist/components/pill.js +1 -79
- package/dist/components/placeholder.js +1 -11
- package/dist/components/promo.js +1 -539
- package/dist/components/pullquote.js +1 -88
- package/dist/components/quote.js +1 -154
- package/dist/components/reveal.js +1 -141
- package/dist/components/slide.js +1 -156
- package/dist/components/social-icon.js +1 -239
- package/dist/components/stat.js +1 -510
- package/dist/components/tab-list.js +1 -691
- package/dist/components/tab.js +1 -497
- package/dist/components/tile.js +1 -665
- package/dist/components/transcript.js +1 -486
- package/dist/index.js +1 -2951
- package/package.json +36 -28
package/dist/index.js
CHANGED
|
@@ -1,2952 +1,2 @@
|
|
|
1
1
|
/*! For license information please see index.js.LICENSE.txt */
|
|
2
|
-
(()=>{"use strict";var t={517(t,e,i){var a=i(161),o=i(601);class s extends a.WF{static properties=(()=>({open:{type:Boolean}}))();static styles=(()=>[o.s,a.AH`
|
|
3
|
-
:host {
|
|
4
|
-
--color: var(--purple-60);
|
|
5
|
-
--hover-bg-color: var(--blue-20);
|
|
6
|
-
|
|
7
|
-
display: block;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.item {
|
|
11
|
-
border-bottom: var(--thin) solid var(--black-20);
|
|
12
|
-
max-width: var(--column-span-8);
|
|
13
|
-
margin-inline: auto;
|
|
14
|
-
background-color: var(--bg-color);
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.header {
|
|
18
|
-
align-items: center;
|
|
19
|
-
color: var(--color);
|
|
20
|
-
cursor: pointer;
|
|
21
|
-
display: flex;
|
|
22
|
-
flex-direction: row;
|
|
23
|
-
padding-block: var(--spacing-component-3);
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.header:hover {
|
|
27
|
-
background-color: var(--hover-bg-color);
|
|
28
|
-
box-shadow:
|
|
29
|
-
var(--spacing-component-3) 0 var(--blue-20),
|
|
30
|
-
calc(-1 * var(--spacing-component-3)) 0 var(--blue-20);
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.header:focus {
|
|
34
|
-
outline: none;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.title {
|
|
38
|
-
flex: 1;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.title ::slotted(*) {
|
|
42
|
-
font-family: var(--font-family-sans-serif) !important;
|
|
43
|
-
font-size: var(--font-size) !important;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.icon {
|
|
47
|
-
flex: 0;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.body {
|
|
51
|
-
opacity: 0;
|
|
52
|
-
max-height: 0;
|
|
53
|
-
overflow: hidden;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.body.open {
|
|
57
|
-
max-height: unset;
|
|
58
|
-
opacity: 1;
|
|
59
|
-
padding-block: var(--spacing-layout-half) var(--spacing-layout-1);
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.body ::slotted(*) {
|
|
63
|
-
margin-block-start: 0 !important;
|
|
64
|
-
}
|
|
65
|
-
`])();constructor(){super(),this.open=!1}toggle(){this.open=!this.open}handleKeyPress(t){"Enter"!==t.key&&" "!==t.key||this.toggle()}render(){return a.qy`
|
|
66
|
-
<div class="item">
|
|
67
|
-
<div
|
|
68
|
-
class="header"
|
|
69
|
-
role="button"
|
|
70
|
-
aria-expanded=${this.open?"true":"false"}
|
|
71
|
-
tabindex="0"
|
|
72
|
-
@click=${this.toggle}
|
|
73
|
-
@keypress=${this.handleKeyPress}
|
|
74
|
-
>
|
|
75
|
-
<div class="title">
|
|
76
|
-
<slot name="title"></slot>
|
|
77
|
-
</div>
|
|
78
|
-
<span class="icon" aria-hidden="true">
|
|
79
|
-
${this.open?a.qy`<cfa-icon>expand_less</cfa-icon>`:a.qy`<cfa-icon>expand_more</cfa-icon>`}
|
|
80
|
-
</span>
|
|
81
|
-
</div>
|
|
82
|
-
<div
|
|
83
|
-
class="body ${this.open?"open":""}"
|
|
84
|
-
role="region"
|
|
85
|
-
aria-hidden=${this.open?"false":"true"}
|
|
86
|
-
>
|
|
87
|
-
<slot></slot>
|
|
88
|
-
</div>
|
|
89
|
-
</div>
|
|
90
|
-
`}}class r extends a.WF{static styles=(()=>a.AH`
|
|
91
|
-
:host {
|
|
92
|
-
display: block;
|
|
93
|
-
}
|
|
94
|
-
`)();render(){return a.qy`
|
|
95
|
-
<div role="tablist">
|
|
96
|
-
<slot></slot>
|
|
97
|
-
</div>
|
|
98
|
-
`}}customElements.get("cfa-accordion-item")||customElements.define("cfa-accordion-item",s),customElements.get("cfa-accordion")||customElements.define("cfa-accordion",r)},330(t,e,i){var a=i(161),o=i(601);class s extends a.WF{static properties={imageUrl:{},altText:{},size:{}};static styles=(()=>[o.s,a.AH`
|
|
99
|
-
:host {
|
|
100
|
-
--bg-color: var(--blue-20);
|
|
101
|
-
|
|
102
|
-
display: inline-block;
|
|
103
|
-
max-width: 100%;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
picture {
|
|
107
|
-
aspect-ratio: 1 / 1;
|
|
108
|
-
background-color: var(--bg-color);
|
|
109
|
-
border-radius: 50%;
|
|
110
|
-
display: block;
|
|
111
|
-
max-width: 100%;
|
|
112
|
-
overflow: hidden;
|
|
113
|
-
width: var(--size);
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
img {
|
|
117
|
-
display: block;
|
|
118
|
-
height: 100%;
|
|
119
|
-
object-fit: cover;
|
|
120
|
-
width: 100%;
|
|
121
|
-
}
|
|
122
|
-
`])();render(){return a.qy`
|
|
123
|
-
<style>
|
|
124
|
-
:host {
|
|
125
|
-
--size: var(--spacing-layout-${this.size||"4"}, 8rem);
|
|
126
|
-
}
|
|
127
|
-
</style>
|
|
128
|
-
<picture>
|
|
129
|
-
${this.imageUrl?a.qy`
|
|
130
|
-
<img
|
|
131
|
-
src="${this.imageUrl}"
|
|
132
|
-
loading="lazy"
|
|
133
|
-
alt="${this.altText}"
|
|
134
|
-
/>
|
|
135
|
-
`:a.s6}
|
|
136
|
-
</picture>
|
|
137
|
-
`}}customElements.get("cfa-avatar")||customElements.define("cfa-avatar",s)},710(t,e,i){var a=i(161),o=i(601);class s extends a.WF{static properties={theme:{}};static styles=(()=>[o.s,a.AH`
|
|
138
|
-
:host {
|
|
139
|
-
--bg-color: var(--purple-80);
|
|
140
|
-
--text-color: var(--white);
|
|
141
|
-
--link-color: var(--white);
|
|
142
|
-
--link-hover-color: var(--white);
|
|
143
|
-
--scrollbar-color: var(--white);
|
|
144
|
-
--spacing: var(--spacing-layout-half);
|
|
145
|
-
|
|
146
|
-
display: block;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
.bar {
|
|
150
|
-
background-color: var(--bg-color);
|
|
151
|
-
color: var(--text-color);
|
|
152
|
-
|
|
153
|
-
a {
|
|
154
|
-
color: var(--link-color);
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
a:hover {
|
|
158
|
-
color: var(--link-hover-color);
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
.content {
|
|
163
|
-
display: flex;
|
|
164
|
-
column-gap: var(--spacing);
|
|
165
|
-
justify-content: center;
|
|
166
|
-
overflow-x: auto;
|
|
167
|
-
overflow-y: hidden;
|
|
168
|
-
padding-bottom: var(--spacing-layout-half);
|
|
169
|
-
padding-top: var(--spacing-layout-half);
|
|
170
|
-
scrollbar-color: var(--scrollbar-color) var(--bg-color);
|
|
171
|
-
scrollbar-width: thin;
|
|
172
|
-
|
|
173
|
-
&::before,
|
|
174
|
-
&::after {
|
|
175
|
-
content: "";
|
|
176
|
-
flex-basis: calc(var(--outer-margin) - var(--spacing));
|
|
177
|
-
flex-shrink: 0;
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
.content.is-overflowing {
|
|
182
|
-
justify-content: start;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
::slotted(*) {
|
|
186
|
-
max-width: none !important;
|
|
187
|
-
white-space: nowrap !important;
|
|
188
|
-
}
|
|
189
|
-
`])();firstUpdated(){const t=this.shadowRoot.querySelector(".content"),e=t=>{t.classList.toggle("is-overflowing",t.scrollWidth>t.clientWidth)};"ResizeObserver"in window&&new ResizeObserver(t=>{e(t[0].target)}).observe(t),"MutationObserver"in window&&new MutationObserver(()=>{e(t)}).observe(t,{childList:!0}),e(t)}render(){return a.qy`
|
|
190
|
-
<div class="bar">
|
|
191
|
-
<div class="content">
|
|
192
|
-
<slot></slot>
|
|
193
|
-
</div>
|
|
194
|
-
</div>
|
|
195
|
-
`}}customElements.get("cfa-bar")||customElements.define("cfa-bar",s)},544(t,e,i){var a=i(161),o=i(601);class s extends a.WF{static properties={color:{},shape:{},styles:{}};static styles=(()=>[o.s,a.AH`
|
|
196
|
-
:host {
|
|
197
|
-
--color: var(--blue-20);
|
|
198
|
-
|
|
199
|
-
display: block;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
.blob,
|
|
203
|
-
svg {
|
|
204
|
-
height: 100%;
|
|
205
|
-
width: 100%;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
svg path {
|
|
209
|
-
fill: var(--color, #fff);
|
|
210
|
-
}
|
|
211
|
-
`])();constructor(){super(),this.shape="1"}blobTemplate(){let t;switch(this.shape){case"1":default:t=a.qy`<svg
|
|
212
|
-
width="628"
|
|
213
|
-
height="577"
|
|
214
|
-
viewBox="0 0 628 577"
|
|
215
|
-
fill="none"
|
|
216
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
217
|
-
>
|
|
218
|
-
<path
|
|
219
|
-
fill-rule="evenodd"
|
|
220
|
-
clip-rule="evenodd"
|
|
221
|
-
d="M304.482 3.44206C399.413 -5.50752 504.225 1.17063 567.446 72.5295C633.526 147.115 639.549 256.491 613.992 352.793C589.57 444.814 526.084 523.087 438.164 559.679C355.477 594.092 265.039 570.416 184.315 531.621C103.504 492.784 22.0294 438.546 3.59029 350.826C-14.5863 264.355 39.2746 183.666 97.1329 116.868C151.394 54.223 221.956 11.2221 304.482 3.44206Z"
|
|
222
|
-
/>
|
|
223
|
-
</svg>`;break;case"2":t=a.qy`<svg
|
|
224
|
-
width="580"
|
|
225
|
-
height="592"
|
|
226
|
-
viewBox="0 0 580 592"
|
|
227
|
-
fill="none"
|
|
228
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
229
|
-
>
|
|
230
|
-
<path
|
|
231
|
-
d="M238.814 591.215C210.461 592.077 182.849 587.767 155.66 580.979C60.4457 557.059 4.05766 489.933 0.460672 390.376C-2.50155 306.442 8.71258 223.693 37.2769 144.499C73.2468 44.6185 170.894 -12.5948 276.159 2.81295C358.996 14.9883 437.177 39.3389 499.172 100.108C588.039 187.167 604.437 293.512 544.346 402.767C514.618 456.855 477.59 505.988 426.386 541.544C369.892 580.656 304.723 587.767 238.814 591.215Z"
|
|
232
|
-
/>
|
|
233
|
-
</svg>`;break;case"3":t=a.qy`<svg
|
|
234
|
-
width="620"
|
|
235
|
-
height="613"
|
|
236
|
-
viewBox="0 0 620 613"
|
|
237
|
-
fill="none"
|
|
238
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
239
|
-
>
|
|
240
|
-
<path
|
|
241
|
-
fill-rule="evenodd"
|
|
242
|
-
clip-rule="evenodd"
|
|
243
|
-
d="M619.142 301.769C615.581 212.393 536.92 153.752 466.654 98.7402C397.998 44.9883 323.934 -10.5844 236.421 2.12929C141.656 15.8965 53.9975 76.8338 15.687 164.256C-20.6955 247.277 16.2818 336.243 54.5575 417.127C92.4807 497.265 137.965 580.831 224.139 604.752C314.166 629.742 409.183 593.817 484.092 536.359C559.738 478.336 622.883 395.641 619.142 301.769Z"
|
|
244
|
-
/>
|
|
245
|
-
</svg>`;break;case"4":t=a.qy`<svg
|
|
246
|
-
width="656"
|
|
247
|
-
height="566"
|
|
248
|
-
viewBox="0 0 656 566"
|
|
249
|
-
fill="none"
|
|
250
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
251
|
-
>
|
|
252
|
-
<path
|
|
253
|
-
fill-rule="evenodd"
|
|
254
|
-
clip-rule="evenodd"
|
|
255
|
-
d="M332.011 564.695C235.808 569.34 135.091 552.4 71.2946 488.381C4.66596 421.518 -10.0767 327.738 8.2158 239.764C27.3773 147.61 73.5054 52.3693 169.88 14.2546C263.181 -22.6447 364.8 21.5179 455.491 62.8734C540.631 101.698 627.337 150.367 649.771 233.088C672.265 316.032 626.78 399.503 564.43 464.569C505.684 525.875 422.382 560.331 332.011 564.695Z"
|
|
256
|
-
/>
|
|
257
|
-
</svg>`}return t}render(){const t=this.color?`var(--${this.color})`:"var(--blue-20)";return a.qy`
|
|
258
|
-
<div
|
|
259
|
-
class="blob"
|
|
260
|
-
style="--color: ${t}"
|
|
261
|
-
>
|
|
262
|
-
${this.blobTemplate()}
|
|
263
|
-
</div>
|
|
264
|
-
`}}customElements.get("cfa-blob")||customElements.define("cfa-blob",s)},202(t,e,i){var a=i(161),o=i(601);class s extends a.WF{static properties=(()=>({theme:{type:String,reflect:!0}}))();static styles=(()=>[o.s,a.AH`
|
|
265
|
-
:host {
|
|
266
|
-
--bg-color: var(--purple-10);
|
|
267
|
-
--box-border-color: var(--purple-60);
|
|
268
|
-
--box-border-gradient: var(--gradient-1);
|
|
269
|
-
--box-border-width: var(--thick);
|
|
270
|
-
--link-color: var(--base-link-color);
|
|
271
|
-
--link-hover-color: var(--base-link-hover-color);
|
|
272
|
-
--padding: var(--spacing-component-4);
|
|
273
|
-
--shadow: var(--shadow-medium);
|
|
274
|
-
--text-color: var(--base-text-color);
|
|
275
|
-
|
|
276
|
-
display: flex;
|
|
277
|
-
flex: 1;
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
:host([theme="author-note"]) {
|
|
281
|
-
--box-border-width: 0;
|
|
282
|
-
|
|
283
|
-
font-family: var(--font-family-serif);
|
|
284
|
-
font-size: var(--font-size-small);
|
|
285
|
-
font-style: italic;
|
|
286
|
-
line-height: var(--line-height-small);
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
.box {
|
|
290
|
-
background-color: var(--bg-color);
|
|
291
|
-
border-block-start: var(--box-border-width) solid var(--box-border-color);
|
|
292
|
-
border-image: var(--box-border-gradient) 1;
|
|
293
|
-
box-shadow: var(--shadow);
|
|
294
|
-
color: var(--text-color, #000);
|
|
295
|
-
display: flex;
|
|
296
|
-
flex-direction: column;
|
|
297
|
-
gap: var(--spacing-layout-half);
|
|
298
|
-
padding: var(--padding);
|
|
299
|
-
width: 100%;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
::slotted(*) {
|
|
303
|
-
--spacing: var(--spacing-layout-half);
|
|
304
|
-
|
|
305
|
-
margin: 0 !important;
|
|
306
|
-
max-width: 100%;
|
|
307
|
-
}
|
|
308
|
-
`])();render(){return a.qy`
|
|
309
|
-
<div class="box">
|
|
310
|
-
<slot />
|
|
311
|
-
</div>
|
|
312
|
-
`}}customElements.get("cfa-box")||customElements.define("cfa-box",s)},542(t,e,i){var a=i(161),o=i(601);class s extends a.WF{static properties={};static styles=(()=>[o.s,a.AH`
|
|
313
|
-
slot {
|
|
314
|
-
display: none;
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
:host {
|
|
318
|
-
display: block;
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
.breadcrumbs {
|
|
322
|
-
margin: 0;
|
|
323
|
-
margin-inline: calc(-1 * var(--outer-margin));
|
|
324
|
-
overflow-x: auto;
|
|
325
|
-
overflow-y: hidden;
|
|
326
|
-
padding: 0;
|
|
327
|
-
scrollbar-width: none;
|
|
328
|
-
white-space: nowrap;
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
.breadcrumbs::before,
|
|
332
|
-
.breadcrumbs::after {
|
|
333
|
-
content: "";
|
|
334
|
-
display: inline-block;
|
|
335
|
-
width: var(--outer-margin);
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
.breadcrumbs > * {
|
|
339
|
-
display: inline-block;
|
|
340
|
-
font-size: var(--font-size-small);
|
|
341
|
-
font-weight: 600;
|
|
342
|
-
line-height: var(--line-height-small);
|
|
343
|
-
margin: 0;
|
|
344
|
-
padding: 0;
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
.breadcrumbs > *:not(:last-child)::after {
|
|
348
|
-
content: "/";
|
|
349
|
-
opacity: 0.5;
|
|
350
|
-
padding-inline: 0.75em;
|
|
351
|
-
}
|
|
352
|
-
|
|
353
|
-
.breadcrumbs a {
|
|
354
|
-
color: var(--link-color);
|
|
355
|
-
text-decoration: none;
|
|
356
|
-
}
|
|
357
|
-
`])();handleSlotchange(t){const e=t.target.assignedNodes({flatten:!0});console.log(e);const i=this.shadowRoot.querySelector(".breadcrumbs");i.innerHTML="",e.forEach(t=>{"UL"===t.tagName&&t.querySelectorAll("li").forEach(t=>{i.appendChild(t.cloneNode(!0))})})}render(){return a.qy`
|
|
358
|
-
<slot @slotchange=${this.handleSlotchange}></slot>
|
|
359
|
-
<ul class="breadcrumbs"></ul>
|
|
360
|
-
`}}customElements.get("cfa-breadcrumbs")||customElements.define("cfa-breadcrumbs",s)},227(t,e,i){i.d(e,{V:()=>a});const a=i(161).AH`
|
|
361
|
-
.cfa-button,
|
|
362
|
-
a.cfa-button,
|
|
363
|
-
.cfa-button > a,
|
|
364
|
-
.wp-block-button > * {
|
|
365
|
-
--bg-color: var(--white);
|
|
366
|
-
--border-color: transparent;
|
|
367
|
-
--font-family: var(--font-family-sans-serif);
|
|
368
|
-
--font-size: var(--base-font-size);
|
|
369
|
-
--hover-bg-color: var(--blue-20);
|
|
370
|
-
--hover-border-color: var(--border-color);
|
|
371
|
-
--line-height: var(--base-line-height);
|
|
372
|
-
--text-color: var(--purple-80);
|
|
373
|
-
|
|
374
|
-
background-color: var(--bg-color);
|
|
375
|
-
border: var(--hairline) solid var(--border-color);
|
|
376
|
-
border-radius: var(--rounded-corners);
|
|
377
|
-
box-shadow: var(--shadow-small);
|
|
378
|
-
color: var(--text-color);
|
|
379
|
-
cursor: pointer;
|
|
380
|
-
display: block;
|
|
381
|
-
font-family: var(--font-family);
|
|
382
|
-
font-size: var(--font-size);
|
|
383
|
-
font-weight: bold;
|
|
384
|
-
padding: var(--spacing-component-2) var(--spacing-component-3);
|
|
385
|
-
text-align: center;
|
|
386
|
-
text-decoration: none;
|
|
387
|
-
transition: background-color 0.5s, box-shadow 0.5s;
|
|
388
|
-
|
|
389
|
-
&:hover {
|
|
390
|
-
background-color: var(--hover-bg-color);
|
|
391
|
-
border-color: var(--hover-border-color);
|
|
392
|
-
box-shadow: var(--shadow-medium);
|
|
393
|
-
color: var(--text-color);
|
|
394
|
-
}
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
@media (max-width: 768px) {
|
|
398
|
-
.cfa-button,
|
|
399
|
-
a.cfa-button,
|
|
400
|
-
.cfa-button > a,
|
|
401
|
-
.wp-block-button > * {
|
|
402
|
-
width: 100%;
|
|
403
|
-
|
|
404
|
-
& + & {
|
|
405
|
-
margin-block-start: var(--spacing-layout-half);
|
|
406
|
-
}
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
.wp-block-button {
|
|
410
|
-
width: 100%;
|
|
411
|
-
}
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
@media (min-width: 768px) {
|
|
415
|
-
.cfa-button,
|
|
416
|
-
a.cfa-button,
|
|
417
|
-
.cfa-button > a,
|
|
418
|
-
.wp-block-button > * {
|
|
419
|
-
display: inline-block;
|
|
420
|
-
|
|
421
|
-
& {
|
|
422
|
-
margin-block: var(--spacing-component-2);
|
|
423
|
-
margin-inline-end: var(--spacing-component-2);
|
|
424
|
-
}
|
|
425
|
-
}
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
// Themes / variants
|
|
429
|
-
|
|
430
|
-
.cfa-button--primary,
|
|
431
|
-
a.cfa-button--primary,
|
|
432
|
-
.cfa-button--primary > a,
|
|
433
|
-
.wp-block-button.is-style-primary > * {
|
|
434
|
-
--bg-color: var(--red-60);
|
|
435
|
-
--hover-bg-color: var(--red-80);
|
|
436
|
-
--text-color: var(--white,);
|
|
437
|
-
}
|
|
438
|
-
|
|
439
|
-
.cfa-button--outline,
|
|
440
|
-
a.cfa-button--outline,
|
|
441
|
-
.cfa-button--outline > a,
|
|
442
|
-
.wp-block-button.is-style-outline > * {
|
|
443
|
-
--border-color: var(--black-20);
|
|
444
|
-
--bg-color: transparent;
|
|
445
|
-
}
|
|
446
|
-
|
|
447
|
-
.cfa-button--outline-white,
|
|
448
|
-
a.cfa-button--outline-white,
|
|
449
|
-
.cfa-button--outline-white > a,
|
|
450
|
-
.wp-block-button.is-style-outline-white > * {
|
|
451
|
-
--border-color: var(--white);
|
|
452
|
-
--bg-color: transparent;
|
|
453
|
-
--hover-bg-color: var(--black-20);
|
|
454
|
-
--shadow-color: var(--white-20);
|
|
455
|
-
--text-color: var(--white);
|
|
456
|
-
}
|
|
457
|
-
|
|
458
|
-
.cfa-button--prominent-link,
|
|
459
|
-
a.cfa-button--prominent-link,
|
|
460
|
-
.cfa-button--prominent-link > a,
|
|
461
|
-
.wp-block-button.is-style-prominent-link > * {
|
|
462
|
-
--accent-color: var(--purple-60);
|
|
463
|
-
|
|
464
|
-
background: unset;
|
|
465
|
-
box-shadow: unset;
|
|
466
|
-
color: inherit;
|
|
467
|
-
font-weight: bold;
|
|
468
|
-
padding: 0;
|
|
469
|
-
text-decoration: underline;
|
|
470
|
-
text-decoration-color: var(--accent-color);
|
|
471
|
-
text-decoration-thickness: var(--medium);
|
|
472
|
-
text-underline-offset: 0.4em;
|
|
473
|
-
transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
|
474
|
-
|
|
475
|
-
&:hover {
|
|
476
|
-
--accent-color: var(--red-60);
|
|
477
|
-
|
|
478
|
-
background: unset;
|
|
479
|
-
box-shadow: unset;
|
|
480
|
-
}
|
|
481
|
-
|
|
482
|
-
&::after {
|
|
483
|
-
@include icon.icon;
|
|
484
|
-
|
|
485
|
-
content: "arrow_right_alt";
|
|
486
|
-
display: inline-block;
|
|
487
|
-
padding-inline-start: 0.1em;
|
|
488
|
-
text-decoration: none;
|
|
489
|
-
transition: transform 0.2s ease-in-out;
|
|
490
|
-
width: 1em;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
&:hover::after {
|
|
494
|
-
transform: translateX(0.3em);
|
|
495
|
-
}
|
|
496
|
-
|
|
497
|
-
cfa-icon {
|
|
498
|
-
text-decoration: none;
|
|
499
|
-
}
|
|
500
|
-
}
|
|
501
|
-
|
|
502
|
-
// Sizes
|
|
503
|
-
|
|
504
|
-
.cfa-button--sm,
|
|
505
|
-
a.cfa-button--sm,
|
|
506
|
-
.cfa-button--sm > a {
|
|
507
|
-
--font-size: var(--font-size-small);
|
|
508
|
-
--line-height: var(--line-height-small);
|
|
509
|
-
}
|
|
510
|
-
|
|
511
|
-
.cfa-button--md,
|
|
512
|
-
a.cfa-button--md,
|
|
513
|
-
.cfa-button--md > a {
|
|
514
|
-
--font-size: var(--base-font-size);
|
|
515
|
-
--line-height: var(--base-line-height);
|
|
516
|
-
}
|
|
517
|
-
`},547(t,e,i){var a=i(161),o=i(601);i(562);class s extends a.WF{static styles=(()=>[o.s,a.AH`
|
|
518
|
-
:host {
|
|
519
|
-
--background: var(--white);
|
|
520
|
-
--icon-color: var(--purple-80);
|
|
521
|
-
--link-color: var(--base-link-color);
|
|
522
|
-
--link-hover-color: var(--base-link-hover-color);
|
|
523
|
-
--text-color: var(--black);
|
|
524
|
-
|
|
525
|
-
display: block;
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
.callout {
|
|
529
|
-
align-items: flex-start;
|
|
530
|
-
background: var(--background);
|
|
531
|
-
box-shadow: var(--shadow-medium);
|
|
532
|
-
color: var(--text-color);
|
|
533
|
-
display: flex;
|
|
534
|
-
flex-direction: row;
|
|
535
|
-
gap: var(--spacing-component-2);
|
|
536
|
-
padding: var(--spacing-component-3);
|
|
537
|
-
}
|
|
538
|
-
|
|
539
|
-
.icon {
|
|
540
|
-
color: var(--icon-color);
|
|
541
|
-
flex-direction: column;
|
|
542
|
-
flex-grow: 0;
|
|
543
|
-
font-size: var(--font-size-h3);
|
|
544
|
-
height: 100%;
|
|
545
|
-
margin-block-start: -0.075em;
|
|
546
|
-
margin-inline-end: var(--spacing-component-2);
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
.callout + .callout {
|
|
550
|
-
margin-top: var(--spacing-layout-half);
|
|
551
|
-
}
|
|
552
|
-
`])();render(){return a.qy`
|
|
553
|
-
<div class="callout">
|
|
554
|
-
<div class="icon">
|
|
555
|
-
<cfa-icon>info</cfa-icon>
|
|
556
|
-
</div>
|
|
557
|
-
<div class="text">
|
|
558
|
-
<slot></slot>
|
|
559
|
-
</div>
|
|
560
|
-
</div>
|
|
561
|
-
`}}customElements.get("cfa-callout")||customElements.define("cfa-callout",s)},334(t,e,i){var a=i(161),o=i(601),s=i(205);i(953);class r extends a.WF{static properties={theme:{},linkUrl:{},linkTarget:{},visualType:{},visualUrl:{},visualThumbnailUrl:{},visualAltText:{},eyebrow:{},label:{},title:{},text:{},metaText:{},actionLabel:{}};static styles=(()=>[o.s,s.g,a.AH`
|
|
562
|
-
:host {
|
|
563
|
-
--action-border-color: var(--purple-20);
|
|
564
|
-
--action-border-hover-color: var(--red-60);
|
|
565
|
-
--action-text-color: var(--purple-60);
|
|
566
|
-
--action-text-hover-color: var(--red-60);
|
|
567
|
-
--bg-color: var(--white);
|
|
568
|
-
--padding: var(--spacing-component-4);
|
|
569
|
-
--text-color: var(--black);
|
|
570
|
-
|
|
571
|
-
display: flex;
|
|
572
|
-
flex-direction: column;
|
|
573
|
-
margin-inline: auto;
|
|
574
|
-
max-width: 100%;
|
|
575
|
-
width: 100%;
|
|
576
|
-
}
|
|
577
|
-
|
|
578
|
-
.card,
|
|
579
|
-
a.card {
|
|
580
|
-
box-shadow: var(--shadow-small);
|
|
581
|
-
border: var(--hairline) solid var(--gray-20);
|
|
582
|
-
color: var(--text-color);
|
|
583
|
-
display: flex;
|
|
584
|
-
flex-direction: column;
|
|
585
|
-
flex: 1;
|
|
586
|
-
height: 100%;
|
|
587
|
-
text-decoration: none;
|
|
588
|
-
transition: 500ms;
|
|
589
|
-
}
|
|
590
|
-
|
|
591
|
-
a.card:hover {
|
|
592
|
-
--action-color: var(--action-hover-color);
|
|
593
|
-
|
|
594
|
-
box-shadow: var(--shadow-medium);
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
.content {
|
|
598
|
-
background-color: var(--bg-color);
|
|
599
|
-
display: flex;
|
|
600
|
-
flex-direction: column;
|
|
601
|
-
flex-grow: 1;
|
|
602
|
-
gap: var(--spacing-layout-half);
|
|
603
|
-
padding: var(--padding);
|
|
604
|
-
}
|
|
605
|
-
|
|
606
|
-
.header {
|
|
607
|
-
align-items: start;
|
|
608
|
-
display: flex;
|
|
609
|
-
flex-direction: column;
|
|
610
|
-
gap: var(--spacing-layout-half);
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
.body {
|
|
614
|
-
display: flex;
|
|
615
|
-
flex-flow: column nowrap;
|
|
616
|
-
flex-grow: 1;
|
|
617
|
-
gap: var(--spacing-layout-half);
|
|
618
|
-
height: 100%;
|
|
619
|
-
text-align: var(--text-alignment, start);
|
|
620
|
-
}
|
|
621
|
-
|
|
622
|
-
.footer {
|
|
623
|
-
display: flex;
|
|
624
|
-
flex-direction: column;
|
|
625
|
-
gap: var(--spacing-layout-half);
|
|
626
|
-
}
|
|
627
|
-
|
|
628
|
-
.eyebrow {
|
|
629
|
-
color: var(--purple-60);
|
|
630
|
-
}
|
|
631
|
-
|
|
632
|
-
.eyebrow + * {
|
|
633
|
-
margin-block-start: var(--spacing-component-2);
|
|
634
|
-
}
|
|
635
|
-
|
|
636
|
-
.meta-text {
|
|
637
|
-
color: var(--gray-60);
|
|
638
|
-
border-block-start: var(--hairline) solid var(--gray-40);
|
|
639
|
-
padding-block-start: var(--spacing-component-2);
|
|
640
|
-
}
|
|
641
|
-
|
|
642
|
-
.card:has(.action-label) .meta-text {
|
|
643
|
-
border-block-end: var(--hairline) solid var(--gray-40);
|
|
644
|
-
padding-block-end: var(--spacing-component-2);
|
|
645
|
-
}
|
|
646
|
-
|
|
647
|
-
.action-label {
|
|
648
|
-
align-self: flex-start;
|
|
649
|
-
color: var(--action-text-color);
|
|
650
|
-
display: inline-block;
|
|
651
|
-
font-size: var(--font-size-small);
|
|
652
|
-
font-weight: bold;
|
|
653
|
-
}
|
|
654
|
-
|
|
655
|
-
a:hover .action-label {
|
|
656
|
-
color: var(--action-text-hover-color);
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
.action-label::after {
|
|
660
|
-
background: linear-gradient(
|
|
661
|
-
to top,
|
|
662
|
-
var(--action-border-hover-color) 0% 50%,
|
|
663
|
-
var(--action-border-color) 50% 100%
|
|
664
|
-
);
|
|
665
|
-
background-position: 0% 0%;
|
|
666
|
-
background-size: 100% 200%;
|
|
667
|
-
content: "";
|
|
668
|
-
display: block;
|
|
669
|
-
height: var(--spacing-component-2);
|
|
670
|
-
transition: background-position 0.3s;
|
|
671
|
-
}
|
|
672
|
-
|
|
673
|
-
a:hover .action-label::after {
|
|
674
|
-
background-position: 0% 100%;
|
|
675
|
-
}
|
|
676
|
-
|
|
677
|
-
.visual {
|
|
678
|
-
box-sizing: border-box;
|
|
679
|
-
display: flex;
|
|
680
|
-
height: auto;
|
|
681
|
-
height: var(--spacing-layout-7);
|
|
682
|
-
position: relative;
|
|
683
|
-
width: 100%;
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
img {
|
|
687
|
-
height: 100%;
|
|
688
|
-
object-fit: cover;
|
|
689
|
-
width: 100%;
|
|
690
|
-
}
|
|
691
|
-
|
|
692
|
-
.fallback-image {
|
|
693
|
-
background-color: var(--purple-80);
|
|
694
|
-
position: absolute;
|
|
695
|
-
inline-start: 0;
|
|
696
|
-
block-start: 0;
|
|
697
|
-
width: 100%;
|
|
698
|
-
height: 100%;
|
|
699
|
-
z-index: 0;
|
|
700
|
-
}
|
|
701
|
-
|
|
702
|
-
.fallback-image svg {
|
|
703
|
-
height: 100%;
|
|
704
|
-
width: 100%;
|
|
705
|
-
}
|
|
706
|
-
|
|
707
|
-
.visual picture {
|
|
708
|
-
position: relative;
|
|
709
|
-
z-index: 1;
|
|
710
|
-
width: 100%;
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
.image::after {
|
|
714
|
-
block-end: 0;
|
|
715
|
-
block-start: 0;
|
|
716
|
-
bottom: 0;
|
|
717
|
-
box-shadow: inset 0 -50px 50px -50px var(--black-60);
|
|
718
|
-
content: "";
|
|
719
|
-
inline-end: 0;
|
|
720
|
-
inline-start: 0;
|
|
721
|
-
position: absolute;
|
|
722
|
-
z-index: 2;
|
|
723
|
-
}
|
|
724
|
-
|
|
725
|
-
.logo {
|
|
726
|
-
background-color: var(--white, #fff);
|
|
727
|
-
box-sizing: border-box;
|
|
728
|
-
border-block-end: 1px solid var(--gray-20);
|
|
729
|
-
padding: var(--spacing-component-5);
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
.logo img {
|
|
733
|
-
object-fit: contain;
|
|
734
|
-
}
|
|
735
|
-
`])();visualTemplate(){let t;return"image"===this.visualType?t=a.qy`
|
|
736
|
-
<div class="visual image">
|
|
737
|
-
<div class="fallback-image">
|
|
738
|
-
${a.JW`
|
|
739
|
-
<svg
|
|
740
|
-
width="1600"
|
|
741
|
-
height="900"
|
|
742
|
-
viewBox="0 0 1600 900"
|
|
743
|
-
fill="none"
|
|
744
|
-
preserveAspectRatio="xMinYMin slice"
|
|
745
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
746
|
-
>
|
|
747
|
-
<g clip-path="url(#clip0)">
|
|
748
|
-
<rect width="1600" height="900" fill="#2B1A78"/>
|
|
749
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M1218.12 -444.87C1375.54 -448.403 1528.96 -379.695 1624.93 -254.874C1718.97 -132.569 1729.75 28.0324 1697.74 178.942C1664.98 333.396 1596.67 491.622 1452.8 556.721C1311.8 620.52 1155.18 556.724 1017.04 486.944C883.26 419.362 752.204 329.485 715.393 184.213C677.697 35.4535 737.759 -117.225 833.568 -237.116C929.253 -356.852 1064.86 -441.431 1218.12 -444.87Z" fill="#5650BE"/>
|
|
750
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M372.893 247.378C457.708 243.989 548.299 262.758 600.503 329.652C652.21 395.908 640.741 485.984 623.238 568.169C605.287 652.459 579.269 741.096 503.945 783.041C424.143 827.479 324.366 822.072 243.48 779.638C165.755 738.862 118.175 659.045 102.906 572.65C88.5877 491.632 114.457 410.294 167.015 346.974C218.23 285.272 292.743 250.581 372.893 247.378Z" fill="#5650BE"/>
|
|
751
|
-
</g>
|
|
752
|
-
<defs>
|
|
753
|
-
<clipPath id="clip0">
|
|
754
|
-
<rect width="1600" height="900" fill="white"/>
|
|
755
|
-
</clipPath>
|
|
756
|
-
</defs>
|
|
757
|
-
</svg>
|
|
758
|
-
`}
|
|
759
|
-
</div>
|
|
760
|
-
${this.visualUrl?a.qy`
|
|
761
|
-
<picture>
|
|
762
|
-
<source srcset="${this.visualUrl}" />
|
|
763
|
-
<img
|
|
764
|
-
src="${this.visualThumbnailUrl}"
|
|
765
|
-
alt="${this.visualAltText}"
|
|
766
|
-
loading="lazy"
|
|
767
|
-
onerror="this.style.display='none'"
|
|
768
|
-
/>
|
|
769
|
-
</picture>
|
|
770
|
-
`:a.s6}
|
|
771
|
-
</div>
|
|
772
|
-
`:"logo"===this.visualType&&(t=a.qy`
|
|
773
|
-
<div class="visual logo">
|
|
774
|
-
<picture>
|
|
775
|
-
<source srcset="${this.visualUrl}" />
|
|
776
|
-
<img
|
|
777
|
-
src="${this.visualThumbnailUrl}"
|
|
778
|
-
alt="${this.visualAltText}"
|
|
779
|
-
loading="lazy"
|
|
780
|
-
/>
|
|
781
|
-
</picture>
|
|
782
|
-
</div>
|
|
783
|
-
`),t}cardContentTemplate(){return a.qy`
|
|
784
|
-
${this.visualTemplate()}
|
|
785
|
-
<div class="content">
|
|
786
|
-
<div class="header">
|
|
787
|
-
<div>
|
|
788
|
-
${this.eyebrow?a.qy` <div class="eyebrow">${this.eyebrow}</div> `:a.s6}
|
|
789
|
-
${this.title?a.qy` <div class="h3 title">${this.title}</div> `:a.s6}
|
|
790
|
-
</div>
|
|
791
|
-
${this.label?a.qy`
|
|
792
|
-
<div>
|
|
793
|
-
<cfa-label color="green">${this.label}</cfa-label>
|
|
794
|
-
</div>
|
|
795
|
-
`:a.s6}
|
|
796
|
-
</div>
|
|
797
|
-
<div class="body">
|
|
798
|
-
${this.text?a.qy` <div class="small" .innerHTML=${this.text}></div> `:a.s6}
|
|
799
|
-
</div>
|
|
800
|
-
${this.metaText||this.actionLabel?a.qy`
|
|
801
|
-
<div class="footer">
|
|
802
|
-
${this.metaText?a.qy`
|
|
803
|
-
<div
|
|
804
|
-
class="meta-text small"
|
|
805
|
-
.innerHTML=${this.metaText}
|
|
806
|
-
></div>
|
|
807
|
-
`:a.s6}
|
|
808
|
-
${this.actionLabel?a.qy` <div class="action-label">${this.actionLabel}</div> `:a.s6}
|
|
809
|
-
</div>
|
|
810
|
-
`:a.s6}
|
|
811
|
-
</div>
|
|
812
|
-
`}render(){return a.qy`
|
|
813
|
-
${this.linkUrl?a.qy`
|
|
814
|
-
<a
|
|
815
|
-
href="${this.linkUrl}"
|
|
816
|
-
target="${this.linkTarget}"
|
|
817
|
-
rel="${"_blank"==this.linkTarget?"noopener":a.s6}"
|
|
818
|
-
class="card ${this.theme?"card--"+this.theme:""}"
|
|
819
|
-
>
|
|
820
|
-
${this.cardContentTemplate()}
|
|
821
|
-
</a>
|
|
822
|
-
`:a.qy`
|
|
823
|
-
<div class="card ${this.theme?"card--"+this.theme:""}">
|
|
824
|
-
${this.cardContentTemplate()}
|
|
825
|
-
</div>
|
|
826
|
-
`}
|
|
827
|
-
`}}class n extends a.WF{static styles=(()=>[o.s,s.g,a.AH`
|
|
828
|
-
:host {
|
|
829
|
-
display: flex;
|
|
830
|
-
flex-direction: column;
|
|
831
|
-
margin-inline: auto;
|
|
832
|
-
max-width: 100%;
|
|
833
|
-
width: 100%;
|
|
834
|
-
}
|
|
835
|
-
|
|
836
|
-
.card-skeleton {
|
|
837
|
-
background-color: var(--white);
|
|
838
|
-
border: var(--hairline) solid var(--gray-20);
|
|
839
|
-
box-shadow: var(--shadow-small);
|
|
840
|
-
color: var(--black);
|
|
841
|
-
display: flex;
|
|
842
|
-
flex: 1;
|
|
843
|
-
flex-direction: column;
|
|
844
|
-
height: 100%;
|
|
845
|
-
}
|
|
846
|
-
|
|
847
|
-
.visual-skeleton {
|
|
848
|
-
background-color: var(--gray-20);
|
|
849
|
-
height: var(--spacing-layout-7);
|
|
850
|
-
overflow: hidden;
|
|
851
|
-
position: relative;
|
|
852
|
-
width: 100%;
|
|
853
|
-
}
|
|
854
|
-
|
|
855
|
-
.content {
|
|
856
|
-
background-color: var(--white);
|
|
857
|
-
display: flex;
|
|
858
|
-
flex: 1;
|
|
859
|
-
flex-direction: column;
|
|
860
|
-
gap: var(--spacing-layout-half);
|
|
861
|
-
padding: var(--spacing-component-4);
|
|
862
|
-
}
|
|
863
|
-
|
|
864
|
-
.body {
|
|
865
|
-
display: flex;
|
|
866
|
-
flex: 1;
|
|
867
|
-
flex-direction: column;
|
|
868
|
-
gap: var(--spacing-layout-half);
|
|
869
|
-
}
|
|
870
|
-
|
|
871
|
-
.line {
|
|
872
|
-
background-color: var(--gray-20);
|
|
873
|
-
border-radius: var(--spacing-component-1);
|
|
874
|
-
display: block;
|
|
875
|
-
overflow: hidden;
|
|
876
|
-
position: relative;
|
|
877
|
-
width: 100%;
|
|
878
|
-
}
|
|
879
|
-
|
|
880
|
-
.line::after {
|
|
881
|
-
animation: shimmer 1.5s linear infinite;
|
|
882
|
-
background: linear-gradient(
|
|
883
|
-
90deg,
|
|
884
|
-
transparent 0%,
|
|
885
|
-
var(--white-50, rgba(255, 255, 255, 0.45)) 50%,
|
|
886
|
-
transparent 100%
|
|
887
|
-
);
|
|
888
|
-
content: "";
|
|
889
|
-
inset: 0;
|
|
890
|
-
position: absolute;
|
|
891
|
-
transform: translateX(-100%);
|
|
892
|
-
}
|
|
893
|
-
|
|
894
|
-
.line--eyebrow {
|
|
895
|
-
height: var(--line-height-small);
|
|
896
|
-
max-width: 28%;
|
|
897
|
-
}
|
|
898
|
-
|
|
899
|
-
.line--title {
|
|
900
|
-
height: var(--line-height-h3);
|
|
901
|
-
max-width: 76%;
|
|
902
|
-
}
|
|
903
|
-
|
|
904
|
-
.line--body {
|
|
905
|
-
height: var(--line-height);
|
|
906
|
-
}
|
|
907
|
-
|
|
908
|
-
.line--body-short {
|
|
909
|
-
max-width: 86%;
|
|
910
|
-
}
|
|
911
|
-
|
|
912
|
-
.line--action {
|
|
913
|
-
height: var(--line-height-small);
|
|
914
|
-
margin-block-start: auto;
|
|
915
|
-
max-width: 36%;
|
|
916
|
-
}
|
|
917
|
-
|
|
918
|
-
@keyframes shimmer {
|
|
919
|
-
100% {
|
|
920
|
-
transform: translateX(100%);
|
|
921
|
-
}
|
|
922
|
-
}
|
|
923
|
-
`])();render(){return a.qy`
|
|
924
|
-
<div class="card-skeleton" role="status" aria-busy="true" aria-label="Loading card">
|
|
925
|
-
<div class="visual-skeleton line" aria-hidden="true"></div>
|
|
926
|
-
<div class="content">
|
|
927
|
-
<div class="line line--eyebrow" aria-hidden="true"></div>
|
|
928
|
-
<div class="line line--title" aria-hidden="true"></div>
|
|
929
|
-
<div class="body" aria-hidden="true">
|
|
930
|
-
<div class="line line--body"></div>
|
|
931
|
-
<div class="line line--body line--body-short"></div>
|
|
932
|
-
<div class="line line--action"></div>
|
|
933
|
-
</div>
|
|
934
|
-
</div>
|
|
935
|
-
</div>
|
|
936
|
-
`}}customElements.get("cfa-card")||customElements.define("cfa-card",r),customElements.get("cfa-card-skeleton")||customElements.define("cfa-card-skeleton",n)},221(t,e,i){var a=i(161),o=i(601);i(562);class s extends a.WF{static SWIPE_THRESHOLD=50;static SHADOW_SPACE=32;static PROGRESS_UPDATE_INTERVAL=100;static AUTOPLAY_DURATION=1e4;static DESKTOP_BREAKPOINT=768;static ITEMS_PER_VIEW_DESKTOP=3;static ITEMS_PER_VIEW_MOBILE=1;static properties=(()=>({currentPage:{type:Number,state:!0},totalSlides:{type:Number,state:!0},progressPercentage:{type:Number,state:!0},isPaused:{type:Boolean,state:!0},prefersReducedMotion:{type:Boolean,state:!0},itemsPerView:{type:Number},autoPlay:{type:Boolean},autoPlayDuration:{type:Number}}))();static styles=(()=>[o.s,a.AH`
|
|
937
|
-
:host {
|
|
938
|
-
--carousel-fade-duration: 300ms;
|
|
939
|
-
--carousel-control-size: var(--spacing-layout-2);
|
|
940
|
-
--carousel-dot-size: var(--spacing-component-3);
|
|
941
|
-
--carousel-dot-gap: var(--spacing-component-3);
|
|
942
|
-
--carousel-dot-color: var(--black-20);
|
|
943
|
-
--carousel-dot-active-color: var(--purple-60);
|
|
944
|
-
--carousel-gap: var(--spacing-layout-1);
|
|
945
|
-
}
|
|
946
|
-
|
|
947
|
-
.carousel-container {
|
|
948
|
-
display: flex;
|
|
949
|
-
flex-direction: column;
|
|
950
|
-
gap: var(--spacing-component-3);
|
|
951
|
-
}
|
|
952
|
-
|
|
953
|
-
.carousel-slides {
|
|
954
|
-
width: 100%;
|
|
955
|
-
overflow: hidden;
|
|
956
|
-
transition: height 400ms ease-in-out;
|
|
957
|
-
height: auto;
|
|
958
|
-
}
|
|
959
|
-
|
|
960
|
-
.carousel-track {
|
|
961
|
-
display: flex;
|
|
962
|
-
gap: var(--carousel-gap);
|
|
963
|
-
}
|
|
964
|
-
|
|
965
|
-
::slotted(*) {
|
|
966
|
-
flex: 0 0 calc((100% - (var(--items-per-view, 3) - 1) * var(--carousel-gap)) / var(--items-per-view, 3));
|
|
967
|
-
display: none;
|
|
968
|
-
opacity: 0;
|
|
969
|
-
transition: opacity var(--carousel-fade-duration) ease-in-out;
|
|
970
|
-
}
|
|
971
|
-
|
|
972
|
-
::slotted([data-slide-active]) {
|
|
973
|
-
display: block;
|
|
974
|
-
opacity: 1;
|
|
975
|
-
}
|
|
976
|
-
|
|
977
|
-
@media (prefers-reduced-motion: reduce) {
|
|
978
|
-
.carousel-slides {
|
|
979
|
-
transition: none;
|
|
980
|
-
}
|
|
981
|
-
|
|
982
|
-
::slotted(*) {
|
|
983
|
-
transition: none;
|
|
984
|
-
}
|
|
985
|
-
}
|
|
986
|
-
|
|
987
|
-
.carousel-controls {
|
|
988
|
-
display: flex;
|
|
989
|
-
align-items: center;
|
|
990
|
-
justify-content: center;
|
|
991
|
-
gap: var(--spacing-component-3);
|
|
992
|
-
}
|
|
993
|
-
|
|
994
|
-
.carousel-button {
|
|
995
|
-
background-color: transparent;
|
|
996
|
-
border: 0;
|
|
997
|
-
border-radius: 50%;
|
|
998
|
-
color: var(--text-color);
|
|
999
|
-
cursor: pointer;
|
|
1000
|
-
display: flex;
|
|
1001
|
-
align-items: center;
|
|
1002
|
-
justify-content: center;
|
|
1003
|
-
font-size: 1.5rem;
|
|
1004
|
-
height: var(--carousel-control-size);
|
|
1005
|
-
width: var(--carousel-control-size);
|
|
1006
|
-
transition: all 0.2s ease-in-out;
|
|
1007
|
-
flex-shrink: 0;
|
|
1008
|
-
}
|
|
1009
|
-
|
|
1010
|
-
.carousel-button:hover {
|
|
1011
|
-
background-color: var(--purple-20);
|
|
1012
|
-
border-color: var(--purple-60);
|
|
1013
|
-
color: var(--purple-80);
|
|
1014
|
-
}
|
|
1015
|
-
|
|
1016
|
-
.carousel-button:focus-visible {
|
|
1017
|
-
outline: var(--focus-outline);
|
|
1018
|
-
outline-offset: 2px;
|
|
1019
|
-
}
|
|
1020
|
-
|
|
1021
|
-
.carousel-button cfa-icon {
|
|
1022
|
-
--size: var(--font-size);
|
|
1023
|
-
color: var(--purple-80);
|
|
1024
|
-
}
|
|
1025
|
-
|
|
1026
|
-
.carousel-pagination {
|
|
1027
|
-
display: flex;
|
|
1028
|
-
align-items: center;
|
|
1029
|
-
gap: var(--carousel-dot-gap);
|
|
1030
|
-
flex-wrap: wrap;
|
|
1031
|
-
justify-content: center;
|
|
1032
|
-
}
|
|
1033
|
-
|
|
1034
|
-
.carousel-dot {
|
|
1035
|
-
background-color: var(--carousel-dot-color);
|
|
1036
|
-
border: none;
|
|
1037
|
-
border-radius: 50%;
|
|
1038
|
-
cursor: pointer;
|
|
1039
|
-
height: var(--carousel-dot-size);
|
|
1040
|
-
min-width: var(--carousel-dot-size);
|
|
1041
|
-
padding: 0;
|
|
1042
|
-
position: relative;
|
|
1043
|
-
transition: all 0.3s ease-in-out;
|
|
1044
|
-
}
|
|
1045
|
-
|
|
1046
|
-
.carousel-dot:hover {
|
|
1047
|
-
background-color: var(--gray-60);
|
|
1048
|
-
}
|
|
1049
|
-
|
|
1050
|
-
.carousel-dot:focus-visible {
|
|
1051
|
-
outline: var(--focus-outline);
|
|
1052
|
-
outline-offset: 3px;
|
|
1053
|
-
}
|
|
1054
|
-
|
|
1055
|
-
.carousel-dot[aria-current="true"] {
|
|
1056
|
-
background-color: var(--carousel-dot-color);
|
|
1057
|
-
border-radius: var(--carousel-dot-size);
|
|
1058
|
-
min-width: calc(var(--carousel-dot-size) * 4);
|
|
1059
|
-
overflow: hidden;
|
|
1060
|
-
}
|
|
1061
|
-
|
|
1062
|
-
.carousel-dot-progress {
|
|
1063
|
-
background-color: var(--carousel-dot-active-color);
|
|
1064
|
-
height: 100%;
|
|
1065
|
-
width: 0%;
|
|
1066
|
-
transition: width 100ms linear;
|
|
1067
|
-
}
|
|
1068
|
-
|
|
1069
|
-
@media (prefers-reduced-motion: reduce) {
|
|
1070
|
-
.carousel-dot-progress {
|
|
1071
|
-
transition: none;
|
|
1072
|
-
}
|
|
1073
|
-
}
|
|
1074
|
-
|
|
1075
|
-
@media (max-width: 768px) {
|
|
1076
|
-
/* Note: 768px matches Carousel.DESKTOP_BREAKPOINT - keep in sync */
|
|
1077
|
-
.carousel-button {
|
|
1078
|
-
font-size: 1.25rem;
|
|
1079
|
-
height: calc(var(--carousel-control-size) * 0.85);
|
|
1080
|
-
width: calc(var(--carousel-control-size) * 0.85);
|
|
1081
|
-
}
|
|
1082
|
-
|
|
1083
|
-
.carousel-dot {
|
|
1084
|
-
height: calc(var(--carousel-dot-size) * 0.8);
|
|
1085
|
-
min-width: calc(var(--carousel-dot-size) * 0.8);
|
|
1086
|
-
}
|
|
1087
|
-
}
|
|
1088
|
-
`])();constructor(){super(),this.currentPage=0,this.totalSlides=0,this.progressPercentage=0,this.isPaused=!0,this.prefersReducedMotion=window.matchMedia("(prefers-reduced-motion: reduce)").matches,this.itemsPerView=s.ITEMS_PER_VIEW_DESKTOP,this.autoPlay=!0,this.autoPlayDuration=Math.max(100,s.AUTOPLAY_DURATION),this.autoPlayTimer=null,this.autoPlayTimeout=null,this.touchStartX=null,this.touchEndX=null,this._initialized=!1,this._resizeTimerId=null,this._mouseEnterListener=null,this._mouseLeaveListener=null}connectedCallback(){super.connectedCallback();const t=this.getAttribute("items-per-view");if(null!==t){const e=parseInt(t,10);isNaN(e)||(this.itemsPerView=e)}this.style.setProperty("--items-per-view",this.itemsPerView),this.addEventListener("keydown",t=>this._handleKeydown(t)),this.addEventListener("touchstart",t=>this._handleTouchStart(t),!1),this.addEventListener("touchend",t=>this._handleTouchEnd(t),!1),this._resizeListener=()=>{this._resizeTimerId&&clearTimeout(this._resizeTimerId),this._resizeTimerId=setTimeout(()=>{this.updateItemsPerView(),this.updateCarouselHeight()},150)},window.addEventListener("resize",this._resizeListener)}disconnectedCallback(){super.disconnectedCallback(),this.stopAutoPlay(),this._resizeListener&&window.removeEventListener("resize",this._resizeListener),this._resizeTimerId&&clearTimeout(this._resizeTimerId);const t=this.shadowRoot?.querySelector(".carousel-slides");t&&this._mouseEnterListener&&this._mouseLeaveListener&&(t.removeEventListener("mouseenter",this._mouseEnterListener),t.removeEventListener("mouseleave",this._mouseLeaveListener))}updated(t){t.has("itemsPerView")&&this.style.setProperty("--items-per-view",this.itemsPerView),t.has("currentPage")&&this.updateItemVisibility()}firstUpdated(){const t=this.shadowRoot.querySelector("slot"),e=this.shadowRoot.querySelector(".carousel-slides");t&&!this._slotChangeSetup&&(this._slotChangeSetup=!0,t.addEventListener("slotchange",()=>{this._slotChangeTimeout&&clearTimeout(this._slotChangeTimeout),this._slotChangeTimeout=setTimeout(()=>{this._initialized||this._initializeCarousel()},50)})),e&&!this._mouseEnterListener&&(this._mouseEnterListener=()=>{this.stopAutoPlay()},this._mouseLeaveListener=()=>{this.isPaused||this._scheduleNextPage()},e.addEventListener("mouseenter",this._mouseEnterListener),e.addEventListener("mouseleave",this._mouseLeaveListener))}_initializeCarousel(){if(this._initialized)return;const t=this.shadowRoot.querySelector("slot");if(!t)return;const e=t.assignedElements();0!==e.length&&(this._initialized=!0,this.totalSlides=e.length,this.updateItemsPerView(),this.updateItemVisibility(),this.startAutoPlay(),this._waitForImages(e,5e3).then(()=>{this.updateCarouselHeight()}))}_waitForImages(t){let e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:3e3;return Promise.race([Promise.all(Array.from(t).map(t=>Promise.all(Array.from(t.querySelectorAll("img")).map(t=>t.complete?Promise.resolve():new Promise(e=>{t.addEventListener("load",e,{once:!0}),t.addEventListener("error",e,{once:!0})}))))),new Promise((t,i)=>setTimeout(()=>i(new Error("Image load timeout")),e))]).catch(()=>Promise.resolve())}get totalPages(){return Math.ceil(this.totalSlides/this.itemsPerView)}updateItemsPerView(){if(this.hasAttribute("items-per-view"))return;const t=window.innerWidth>=s.DESKTOP_BREAKPOINT?s.ITEMS_PER_VIEW_DESKTOP:s.ITEMS_PER_VIEW_MOBILE;t!==this.itemsPerView&&(this.itemsPerView=t,this.style.setProperty("--items-per-view",this.itemsPerView),this.currentPage>=this.totalPages&&(this.currentPage=0),this.requestUpdate())}updateItemVisibility(){const t=this.shadowRoot.querySelector("slot");if(!t)return;const e=t.assignedElements();if(0===e.length)return;const i=this.currentPage*this.itemsPerView,a=i+this.itemsPerView;e.forEach((t,e)=>{e>=i&&e<a?t.setAttribute("data-slide-active",""):t.removeAttribute("data-slide-active")}),this.updateCarouselHeight()}updateCarouselHeight(){const t=this.shadowRoot.querySelector("slot"),e=this.shadowRoot.querySelector(".carousel-slides");if(!t||!e)return;const i=t.assignedElements();if(0===i.length)return;const a=this.currentPage*this.itemsPerView,o=a+this.itemsPerView;requestAnimationFrame(()=>{requestAnimationFrame(()=>{setTimeout(()=>{let t=0;for(let e=a;e<o&&e<i.length;e++){const a=i[e].offsetHeight;t=Math.max(t,a)}const r=Math.max(t,s.SHADOW_SPACE);e.style.height=r+"px"},0)})})}startAutoPlay(){this.autoPlay&&!this.prefersReducedMotion&&0!==this.totalSlides?(this.isPaused=!1,this.progressPercentage=0,this._scheduleNextPage()):this.isPaused=!0}play(){this.prefersReducedMotion||this.startAutoPlay()}pause(){this.isPaused=!0,this.stopAutoPlay()}stopAutoPlay(){this.autoPlayTimer&&(clearInterval(this.autoPlayTimer),this.autoPlayTimer=null),this.autoPlayTimeout&&(clearTimeout(this.autoPlayTimeout),this.autoPlayTimeout=null)}_scheduleNextPage(){this.stopAutoPlay();const t=100/(this.autoPlayDuration/s.PROGRESS_UPDATE_INTERVAL);this.autoPlayTimer=setInterval(()=>{this.progressPercentage=Math.min(100,this.progressPercentage+t)},s.PROGRESS_UPDATE_INTERVAL),this.autoPlayTimeout=setTimeout(()=>{this.isPaused||(this.nextPage(),this.startAutoPlay())},this.autoPlayDuration)}nextPage(){this.currentPage=(this.currentPage+1)%this.totalPages,this.progressPercentage=0,this.stopAutoPlay(),this.requestUpdate(),this.play()}previousPage(){this.currentPage=(this.currentPage-1+this.totalPages)%this.totalPages,this.progressPercentage=0,this.stopAutoPlay(),this.requestUpdate(),this.play()}goToPage(t){t>=0&&t<this.totalPages&&t!==this.currentPage&&(this.currentPage=t,this.progressPercentage=0,this.stopAutoPlay(),this.requestUpdate(),this.play())}_handleKeydown(t){"ArrowRight"===t.key?(t.preventDefault(),this.nextPage(),this.pause()):"ArrowLeft"===t.key&&(t.preventDefault(),this.previousPage(),this.pause())}_handleTouchStart(t){t.changedTouches&&t.changedTouches.length>0&&(this.touchStartX=t.changedTouches[0].screenX)}_handleTouchEnd(t){t.changedTouches&&t.changedTouches.length>0&&(this.touchEndX=t.changedTouches[0].screenX,this._handleSwipe())}_handleSwipe(){if(null===this.touchStartX||null===this.touchEndX)return;const t=this.touchStartX-this.touchEndX;Math.abs(t)>s.SWIPE_THRESHOLD&&(t>0?(this.nextPage(),this.pause()):(this.previousPage(),this.pause()))}render(){return a.qy`
|
|
1089
|
-
<div
|
|
1090
|
-
class="carousel-container"
|
|
1091
|
-
role="region"
|
|
1092
|
-
aria-label="Content carousel"
|
|
1093
|
-
>
|
|
1094
|
-
<div class="carousel-slides">
|
|
1095
|
-
<div class="carousel-track">
|
|
1096
|
-
<slot @slotchange=${()=>{if(!this._initialized){const t=this.shadowRoot.querySelector("slot");if(t){const e=t.assignedElements();this.totalSlides=e.length,this.updateItemVisibility(),this.requestUpdate()}}}}></slot>
|
|
1097
|
-
</div>
|
|
1098
|
-
</div>
|
|
1099
|
-
|
|
1100
|
-
${this.totalSlides>0?a.qy`
|
|
1101
|
-
<div class="carousel-controls">
|
|
1102
|
-
<button
|
|
1103
|
-
class="carousel-button"
|
|
1104
|
-
@click=${()=>this.previousPage()}
|
|
1105
|
-
aria-label="Previous page"
|
|
1106
|
-
>
|
|
1107
|
-
<cfa-icon>arrow_back</cfa-icon>
|
|
1108
|
-
</button>
|
|
1109
|
-
|
|
1110
|
-
<div class="carousel-pagination">
|
|
1111
|
-
${Array.from({length:this.totalPages}).map((t,e)=>a.qy`
|
|
1112
|
-
<button
|
|
1113
|
-
class="carousel-dot"
|
|
1114
|
-
@click=${()=>this.goToPage(e)}
|
|
1115
|
-
aria-label="Go to page ${e+1} of ${this.totalPages}"
|
|
1116
|
-
aria-current=${e===this.currentPage?"true":"false"}
|
|
1117
|
-
>
|
|
1118
|
-
${e!==this.currentPage||this.prefersReducedMotion?"":a.qy`<div
|
|
1119
|
-
class="carousel-dot-progress"
|
|
1120
|
-
style="width: ${this.progressPercentage}%"
|
|
1121
|
-
></div>`}
|
|
1122
|
-
</button>
|
|
1123
|
-
`)}
|
|
1124
|
-
</div>
|
|
1125
|
-
|
|
1126
|
-
<button
|
|
1127
|
-
class="carousel-button"
|
|
1128
|
-
@click=${()=>this.nextPage()}
|
|
1129
|
-
aria-label="Next page"
|
|
1130
|
-
>
|
|
1131
|
-
<cfa-icon>arrow_forward</cfa-icon>
|
|
1132
|
-
</button>
|
|
1133
|
-
</div>
|
|
1134
|
-
`:""}
|
|
1135
|
-
</div>
|
|
1136
|
-
`}}customElements.get("cfa-carousel")||customElements.define("cfa-carousel",s)},562(t,e,i){var a=i(161),o=i(601);class s extends a.WF{static styles=(()=>[o.s,a.AH`
|
|
1137
|
-
:host {
|
|
1138
|
-
--size: 1.2em;
|
|
1139
|
-
|
|
1140
|
-
display: inline;
|
|
1141
|
-
line-height: inherit;
|
|
1142
|
-
}
|
|
1143
|
-
|
|
1144
|
-
.icon {
|
|
1145
|
-
-webkit-font-feature-settings: "liga";
|
|
1146
|
-
direction: ltr;
|
|
1147
|
-
display: inline-block;
|
|
1148
|
-
font-family: "Material Symbols Rounded";
|
|
1149
|
-
font-size: var(--size);
|
|
1150
|
-
font-style: normal;
|
|
1151
|
-
font-weight: normal;
|
|
1152
|
-
letter-spacing: normal;
|
|
1153
|
-
margin-top: -0.1em;
|
|
1154
|
-
text-transform: none;
|
|
1155
|
-
vertical-align: middle;
|
|
1156
|
-
white-space: nowrap;
|
|
1157
|
-
word-wrap: normal;
|
|
1158
|
-
}
|
|
1159
|
-
`])();render(){return a.qy`
|
|
1160
|
-
<span class="icon">
|
|
1161
|
-
<slot></slot>
|
|
1162
|
-
</span>
|
|
1163
|
-
`}}customElements.get("cfa-icon")||customElements.define("cfa-icon",s)},953(t,e,i){var a=i(161),o=i(601),s=i(205);class r extends a.WF{static properties={color:""};static styles=(()=>[o.s,s.g,a.AH`
|
|
1164
|
-
.label {
|
|
1165
|
-
--background-color: var(--gray-20);
|
|
1166
|
-
--text-color: var(--black, #000);
|
|
1167
|
-
|
|
1168
|
-
background-color: var(--background-color);
|
|
1169
|
-
color: var(--text-color);
|
|
1170
|
-
display: inline-block;
|
|
1171
|
-
line-height: 1em;
|
|
1172
|
-
padding: var(--spacing-component-2) var(--spacing-component-3);
|
|
1173
|
-
}
|
|
1174
|
-
|
|
1175
|
-
.label[color="white"] {
|
|
1176
|
-
--background-color: var(--white, #fff);
|
|
1177
|
-
box-shadow: var(--shadow-small);
|
|
1178
|
-
}
|
|
1179
|
-
|
|
1180
|
-
.label[color="purple"] {
|
|
1181
|
-
--background-color: var(--purple-20);
|
|
1182
|
-
}
|
|
1183
|
-
|
|
1184
|
-
.label[color="red"] {
|
|
1185
|
-
--background-color: var(--red-20);
|
|
1186
|
-
}
|
|
1187
|
-
|
|
1188
|
-
.label[color="blue"] {
|
|
1189
|
-
--background-color: var(--blue-20);
|
|
1190
|
-
}
|
|
1191
|
-
|
|
1192
|
-
.label[color="green"] {
|
|
1193
|
-
--background-color: var(--green-20);
|
|
1194
|
-
}
|
|
1195
|
-
|
|
1196
|
-
.label[color="yellow"] {
|
|
1197
|
-
--background-color: var(--yellow-20);
|
|
1198
|
-
}
|
|
1199
|
-
`])();render(){return a.qy`
|
|
1200
|
-
<div class="label small strong" color="${this.color}">
|
|
1201
|
-
<slot />
|
|
1202
|
-
</div>
|
|
1203
|
-
`}}customElements.get("cfa-label")||customElements.define("cfa-label",r)},152(t,e,i){var a=i(161),o=i(601),s=i(205);class r extends a.WF{static properties={name:{},imageUrl:{},linkUrl:{},linkTarget:{}};static styles=(()=>[o.s,s.g,a.AH`
|
|
1204
|
-
:host {
|
|
1205
|
-
--bg-color: var(--blue-20);
|
|
1206
|
-
--text-color: var(--black);
|
|
1207
|
-
|
|
1208
|
-
align-items: stretch;
|
|
1209
|
-
display: flex;
|
|
1210
|
-
flex-direction: row;
|
|
1211
|
-
}
|
|
1212
|
-
|
|
1213
|
-
.card {
|
|
1214
|
-
align-items: center;
|
|
1215
|
-
background-color: var(--white);
|
|
1216
|
-
border: var(--hairline) solid var(--black-10);
|
|
1217
|
-
color: var(--text-color);
|
|
1218
|
-
display: flex;
|
|
1219
|
-
flex-direction: column;
|
|
1220
|
-
font-size: var(--font-size-h3);
|
|
1221
|
-
font-weight: bold;
|
|
1222
|
-
justify-content: center;
|
|
1223
|
-
line-height: var(--line-height-h4);
|
|
1224
|
-
margin-inline: auto;
|
|
1225
|
-
max-width: 100%;
|
|
1226
|
-
min-height: var(--spacing-layout-8);
|
|
1227
|
-
padding: var(--spacing-component-5);
|
|
1228
|
-
text-align: center;
|
|
1229
|
-
text-decoration: none;
|
|
1230
|
-
transition: box-shadow 1s;
|
|
1231
|
-
width: var(--column-span-4);
|
|
1232
|
-
}
|
|
1233
|
-
|
|
1234
|
-
a.card {
|
|
1235
|
-
box-shadow: var(--shadow-small);
|
|
1236
|
-
color: var(--text-color);
|
|
1237
|
-
}
|
|
1238
|
-
|
|
1239
|
-
a.card:hover {
|
|
1240
|
-
box-shadow: var(--shadow-medium);
|
|
1241
|
-
}
|
|
1242
|
-
|
|
1243
|
-
img {
|
|
1244
|
-
aspect-ratio: 2 / 1;
|
|
1245
|
-
object-fit: contain;
|
|
1246
|
-
width: 100%;
|
|
1247
|
-
}
|
|
1248
|
-
`])();cardContentTemplate(){let t;return t=this.imageUrl?a.qy` <img src="${this.imageUrl}" alt="${this.name}" /> `:a.qy` ${this.name} `,t}render(){return a.qy`
|
|
1249
|
-
${this.linkUrl?a.qy`
|
|
1250
|
-
<a
|
|
1251
|
-
href="${this.linkUrl}"
|
|
1252
|
-
target="${this.linkTarget||"_self"}"
|
|
1253
|
-
rel="${"_blank"==this.linkTarget?"noopener noreferrer":a.s6}"
|
|
1254
|
-
class="card"
|
|
1255
|
-
>
|
|
1256
|
-
${this.cardContentTemplate()}
|
|
1257
|
-
</a>
|
|
1258
|
-
`:a.qy` <div class="card">${this.cardContentTemplate()}</div> `}
|
|
1259
|
-
`}}customElements.get("cfa-logo-card")||customElements.define("cfa-logo-card",r)},518(t,e,i){var a=i(161),o=i(601);class s extends a.WF{static properties={fontSize:{}};static styles=(()=>[o.s,a.AH`
|
|
1260
|
-
:host {
|
|
1261
|
-
--link-color: var(--purple-80);
|
|
1262
|
-
--link-hover-color: var(--purple-80);
|
|
1263
|
-
|
|
1264
|
-
display: block;
|
|
1265
|
-
font-family: var(--font-family-sans-serif);
|
|
1266
|
-
}
|
|
1267
|
-
|
|
1268
|
-
slot {
|
|
1269
|
-
display: none;
|
|
1270
|
-
}
|
|
1271
|
-
|
|
1272
|
-
nav {
|
|
1273
|
-
font-size: var(--font-size);
|
|
1274
|
-
line-height: var(--line-height);
|
|
1275
|
-
}
|
|
1276
|
-
|
|
1277
|
-
nav[data-font-size="small"] {
|
|
1278
|
-
font-size: var(--font-size-small);
|
|
1279
|
-
line-height: var(--line-height-small);
|
|
1280
|
-
}
|
|
1281
|
-
|
|
1282
|
-
nav[data-font-size="large"] {
|
|
1283
|
-
font-size: var(--font-size-h3);
|
|
1284
|
-
line-height: var(--line-height-h3);
|
|
1285
|
-
}
|
|
1286
|
-
|
|
1287
|
-
ul {
|
|
1288
|
-
display: flex;
|
|
1289
|
-
flex-direction: row;
|
|
1290
|
-
gap: var(--spacing-component-1);
|
|
1291
|
-
list-style: none;
|
|
1292
|
-
margin: 0;
|
|
1293
|
-
padding: 0;
|
|
1294
|
-
}
|
|
1295
|
-
|
|
1296
|
-
li {
|
|
1297
|
-
flex-shrink: 0;
|
|
1298
|
-
margin: 0;
|
|
1299
|
-
padding: 0;
|
|
1300
|
-
}
|
|
1301
|
-
|
|
1302
|
-
li.is-active a {
|
|
1303
|
-
box-shadow: inset 0 calc(-1 * var(--medium)) var(--link-hover-color);
|
|
1304
|
-
}
|
|
1305
|
-
|
|
1306
|
-
a {
|
|
1307
|
-
box-shadow: 0;
|
|
1308
|
-
color: var(--link-color);
|
|
1309
|
-
display: block;
|
|
1310
|
-
font-weight: bold;
|
|
1311
|
-
padding: var(--spacing-component-2) var(--spacing-component-3);
|
|
1312
|
-
text-decoration: none;
|
|
1313
|
-
transition: box-shadow 0.25s ease-in-out;
|
|
1314
|
-
}
|
|
1315
|
-
|
|
1316
|
-
a:hover {
|
|
1317
|
-
box-shadow: inset 0 calc(-1 * var(--medium)) var(--link-hover-color);
|
|
1318
|
-
}
|
|
1319
|
-
`])();handleSlotchange(t){const e=t.target.assignedNodes({flatten:!0}),i=this.shadowRoot.querySelector("ul");i.innerHTML="",e.forEach(t=>{"UL"===t.tagName&&t.querySelectorAll("li").forEach(t=>{i.appendChild(t.cloneNode(!0))})})}render(){return a.qy`
|
|
1320
|
-
<slot @slotchange=${this.handleSlotchange}></slot>
|
|
1321
|
-
<nav data-font-size="${this.fontSize}">
|
|
1322
|
-
<ul></ul>
|
|
1323
|
-
</nav>
|
|
1324
|
-
`}}customElements.get("cfa-nav")||customElements.define("cfa-nav",s)},280(t,e,i){var a=i(161),o=i(601);class s extends a.WF{static properties={fontSize:{}};static styles=(()=>[o.s,a.AH`
|
|
1325
|
-
:host {
|
|
1326
|
-
--bg-color: var(--white);
|
|
1327
|
-
--link-color: var(--purple-80);
|
|
1328
|
-
--link-hover-color: var(--purple-80);
|
|
1329
|
-
|
|
1330
|
-
background-color: var(--bg-color);
|
|
1331
|
-
display: block;
|
|
1332
|
-
padding-block: var(--spacing-layout-1);
|
|
1333
|
-
display: block;
|
|
1334
|
-
font-family: var(--font-family-sans-serif);
|
|
1335
|
-
font-size: var(--font-size-small);
|
|
1336
|
-
line-height: var(--font-size-small);
|
|
1337
|
-
}
|
|
1338
|
-
|
|
1339
|
-
slot {
|
|
1340
|
-
display: none;
|
|
1341
|
-
}
|
|
1342
|
-
|
|
1343
|
-
nav {
|
|
1344
|
-
}
|
|
1345
|
-
|
|
1346
|
-
ul {
|
|
1347
|
-
display: flex;
|
|
1348
|
-
flex-direction: column;
|
|
1349
|
-
gap: var(--spacing-layout-half);
|
|
1350
|
-
margin: 0;
|
|
1351
|
-
padding: 0 var(--outer-margin);
|
|
1352
|
-
min-height: var(--spacing-layout-2);
|
|
1353
|
-
}
|
|
1354
|
-
|
|
1355
|
-
li {
|
|
1356
|
-
display: block;
|
|
1357
|
-
}
|
|
1358
|
-
|
|
1359
|
-
a {
|
|
1360
|
-
background-color: var(--purple-10);
|
|
1361
|
-
border-radius: var(--rounded-corners);
|
|
1362
|
-
color: var(--link-color);
|
|
1363
|
-
display: block;
|
|
1364
|
-
position: relative;
|
|
1365
|
-
padding: var(--spacing-layout-half);
|
|
1366
|
-
text-decoration: none;
|
|
1367
|
-
}
|
|
1368
|
-
|
|
1369
|
-
a:hover {
|
|
1370
|
-
background-color: var(--blue-20);
|
|
1371
|
-
color: var(--link-hover-color);
|
|
1372
|
-
}
|
|
1373
|
-
|
|
1374
|
-
a:active {
|
|
1375
|
-
background-color: var(--blue-40);
|
|
1376
|
-
color: var(--link-color);
|
|
1377
|
-
}
|
|
1378
|
-
|
|
1379
|
-
@media (min-width: 768px) {
|
|
1380
|
-
:host {
|
|
1381
|
-
box-shadow: var(--shadow-small);
|
|
1382
|
-
padding-block: var(--spacing-component-2);
|
|
1383
|
-
position: sticky;
|
|
1384
|
-
top: 0;
|
|
1385
|
-
z-index: 3;
|
|
1386
|
-
}
|
|
1387
|
-
|
|
1388
|
-
nav {
|
|
1389
|
-
align-items: center;
|
|
1390
|
-
display: flex;
|
|
1391
|
-
flex-direction: row;
|
|
1392
|
-
margin-inline: auto;
|
|
1393
|
-
max-width: var(--grid-max-width);
|
|
1394
|
-
overflow-x: auto;
|
|
1395
|
-
overflow-y: hidden;
|
|
1396
|
-
scrollbar-width: none;
|
|
1397
|
-
}
|
|
1398
|
-
|
|
1399
|
-
ul {
|
|
1400
|
-
align-items: center;
|
|
1401
|
-
display: flex;
|
|
1402
|
-
flex-direction: row;
|
|
1403
|
-
gap: var(--spacing-component-2);
|
|
1404
|
-
}
|
|
1405
|
-
|
|
1406
|
-
a,
|
|
1407
|
-
li {
|
|
1408
|
-
max-width: none;
|
|
1409
|
-
white-space: nowrap;
|
|
1410
|
-
}
|
|
1411
|
-
|
|
1412
|
-
a.is-active {
|
|
1413
|
-
background-color: var(--blue-40);
|
|
1414
|
-
}
|
|
1415
|
-
}
|
|
1416
|
-
`])();handleSlotchange(t){const e=t.target.assignedNodes({flatten:!0}),i=this.shadowRoot.querySelector("ul"),a=[];e.forEach(t=>{"UL"===t.tagName&&t.querySelectorAll("li").forEach(t=>{i.appendChild(t.cloneNode(!0));const e=t.querySelector("a")?.getAttribute("href");e&&e.startsWith("#")&&a.push(e.substring(1))})}),window.addEventListener("scroll",()=>this.updateActiveNav(a))}updateActiveNav(t){const e=window.scrollY;let i=null;if(t.forEach(t=>{const a=document.getElementById(t);a&&a.offsetTop<=e+256&&(i=t)}),this.shadowRoot.querySelectorAll("li a").forEach(t=>{t.classList.remove("is-active")}),i){const t=this.shadowRoot.querySelector(`li a[href*="#${i}"]`);t&&t.classList.add("is-active")}}render(){return a.qy`
|
|
1417
|
-
<slot @slotchange=${this.handleSlotchange}></slot>
|
|
1418
|
-
<nav>
|
|
1419
|
-
<ul>
|
|
1420
|
-
<li><strong>On this page:  </strong></li>
|
|
1421
|
-
</ul>
|
|
1422
|
-
</nav>
|
|
1423
|
-
`}}customElements.get("cfa-page-nav")||customElements.define("cfa-page-nav",s)},696(t,e,i){var a=i(161),o=i(601),s=i(205),r=i(227);i(562);class n extends a.WF{static properties={previousTitle:{},previousUrl:{},nextTitle:{},nextUrl:{}};static styles=(()=>[o.s,s.g,r.V,a.AH`
|
|
1424
|
-
:host {
|
|
1425
|
-
display: block;
|
|
1426
|
-
}
|
|
1427
|
-
|
|
1428
|
-
* {
|
|
1429
|
-
box-sizing: border-box;
|
|
1430
|
-
text-wrap: comfortable;
|
|
1431
|
-
}
|
|
1432
|
-
|
|
1433
|
-
nav {
|
|
1434
|
-
display: flex;
|
|
1435
|
-
flex-direction: column;
|
|
1436
|
-
column-gap: var(--gutter-width);
|
|
1437
|
-
row-gap: var(--spacing-layout-half);
|
|
1438
|
-
}
|
|
1439
|
-
|
|
1440
|
-
nav > * > * {
|
|
1441
|
-
width: 100%;
|
|
1442
|
-
}
|
|
1443
|
-
|
|
1444
|
-
@media (min-width: 768px) {
|
|
1445
|
-
nav {
|
|
1446
|
-
flex-direction: row-reverse;
|
|
1447
|
-
justify-content: space-between;
|
|
1448
|
-
}
|
|
1449
|
-
|
|
1450
|
-
a {
|
|
1451
|
-
min-width: var(--column-span-4);
|
|
1452
|
-
}
|
|
1453
|
-
|
|
1454
|
-
.next a {
|
|
1455
|
-
text-align: end;
|
|
1456
|
-
}
|
|
1457
|
-
|
|
1458
|
-
.previous a {
|
|
1459
|
-
text-align: start;
|
|
1460
|
-
}
|
|
1461
|
-
}
|
|
1462
|
-
`])();render(){return a.qy`
|
|
1463
|
-
<nav>
|
|
1464
|
-
<div class="next">
|
|
1465
|
-
${this.nextUrl?a.qy`
|
|
1466
|
-
<a href="${this.nextUrl}" class="cfa-button">
|
|
1467
|
-
<span class="small label"
|
|
1468
|
-
>Next <cfa-icon>arrow_forward</cfa-icon></span
|
|
1469
|
-
><br />
|
|
1470
|
-
<span class="title normal">${this.nextTitle}</span>
|
|
1471
|
-
</a>
|
|
1472
|
-
`:""}
|
|
1473
|
-
</div>
|
|
1474
|
-
<div class="previous">
|
|
1475
|
-
${this.previousUrl?a.qy`
|
|
1476
|
-
<a
|
|
1477
|
-
href="${this.previousUrl}"
|
|
1478
|
-
class="cfa-button cfa-button--outline"
|
|
1479
|
-
>
|
|
1480
|
-
<span class="small label"
|
|
1481
|
-
><cfa-icon>arrow_back</cfa-icon> Previous</span
|
|
1482
|
-
><br />
|
|
1483
|
-
<span class="title normal">${this.previousTitle}</span>
|
|
1484
|
-
</a>
|
|
1485
|
-
`:""}
|
|
1486
|
-
</div>
|
|
1487
|
-
</nav>
|
|
1488
|
-
`}}customElements.get("cfa-pager")||customElements.define("cfa-pager",n)},663(t,e,i){var a=i(161),o=i(601),s=i(227);i(562);class r extends a.WF{static properties=(()=>({page:{type:Number},totalPages:{type:Number},previousLabel:{},nextLabel:{}}))();static styles=(()=>[o.s,s.V,a.AH`
|
|
1489
|
-
:host {
|
|
1490
|
-
display: block;
|
|
1491
|
-
}
|
|
1492
|
-
|
|
1493
|
-
.pagination {
|
|
1494
|
-
align-items: center;
|
|
1495
|
-
display: flex;
|
|
1496
|
-
flex-direction: row;
|
|
1497
|
-
gap: var(--gutter-width);
|
|
1498
|
-
justify-content: space-between;
|
|
1499
|
-
}
|
|
1500
|
-
|
|
1501
|
-
.pagination > * {
|
|
1502
|
-
flex: 1;
|
|
1503
|
-
}
|
|
1504
|
-
|
|
1505
|
-
.status {
|
|
1506
|
-
font-size: var(--font-size-small);
|
|
1507
|
-
line-height: var(-line-height-small);
|
|
1508
|
-
color: var(--gray-60);
|
|
1509
|
-
text-align: center;
|
|
1510
|
-
}
|
|
1511
|
-
|
|
1512
|
-
@media (max-width: 768px) {
|
|
1513
|
-
.status {
|
|
1514
|
-
display: none;
|
|
1515
|
-
}
|
|
1516
|
-
}
|
|
1517
|
-
|
|
1518
|
-
.previous {
|
|
1519
|
-
text-align: left;
|
|
1520
|
-
}
|
|
1521
|
-
|
|
1522
|
-
.next {
|
|
1523
|
-
text-align: right;
|
|
1524
|
-
}
|
|
1525
|
-
`])();constructor(){super(),this.previousLabel="Previous",this.nextLabel="Next",this.page=1,this.totalPages=1}render(){return a.qy`
|
|
1526
|
-
<div class="pagination">
|
|
1527
|
-
<div class="previous">
|
|
1528
|
-
${this.page>1?a.qy`
|
|
1529
|
-
<button class="cfa-button" @click="${this.handlePreviousPage}">
|
|
1530
|
-
<cfa-icon>arrow_back</cfa-icon> ${this.previousLabel}
|
|
1531
|
-
</button>
|
|
1532
|
-
`:""}
|
|
1533
|
-
</div>
|
|
1534
|
-
<div class="status">Page ${this.page} of ${this.totalPages}</div>
|
|
1535
|
-
<div class="next">
|
|
1536
|
-
${this.page<this.totalPages?a.qy`
|
|
1537
|
-
<button class="cfa-button" @click="${this.handleNextPage}">
|
|
1538
|
-
${this.nextLabel} <cfa-icon>arrow_forward</cfa-icon>
|
|
1539
|
-
</button>
|
|
1540
|
-
`:""}
|
|
1541
|
-
</div>
|
|
1542
|
-
</div>
|
|
1543
|
-
`}handleNextPage(){if(this.page<this.totalPages){this.page++;const t=new CustomEvent("page-change",{bubbles:!0,cancelable:!0,detail:this.page});this.dispatchEvent(t)}}handlePreviousPage(){if(this.page>1){this.page--;const t=new CustomEvent("page-change",{bubbles:!0,cancelable:!0,detail:this.page});this.dispatchEvent(t)}}}customElements.get("cfa-pagination")||customElements.define("cfa-pagination",r)},881(t,e,i){var a=i(161),o=i(601),s=i(205);i(330),i(804);class r extends a.WF{static properties={name:{type:"string"},title:{type:"string"},company:{type:"string"},pronouns:{type:"string"},imageUrl:{type:"string"},imageAltText:{type:"string"},linkUrl:{type:"string"},linkedInUrl:{type:"string"},twitterHandle:{type:"string"}};static styles=(()=>[o.s,s.g,a.AH`
|
|
1544
|
-
:host {
|
|
1545
|
-
display: block;
|
|
1546
|
-
}
|
|
1547
|
-
|
|
1548
|
-
.card {
|
|
1549
|
-
border-radius: var(--rounded-corners);
|
|
1550
|
-
position: relative;
|
|
1551
|
-
display: flex;
|
|
1552
|
-
flex-direction: row;
|
|
1553
|
-
margin-inline: auto;
|
|
1554
|
-
max-width: 100%;
|
|
1555
|
-
text-align: start;
|
|
1556
|
-
width: var(--column-span-4);
|
|
1557
|
-
transform: translate(0, 0); // hack to ensure pseudo element is stacked above parent background
|
|
1558
|
-
}
|
|
1559
|
-
|
|
1560
|
-
.card.has-link::before {
|
|
1561
|
-
border-radius: var(--rounded-corners);
|
|
1562
|
-
bottom: calc(-1 * var(--thick));
|
|
1563
|
-
content: "";
|
|
1564
|
-
height: calc(100% + 2 * var(--thick)));
|
|
1565
|
-
left: calc(-1 * var(--thick));
|
|
1566
|
-
position: absolute;
|
|
1567
|
-
right: calc(-1 * var(--thick));
|
|
1568
|
-
top: calc(-1 * var(--thick));
|
|
1569
|
-
width: calc(100% + 2 * var(--thick)));
|
|
1570
|
-
z-index: -1;
|
|
1571
|
-
transition:
|
|
1572
|
-
background-color 0.5s ease-in-out,
|
|
1573
|
-
box-shadow 0.5s ease-in-out;
|
|
1574
|
-
}
|
|
1575
|
-
|
|
1576
|
-
.card.has-link:hover::before,
|
|
1577
|
-
.card.has-link:focus-visible::before {
|
|
1578
|
-
background-color: var(--white);
|
|
1579
|
-
box-shadow: var(--shadow-medium);
|
|
1580
|
-
}
|
|
1581
|
-
|
|
1582
|
-
.card.has-link .name a {
|
|
1583
|
-
box-shadow: 0;
|
|
1584
|
-
color: var(--purple-80);
|
|
1585
|
-
transition: box-shadow 0.5s ease-in-out;
|
|
1586
|
-
}
|
|
1587
|
-
|
|
1588
|
-
.card.has-link:hover .name a {
|
|
1589
|
-
box-shadow: inset 0 calc(-1 * var(--thick)) 0 0 var(--purple-20);
|
|
1590
|
-
}
|
|
1591
|
-
|
|
1592
|
-
a {
|
|
1593
|
-
position: relative;
|
|
1594
|
-
text-decoration: none;
|
|
1595
|
-
z-index: 1;
|
|
1596
|
-
}
|
|
1597
|
-
|
|
1598
|
-
a.link-overlay {
|
|
1599
|
-
position: static;
|
|
1600
|
-
}
|
|
1601
|
-
|
|
1602
|
-
a.link-overlay::before {
|
|
1603
|
-
content: "";
|
|
1604
|
-
position: absolute;
|
|
1605
|
-
z-index: 0;
|
|
1606
|
-
top: 0;
|
|
1607
|
-
right: 0;
|
|
1608
|
-
bottom: 0;
|
|
1609
|
-
left: 0;
|
|
1610
|
-
}
|
|
1611
|
-
|
|
1612
|
-
.avatar {
|
|
1613
|
-
flex-grow: 0;
|
|
1614
|
-
}
|
|
1615
|
-
|
|
1616
|
-
.name {
|
|
1617
|
-
display: inline-block;
|
|
1618
|
-
}
|
|
1619
|
-
|
|
1620
|
-
.pronouns {
|
|
1621
|
-
color: var(--purple-60);
|
|
1622
|
-
}
|
|
1623
|
-
|
|
1624
|
-
.details {
|
|
1625
|
-
color: var(--black);
|
|
1626
|
-
flex-grow: 1;
|
|
1627
|
-
padding-block-start: var(--spacing-component-2);
|
|
1628
|
-
padding-inline-start: var(--spacing-component-2);
|
|
1629
|
-
}
|
|
1630
|
-
|
|
1631
|
-
.social {
|
|
1632
|
-
font-size: 0.9rem;
|
|
1633
|
-
margin-block-start: var(--spacing-component-1);
|
|
1634
|
-
}
|
|
1635
|
-
|
|
1636
|
-
.social a {
|
|
1637
|
-
align-items: center;
|
|
1638
|
-
border-radius: 10000px;
|
|
1639
|
-
color: var(--purple-80);
|
|
1640
|
-
display: inline-flex;
|
|
1641
|
-
height: var(--spacing-component-4);
|
|
1642
|
-
justify-content: center;
|
|
1643
|
-
margin: calc(-1 * var(--spacing-component-2));
|
|
1644
|
-
width: var(--spacing-component-4);
|
|
1645
|
-
}
|
|
1646
|
-
|
|
1647
|
-
.social a:hover {
|
|
1648
|
-
background-color: var(--purple-20);
|
|
1649
|
-
}
|
|
1650
|
-
|
|
1651
|
-
.social > a + a {
|
|
1652
|
-
margin-inline-start: var(--spacing-component-2);
|
|
1653
|
-
}
|
|
1654
|
-
`])();render(){return a.qy`
|
|
1655
|
-
<div class="card ${this.linkUrl?"has-link":""}">
|
|
1656
|
-
<!-- Link overlay pseudo-element so we can do nested links within the card -->
|
|
1657
|
-
${this.linkUrl?a.qy`
|
|
1658
|
-
<a
|
|
1659
|
-
href="${this.linkUrl}"
|
|
1660
|
-
target="${this.linkTarget||"_self"}"
|
|
1661
|
-
rel="${"_blank"==this.linkTarget?"noopener":a.s6}"
|
|
1662
|
-
class="link-overlay"
|
|
1663
|
-
tabindex="-1"
|
|
1664
|
-
>
|
|
1665
|
-
</a>
|
|
1666
|
-
`:""}
|
|
1667
|
-
<div class="avatar">
|
|
1668
|
-
${this.linkUrl?a.qy`
|
|
1669
|
-
<a
|
|
1670
|
-
href="${this.linkUrl}"
|
|
1671
|
-
target="${this.linkTarget||"_self"}"
|
|
1672
|
-
rel="${"_blank"==this.linkTarget?"noopener":a.s6}"
|
|
1673
|
-
>
|
|
1674
|
-
<cfa-avatar
|
|
1675
|
-
imageUrl="${this.imageUrl}"
|
|
1676
|
-
altText="Avatar photo of ${this.name}"
|
|
1677
|
-
size="3"
|
|
1678
|
-
>
|
|
1679
|
-
</cfa-avatar>
|
|
1680
|
-
</a>
|
|
1681
|
-
`:a.qy`
|
|
1682
|
-
<cfa-avatar
|
|
1683
|
-
imageUrl="${this.imageUrl}"
|
|
1684
|
-
altText="Avatar photo of ${this.name}"
|
|
1685
|
-
size="3"
|
|
1686
|
-
>
|
|
1687
|
-
</cfa-avatar>
|
|
1688
|
-
`}
|
|
1689
|
-
</div>
|
|
1690
|
-
<div class="details">
|
|
1691
|
-
<div>
|
|
1692
|
-
<div class="name h4">
|
|
1693
|
-
${this.linkUrl?a.qy`
|
|
1694
|
-
<a
|
|
1695
|
-
href="${this.linkUrl}"
|
|
1696
|
-
target="${this.linkTarget||"_self"}"
|
|
1697
|
-
rel="${"_blank"==this.linkTarget?"noopener":a.s6}"
|
|
1698
|
-
>
|
|
1699
|
-
${this.name.trim()}
|
|
1700
|
-
</a>
|
|
1701
|
-
`:a.qy` ${this.name.trim()} `}
|
|
1702
|
-
</div>
|
|
1703
|
-
${this.pronouns?a.qy` <span class="pronouns small">(${this.pronouns})</span> `:""}
|
|
1704
|
-
</div>
|
|
1705
|
-
<div class="title small">
|
|
1706
|
-
${[this.title?.trim(),this.company?.trim()].filter(Boolean).join(", ")}
|
|
1707
|
-
</div>
|
|
1708
|
-
${this.linkedInUrl||this.twitterHandle?a.qy`
|
|
1709
|
-
<div class="social">
|
|
1710
|
-
${this.linkedInUrl?a.qy`
|
|
1711
|
-
<a
|
|
1712
|
-
href="${this.linkedInUrl}"
|
|
1713
|
-
target="_blank"
|
|
1714
|
-
rel="noopener"
|
|
1715
|
-
title="View ${this.name}'s profile on LinkedIn"
|
|
1716
|
-
>
|
|
1717
|
-
<cfa-social-icon icon="linkedin" />
|
|
1718
|
-
</a>
|
|
1719
|
-
`:a.s6}
|
|
1720
|
-
${this.twitterHandle?a.qy`
|
|
1721
|
-
<a
|
|
1722
|
-
href="https://twitter.com/${this.twitterHandle}"
|
|
1723
|
-
target="_blank"
|
|
1724
|
-
rel="noopener"
|
|
1725
|
-
title="View ${this.name}'s profile on X (Twitter)"
|
|
1726
|
-
>
|
|
1727
|
-
<cfa-social-icon icon="twitter" />
|
|
1728
|
-
</a>
|
|
1729
|
-
`:a.s6}
|
|
1730
|
-
</div>
|
|
1731
|
-
`:a.s6}
|
|
1732
|
-
</div>
|
|
1733
|
-
</div>
|
|
1734
|
-
`}}customElements.get("cfa-person-card")||customElements.define("cfa-person-card",r)},200(t,e,i){var a=i(161),o=i(601);class s extends a.WF{static styles=(()=>[o.s,a.AH`
|
|
1735
|
-
:host {
|
|
1736
|
-
--bg-color: var(--gray-20);
|
|
1737
|
-
--text-color: var(--gray-80);
|
|
1738
|
-
|
|
1739
|
-
background-color: var(--bg-color);
|
|
1740
|
-
border-radius: var(--spacing-component-3);
|
|
1741
|
-
color: var(--text-color);
|
|
1742
|
-
display: inline-block;
|
|
1743
|
-
font-size: var(--font-size-small);
|
|
1744
|
-
font-weight: bold;
|
|
1745
|
-
line-height: 1;
|
|
1746
|
-
margin-right: var(--spacing-component-1);
|
|
1747
|
-
padding: var(--spacing-component-1) var(--spacing-component-2);
|
|
1748
|
-
vertical-align: middle;
|
|
1749
|
-
}
|
|
1750
|
-
`])();render(){return a.qy` <slot /> `}}customElements.get("cfa-pill")||customElements.define("cfa-pill",s)},884(t,e,i){var a=i(161),o=i(601),s=i(205);i(562);class r extends a.WF{static properties={heading:{},text:{},actionLabel:{},linkUrl:{},linkTarget:{}};static styles=(()=>[o.s,s.g,a.AH`
|
|
1751
|
-
:host {
|
|
1752
|
-
--bg-color: var(--blue-20);
|
|
1753
|
-
--padding: var(--spacing-component-4);
|
|
1754
|
-
--text-color: var(--black);
|
|
1755
|
-
--action-label-color: var(--purple-60);
|
|
1756
|
-
--action-label-hover-color: var(--red-60);
|
|
1757
|
-
|
|
1758
|
-
display: block;
|
|
1759
|
-
}
|
|
1760
|
-
|
|
1761
|
-
.promo,
|
|
1762
|
-
a.promo {
|
|
1763
|
-
background-color: var(--bg-color);
|
|
1764
|
-
box-shadow: var(--shadow-small);
|
|
1765
|
-
color: var(--text-color, #000);
|
|
1766
|
-
display: flex;
|
|
1767
|
-
flex-direction: column;
|
|
1768
|
-
gap: var(--spacing-layout-half);
|
|
1769
|
-
padding: var(--padding);
|
|
1770
|
-
text-align: center;
|
|
1771
|
-
text-decoration: none;
|
|
1772
|
-
transition: box-shadow 0.2s ease-in-out;
|
|
1773
|
-
}
|
|
1774
|
-
|
|
1775
|
-
a.promo:hover {
|
|
1776
|
-
box-shadow: var(--shadow-medium);
|
|
1777
|
-
}
|
|
1778
|
-
|
|
1779
|
-
.action-label {
|
|
1780
|
-
color: var(--action-label-color);
|
|
1781
|
-
}
|
|
1782
|
-
|
|
1783
|
-
a.promo:hover .action-label {
|
|
1784
|
-
color: var(--action-label-hover-color);
|
|
1785
|
-
}
|
|
1786
|
-
`])();render(){return a.qy`
|
|
1787
|
-
<a
|
|
1788
|
-
href="${this.linkUrl||"javascript:void(0)"}"
|
|
1789
|
-
target="${this.linkTarget||a.s6}"
|
|
1790
|
-
class="promo
|
|
1791
|
-
"
|
|
1792
|
-
>
|
|
1793
|
-
${this.heading?a.qy` <div class="h4 sans-serif">${this.heading}</div> `:a.s6}
|
|
1794
|
-
${this.text?a.qy` <div class="small">${this.text}</div> `:a.s6}
|
|
1795
|
-
${this.actionLabel?a.qy`
|
|
1796
|
-
<div class="action-label small strong">
|
|
1797
|
-
${this.actionLabel} <cfa-icon>arrow_forward</cfa-icon>
|
|
1798
|
-
</div>
|
|
1799
|
-
`:a.s6}
|
|
1800
|
-
</a>
|
|
1801
|
-
`}}customElements.get("cfa-promo")||customElements.define("cfa-promo",r)},250(t,e,i){var a=i(161),o=i(601);class s extends a.WF{static properties={};static styles=(()=>[o.s,a.AH`
|
|
1802
|
-
:host {
|
|
1803
|
-
--color: var(--purple-60);
|
|
1804
|
-
|
|
1805
|
-
display: block;
|
|
1806
|
-
}
|
|
1807
|
-
blockquote {
|
|
1808
|
-
border-inline-start: var(--thick) solid var(--color);
|
|
1809
|
-
color: var(--color);
|
|
1810
|
-
font-size: var(--font-size-h3);
|
|
1811
|
-
font-weight: 600;
|
|
1812
|
-
line-height: var(--line-height-h3);
|
|
1813
|
-
margin: 0;
|
|
1814
|
-
padding: var(--spacing-layout-half) var(--spacing-layout-1);
|
|
1815
|
-
}
|
|
1816
|
-
p {
|
|
1817
|
-
margin: 0;
|
|
1818
|
-
}
|
|
1819
|
-
p + p {
|
|
1820
|
-
margin-block-start: var(--spacing-layout-half);
|
|
1821
|
-
}
|
|
1822
|
-
`])();render(){return a.qy`
|
|
1823
|
-
<blockquote>
|
|
1824
|
-
<slot />
|
|
1825
|
-
</blockquote>
|
|
1826
|
-
`}}customElements.get("cfa-pullquote")||customElements.define("cfa-pullquote",s)},771(t,e,i){var a=i(161),o=i(601);class s extends a.WF{static properties={text:{},attribution:{}};static styles=(()=>[o.s,a.AH`
|
|
1827
|
-
:host {
|
|
1828
|
-
--attribution-color: var(--purple-60);
|
|
1829
|
-
container-type: inline-size;
|
|
1830
|
-
display: block;
|
|
1831
|
-
width: 100%;
|
|
1832
|
-
}
|
|
1833
|
-
|
|
1834
|
-
figure {
|
|
1835
|
-
margin: 0 auto;
|
|
1836
|
-
position: relative;
|
|
1837
|
-
width: 100%;
|
|
1838
|
-
}
|
|
1839
|
-
|
|
1840
|
-
@container (min-width: 25rem) {
|
|
1841
|
-
figure {
|
|
1842
|
-
display: grid;
|
|
1843
|
-
grid-template-columns: 3rem 1fr;
|
|
1844
|
-
column-gap: var(--spacing-layout-1);
|
|
1845
|
-
grid-template-areas:
|
|
1846
|
-
"icon content";
|
|
1847
|
-
}
|
|
1848
|
-
|
|
1849
|
-
svg {
|
|
1850
|
-
grid-area: icon;
|
|
1851
|
-
margin-block-end: 0;
|
|
1852
|
-
}
|
|
1853
|
-
|
|
1854
|
-
.content {
|
|
1855
|
-
grid-area: content;
|
|
1856
|
-
}
|
|
1857
|
-
}
|
|
1858
|
-
|
|
1859
|
-
blockquote {
|
|
1860
|
-
font-family: var(--font-family-serif);
|
|
1861
|
-
font-size: var(--font-size-h3);
|
|
1862
|
-
line-height: var(--line-height-h3);
|
|
1863
|
-
padding: 0;
|
|
1864
|
-
margin: 0;
|
|
1865
|
-
position: relative;
|
|
1866
|
-
}
|
|
1867
|
-
|
|
1868
|
-
::slotted(*) {
|
|
1869
|
-
display: inline;
|
|
1870
|
-
}
|
|
1871
|
-
|
|
1872
|
-
figcaption {
|
|
1873
|
-
color: var(--attribution-color);
|
|
1874
|
-
font-size: var(--font-size-small);
|
|
1875
|
-
line-height: var(--line-height-small);
|
|
1876
|
-
font-weight: 600;
|
|
1877
|
-
margin-block-start: var(--spacing-layout-half);
|
|
1878
|
-
margin-inline: 0;
|
|
1879
|
-
position: relative;
|
|
1880
|
-
padding-inline-start: calc(var(--spacing-component-4) + var(--spacing-component-2));
|
|
1881
|
-
}
|
|
1882
|
-
|
|
1883
|
-
figcaption::before {
|
|
1884
|
-
background-color: currentColor;
|
|
1885
|
-
content: "";
|
|
1886
|
-
display: block;
|
|
1887
|
-
position: absolute;
|
|
1888
|
-
left: 0;
|
|
1889
|
-
top: calc(var(--line-height-small) / 2 - var(--hairline) / 2);
|
|
1890
|
-
height: var(--hairline);
|
|
1891
|
-
width: var(--spacing-component-4);
|
|
1892
|
-
}
|
|
1893
|
-
|
|
1894
|
-
svg {
|
|
1895
|
-
display: block;
|
|
1896
|
-
fill: var(--purple-60);
|
|
1897
|
-
height: calc(1.5 * var(--spacing-layout-1));
|
|
1898
|
-
margin-block-end: var(--spacing-layout-half);
|
|
1899
|
-
opacity: 0.5;
|
|
1900
|
-
width: auto;
|
|
1901
|
-
}
|
|
1902
|
-
`])();render(){return a.qy`
|
|
1903
|
-
<figure>
|
|
1904
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 339.42 264.4" aria-hidden="true" shape-rendering="geometricPrecision">
|
|
1905
|
-
<path d="M91.69,126.5c-9.19,0-15.39,1-18.59,3,4.01-16,12.59-32.41,25.8-49.21h0c12.8-15.99,26.61-27.79,41.4-35.39h1.2l.61-1.21c3.19-1.2,4.79-4.2,4.79-9,0-3.2-1.39-6-4.21-8.4L104.9,2.29c-1.61-1.2-3.79-1.79-6.6-1.79l-4.2,1.2c-28.8,20.8-51.4,45.6-67.8,74.4C9.09,106.1.5,137.7.5,170.9c0,28.39,8.21,51.2,24.61,68.39,14.79,16.4,33.4,24.61,55.79,24.61,19.61,0,36.6-7.01,51-21,14-14.4,21-31.4,21-51s-6-34.8-18-46.8c-11.6-12.39-26-18.6-43.21-18.6Z"/>
|
|
1906
|
-
<path d="M276.52,126.5c-8.39,0-14.39,1-18,3,4.01-16,12.79-32.4,26.4-49.21,13.21-16,27-27.79,41.4-35.39l.6-1.21c4-1.2,6-4.2,6-9,0-2.8-1.39-5.61-4.21-8.4l-37.8-24c-2-1.2-4.21-1.79-6.6-1.79l-4.2,1.2h-.6c-29.21,20.8-52,45.61-68.39,74.4-17.21,30-25.8,61.6-25.8,94.8,0,28.39,8.21,51.2,24.6,68.39,15.6,16.4,34.61,24.61,57,24.61,19.61,0,36.6-7.01,51-21,14-14.4,21-31.4,21-51s-6-34.8-18-46.8c-11.6-12.39-26.4-18.6-44.4-18.6Z"/>
|
|
1907
|
-
</svg>
|
|
1908
|
-
<div class="content">
|
|
1909
|
-
<blockquote>
|
|
1910
|
-
<slot name="text" /><slot />
|
|
1911
|
-
</blockquote>
|
|
1912
|
-
<figcaption>
|
|
1913
|
-
<slot name="attribution" />
|
|
1914
|
-
</figcaption>
|
|
1915
|
-
</div>
|
|
1916
|
-
</figure>
|
|
1917
|
-
`}}customElements.get("cfa-quote")||customElements.define("cfa-quote",s)},302(t,e,i){var a=i(161),o=i(601);i(562);class s extends a.WF{static properties=(()=>({showLabel:{type:String},hideLabel:{type:String},showIcon:{type:String},hideIcon:{type:String},expanded:{type:Boolean,reflect:!0}}))();static styles=(()=>[o.s,a.AH`
|
|
1918
|
-
:host {
|
|
1919
|
-
--color: var(--purple-60);
|
|
1920
|
-
--hover-color: var(--red-60);
|
|
1921
|
-
--margin-top: var(--spacing-layout-half) !important;
|
|
1922
|
-
|
|
1923
|
-
display: flex;
|
|
1924
|
-
flex-direction: column;
|
|
1925
|
-
row-gap: var(--spacing-between, 1rem);
|
|
1926
|
-
}
|
|
1927
|
-
|
|
1928
|
-
:host([expanded]) {
|
|
1929
|
-
--margin-top: var(--spacing) !important;
|
|
1930
|
-
}
|
|
1931
|
-
|
|
1932
|
-
button {
|
|
1933
|
-
background: transparent;
|
|
1934
|
-
border: none;
|
|
1935
|
-
color: var(--color);
|
|
1936
|
-
cursor: pointer;
|
|
1937
|
-
font: inherit;
|
|
1938
|
-
font-size: var(--font-size-small, 0.8rem);
|
|
1939
|
-
font-weight: bold;
|
|
1940
|
-
color: var(--)
|
|
1941
|
-
line-height: normal;
|
|
1942
|
-
margin: 0;
|
|
1943
|
-
overflow: visible;
|
|
1944
|
-
padding: 0;
|
|
1945
|
-
width: auto;
|
|
1946
|
-
}
|
|
1947
|
-
|
|
1948
|
-
button:hover {
|
|
1949
|
-
color: var(--hover-color);
|
|
1950
|
-
}
|
|
1951
|
-
`])();constructor(){super(),this.showLabel="Show more",this.hideLabel="Show less",this.showIcon="expand_more",this.hideIcon="expand_less",this.expanded=!1}render(){return a.qy`
|
|
1952
|
-
<slot
|
|
1953
|
-
id="content"
|
|
1954
|
-
class="content ${this.expanded?"is-expanded":"is-collapsed"}"
|
|
1955
|
-
aria-labelledby="button"
|
|
1956
|
-
?hidden="${!this.expanded}"
|
|
1957
|
-
></slot>
|
|
1958
|
-
<div class="controls">
|
|
1959
|
-
<button
|
|
1960
|
-
@click="${()=>this.expanded=!this.expanded}"
|
|
1961
|
-
aria-expanded="${this.expanded}"
|
|
1962
|
-
aria-controls="content"
|
|
1963
|
-
>
|
|
1964
|
-
${this.expanded?this.hideLabel:this.showLabel}
|
|
1965
|
-
<cfa-icon>${this.expanded?this.hideIcon:this.showIcon}</cfa-icon>
|
|
1966
|
-
</button>
|
|
1967
|
-
</div>
|
|
1968
|
-
`}}customElements.get("cfa-reveal")||customElements.define("cfa-reveal",s)},638(t,e,i){var a=i(161),o=i(601);class s extends a.WF{static properties={imageUrl:{},imageAltText:{},linkUrl:{},linkTarget:{}};static styles=(()=>[o.s,a.AH`
|
|
1969
|
-
:host {
|
|
1970
|
-
--background: var(--white, #fff);
|
|
1971
|
-
--width: var(--column-span-12);
|
|
1972
|
-
}
|
|
1973
|
-
|
|
1974
|
-
.slide {
|
|
1975
|
-
background: var(--background);
|
|
1976
|
-
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
|
|
1977
|
-
color: inherit;
|
|
1978
|
-
display: flex;
|
|
1979
|
-
flex-direction: column;
|
|
1980
|
-
height: 100%;
|
|
1981
|
-
justify-content: stretch;
|
|
1982
|
-
margin-inline: auto;
|
|
1983
|
-
max-width: var(--width);
|
|
1984
|
-
text-decoration: none;
|
|
1985
|
-
transition: filter 0.2s ease-in-out;
|
|
1986
|
-
width: 100%;
|
|
1987
|
-
}
|
|
1988
|
-
|
|
1989
|
-
.slide:hover,
|
|
1990
|
-
.slide:focus {
|
|
1991
|
-
filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
|
|
1992
|
-
}
|
|
1993
|
-
|
|
1994
|
-
.image {
|
|
1995
|
-
background-image: url("https://codeforamerica.org/wp-content/themes/cfa-core/static/images/bg-placeholder-03.svg");
|
|
1996
|
-
background-position: center center;
|
|
1997
|
-
background-size: cover;
|
|
1998
|
-
height: var(--spacing-layout-9);
|
|
1999
|
-
position: relative;
|
|
2000
|
-
}
|
|
2001
|
-
|
|
2002
|
-
.image::after {
|
|
2003
|
-
bottom: 0;
|
|
2004
|
-
box-shadow: inset 0 -50px 50px -50px var(--black-40);
|
|
2005
|
-
content: "";
|
|
2006
|
-
left: 0;
|
|
2007
|
-
position: absolute;
|
|
2008
|
-
right: 0;
|
|
2009
|
-
top: 0;
|
|
2010
|
-
z-index: 2;
|
|
2011
|
-
}
|
|
2012
|
-
|
|
2013
|
-
.image img {
|
|
2014
|
-
height: 100%;
|
|
2015
|
-
object-fit: cover;
|
|
2016
|
-
width: 100%;
|
|
2017
|
-
}
|
|
2018
|
-
|
|
2019
|
-
.content {
|
|
2020
|
-
box-sizing: border-box;
|
|
2021
|
-
display: flex;
|
|
2022
|
-
flex-direction: column;
|
|
2023
|
-
justify-content: center;
|
|
2024
|
-
padding: var(--spacing-component-4);
|
|
2025
|
-
}
|
|
2026
|
-
|
|
2027
|
-
@media (min-width: 1024px) {
|
|
2028
|
-
.slide {
|
|
2029
|
-
flex-direction: row;
|
|
2030
|
-
min-height: calc(12 * var(--spacing-layout-1));
|
|
2031
|
-
}
|
|
2032
|
-
|
|
2033
|
-
.slide > * {
|
|
2034
|
-
flex-basis: 50%;
|
|
2035
|
-
}
|
|
2036
|
-
|
|
2037
|
-
.image {
|
|
2038
|
-
height: auto;
|
|
2039
|
-
}
|
|
2040
|
-
|
|
2041
|
-
.image::after {
|
|
2042
|
-
box-shadow: inset -50px -50px 50px -50px var(--black-20);
|
|
2043
|
-
}
|
|
2044
|
-
}
|
|
2045
|
-
`])();constructor(){super(),this.linkUrl="javascript:void(0);",this.linkTarget="_self"}render(){return a.qy`
|
|
2046
|
-
<a href="${this.linkUrl}" target="${this.linkTarget}" class="slide">
|
|
2047
|
-
<div class="image">
|
|
2048
|
-
${this.imageUrl?a.qy`
|
|
2049
|
-
<img
|
|
2050
|
-
src="${this.imageUrl}"
|
|
2051
|
-
alt="${this.imageAltText}"
|
|
2052
|
-
loading="lazy"
|
|
2053
|
-
onerror="this.style.display='none'"
|
|
2054
|
-
/>
|
|
2055
|
-
`:""}
|
|
2056
|
-
</div>
|
|
2057
|
-
<div class="content">
|
|
2058
|
-
<slot></slot>
|
|
2059
|
-
</div>
|
|
2060
|
-
</a>
|
|
2061
|
-
`}}customElements.get("cfa-slide")||customElements.define("cfa-slide",s)},804(t,e,i){var a=i(161),o=i(601);class s extends a.WF{static properties={icon:""};static styles=(()=>[o.s,a.AH`
|
|
2062
|
-
.social-icon {
|
|
2063
|
-
-moz-osx-font-smoothing: grayscale;
|
|
2064
|
-
-webkit-font-smoothing: antialiased;
|
|
2065
|
-
}
|
|
2066
|
-
|
|
2067
|
-
svg {
|
|
2068
|
-
fill: currentColor;
|
|
2069
|
-
height: 1em;
|
|
2070
|
-
vertical-align: -0.125em;
|
|
2071
|
-
width: 1em;
|
|
2072
|
-
}
|
|
2073
|
-
`])();constructor(){super()}iconTemplate(t){switch(t){case"bluesky":return a.qy`
|
|
2074
|
-
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 568 501">
|
|
2075
|
-
<path class="st0" d="M123.1,33.7c65.1,48.9,135.2,148,160.9,201.2,25.7-53.2,95.8-152.3,160.9-201.2,47-35.3,123.1-62.6,123.1,24.3s-9.9,145.7-15.8,166.6c-20.3,72.5-94.2,90.9-159.9,79.7,114.9,19.6,144.1,84.3,81,149.1-119.9,123-172.3-30.9-185.7-70.3-2.5-7.2-3.6-10.6-3.6-7.7,0-2.9-1.2.5-3.6,7.7-13.4,39.4-65.8,193.3-185.7,70.3-63.1-64.8-33.9-129.5,81-149.1-65.7,11.2-139.6-7.3-159.9-79.7C9.9,203.7,0,75.3,0,57.9,0-28.9,76.1-1.6,123.1,33.7Z"/>
|
|
2076
|
-
</svg>
|
|
2077
|
-
`;case"dropbox":return a.qy`
|
|
2078
|
-
<svg
|
|
2079
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
2080
|
-
height="16"
|
|
2081
|
-
width="16.5"
|
|
2082
|
-
viewBox="0 0 528 512"
|
|
2083
|
-
>
|
|
2084
|
-
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
|
|
2085
|
-
<path
|
|
2086
|
-
d="M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z"
|
|
2087
|
-
/>
|
|
2088
|
-
</svg>
|
|
2089
|
-
`;case"facebook":return a.qy`
|
|
2090
|
-
<svg
|
|
2091
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
2092
|
-
height="16"
|
|
2093
|
-
width="16"
|
|
2094
|
-
viewBox="0 0 512 512"
|
|
2095
|
-
>
|
|
2096
|
-
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
|
|
2097
|
-
<path
|
|
2098
|
-
d="M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256C0 376 82.7 476.8 194.2 504.5V334.2H141.4V256h52.8V222.3c0-87.1 39.4-127.5 125-127.5c16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1c-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H287V510.1C413.8 494.8 512 386.9 512 256h0z"
|
|
2099
|
-
/>
|
|
2100
|
-
</svg>
|
|
2101
|
-
`;case"github":return a.qy`
|
|
2102
|
-
<svg
|
|
2103
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
2104
|
-
height="16"
|
|
2105
|
-
width="15.5"
|
|
2106
|
-
viewBox="0 0 496 512"
|
|
2107
|
-
>
|
|
2108
|
-
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
|
|
2109
|
-
<path
|
|
2110
|
-
d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3 .3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5 .3-6.2 2.3zm44.2-1.7c-2.9 .7-4.9 2.6-4.6 4.9 .3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3 .7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3 .3 2.9 2.3 3.9 1.6 1 3.6 .7 4.3-.7 .7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3 .7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3 .7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"
|
|
2111
|
-
/>
|
|
2112
|
-
</svg>
|
|
2113
|
-
`;case"google-drive":return a.qy`
|
|
2114
|
-
<svg
|
|
2115
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
2116
|
-
height="16"
|
|
2117
|
-
width="16"
|
|
2118
|
-
viewBox="0 0 512 512"
|
|
2119
|
-
>
|
|
2120
|
-
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
|
|
2121
|
-
<path
|
|
2122
|
-
d="M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z"
|
|
2123
|
-
/>
|
|
2124
|
-
</svg>
|
|
2125
|
-
`;case"google":return a.qy`
|
|
2126
|
-
<svg
|
|
2127
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
2128
|
-
height="16"
|
|
2129
|
-
width="15.25"
|
|
2130
|
-
viewBox="0 0 488 512"
|
|
2131
|
-
>
|
|
2132
|
-
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
|
|
2133
|
-
<path
|
|
2134
|
-
d="M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z"
|
|
2135
|
-
/>
|
|
2136
|
-
</svg>
|
|
2137
|
-
`;case"instagram":return a.qy`
|
|
2138
|
-
<svg
|
|
2139
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
2140
|
-
height="16"
|
|
2141
|
-
width="14"
|
|
2142
|
-
viewBox="0 0 448 512"
|
|
2143
|
-
>
|
|
2144
|
-
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
|
|
2145
|
-
<path
|
|
2146
|
-
d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"
|
|
2147
|
-
/>
|
|
2148
|
-
</svg>
|
|
2149
|
-
`;case"linkedin":return a.qy`
|
|
2150
|
-
<svg
|
|
2151
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
2152
|
-
height="16"
|
|
2153
|
-
width="14"
|
|
2154
|
-
viewBox="0 0 448 512"
|
|
2155
|
-
>
|
|
2156
|
-
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
|
|
2157
|
-
<path
|
|
2158
|
-
d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"
|
|
2159
|
-
/>
|
|
2160
|
-
</svg>
|
|
2161
|
-
`;case"reddit":return a.qy`
|
|
2162
|
-
<svg
|
|
2163
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
2164
|
-
height="16"
|
|
2165
|
-
width="16"
|
|
2166
|
-
viewBox="0 0 512 512"
|
|
2167
|
-
>
|
|
2168
|
-
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
|
|
2169
|
-
<path
|
|
2170
|
-
d="M0 256C0 114.6 114.6 0 256 0S512 114.6 512 256s-114.6 256-256 256L37.1 512c-13.7 0-20.5-16.5-10.9-26.2L75 437C28.7 390.7 0 326.7 0 256zM349.6 153.6c23.6 0 42.7-19.1 42.7-42.7s-19.1-42.7-42.7-42.7c-20.6 0-37.8 14.6-41.8 34c-34.5 3.7-61.4 33-61.4 68.4l0 .2c-37.5 1.6-71.8 12.3-99 29.1c-10.1-7.8-22.8-12.5-36.5-12.5c-33 0-59.8 26.8-59.8 59.8c0 24 14.1 44.6 34.4 54.1c2 69.4 77.6 125.2 170.6 125.2s168.7-55.9 170.6-125.3c20.2-9.6 34.1-30.2 34.1-54c0-33-26.8-59.8-59.8-59.8c-13.7 0-26.3 4.6-36.4 12.4c-27.4-17-62.1-27.7-100-29.1l0-.2c0-25.4 18.9-46.5 43.4-49.9l0 0c4.4 18.8 21.3 32.8 41.5 32.8zM177.1 246.9c16.7 0 29.5 17.6 28.5 39.3s-13.5 29.6-30.3 29.6s-31.4-8.8-30.4-30.5s15.4-38.3 32.1-38.3zm190.1 38.3c1 21.7-13.7 30.5-30.4 30.5s-29.3-7.9-30.3-29.6c-1-21.7 11.8-39.3 28.5-39.3s31.2 16.6 32.1 38.3zm-48.1 56.7c-10.3 24.6-34.6 41.9-63 41.9s-52.7-17.3-63-41.9c-1.2-2.9 .8-6.2 3.9-6.5c18.4-1.9 38.3-2.9 59.1-2.9s40.7 1 59.1 2.9c3.1 .3 5.1 3.6 3.9 6.5z"
|
|
2171
|
-
/>
|
|
2172
|
-
</svg>
|
|
2173
|
-
`;case"soundcloud":return a.qy`
|
|
2174
|
-
<svg
|
|
2175
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
2176
|
-
height="16"
|
|
2177
|
-
width="20"
|
|
2178
|
-
viewBox="0 0 640 512"
|
|
2179
|
-
>
|
|
2180
|
-
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
|
|
2181
|
-
<path
|
|
2182
|
-
d="M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2 .8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1 .6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7 .6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3 .1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z"
|
|
2183
|
-
/>
|
|
2184
|
-
</svg>
|
|
2185
|
-
`;case"threads":return a.qy`
|
|
2186
|
-
<svg
|
|
2187
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
2188
|
-
height="16"
|
|
2189
|
-
width="14"
|
|
2190
|
-
viewBox="0 0 448 512"
|
|
2191
|
-
>
|
|
2192
|
-
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
|
|
2193
|
-
<path
|
|
2194
|
-
d="M331.5 235.7c2.2 .9 4.2 1.9 6.3 2.8c29.2 14.1 50.6 35.2 61.8 61.4c15.7 36.5 17.2 95.8-30.3 143.2c-36.2 36.2-80.3 52.5-142.6 53h-.3c-70.2-.5-124.1-24.1-160.4-70.2c-32.3-41-48.9-98.1-49.5-169.6V256v-.2C17 184.3 33.6 127.2 65.9 86.2C102.2 40.1 156.2 16.5 226.4 16h.3c70.3 .5 124.9 24 162.3 69.9c18.4 22.7 32 50 40.6 81.7l-40.4 10.8c-7.1-25.8-17.8-47.8-32.2-65.4c-29.2-35.8-73-54.2-130.5-54.6c-57 .5-100.1 18.8-128.2 54.4C72.1 146.1 58.5 194.3 58 256c.5 61.7 14.1 109.9 40.3 143.3c28 35.6 71.2 53.9 128.2 54.4c51.4-.4 85.4-12.6 113.7-40.9c32.3-32.2 31.7-71.8 21.4-95.9c-6.1-14.2-17.1-26-31.9-34.9c-3.7 26.9-11.8 48.3-24.7 64.8c-17.1 21.8-41.4 33.6-72.7 35.3c-23.6 1.3-46.3-4.4-63.9-16c-20.8-13.8-33-34.8-34.3-59.3c-2.5-48.3 35.7-83 95.2-86.4c21.1-1.2 40.9-.3 59.2 2.8c-2.4-14.8-7.3-26.6-14.6-35.2c-10-11.7-25.6-17.7-46.2-17.8H227c-16.6 0-39 4.6-53.3 26.3l-34.4-23.6c19.2-29.1 50.3-45.1 87.8-45.1h.8c62.6 .4 99.9 39.5 103.7 107.7l-.2 .2zm-156 68.8c1.3 25.1 28.4 36.8 54.6 35.3c25.6-1.4 54.6-11.4 59.5-73.2c-13.2-2.9-27.8-4.4-43.4-4.4c-4.8 0-9.6 .1-14.4 .4c-42.9 2.4-57.2 23.2-56.2 41.8l-.1 .1z"
|
|
2195
|
-
/>
|
|
2196
|
-
</svg>
|
|
2197
|
-
`;case"twitter":return a.qy`
|
|
2198
|
-
<svg
|
|
2199
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
2200
|
-
height="16"
|
|
2201
|
-
width="16"
|
|
2202
|
-
viewBox="0 0 512 512"
|
|
2203
|
-
>
|
|
2204
|
-
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
|
|
2205
|
-
<path
|
|
2206
|
-
d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"
|
|
2207
|
-
/>
|
|
2208
|
-
</svg>
|
|
2209
|
-
`;case"wikipedia":return a.qy`
|
|
2210
|
-
<svg
|
|
2211
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
2212
|
-
height="16"
|
|
2213
|
-
width="20"
|
|
2214
|
-
viewBox="0 0 640 512"
|
|
2215
|
-
>
|
|
2216
|
-
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
|
|
2217
|
-
<path
|
|
2218
|
-
d="M640 51.2l-.3 12.2c-28.1 .8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3 .3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4 .2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5 .3v13.1c-19.4 .6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4 .3-3.6 0-10.3 .3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5 .8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1 .2 .5z"
|
|
2219
|
-
/>
|
|
2220
|
-
</svg>
|
|
2221
|
-
`;case"youtube":return a.qy`
|
|
2222
|
-
<svg
|
|
2223
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
2224
|
-
height="16"
|
|
2225
|
-
width="18"
|
|
2226
|
-
viewBox="0 0 576 512"
|
|
2227
|
-
>
|
|
2228
|
-
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
|
|
2229
|
-
<path
|
|
2230
|
-
d="M549.7 124.1c-6.3-23.7-24.8-42.3-48.3-48.6C458.8 64 288 64 288 64S117.2 64 74.6 75.5c-23.5 6.3-42 24.9-48.3 48.6-11.4 42.9-11.4 132.3-11.4 132.3s0 89.4 11.4 132.3c6.3 23.7 24.8 41.5 48.3 47.8C117.2 448 288 448 288 448s170.8 0 213.4-11.5c23.5-6.3 42-24.2 48.3-47.8 11.4-42.9 11.4-132.3 11.4-132.3s0-89.4-11.4-132.3zm-317.5 213.5V175.2l142.7 81.2-142.7 81.2z"
|
|
2231
|
-
/>
|
|
2232
|
-
</svg>
|
|
2233
|
-
`;default:return""}}render(){return a.qy`
|
|
2234
|
-
<span class="social-icon ${this.icon}" aria-hidden="true">
|
|
2235
|
-
${this.iconTemplate(this.icon)}
|
|
2236
|
-
</span>
|
|
2237
|
-
`}}customElements.get("cfa-social-icon")||customElements.define("cfa-social-icon",s)},301(t,e,i){var a=i(161),o=i(601),s=i(205);class r extends a.WF{static properties={beforeLabel:{},figure:{},afterLabel:{},animated:{}};static styles=(()=>[o.s,s.g,a.AH`
|
|
2238
|
-
:host {
|
|
2239
|
-
--text-color: var(--text-dark);
|
|
2240
|
-
--highlight-color: var(--purple-20);
|
|
2241
|
-
--highlight-thickness: var(--spacing-layout-half);
|
|
2242
|
-
|
|
2243
|
-
align-self: center;
|
|
2244
|
-
display: block;
|
|
2245
|
-
margin-inline: auto;
|
|
2246
|
-
}
|
|
2247
|
-
.stat {
|
|
2248
|
-
align-items: center;
|
|
2249
|
-
color: var(--text-color);
|
|
2250
|
-
display: flex;
|
|
2251
|
-
flex-direction: column;
|
|
2252
|
-
text-align: center;
|
|
2253
|
-
}
|
|
2254
|
-
.figure {
|
|
2255
|
-
min-width: var(--spacing-layout-3);
|
|
2256
|
-
padding-inline: var(--spacing-component-2);
|
|
2257
|
-
}
|
|
2258
|
-
.figure > span {
|
|
2259
|
-
background-image: linear-gradient(
|
|
2260
|
-
var(--highlight-color),
|
|
2261
|
-
var(--highlight-color)
|
|
2262
|
-
);
|
|
2263
|
-
background-size: 100% var(--highlight-thickness);
|
|
2264
|
-
background-position: bottom 0.15em left;
|
|
2265
|
-
background-repeat: no-repeat;
|
|
2266
|
-
padding-inline: 0.25em;
|
|
2267
|
-
}
|
|
2268
|
-
/* Animation */
|
|
2269
|
-
@media (prefers-reduced-motion: no-preference) {
|
|
2270
|
-
.stat.is-animated .figure > span {
|
|
2271
|
-
background-size: 0% var(--highlight-thickness);
|
|
2272
|
-
transition: background-size 1s ease;
|
|
2273
|
-
}
|
|
2274
|
-
.stat.is-animated.is-visible .figure > span {
|
|
2275
|
-
background-size: 100% var(--highlight-thickness);
|
|
2276
|
-
}
|
|
2277
|
-
}
|
|
2278
|
-
`])();constructor(){super(),this.animated=!0}firstUpdated(){const t=this.shadowRoot.querySelector(".stat");new IntersectionObserver(t=>{t.forEach(t=>{t.isIntersecting&&t.target.classList.add("is-visible")})},{rootMargin:"0px 0px -20% 0px"}).observe(t)}render(){return a.qy`
|
|
2279
|
-
<div class="stat ${this.animated?"is-animated":""}">
|
|
2280
|
-
<div class="above-label strong">${this.beforeLabel}</div>
|
|
2281
|
-
<div class="figure display-2">
|
|
2282
|
-
<span>${this.figure}</span>
|
|
2283
|
-
</div>
|
|
2284
|
-
<div class="below-label strong">${this.afterLabel}</div>
|
|
2285
|
-
</div>
|
|
2286
|
-
`}}customElements.get("cfa-stat")||customElements.define("cfa-stat",r)},682(t,e,i){var a=i(161),o=i(601),s=i(227);i(36);class r extends a.WF{static properties={};static styles=(()=>[o.s,s.V,a.AH`
|
|
2287
|
-
:host {
|
|
2288
|
-
display: block;
|
|
2289
|
-
width: calc(100% + var(--outer-margin));
|
|
2290
|
-
}
|
|
2291
|
-
|
|
2292
|
-
.tab-list {
|
|
2293
|
-
display: flex;
|
|
2294
|
-
flex-direction: row;
|
|
2295
|
-
line-height: 1;
|
|
2296
|
-
margin-inline-start: calc(-1 * var(--outer-margin));
|
|
2297
|
-
overflow-x: auto;
|
|
2298
|
-
overflow-y: hidden;
|
|
2299
|
-
scrollbar-width: none;
|
|
2300
|
-
white-space: nowrap;
|
|
2301
|
-
}
|
|
2302
|
-
|
|
2303
|
-
.tab-list::before {
|
|
2304
|
-
content: "";
|
|
2305
|
-
min-width: var(--outer-margin);
|
|
2306
|
-
}
|
|
2307
|
-
|
|
2308
|
-
.tab-list::after {
|
|
2309
|
-
border-bottom: var(--hairline) solid var(--gray-40);
|
|
2310
|
-
content: "";
|
|
2311
|
-
flex-grow: 1;
|
|
2312
|
-
margin-right: var(--outer-margin);
|
|
2313
|
-
}
|
|
2314
|
-
|
|
2315
|
-
::slotted(*) {
|
|
2316
|
-
max-width: none !important;
|
|
2317
|
-
white-space: nowrap !important;
|
|
2318
|
-
}
|
|
2319
|
-
`])();constructor(){super()}firstUpdated(){this.addEventListener("click",this._onTabClick),this.setAttribute("role","tablist"),this._setInitialAriaAttributes()}_setInitialAriaAttributes(){this.querySelectorAll("cfa-tab").forEach((t,e)=>{t.setAttribute("role","tab"),t.setAttribute("aria-selected","false"),t.setAttribute("tabindex","-1"),0===e&&(t.setAttribute("aria-selected","true"),t.setAttribute("tabindex","0"))})}_onTabClick(t){const e=t.target.closest("cfa-tab");e&&this._setActiveTab(e)}_setActiveTab(t){this.querySelectorAll("cfa-tab").forEach(t=>{t.removeAttribute("active"),t.setAttribute("aria-selected","false"),t.setAttribute("tabindex","-1")}),t.setAttribute("active",""),t.setAttribute("aria-selected","true"),t.setAttribute("tabindex","0");let e=t.id;e&&e.startsWith("tab-")&&(e=e.substring(4)),console.log("Tab changed event dispatched with ID:",e),this.dispatchEvent(new CustomEvent("tab-changed",{detail:{id:e},bubbles:!0,composed:!0}))}render(){return a.qy`
|
|
2320
|
-
<div class="tab-list" role="tablist">
|
|
2321
|
-
<slot></slot>
|
|
2322
|
-
</div>
|
|
2323
|
-
`}}customElements.get("cfa-tab-list")||customElements.define("cfa-tab-list",r)},36(t,e,i){var a=i(161),o=i(601),s=i(205);class r extends a.WF{static properties=(()=>({active:{type:Boolean},panelId:{type:String}}))();static styles=(()=>[o.s,s.g,a.AH`
|
|
2324
|
-
button {
|
|
2325
|
-
background: none;
|
|
2326
|
-
border: 0;
|
|
2327
|
-
box-shadow: inset 0 calc(-1 * var(--hairline)) 0 0 var(--gray-40);
|
|
2328
|
-
color: var(--gray-80);
|
|
2329
|
-
cursor: pointer;
|
|
2330
|
-
font-family: var(--font-family-sans-serif);
|
|
2331
|
-
font-size: var(--font-size-small);
|
|
2332
|
-
font-weight: normal;
|
|
2333
|
-
padding: var(--spacing-component-2) var(--spacing-component-3)
|
|
2334
|
-
calc(var(--spacing-component-2) + var(--medium));
|
|
2335
|
-
}
|
|
2336
|
-
button:focus {
|
|
2337
|
-
background-color: var(--focus-color);
|
|
2338
|
-
outline: none;
|
|
2339
|
-
}
|
|
2340
|
-
button:not(.active):hover {
|
|
2341
|
-
box-shadow: inset 0 calc(-1 * var(--medium)) 0 0 var(--purple-40);
|
|
2342
|
-
color: var(--black);
|
|
2343
|
-
}
|
|
2344
|
-
button.active {
|
|
2345
|
-
box-shadow: inset 0 calc(-1 * var(--medium)) 0 0 var(--purple-60);
|
|
2346
|
-
color: var(--black);
|
|
2347
|
-
font-weight: bold;
|
|
2348
|
-
}
|
|
2349
|
-
`])();constructor(){super(),this.active=!1,this.panelId=""}firstUpdated(){this.addEventListener("keydown",this._onKeyDown)}_onKeyDown(t){const e=Array.from(this.parentElement.querySelectorAll("cfa-tab")),i=e.indexOf(this);let a;switch(t.key){case"ArrowLeft":a=(i-1+e.length)%e.length,e[a].shadowRoot.querySelector("button").focus();break;case"ArrowRight":a=(i+1)%e.length,e[a].shadowRoot.querySelector("button").focus();break;case"Home":e[0].shadowRoot.querySelector("button").focus();break;case"End":e[e.length-1].shadowRoot.querySelector("button").focus()}}render(){return a.qy`
|
|
2350
|
-
<button
|
|
2351
|
-
role="tab"
|
|
2352
|
-
aria-selected="${this.active?"true":"false"}"
|
|
2353
|
-
aria-controls="${this.panelId}"
|
|
2354
|
-
class="${this.active?"active":""}"
|
|
2355
|
-
tabindex="${this.active?"0":"-1"}"
|
|
2356
|
-
>
|
|
2357
|
-
<slot></slot>
|
|
2358
|
-
</button>
|
|
2359
|
-
`}}customElements.get("cfa-tab")||customElements.define("cfa-tab",r)},867(t,e,i){var a=i(161),o=i(601),s=i(205);i(544),i(562);class r extends a.WF{static properties=(()=>({title:{type:String},description:{type:String},actionLabel:{type:String},linkUrl:{type:String},linkTarget:{type:String},imageUrl:{type:String},imageThumbnailUrl:{type:String},imageAltText:{type:String}}))();static styles=(()=>[o.s,s.g,a.AH`
|
|
2360
|
-
:host {
|
|
2361
|
-
--bg-color: var(--white);
|
|
2362
|
-
--title-color: var(--purple-60);
|
|
2363
|
-
--text-color: var(--black);
|
|
2364
|
-
--action-label-color: var(--purple-80);
|
|
2365
|
-
--action-label-hover-highlight: var(--purple-20);
|
|
2366
|
-
--blob-color: var(--purple-20);
|
|
2367
|
-
|
|
2368
|
-
align-items: stretch;
|
|
2369
|
-
display: flex;
|
|
2370
|
-
text-align: center;
|
|
2371
|
-
width: 100%;
|
|
2372
|
-
}
|
|
2373
|
-
|
|
2374
|
-
.tile {
|
|
2375
|
-
background-color: var(--bg-color);
|
|
2376
|
-
border-radius: var(--spacing-component-2);
|
|
2377
|
-
border: var(--hairline) solid var(--black-20);
|
|
2378
|
-
color: var(--text-color);
|
|
2379
|
-
display: flex;
|
|
2380
|
-
flex-direction: column;
|
|
2381
|
-
padding: var(--spacing-component-4);
|
|
2382
|
-
text-decoration: none;
|
|
2383
|
-
transition:
|
|
2384
|
-
box-shadow 0.5s ease-in-out,
|
|
2385
|
-
border-color 0.5s ease-in-out;
|
|
2386
|
-
width: 100%;
|
|
2387
|
-
}
|
|
2388
|
-
|
|
2389
|
-
a.tile:hover {
|
|
2390
|
-
box-shadow: var(--shadow-medium);
|
|
2391
|
-
border-color: rgba(0, 0, 0, 0);
|
|
2392
|
-
}
|
|
2393
|
-
|
|
2394
|
-
picture {
|
|
2395
|
-
display: grid;
|
|
2396
|
-
place-items: center;
|
|
2397
|
-
padding-block-end: var(--spacing-layout-1);
|
|
2398
|
-
}
|
|
2399
|
-
|
|
2400
|
-
picture > * {
|
|
2401
|
-
height: var(--spacing-layout-4);
|
|
2402
|
-
grid-area: 1 / 1;
|
|
2403
|
-
}
|
|
2404
|
-
|
|
2405
|
-
cfa-blob {
|
|
2406
|
-
transition: scale 0.5s ease-in-out;
|
|
2407
|
-
}
|
|
2408
|
-
|
|
2409
|
-
a.tile:hover cfa-blob {
|
|
2410
|
-
scale: 1.2;
|
|
2411
|
-
}
|
|
2412
|
-
|
|
2413
|
-
img {
|
|
2414
|
-
object-fit: contain;
|
|
2415
|
-
z-index: 2;
|
|
2416
|
-
}
|
|
2417
|
-
|
|
2418
|
-
.title {
|
|
2419
|
-
color: var(--title-color);
|
|
2420
|
-
}
|
|
2421
|
-
|
|
2422
|
-
.label {
|
|
2423
|
-
color: var(--action-label-color);
|
|
2424
|
-
display: inline-block;
|
|
2425
|
-
margin-block-start: auto;
|
|
2426
|
-
padding-block-start: var(--spacing-layout-half);
|
|
2427
|
-
}
|
|
2428
|
-
`])();tileContentTemplate(){return a.qy`
|
|
2429
|
-
${this.imageUrl?a.qy`
|
|
2430
|
-
<picture>
|
|
2431
|
-
<cfa-blob></cfa-blob>
|
|
2432
|
-
<img
|
|
2433
|
-
src="${this.imageUrl}"
|
|
2434
|
-
alt="${this.imageAltText}"
|
|
2435
|
-
load="lazy"
|
|
2436
|
-
/>
|
|
2437
|
-
</picture>
|
|
2438
|
-
`:a.s6}
|
|
2439
|
-
|
|
2440
|
-
<div class="title h3">${this.title}</div>
|
|
2441
|
-
|
|
2442
|
-
<!-- Description -->
|
|
2443
|
-
${this.description?a.qy` <p class="small">${this.description}</p> `:a.s6}
|
|
2444
|
-
|
|
2445
|
-
<!-- Action label -->
|
|
2446
|
-
${this.actionLabel?a.qy`
|
|
2447
|
-
<div class="label small strong">
|
|
2448
|
-
${this.actionLabel} <cfa-icon>arrow_forward</cfa-icon>
|
|
2449
|
-
</div>
|
|
2450
|
-
`:a.s6}
|
|
2451
|
-
`}render(){return a.qy`
|
|
2452
|
-
<style>
|
|
2453
|
-
cfa-blob {
|
|
2454
|
-
--color: var(--blob-color);
|
|
2455
|
-
}
|
|
2456
|
-
</style>
|
|
2457
|
-
${this.linkUrl?a.qy`
|
|
2458
|
-
<a
|
|
2459
|
-
href="${this.linkUrl}"
|
|
2460
|
-
target="${this.linkTarget}"
|
|
2461
|
-
rel="${"_blank"==this.linkTarget?"noopener":a.s6}"
|
|
2462
|
-
class="tile"
|
|
2463
|
-
>
|
|
2464
|
-
${this.tileContentTemplate()}
|
|
2465
|
-
</a>
|
|
2466
|
-
`:a.qy` <div class="tile">${this.tileContentTemplate()}</div> `}
|
|
2467
|
-
`}}customElements.get("cfa-tile")||customElements.define("cfa-tile",r)},685(t,e,i){var a=i(161),o=i(601),s=i(205);class r extends a.WF{static styles=(()=>[o.s,s.g,a.AH`
|
|
2468
|
-
:host {
|
|
2469
|
-
--label-color: var(--purple-60);
|
|
2470
|
-
|
|
2471
|
-
display: block;
|
|
2472
|
-
max-width: var(--column-span-8);
|
|
2473
|
-
}
|
|
2474
|
-
|
|
2475
|
-
.label {
|
|
2476
|
-
--text-color: var(--label-color);
|
|
2477
|
-
}
|
|
2478
|
-
|
|
2479
|
-
.text {
|
|
2480
|
-
background-color: var(--white);
|
|
2481
|
-
border: var(--hairline) solid var(--black-20);
|
|
2482
|
-
color: var(--black);
|
|
2483
|
-
height: calc(12 * var(--spacing-layout-1));
|
|
2484
|
-
overflow: auto;
|
|
2485
|
-
padding: var(--spacing-component-3);
|
|
2486
|
-
}
|
|
2487
|
-
`])();render(){return a.qy`
|
|
2488
|
-
<div class="label eyebrow-with-line">Transcript</div>
|
|
2489
|
-
<div class="text small">
|
|
2490
|
-
<slot />
|
|
2491
|
-
</div>
|
|
2492
|
-
`}}customElements.get("cfa-transcript")||customElements.define("cfa-transcript",r)},601(t,e,i){i.d(e,{s:()=>a});const a=i(161).AH`
|
|
2493
|
-
*:focus-visible,
|
|
2494
|
-
*:target {
|
|
2495
|
-
outline: var(--focus-outline);
|
|
2496
|
-
position: relative;
|
|
2497
|
-
}
|
|
2498
|
-
|
|
2499
|
-
// RESET
|
|
2500
|
-
|
|
2501
|
-
// Use a more-intuitive box-sizing model.
|
|
2502
|
-
*, *::before, *::after {
|
|
2503
|
-
box-sizing: border-box;
|
|
2504
|
-
}
|
|
2505
|
-
|
|
2506
|
-
// Remove default margin
|
|
2507
|
-
* {
|
|
2508
|
-
margin: 0;
|
|
2509
|
-
}
|
|
2510
|
-
|
|
2511
|
-
// Set default text-wrap of 'pretty'
|
|
2512
|
-
* {
|
|
2513
|
-
text-wrap: pretty;
|
|
2514
|
-
}
|
|
2515
|
-
|
|
2516
|
-
// Wrap overly long words
|
|
2517
|
-
* {
|
|
2518
|
-
overflow-wrap: break-word;
|
|
2519
|
-
text-overflow: ellipsis;
|
|
2520
|
-
word-break: break-word;
|
|
2521
|
-
}
|
|
2522
|
-
|
|
2523
|
-
// Fix Safari antialiasing for variable fonts
|
|
2524
|
-
* {
|
|
2525
|
-
font-synthesis: none !important;
|
|
2526
|
-
}
|
|
2527
|
-
|
|
2528
|
-
// Improve text rendering
|
|
2529
|
-
body {
|
|
2530
|
-
-webkit-font-smoothing: antialiased;
|
|
2531
|
-
}
|
|
2532
|
-
|
|
2533
|
-
// Reasonable media defaults
|
|
2534
|
-
img, picture, video, canvas, svg {
|
|
2535
|
-
display: block;
|
|
2536
|
-
height: auto;
|
|
2537
|
-
max-width: 100%;
|
|
2538
|
-
}
|
|
2539
|
-
|
|
2540
|
-
// Remove built-in form typography styles
|
|
2541
|
-
input, button, textarea, select {
|
|
2542
|
-
font: inherit;
|
|
2543
|
-
}
|
|
2544
|
-
|
|
2545
|
-
// Avoid text overflows
|
|
2546
|
-
p, h1, h2, h3, h4, h5, h6 {
|
|
2547
|
-
overflow-wrap: break-word;
|
|
2548
|
-
}
|
|
2549
|
-
|
|
2550
|
-
// Create a root stacking context
|
|
2551
|
-
#root, #__next {
|
|
2552
|
-
isolation: isolate;
|
|
2553
|
-
}
|
|
2554
|
-
`},205(t,e,i){i.d(e,{g:()=>a});const a=i(161).AH`
|
|
2555
|
-
// =====
|
|
2556
|
-
|
|
2557
|
-
// Typography spacing
|
|
2558
|
-
|
|
2559
|
-
// Add a single space around paragraphs, blockquotes, and lists
|
|
2560
|
-
p, ul, ol, blockquote {
|
|
2561
|
-
& + * {
|
|
2562
|
-
margin-block-start: var(--spacing, var(--spacing-layout-1, 1.5rem));
|
|
2563
|
-
}
|
|
2564
|
-
* + & {
|
|
2565
|
-
margin-block-start: var(--spacing, var(--spacing-layout-1, 1.5rem));
|
|
2566
|
-
}
|
|
2567
|
-
}
|
|
2568
|
-
|
|
2569
|
-
h1, h2, h3, h4, .h1, .h2, .h3, .h4, .display-1, .display-2 {
|
|
2570
|
-
// Add a single line space after headings
|
|
2571
|
-
& + * {
|
|
2572
|
-
margin-block-start: var(--spacing, var(--spacing-layout-1, 1.5rem));
|
|
2573
|
-
}
|
|
2574
|
-
|
|
2575
|
-
// Add two line spaces before headings
|
|
2576
|
-
* + & {
|
|
2577
|
-
--spacing: var(--spacing-layout-2);
|
|
2578
|
-
|
|
2579
|
-
margin-block-start: --spacing;
|
|
2580
|
-
}
|
|
2581
|
-
|
|
2582
|
-
// Only add a single space between headings and other headings
|
|
2583
|
-
& + & {
|
|
2584
|
-
--spacing: var(--spacing-layout-1);
|
|
2585
|
-
}
|
|
2586
|
-
|
|
2587
|
-
// Reduce space after breadcrumbs and eyebrows
|
|
2588
|
-
cfa-breadcrumbs + & {
|
|
2589
|
-
margin-block-start: var(--spacing-layout-half) !important;
|
|
2590
|
-
}
|
|
2591
|
-
|
|
2592
|
-
.eyebrow + & {
|
|
2593
|
-
margin-block-start: 0 !important;
|
|
2594
|
-
}
|
|
2595
|
-
}
|
|
2596
|
-
|
|
2597
|
-
h1, .h1, .display-1, .display-2 {
|
|
2598
|
-
text-wrap: balance;
|
|
2599
|
-
}
|
|
2600
|
-
|
|
2601
|
-
// =====
|
|
2602
|
-
|
|
2603
|
-
// Font styles
|
|
2604
|
-
|
|
2605
|
-
.regular {
|
|
2606
|
-
font-family: var(--font-family-base);
|
|
2607
|
-
font-size: var(--font-size);
|
|
2608
|
-
line-height: var(--line-height);
|
|
2609
|
-
}
|
|
2610
|
-
|
|
2611
|
-
.display-1 {
|
|
2612
|
-
font-family: var(--font-family-heading);
|
|
2613
|
-
font-size: var(--font-size-display-1);
|
|
2614
|
-
font-weight: bold;
|
|
2615
|
-
line-height: var(--line-height-display-1);
|
|
2616
|
-
letter-spacing: var(--letter-spacing-display-1);
|
|
2617
|
-
}
|
|
2618
|
-
|
|
2619
|
-
.display-2 {
|
|
2620
|
-
font-family: var(--font-family-heading);
|
|
2621
|
-
font-size: var(--font-size-display-2);
|
|
2622
|
-
font-weight: bold;
|
|
2623
|
-
line-height: var(--line-height-display-2);
|
|
2624
|
-
letter-spacing: var(--letter-spacing-display-2);
|
|
2625
|
-
}
|
|
2626
|
-
|
|
2627
|
-
h1,
|
|
2628
|
-
.h1 {
|
|
2629
|
-
font-family: var(--font-family-heading);
|
|
2630
|
-
font-size: var(--font-size-h1);
|
|
2631
|
-
font-weight: bold;
|
|
2632
|
-
line-height: var(--line-height-h1);
|
|
2633
|
-
letter-spacing: var(--letter-spacing-h1);
|
|
2634
|
-
}
|
|
2635
|
-
|
|
2636
|
-
h2,
|
|
2637
|
-
.h2 {
|
|
2638
|
-
font-family: var(--font-family-heading);
|
|
2639
|
-
font-size: var(--font-size-h2);
|
|
2640
|
-
font-weight: bold;
|
|
2641
|
-
line-height: var(--line-height-h2);
|
|
2642
|
-
letter-spacing: var(--letter-spacing-h2);
|
|
2643
|
-
}
|
|
2644
|
-
|
|
2645
|
-
h3,
|
|
2646
|
-
.h3 {
|
|
2647
|
-
font-family: var(--font-family-heading);
|
|
2648
|
-
font-size: var(--font-size-h3);
|
|
2649
|
-
font-weight: bold;
|
|
2650
|
-
line-height: var(--line-height-h3);
|
|
2651
|
-
letter-spacing: var(--letter-spacing-h3);
|
|
2652
|
-
}
|
|
2653
|
-
|
|
2654
|
-
h4,
|
|
2655
|
-
.h4 {
|
|
2656
|
-
font-family: var(--font-family-heading);
|
|
2657
|
-
font-size: var(--font-size-h4);
|
|
2658
|
-
font-weight: bold;
|
|
2659
|
-
line-height: var(--line-height-h4);
|
|
2660
|
-
letter-spacing: var(--letter-spacing-h4);
|
|
2661
|
-
}
|
|
2662
|
-
|
|
2663
|
-
.extra-large {
|
|
2664
|
-
font-size: var(--font-size-extra-large);
|
|
2665
|
-
line-height: var(--line-height-extra-large);
|
|
2666
|
-
letter-spacing: var(--letter-spacing-extra-large);
|
|
2667
|
-
}
|
|
2668
|
-
|
|
2669
|
-
.large {
|
|
2670
|
-
font-size: var(--font-size-large);
|
|
2671
|
-
line-height: var(--line-height-large);
|
|
2672
|
-
letter-spacing: var(--letter-spacing-large);
|
|
2673
|
-
}
|
|
2674
|
-
|
|
2675
|
-
.small {
|
|
2676
|
-
font-size: var(--font-size-small);
|
|
2677
|
-
line-height: var(--line-height-small);
|
|
2678
|
-
letter-spacing: var(--letter-spacing-small);
|
|
2679
|
-
}
|
|
2680
|
-
|
|
2681
|
-
.eyebrow {
|
|
2682
|
-
font-family: var(--font-family-sans-serif);
|
|
2683
|
-
font-size: var(--font-size-eyebrow);
|
|
2684
|
-
font-weight: var(--font-weight-eyebrow);
|
|
2685
|
-
letter-spacing: var(--letter-spacing-eyebrow);
|
|
2686
|
-
line-height: var(--line-height-eyebrow);
|
|
2687
|
-
text-transform: uppercase;
|
|
2688
|
-
}
|
|
2689
|
-
|
|
2690
|
-
.eyebrow-with-line {
|
|
2691
|
-
align-items: center;
|
|
2692
|
-
color: var(--text-color);
|
|
2693
|
-
display: flex;
|
|
2694
|
-
font-family: var(--font-family-eyebrow);
|
|
2695
|
-
font-size: var(--font-size-eyebrow);
|
|
2696
|
-
font-weight: var(--font-weight-eyebrow);
|
|
2697
|
-
letter-spacing: var(--letter-spacing-eyebrow);
|
|
2698
|
-
line-height: var(--line-height-eyebrow);
|
|
2699
|
-
margin-block-end: var(--spacing-layout-half);
|
|
2700
|
-
position: relative;
|
|
2701
|
-
text-transform: uppercase;
|
|
2702
|
-
|
|
2703
|
-
&::after {
|
|
2704
|
-
border-block-end: var(--hairline) solid currentColor;
|
|
2705
|
-
content: "";
|
|
2706
|
-
flex-grow: 1;
|
|
2707
|
-
margin-left: var(--spacing-component-3);
|
|
2708
|
-
}
|
|
2709
|
-
}
|
|
2710
|
-
|
|
2711
|
-
.subtle {
|
|
2712
|
-
opacity: 0.6;
|
|
2713
|
-
}
|
|
2714
|
-
|
|
2715
|
-
.serif {
|
|
2716
|
-
font-family: var(--font-family-serif);
|
|
2717
|
-
}
|
|
2718
|
-
|
|
2719
|
-
.sans-serif {
|
|
2720
|
-
font-family: var(--font-family-sans-serif);
|
|
2721
|
-
}
|
|
2722
|
-
|
|
2723
|
-
i,
|
|
2724
|
-
em,
|
|
2725
|
-
.italic {
|
|
2726
|
-
font-style: italic;
|
|
2727
|
-
}
|
|
2728
|
-
|
|
2729
|
-
b,
|
|
2730
|
-
strong,
|
|
2731
|
-
.strong {
|
|
2732
|
-
font-weight: bold;
|
|
2733
|
-
}
|
|
2734
|
-
|
|
2735
|
-
.normal {
|
|
2736
|
-
font-weight: normal;
|
|
2737
|
-
}
|
|
2738
|
-
|
|
2739
|
-
.balance {
|
|
2740
|
-
text-wrap: balance;
|
|
2741
|
-
}
|
|
2742
|
-
|
|
2743
|
-
.prominent-link,
|
|
2744
|
-
a.prominent-link {
|
|
2745
|
-
--accent-color: var(--purple-60);
|
|
2746
|
-
|
|
2747
|
-
font-weight: bold;
|
|
2748
|
-
text-decoration: underline;
|
|
2749
|
-
text-decoration-color: var(--accent-color);
|
|
2750
|
-
text-decoration-thickness: var(--medium);
|
|
2751
|
-
text-underline-offset: 0.4em;
|
|
2752
|
-
transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
|
2753
|
-
|
|
2754
|
-
&:hover {
|
|
2755
|
-
--accent-color: var(--red-60);
|
|
2756
|
-
}
|
|
2757
|
-
|
|
2758
|
-
&:not(:has(cfa-icon))::after {
|
|
2759
|
-
@include icon.icon;
|
|
2760
|
-
|
|
2761
|
-
content: "arrow_right_alt";
|
|
2762
|
-
display: inline-block;
|
|
2763
|
-
padding-inline-start: 0.1em;
|
|
2764
|
-
text-decoration: none;
|
|
2765
|
-
transition: padding 0.2s ease-in-out;
|
|
2766
|
-
width: 1em;
|
|
2767
|
-
}
|
|
2768
|
-
|
|
2769
|
-
&:not(:has(cfa-icon)):hover::after {
|
|
2770
|
-
padding-inline-start: 0.3em;
|
|
2771
|
-
}
|
|
2772
|
-
|
|
2773
|
-
cfa-icon {
|
|
2774
|
-
text-decoration: none;
|
|
2775
|
-
}
|
|
2776
|
-
}
|
|
2777
|
-
|
|
2778
|
-
.white-text,
|
|
2779
|
-
.text-light /* fallback */ {
|
|
2780
|
-
-moz-osx-font-smoothing: grayscale; // Sharper antialising for white text on a dark background
|
|
2781
|
-
-webkit-font-smoothing: antialiased; // Sharper antialising for white text on a dark background
|
|
2782
|
-
color: var(--white);
|
|
2783
|
-
--link-color: var(--white);
|
|
2784
|
-
--link-hover-color: var(--white);
|
|
2785
|
-
}
|
|
2786
|
-
|
|
2787
|
-
// =====
|
|
2788
|
-
|
|
2789
|
-
// Highlights
|
|
2790
|
-
|
|
2791
|
-
.highlight {
|
|
2792
|
-
--highlight-offset: 0.2em;
|
|
2793
|
-
|
|
2794
|
-
box-decoration-break: clone;
|
|
2795
|
-
display: inline;
|
|
2796
|
-
background: linear-gradient(to top, transparent 0%, transparent var(--highlight-offset), var(--highlight-color) var(--highlight-offset), var(--highlight-color) calc(var(--highlight-offset) + var(--highlight-thickness)), transparent calc(var(--highlight-offset) + var(--highlight-thickness)), transparent 100%);
|
|
2797
|
-
padding-inline: 0.1em;
|
|
2798
|
-
-webkit-box-decoration-break: clone;
|
|
2799
|
-
margin-inline-start: -0.1em;
|
|
2800
|
-
margin-inline-end: -0.1em;
|
|
2801
|
-
word-wrap: break-word;
|
|
2802
|
-
}
|
|
2803
|
-
|
|
2804
|
-
// ======
|
|
2805
|
-
|
|
2806
|
-
// Lists
|
|
2807
|
-
|
|
2808
|
-
.ul {
|
|
2809
|
-
list-style-type: disc;
|
|
2810
|
-
padding-left: var(--spacing-layout-1);
|
|
2811
|
-
}
|
|
2812
|
-
|
|
2813
|
-
.ul > li {
|
|
2814
|
-
margin-inline-start: 0;
|
|
2815
|
-
padding-left: var(--spacing-component-2);
|
|
2816
|
-
}
|
|
2817
|
-
|
|
2818
|
-
.ul > li + li {
|
|
2819
|
-
margin-block-start: var(--spacing-layout-half);
|
|
2820
|
-
}
|
|
2821
|
-
|
|
2822
|
-
.ul > li > ul {
|
|
2823
|
-
margin-block-start: var(--spacing-layout-half);
|
|
2824
|
-
}
|
|
2825
|
-
|
|
2826
|
-
.ol {
|
|
2827
|
-
list-style-type: decimal;
|
|
2828
|
-
padding-left: var(--spacing-layout-1);
|
|
2829
|
-
}
|
|
2830
|
-
|
|
2831
|
-
.ol > li {
|
|
2832
|
-
margin-inline-start: 0;
|
|
2833
|
-
padding-inline-start: var(--spacing-component-2);
|
|
2834
|
-
}
|
|
2835
|
-
|
|
2836
|
-
.ol > li + li {
|
|
2837
|
-
margin-block-start: var(--spacing-layout-half);
|
|
2838
|
-
}
|
|
2839
|
-
|
|
2840
|
-
.ol > li > ul {
|
|
2841
|
-
margin-block-start: var(--spacing-layout-half);
|
|
2842
|
-
}
|
|
2843
|
-
|
|
2844
|
-
.ul--unstyled {
|
|
2845
|
-
list-style: none;
|
|
2846
|
-
padding: 0;
|
|
2847
|
-
}
|
|
2848
|
-
|
|
2849
|
-
.ul--unstyled > li {
|
|
2850
|
-
margin-inline: 0;
|
|
2851
|
-
padding: 0;
|
|
2852
|
-
}
|
|
2853
|
-
|
|
2854
|
-
.ul--line-separators > li + li::before {
|
|
2855
|
-
border-block-start: 1px solid var(--gray-20);
|
|
2856
|
-
content: "";
|
|
2857
|
-
display: block;
|
|
2858
|
-
margin-block: var(--spacing-layout-half);
|
|
2859
|
-
width: 100%;
|
|
2860
|
-
}
|
|
2861
|
-
|
|
2862
|
-
.ul--inline,
|
|
2863
|
-
.ul--inline-with-separators,
|
|
2864
|
-
.ul--inline-with-line-separators {
|
|
2865
|
-
display: inline;
|
|
2866
|
-
list-style: none;
|
|
2867
|
-
padding-inline: 0 !important;
|
|
2868
|
-
padding-left: 0 !important;
|
|
2869
|
-
}
|
|
2870
|
-
|
|
2871
|
-
.ul--inline > li,
|
|
2872
|
-
.ul--inline-with-separators > li,
|
|
2873
|
-
.ul--inline-with-line-separators > li {
|
|
2874
|
-
display: inline-block;
|
|
2875
|
-
margin-inline-end: var(--spacing-component-3);
|
|
2876
|
-
padding: 0 !important;
|
|
2877
|
-
}
|
|
2878
|
-
|
|
2879
|
-
.ul--inline li:last-child,
|
|
2880
|
-
.ul--inline-with-separators li:last-child,
|
|
2881
|
-
.ul--inline-with-line-separators li:last-child {
|
|
2882
|
-
margin-inline-end: 0;
|
|
2883
|
-
}
|
|
2884
|
-
|
|
2885
|
-
.ul--inline > li + li,
|
|
2886
|
-
.ul--inline-with-separators > li + li,
|
|
2887
|
-
.ul--inline-with-line-separators > li + li {
|
|
2888
|
-
margin-block-start: 0;
|
|
2889
|
-
}
|
|
2890
|
-
|
|
2891
|
-
.ul--inline-with-separators li,
|
|
2892
|
-
.ul--inline-with-line-separators li {
|
|
2893
|
-
margin-inline-end: 0;
|
|
2894
|
-
}
|
|
2895
|
-
|
|
2896
|
-
.ul--inline-with-separators > li::after {
|
|
2897
|
-
content: "•";
|
|
2898
|
-
margin-inline: var(--spacing-component-2);
|
|
2899
|
-
opacity: 0.5;
|
|
2900
|
-
}
|
|
2901
|
-
|
|
2902
|
-
.ul--inline-with-separators > li:last-child::after {
|
|
2903
|
-
content: "";
|
|
2904
|
-
}
|
|
2905
|
-
|
|
2906
|
-
.ul--inline-with-line-separators > li::after {
|
|
2907
|
-
content: "|";
|
|
2908
|
-
margin-inline: var(--spacing-component-2);
|
|
2909
|
-
opacity: 0.5;
|
|
2910
|
-
}
|
|
2911
|
-
|
|
2912
|
-
.ul--inline-with-line-separators > li:last-child::after {
|
|
2913
|
-
content: "";
|
|
2914
|
-
}
|
|
2915
|
-
|
|
2916
|
-
// ===
|
|
2917
|
-
|
|
2918
|
-
// Horizontal rule
|
|
2919
|
-
|
|
2920
|
-
hr {
|
|
2921
|
-
--color: currentColor;
|
|
2922
|
-
|
|
2923
|
-
background-color: var(--color);
|
|
2924
|
-
border: 0;
|
|
2925
|
-
color: var(--color);
|
|
2926
|
-
display: block;
|
|
2927
|
-
font-size: 0;
|
|
2928
|
-
height: var(--hairline);
|
|
2929
|
-
margin-block: var(--spacing-layout-1);
|
|
2930
|
-
opacity: 0.4;
|
|
2931
|
-
}
|
|
2932
|
-
|
|
2933
|
-
// ===
|
|
2934
|
-
|
|
2935
|
-
// Icons
|
|
2936
|
-
|
|
2937
|
-
.icon {
|
|
2938
|
-
-webkit-font-feature-settings: 'liga';
|
|
2939
|
-
direction: ltr;
|
|
2940
|
-
display: inline-block;
|
|
2941
|
-
font-family: 'Material Symbols Rounded';
|
|
2942
|
-
font-feature-settings: 'liga';
|
|
2943
|
-
font-size: 1.4em;
|
|
2944
|
-
font-style: normal;
|
|
2945
|
-
font-weight: normal;
|
|
2946
|
-
letter-spacing: normal;
|
|
2947
|
-
text-transform: none;
|
|
2948
|
-
vertical-align: middle;
|
|
2949
|
-
white-space: nowrap;
|
|
2950
|
-
word-wrap: normal;
|
|
2951
|
-
}
|
|
2952
|
-
`},826(t,e,i){i.d(e,{AH:()=>l,Rf:()=>c,sk:()=>h});const a=globalThis,o=a.ShadowRoot&&(void 0===a.ShadyCSS||a.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,s=Symbol(),r=new WeakMap;class n{constructor(t,e,i){if(this._$cssResult$=!0,i!==s)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=e}get styleSheet(){let t=this.o;const e=this.t;if(o&&void 0===t){const i=void 0!==e&&1===e.length;i&&(t=r.get(e)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),i&&r.set(e,t))}return t}toString(){return this.cssText}}const l=(t,...e)=>{const i=1===t.length?t[0]:e.reduce((e,i,a)=>e+(t=>{if(!0===t._$cssResult$)return t.cssText;if("number"==typeof t)return t;throw Error("Value passed to 'css' function must be a 'css' function result: "+t+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(i)+t[a+1],t[0]);return new n(i,t,s)},c=(t,e)=>{if(o)t.adoptedStyleSheets=e.map(t=>t instanceof CSSStyleSheet?t:t.styleSheet);else for(const i of e){const e=document.createElement("style"),o=a.litNonce;void 0!==o&&e.setAttribute("nonce",o),e.textContent=i.cssText,t.appendChild(e)}},h=o?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const i of t.cssRules)e+=i.cssText;return(t=>new n("string"==typeof t?t:t+"",void 0,s))(e)})(t):t},760(t,e,i){i.d(e,{AH:()=>a.AH,mN:()=>b});var a=i(826);const{is:o,defineProperty:s,getOwnPropertyDescriptor:r,getOwnPropertyNames:n,getOwnPropertySymbols:l,getPrototypeOf:c}=Object,h=globalThis,d=h.trustedTypes,p=d?d.emptyScript:"",g=h.reactiveElementPolyfillSupport,u=(t,e)=>t,v={toAttribute(t,e){switch(e){case Boolean:t=t?p:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,e){let i=t;switch(e){case Boolean:i=null!==t;break;case Number:i=null===t?null:Number(t);break;case Object:case Array:try{i=JSON.parse(t)}catch(t){i=null}}return i}},m=(t,e)=>!o(t,e),f={attribute:!0,type:String,converter:v,reflect:!1,useDefault:!1,hasChanged:m};Symbol.metadata??=Symbol("metadata"),h.litPropertyMetadata??=new WeakMap;class b extends HTMLElement{static addInitializer(t){this._$Ei(),(this.l??=[]).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t,e=f){if(e.state&&(e.attribute=!1),this._$Ei(),this.prototype.hasOwnProperty(t)&&((e=Object.create(e)).wrapped=!0),this.elementProperties.set(t,e),!e.noAccessor){const i=Symbol(),a=this.getPropertyDescriptor(t,i,e);void 0!==a&&s(this.prototype,t,a)}}static getPropertyDescriptor(t,e,i){const{get:a,set:o}=r(this.prototype,t)??{get(){return this[e]},set(t){this[e]=t}};return{get:a,set(e){const s=a?.call(this);o?.call(this,e),this.requestUpdate(t,s,i)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??f}static _$Ei(){if(this.hasOwnProperty(u("elementProperties")))return;const t=c(this);t.finalize(),void 0!==t.l&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(u("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(u("properties"))){const t=this.properties,e=[...n(t),...l(t)];for(const i of e)this.createProperty(i,t[i])}const t=this[Symbol.metadata];if(null!==t){const e=litPropertyMetadata.get(t);if(void 0!==e)for(const[t,i]of e)this.elementProperties.set(t,i)}this._$Eh=new Map;for(const[t,e]of this.elementProperties){const i=this._$Eu(t,e);void 0!==i&&this._$Eh.set(i,t)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(t){const e=[];if(Array.isArray(t)){const i=new Set(t.flat(1/0).reverse());for(const t of i)e.unshift((0,a.sk)(t))}else void 0!==t&&e.push((0,a.sk)(t));return e}static _$Eu(t,e){const i=e.attribute;return!1===i?void 0:"string"==typeof i?i:"string"==typeof t?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){this._$ES=new Promise(t=>this.enableUpdating=t),this._$AL=new Map,this._$E_(),this.requestUpdate(),this.constructor.l?.forEach(t=>t(this))}addController(t){(this._$EO??=new Set).add(t),void 0!==this.renderRoot&&this.isConnected&&t.hostConnected?.()}removeController(t){this._$EO?.delete(t)}_$E_(){const t=new Map,e=this.constructor.elementProperties;for(const i of e.keys())this.hasOwnProperty(i)&&(t.set(i,this[i]),delete this[i]);t.size>0&&(this._$Ep=t)}createRenderRoot(){const t=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return(0,a.Rf)(t,this.constructor.elementStyles),t}connectedCallback(){this.renderRoot??=this.createRenderRoot(),this.enableUpdating(!0),this._$EO?.forEach(t=>t.hostConnected?.())}enableUpdating(t){}disconnectedCallback(){this._$EO?.forEach(t=>t.hostDisconnected?.())}attributeChangedCallback(t,e,i){this._$AK(t,i)}_$ET(t,e){const i=this.constructor.elementProperties.get(t),a=this.constructor._$Eu(t,i);if(void 0!==a&&!0===i.reflect){const o=(void 0!==i.converter?.toAttribute?i.converter:v).toAttribute(e,i.type);this._$Em=t,null==o?this.removeAttribute(a):this.setAttribute(a,o),this._$Em=null}}_$AK(t,e){const i=this.constructor,a=i._$Eh.get(t);if(void 0!==a&&this._$Em!==a){const t=i.getPropertyOptions(a),o="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:v;this._$Em=a;const s=o.fromAttribute(e,t.type);this[a]=s??this._$Ej?.get(a)??s,this._$Em=null}}requestUpdate(t,e,i,a=!1,o){if(void 0!==t){const s=this.constructor;if(!1===a&&(o=this[t]),i??=s.getPropertyOptions(t),!((i.hasChanged??m)(o,e)||i.useDefault&&i.reflect&&o===this._$Ej?.get(t)&&!this.hasAttribute(s._$Eu(t,i))))return;this.C(t,e,i)}!1===this.isUpdatePending&&(this._$ES=this._$EP())}C(t,e,{useDefault:i,reflect:a,wrapped:o},s){i&&!(this._$Ej??=new Map).has(t)&&(this._$Ej.set(t,s??e??this[t]),!0!==o||void 0!==s)||(this._$AL.has(t)||(this.hasUpdated||i||(e=void 0),this._$AL.set(t,e)),!0===a&&this._$Em!==t&&(this._$Eq??=new Set).add(t))}async _$EP(){this.isUpdatePending=!0;try{await this._$ES}catch(t){Promise.reject(t)}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??=this.createRenderRoot(),this._$Ep){for(const[t,e]of this._$Ep)this[t]=e;this._$Ep=void 0}const t=this.constructor.elementProperties;if(t.size>0)for(const[e,i]of t){const{wrapped:t}=i,a=this[e];!0!==t||this._$AL.has(e)||void 0===a||this.C(e,void 0,i,a)}}let t=!1;const e=this._$AL;try{t=this.shouldUpdate(e),t?(this.willUpdate(e),this._$EO?.forEach(t=>t.hostUpdate?.()),this.update(e)):this._$EM()}catch(e){throw t=!1,this._$EM(),e}t&&this._$AE(e)}willUpdate(t){}_$AE(t){this._$EO?.forEach(t=>t.hostUpdated?.()),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$EM(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$ES}shouldUpdate(t){return!0}update(t){this._$Eq&&=this._$Eq.forEach(t=>this._$ET(t,this[t])),this._$EM()}updated(t){}firstUpdated(t){}}b.elementStyles=[],b.shadowRootOptions={mode:"open"},b[u("elementProperties")]=new Map,b[u("finalized")]=new Map,g?.({ReactiveElement:b}),(h.reactiveElementVersions??=[]).push("2.1.2")},228(t,e,i){i.d(e,{AH:()=>a.AH,JW:()=>o.JW,WF:()=>r,qy:()=>o.qy,s6:()=>o.s6});var a=i(760),o=i(752);const s=globalThis;class r extends a.mN{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){const t=super.createRenderRoot();return this.renderOptions.renderBefore??=t.firstChild,t}update(t){const e=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=(0,o.XX)(e,this.renderRoot,this.renderOptions)}connectedCallback(){super.connectedCallback(),this._$Do?.setConnected(!0)}disconnectedCallback(){super.disconnectedCallback(),this._$Do?.setConnected(!1)}render(){return o.c0}}r._$litElement$=!0,r.finalized=!0,s.litElementHydrateSupport?.({LitElement:r});const n=s.litElementPolyfillSupport;n?.({LitElement:r}),(s.litElementVersions??=[]).push("4.2.2")},752(t,e,i){i.d(e,{JW:()=>A,XX:()=>W,c0:()=>E,qy:()=>_,s6:()=>z});const a=globalThis,o=t=>t,s=a.trustedTypes,r=s?s.createPolicy("lit-html",{createHTML:t=>t}):void 0,n="$lit$",l=`lit$${Math.random().toFixed(9).slice(2)}$`,c="?"+l,h=`<${c}>`,d=document,p=()=>d.createComment(""),g=t=>null===t||"object"!=typeof t&&"function"!=typeof t,u=Array.isArray,v="[ \t\n\f\r]",m=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,f=/-->/g,b=/>/g,y=RegExp(`>|${v}(?:([^\\s"'>=/]+)(${v}*=${v}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),w=/'/g,x=/"/g,k=/^(?:script|style|textarea|title)$/i,$=t=>(e,...i)=>({_$litType$:t,strings:e,values:i}),_=$(1),A=$(2),E=($(3),Symbol.for("lit-noChange")),z=Symbol.for("lit-nothing"),P=new WeakMap,S=d.createTreeWalker(d,129);function T(t,e){if(!u(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==r?r.createHTML(e):e}const C=(t,e)=>{const i=t.length-1,a=[];let o,s=2===e?"<svg>":3===e?"<math>":"",r=m;for(let e=0;e<i;e++){const i=t[e];let c,d,p=-1,g=0;for(;g<i.length&&(r.lastIndex=g,d=r.exec(i),null!==d);)g=r.lastIndex,r===m?"!--"===d[1]?r=f:void 0!==d[1]?r=b:void 0!==d[2]?(k.test(d[2])&&(o=RegExp("</"+d[2],"g")),r=y):void 0!==d[3]&&(r=y):r===y?">"===d[0]?(r=o??m,p=-1):void 0===d[1]?p=-2:(p=r.lastIndex-d[2].length,c=d[1],r=void 0===d[3]?y:'"'===d[3]?x:w):r===x||r===w?r=y:r===f||r===b?r=m:(r=y,o=void 0);const u=r===y&&t[e+1].startsWith("/>")?" ":"";s+=r===m?i+h:p>=0?(a.push(c),i.slice(0,p)+n+i.slice(p)+l+u):i+l+(-2===p?e:u)}return[T(t,s+(t[i]||"<?>")+(2===e?"</svg>":3===e?"</math>":"")),a]};class q{constructor({strings:t,_$litType$:e},i){let a;this.parts=[];let o=0,r=0;const h=t.length-1,d=this.parts,[g,u]=C(t,e);if(this.el=q.createElement(g,i),S.currentNode=this.el.content,2===e||3===e){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(a=S.nextNode())&&d.length<h;){if(1===a.nodeType){if(a.hasAttributes())for(const t of a.getAttributeNames())if(t.endsWith(n)){const e=u[r++],i=a.getAttribute(t).split(l),s=/([.?@])?(.*)/.exec(e);d.push({type:1,index:o,name:s[2],strings:i,ctor:"."===s[1]?R:"?"===s[1]?I:"@"===s[1]?F:M}),a.removeAttribute(t)}else t.startsWith(l)&&(d.push({type:6,index:o}),a.removeAttribute(t));if(k.test(a.tagName)){const t=a.textContent.split(l),e=t.length-1;if(e>0){a.textContent=s?s.emptyScript:"";for(let i=0;i<e;i++)a.append(t[i],p()),S.nextNode(),d.push({type:2,index:++o});a.append(t[e],p())}}}else if(8===a.nodeType)if(a.data===c)d.push({type:2,index:o});else{let t=-1;for(;-1!==(t=a.data.indexOf(l,t+1));)d.push({type:7,index:o}),t+=l.length-1}o++}}static createElement(t,e){const i=d.createElement("template");return i.innerHTML=t,i}}function L(t,e,i=t,a){if(e===E)return e;let o=void 0!==a?i._$Co?.[a]:i._$Cl;const s=g(e)?void 0:e._$litDirective$;return o?.constructor!==s&&(o?._$AO?.(!1),void 0===s?o=void 0:(o=new s(t),o._$AT(t,i,a)),void 0!==a?(i._$Co??=[])[a]=o:i._$Cl=o),void 0!==o&&(e=L(t,o._$AS(t,e.values),o,a)),e}class U{constructor(t,e){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=e}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){const{el:{content:e},parts:i}=this._$AD,a=(t?.creationScope??d).importNode(e,!0);S.currentNode=a;let o=S.nextNode(),s=0,r=0,n=i[0];for(;void 0!==n;){if(s===n.index){let e;2===n.type?e=new H(o,o.nextSibling,this,t):1===n.type?e=new n.ctor(o,n.name,n.strings,this,t):6===n.type&&(e=new N(o,this,t)),this._$AV.push(e),n=i[++r]}s!==n?.index&&(o=S.nextNode(),s++)}return S.currentNode=d,a}p(t){let e=0;for(const i of this._$AV)void 0!==i&&(void 0!==i.strings?(i._$AI(t,i,e),e+=i.strings.length-2):i._$AI(t[e])),e++}}class H{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,e,i,a){this.type=2,this._$AH=z,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=i,this.options=a,this._$Cv=a?.isConnected??!0}get parentNode(){let t=this._$AA.parentNode;const e=this._$AM;return void 0!==e&&11===t?.nodeType&&(t=e.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,e=this){t=L(this,t,e),g(t)?t===z||null==t||""===t?(this._$AH!==z&&this._$AR(),this._$AH=z):t!==this._$AH&&t!==E&&this._(t):void 0!==t._$litType$?this.$(t):void 0!==t.nodeType?this.T(t):(t=>u(t)||"function"==typeof t?.[Symbol.iterator])(t)?this.k(t):this._(t)}O(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}T(t){this._$AH!==t&&(this._$AR(),this._$AH=this.O(t))}_(t){this._$AH!==z&&g(this._$AH)?this._$AA.nextSibling.data=t:this.T(d.createTextNode(t)),this._$AH=t}$(t){const{values:e,_$litType$:i}=t,a="number"==typeof i?this._$AC(t):(void 0===i.el&&(i.el=q.createElement(T(i.h,i.h[0]),this.options)),i);if(this._$AH?._$AD===a)this._$AH.p(e);else{const t=new U(a,this),i=t.u(this.options);t.p(e),this.T(i),this._$AH=t}}_$AC(t){let e=P.get(t.strings);return void 0===e&&P.set(t.strings,e=new q(t)),e}k(t){u(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let i,a=0;for(const o of t)a===e.length?e.push(i=new H(this.O(p()),this.O(p()),this,this.options)):i=e[a],i._$AI(o),a++;a<e.length&&(this._$AR(i&&i._$AB.nextSibling,a),e.length=a)}_$AR(t=this._$AA.nextSibling,e){for(this._$AP?.(!1,!0,e);t!==this._$AB;){const e=o(t).nextSibling;o(t).remove(),t=e}}setConnected(t){void 0===this._$AM&&(this._$Cv=t,this._$AP?.(t))}}class M{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,i,a,o){this.type=1,this._$AH=z,this._$AN=void 0,this.element=t,this.name=e,this._$AM=a,this.options=o,i.length>2||""!==i[0]||""!==i[1]?(this._$AH=Array(i.length-1).fill(new String),this.strings=i):this._$AH=z}_$AI(t,e=this,i,a){const o=this.strings;let s=!1;if(void 0===o)t=L(this,t,e,0),s=!g(t)||t!==this._$AH&&t!==E,s&&(this._$AH=t);else{const a=t;let r,n;for(t=o[0],r=0;r<o.length-1;r++)n=L(this,a[i+r],e,r),n===E&&(n=this._$AH[r]),s||=!g(n)||n!==this._$AH[r],n===z?t=z:t!==z&&(t+=(n??"")+o[r+1]),this._$AH[r]=n}s&&!a&&this.j(t)}j(t){t===z?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class R extends M{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===z?void 0:t}}class I extends M{constructor(){super(...arguments),this.type=4}j(t){this.element.toggleAttribute(this.name,!!t&&t!==z)}}class F extends M{constructor(t,e,i,a,o){super(t,e,i,a,o),this.type=5}_$AI(t,e=this){if((t=L(this,t,e,0)??z)===E)return;const i=this._$AH,a=t===z&&i!==z||t.capture!==i.capture||t.once!==i.once||t.passive!==i.passive,o=t!==z&&(i===z||a);a&&this.element.removeEventListener(this.name,this,i),o&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){"function"==typeof this._$AH?this._$AH.call(this.options?.host??this.element,t):this._$AH.handleEvent(t)}}class N{constructor(t,e,i){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=i}get _$AU(){return this._$AM._$AU}_$AI(t){L(this,t)}}const O=a.litHtmlPolyfillSupport;O?.(q,H),(a.litHtmlVersions??=[]).push("3.3.2");const W=(t,e,i)=>{const a=i?.renderBefore??e;let o=a._$litPart$;if(void 0===o){const t=i?.renderBefore??null;a._$litPart$=o=new H(e.insertBefore(p(),t),t,void 0,i??{})}return o._$AI(t),o}},161(t,e,i){i.d(e,{AH:()=>a.AH,JW:()=>a.JW,WF:()=>a.WF,qy:()=>a.qy,s6:()=>a.s6}),i(760),i(752);var a=i(228)}},e={};function i(a){var o=e[a];if(void 0!==o)return o.exports;var s=e[a]={exports:{}};return t[a](s,s.exports,i),s.exports}i.d=(t,e)=>{for(var a in e)i.o(e,a)&&!i.o(t,a)&&Object.defineProperty(t,a,{enumerable:!0,get:e[a]})},i.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),i(330),i(544),i(227),i(562),i(953),i(200),i(250),i(771),i(804),i(301),i(517),i(710),i(202),i(542),i(547),i(334),i(152),i(518),i(280),i(696),i(663),i(881),i(884),i(302),i(638),i(36),i(682),i(867),i(685),i(221)})();
|
|
2
|
+
(()=>{"use strict";var n={517(n,e,t){var i,r,o,a,s,l,c=t(161),h=t(601);function d(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function u(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}class p extends c.WF{constructor(){super(),this.open=!1}toggle(){this.open=!this.open}handleKeyPress(n){"Enter"!==n.key&&" "!==n.key||this.toggle()}render(){return(0,c.qy)(i||(i=d(['\n <div class="item">\n <div\n class="header"\n role="button"\n aria-expanded=','\n tabindex="0"\n @click=',"\n @keypress=",'\n >\n <div class="title">\n <slot name="title"></slot>\n </div>\n <span class="icon" aria-hidden="true">\n ','\n </span>\n </div>\n <div\n class="body ','"\n role="region"\n aria-hidden=',"\n >\n <slot></slot>\n </div>\n </div>\n "])),this.open?"true":"false",this.toggle,this.handleKeyPress,this.open?(0,c.qy)(r||(r=d(["<cfa-icon>expand_less</cfa-icon>"]))):(0,c.qy)(o||(o=d(["<cfa-icon>expand_more</cfa-icon>"]))),this.open?"open":"",this.open?"false":"true")}}u(p,"properties",{open:{type:Boolean}}),u(p,"styles",[h.s,(0,c.AH)(s||(s=d(["\n :host {\n --color: var(--purple-60);\n --hover-bg-color: var(--blue-20);\n\n display: block;\n }\n\n .item {\n border-bottom: var(--thin) solid var(--black-20);\n max-width: var(--column-span-8);\n margin-inline: auto;\n background-color: var(--bg-color);\n }\n\n .header {\n align-items: center;\n color: var(--color);\n cursor: pointer;\n display: flex;\n flex-direction: row;\n padding-block: var(--spacing-component-3);\n }\n\n .header:hover {\n background-color: var(--hover-bg-color);\n box-shadow:\n var(--spacing-component-3) 0 var(--blue-20),\n calc(-1 * var(--spacing-component-3)) 0 var(--blue-20);\n }\n\n .header:focus {\n outline: none;\n }\n\n .title {\n flex: 1;\n }\n\n .title ::slotted(*) {\n font-family: var(--font-family-sans-serif) !important;\n font-size: var(--font-size) !important;\n }\n\n .icon {\n flex: 0;\n }\n\n .body {\n opacity: 0;\n max-height: 0;\n overflow: hidden;\n }\n\n .body.open {\n max-height: unset;\n opacity: 1;\n padding-block: var(--spacing-layout-half) var(--spacing-layout-1);\n }\n\n .body ::slotted(*) {\n margin-block-start: 0 !important;\n }\n "])))]);class v extends c.WF{render(){return(0,c.qy)(a||(a=d(['\n <div role="tablist">\n <slot></slot>\n </div>\n '])))}}u(v,"styles",(0,c.AH)(l||(l=d(["\n :host {\n display: block;\n }\n "])))),customElements.get("cfa-accordion-item")||customElements.define("cfa-accordion-item",p),customElements.get("cfa-accordion")||customElements.define("cfa-accordion",v)},330(n,e,t){var i,r,o,a=t(161),s=t(601);function l(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function c(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}class h extends a.WF{render(){return(0,a.qy)(i||(i=l(["\n <style>\n :host {\n --size: var(--spacing-layout-",", 8rem);\n }\n </style>\n <picture>\n ","\n </picture>\n "])),this.size||"4",this.imageUrl?(0,a.qy)(r||(r=l(['\n <img\n src="','"\n loading="lazy"\n alt="','"\n />\n '])),this.imageUrl,this.altText):a.s6)}}c(h,"properties",{imageUrl:{},altText:{},size:{}}),c(h,"styles",[s.s,(0,a.AH)(o||(o=l(["\n :host {\n --bg-color: var(--blue-20);\n\n display: inline-block;\n max-width: 100%;\n }\n\n picture {\n aspect-ratio: 1 / 1;\n background-color: var(--bg-color);\n border-radius: 50%;\n display: block;\n max-width: 100%;\n overflow: hidden;\n width: var(--size);\n }\n\n img {\n display: block;\n height: 100%;\n object-fit: cover;\n width: 100%;\n }\n "])))]),customElements.get("cfa-avatar")||customElements.define("cfa-avatar",h)},710(n,e,t){var i,r,o=t(161),a=t(601);function s(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function l(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}class c extends o.WF{firstUpdated(){const n=this.shadowRoot.querySelector(".content"),e=n=>{n.classList.toggle("is-overflowing",n.scrollWidth>n.clientWidth)};"ResizeObserver"in window&&new ResizeObserver(n=>{e(n[0].target)}).observe(n),"MutationObserver"in window&&new MutationObserver(()=>{e(n)}).observe(n,{childList:!0}),e(n)}render(){return(0,o.qy)(i||(i=s(['\n <div class="bar">\n <div class="content">\n <slot></slot>\n </div>\n </div>\n '])))}}l(c,"properties",{theme:{}}),l(c,"styles",[a.s,(0,o.AH)(r||(r=s(['\n :host {\n --bg-color: var(--purple-80);\n --text-color: var(--white);\n --link-color: var(--white);\n --link-hover-color: var(--white);\n --scrollbar-color: var(--white);\n --spacing: var(--spacing-layout-half);\n\n display: block;\n }\n\n .bar {\n background-color: var(--bg-color);\n color: var(--text-color);\n\n a {\n color: var(--link-color);\n }\n\n a:hover {\n color: var(--link-hover-color);\n }\n }\n\n .content {\n display: flex;\n column-gap: var(--spacing);\n justify-content: center; \n overflow-x: auto;\n overflow-y: hidden;\n padding-bottom: var(--spacing-layout-half);\n padding-top: var(--spacing-layout-half);\n scrollbar-color: var(--scrollbar-color) var(--bg-color);\n scrollbar-width: thin;\n\n &::before,\n &::after {\n content: "";\n flex-basis: calc(var(--outer-margin) - var(--spacing));\n flex-shrink: 0;\n }\n }\n \n .content.is-overflowing {\n justify-content: start; \n }\n\n ::slotted(*) {\n max-width: none !important;\n white-space: nowrap !important;\n }\n '])))]),customElements.get("cfa-bar")||customElements.define("cfa-bar",c)},544(n,e,t){var i,r,o,a,s,l,c,h=t(161),d=t(601);function u(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function p(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}class v extends h.WF{constructor(){super(),this.shape="1"}blobTemplate(){let n;switch(this.shape){case"1":n=(0,h.qy)(i||(i=u(['<svg\n width="628"\n height="577"\n viewBox="0 0 628 577"\n fill="none"\n xmlns="http://www.w3.org/2000/svg"\n >\n <path\n fill-rule="evenodd"\n clip-rule="evenodd"\n d="M304.482 3.44206C399.413 -5.50752 504.225 1.17063 567.446 72.5295C633.526 147.115 639.549 256.491 613.992 352.793C589.57 444.814 526.084 523.087 438.164 559.679C355.477 594.092 265.039 570.416 184.315 531.621C103.504 492.784 22.0294 438.546 3.59029 350.826C-14.5863 264.355 39.2746 183.666 97.1329 116.868C151.394 54.223 221.956 11.2221 304.482 3.44206Z"\n />\n </svg>'])));break;case"2":n=(0,h.qy)(r||(r=u(['<svg\n width="580"\n height="592"\n viewBox="0 0 580 592"\n fill="none"\n xmlns="http://www.w3.org/2000/svg"\n >\n <path\n d="M238.814 591.215C210.461 592.077 182.849 587.767 155.66 580.979C60.4457 557.059 4.05766 489.933 0.460672 390.376C-2.50155 306.442 8.71258 223.693 37.2769 144.499C73.2468 44.6185 170.894 -12.5948 276.159 2.81295C358.996 14.9883 437.177 39.3389 499.172 100.108C588.039 187.167 604.437 293.512 544.346 402.767C514.618 456.855 477.59 505.988 426.386 541.544C369.892 580.656 304.723 587.767 238.814 591.215Z"\n />\n </svg>'])));break;case"3":n=(0,h.qy)(o||(o=u(['<svg\n width="620"\n height="613"\n viewBox="0 0 620 613"\n fill="none"\n xmlns="http://www.w3.org/2000/svg"\n >\n <path\n fill-rule="evenodd"\n clip-rule="evenodd"\n d="M619.142 301.769C615.581 212.393 536.92 153.752 466.654 98.7402C397.998 44.9883 323.934 -10.5844 236.421 2.12929C141.656 15.8965 53.9975 76.8338 15.687 164.256C-20.6955 247.277 16.2818 336.243 54.5575 417.127C92.4807 497.265 137.965 580.831 224.139 604.752C314.166 629.742 409.183 593.817 484.092 536.359C559.738 478.336 622.883 395.641 619.142 301.769Z"\n />\n </svg>'])));break;case"4":n=(0,h.qy)(a||(a=u(['<svg\n width="656"\n height="566"\n viewBox="0 0 656 566"\n fill="none"\n xmlns="http://www.w3.org/2000/svg"\n >\n <path\n fill-rule="evenodd"\n clip-rule="evenodd"\n d="M332.011 564.695C235.808 569.34 135.091 552.4 71.2946 488.381C4.66596 421.518 -10.0767 327.738 8.2158 239.764C27.3773 147.61 73.5054 52.3693 169.88 14.2546C263.181 -22.6447 364.8 21.5179 455.491 62.8734C540.631 101.698 627.337 150.367 649.771 233.088C672.265 316.032 626.78 399.503 564.43 464.569C505.684 525.875 422.382 560.331 332.011 564.695Z"\n />\n </svg>'])));break;default:n=(0,h.qy)(s||(s=u(['<svg\n width="628"\n height="577"\n viewBox="0 0 628 577"\n fill="none"\n xmlns="http://www.w3.org/2000/svg"\n >\n <path\n fill-rule="evenodd"\n clip-rule="evenodd"\n d="M304.482 3.44206C399.413 -5.50752 504.225 1.17063 567.446 72.5295C633.526 147.115 639.549 256.491 613.992 352.793C589.57 444.814 526.084 523.087 438.164 559.679C355.477 594.092 265.039 570.416 184.315 531.621C103.504 492.784 22.0294 438.546 3.59029 350.826C-14.5863 264.355 39.2746 183.666 97.1329 116.868C151.394 54.223 221.956 11.2221 304.482 3.44206Z"\n />\n </svg>'])))}return n}render(){const n=this.color?"var(--".concat(this.color,")"):"var(--blue-20)";return(0,h.qy)(l||(l=u([' \n <div \n class="blob" \n style="--color: ','"\n >\n ',"\n </div> \n "])),n,this.blobTemplate())}}p(v,"properties",{color:{},shape:{},styles:{}}),p(v,"styles",[d.s,(0,h.AH)(c||(c=u(["\n :host {\n --color: var(--blue-20);\n\n display: block;\n }\n\n .blob,\n svg {\n height: 100%;\n width: 100%;\n }\n\n svg path {\n fill: var(--color, #fff);\n }\n "])))]),customElements.get("cfa-blob")||customElements.define("cfa-blob",v)},202(n,e,t){var i,r,o=t(161),a=t(601);function s(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function l(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}class c extends o.WF{render(){return(0,o.qy)(i||(i=s(['\n <div class="box">\n <slot />\n </div>\n '])))}}l(c,"properties",{theme:{type:String,reflect:!0}}),l(c,"styles",[a.s,(0,o.AH)(r||(r=s(['\n :host {\n --bg-color: var(--purple-10);\n --box-border-color: var(--purple-60);\n --box-border-gradient: var(--gradient-1);\n --box-border-width: var(--thick);\n --link-color: var(--base-link-color);\n --link-hover-color: var(--base-link-hover-color);\n --padding: var(--spacing-component-4);\n --shadow: var(--shadow-medium);\n --text-color: var(--base-text-color);\n\n display: flex;\n flex: 1;\n }\n\n :host([theme="author-note"]) {\n --box-border-width: 0;\n\n font-family: var(--font-family-serif);\n font-size: var(--font-size-small);\n font-style: italic;\n line-height: var(--line-height-small);\n }\n\n .box {\n background-color: var(--bg-color);\n border-block-start: var(--box-border-width) solid var(--box-border-color);\n border-image: var(--box-border-gradient) 1;\n box-shadow: var(--shadow);\n color: var(--text-color, #000);\n display: flex;\n flex-direction: column;\n gap: var(--spacing-layout-half);\n padding: var(--padding);\n width: 100%;\n }\n\n ::slotted(*) {\n --spacing: var(--spacing-layout-half);\n\n margin: 0 !important;\n max-width: 100%;\n }\n '])))]),customElements.get("cfa-box")||customElements.define("cfa-box",c)},542(n,e,t){var i,r,o=t(161),a=t(601);function s(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function l(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}class c extends o.WF{handleSlotchange(n){const e=n.target.assignedNodes({flatten:!0});console.log(e);const t=this.shadowRoot.querySelector(".breadcrumbs");t.innerHTML="",e.forEach(n=>{"UL"===n.tagName&&n.querySelectorAll("li").forEach(n=>{t.appendChild(n.cloneNode(!0))})})}render(){return(0,o.qy)(i||(i=s(["\n <slot @slotchange=",'></slot>\n <ul class="breadcrumbs"></ul>\n '])),this.handleSlotchange)}}l(c,"properties",{}),l(c,"styles",[a.s,(0,o.AH)(r||(r=s(['\n slot {\n display: none;\n }\n\n :host {\n display: block;\n }\n\n .breadcrumbs {\n margin: 0;\n margin-inline: calc(-1 * var(--outer-margin));\n overflow-x: auto;\n overflow-y: hidden;\n padding: 0;\n scrollbar-width: none;\n white-space: nowrap;\n }\n\n .breadcrumbs::before,\n .breadcrumbs::after {\n content: "";\n display: inline-block;\n width: var(--outer-margin);\n }\n\n .breadcrumbs > * {\n display: inline-block;\n font-size: var(--font-size-small);\n font-weight: 600;\n line-height: var(--line-height-small);\n margin: 0;\n padding: 0;\n }\n\n .breadcrumbs > *:not(:last-child)::after {\n content: "/";\n opacity: 0.5;\n padding-inline: 0.75em;\n }\n\n .breadcrumbs a {\n color: var(--link-color);\n text-decoration: none;\n }\n '])))]),customElements.get("cfa-breadcrumbs")||customElements.define("cfa-breadcrumbs",c)},227(n,e,t){var i;t.d(e,{V:()=>r});const r=(0,t(161).AH)(i||(o=['\n .cfa-button,\n a.cfa-button, \n .cfa-button > a,\n .wp-block-button > * {\n --bg-color: var(--white);\n --border-color: transparent;\n --font-family: var(--font-family-sans-serif);\n --font-size: var(--base-font-size);\n --hover-bg-color: var(--blue-20);\n --hover-border-color: var(--border-color);\n --line-height: var(--base-line-height);\n --text-color: var(--purple-80);\n\n background-color: var(--bg-color);\n border: var(--hairline) solid var(--border-color);\n border-radius: var(--rounded-corners);\n box-shadow: var(--shadow-small);\n color: var(--text-color);\n cursor: pointer;\n display: block;\n font-family: var(--font-family);\n font-size: var(--font-size);\n font-weight: bold;\n padding: var(--spacing-component-2) var(--spacing-component-3);\n text-align: center;\n text-decoration: none;\n transition: background-color 0.5s, box-shadow 0.5s;\n\n &:hover {\n background-color: var(--hover-bg-color);\n border-color: var(--hover-border-color);\n box-shadow: var(--shadow-medium);\n color: var(--text-color);\n }\n }\n\n @media (max-width: 768px) {\n .cfa-button, \n a.cfa-button, \n .cfa-button > a,\n .wp-block-button > * {\n width: 100%;\n \n & + & {\n margin-block-start: var(--spacing-layout-half);\n }\n }\n\n .wp-block-button {\n width: 100%;\n }\n }\n\n @media (min-width: 768px) {\n .cfa-button, \n a.cfa-button, \n .cfa-button > a,\n .wp-block-button > * {\n display: inline-block;\n\n & {\n margin-block: var(--spacing-component-2);\n margin-inline-end: var(--spacing-component-2);\n }\n }\n }\n\n // Themes / variants\n\n .cfa-button--primary,\n a.cfa-button--primary,\n .cfa-button--primary > a,\n .wp-block-button.is-style-primary > * {\n --bg-color: var(--red-60);\n --hover-bg-color: var(--red-80);\n --text-color: var(--white,);\n }\n\n .cfa-button--outline,\n a.cfa-button--outline,\n .cfa-button--outline > a,\n .wp-block-button.is-style-outline > * {\n --border-color: var(--black-20);\n --bg-color: transparent;\n }\n\n .cfa-button--outline-white,\n a.cfa-button--outline-white,\n .cfa-button--outline-white > a,\n .wp-block-button.is-style-outline-white > * {\n --border-color: var(--white);\n --bg-color: transparent;\n --hover-bg-color: var(--black-20);\n --shadow-color: var(--white-20);\n --text-color: var(--white);\n }\n\n .cfa-button--prominent-link,\n a.cfa-button--prominent-link,\n .cfa-button--prominent-link > a,\n .wp-block-button.is-style-prominent-link > * {\n --accent-color: var(--purple-60);\n\n background: unset;\n box-shadow: unset;\n color: inherit;\n font-weight: bold;\n padding: 0;\n text-decoration: underline;\n text-decoration-color: var(--accent-color);\n text-decoration-thickness: var(--medium);\n text-underline-offset: 0.4em;\n transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out; \n\n &:hover {\n --accent-color: var(--red-60);\n \n background: unset;\n box-shadow: unset;\n }\n\n &::after {\n @include icon.icon;\n \n content: "arrow_right_alt";\n display: inline-block;\n padding-inline-start: 0.1em;\n text-decoration: none;\n transition: transform 0.2s ease-in-out;\n width: 1em;\n }\n\n &:hover::after {\n transform: translateX(0.3em);\n }\n\n cfa-icon {\n text-decoration: none;\n }\n }\n\n // Sizes\n\n .cfa-button--sm,\n a.cfa-button--sm,\n .cfa-button--sm > a {\n --font-size: var(--font-size-small);\n --line-height: var(--line-height-small);\n }\n\n .cfa-button--md,\n a.cfa-button--md,\n .cfa-button--md > a {\n --font-size: var(--base-font-size);\n --line-height: var(--base-line-height);\n }\n'],a||(a=o.slice(0)),i=Object.freeze(Object.defineProperties(o,{raw:{value:Object.freeze(a)}}))));var o,a},547(n,e,t){var i,r,o,a,s,l=t(161),c=t(601);function h(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}t(562);class d extends l.WF{render(){return(0,l.qy)(i||(i=h(['\n <div class="callout">\n <div class="icon">\n <cfa-icon>info</cfa-icon>\n </div>\n <div class="text">\n <slot></slot>\n </div>\n </div>\n '])))}}o=d,a="styles",s=[c.s,(0,l.AH)(r||(r=h(["\n :host {\n --background: var(--white);\n --icon-color: var(--purple-80);\n --link-color: var(--base-link-color);\n --link-hover-color: var(--base-link-hover-color);\n --text-color: var(--black);\n\n display: block;\n }\n\n .callout {\n align-items: flex-start;\n background: var(--background);\n box-shadow: var(--shadow-medium);\n color: var(--text-color);\n display: flex;\n flex-direction: row;\n gap: var(--spacing-component-2);\n padding: var(--spacing-component-3);\n }\n\n .icon {\n color: var(--icon-color);\n flex-direction: column;\n flex-grow: 0;\n font-size: var(--font-size-h3);\n height: 100%;\n margin-block-start: -0.075em;\n margin-inline-end: var(--spacing-component-2);\n }\n\n .callout + .callout {\n margin-top: var(--spacing-layout-half);\n }\n "])))],(a=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(a))in o?Object.defineProperty(o,a,{value:s,enumerable:!0,configurable:!0,writable:!0}):o[a]=s,customElements.get("cfa-callout")||customElements.define("cfa-callout",d)},334(n,e,t){var i,r,o,a,s,l,c,h,d,u,p,v,f,g,m,b,y,w,x=t(161),k=t(601),P=t(205);function _(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function z(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}t(953);class A extends x.WF{visualTemplate(){let n;return"image"===this.visualType?n=(0,x.qy)(i||(i=_(['\n <div class="visual image">\n <div class="fallback-image">\n ',"\n </div>\n ","\n </div>\n "])),(0,x.JW)(r||(r=_(['\n <svg \n width="1600" \n height="900" \n viewBox="0 0 1600 900" \n fill="none" \n preserveAspectRatio="xMinYMin slice"\n xmlns="http://www.w3.org/2000/svg"\n >\n <g clip-path="url(#clip0)">\n <rect width="1600" height="900" fill="#2B1A78"/>\n <path fill-rule="evenodd" clip-rule="evenodd" d="M1218.12 -444.87C1375.54 -448.403 1528.96 -379.695 1624.93 -254.874C1718.97 -132.569 1729.75 28.0324 1697.74 178.942C1664.98 333.396 1596.67 491.622 1452.8 556.721C1311.8 620.52 1155.18 556.724 1017.04 486.944C883.26 419.362 752.204 329.485 715.393 184.213C677.697 35.4535 737.759 -117.225 833.568 -237.116C929.253 -356.852 1064.86 -441.431 1218.12 -444.87Z" fill="#5650BE"/>\n <path fill-rule="evenodd" clip-rule="evenodd" d="M372.893 247.378C457.708 243.989 548.299 262.758 600.503 329.652C652.21 395.908 640.741 485.984 623.238 568.169C605.287 652.459 579.269 741.096 503.945 783.041C424.143 827.479 324.366 822.072 243.48 779.638C165.755 738.862 118.175 659.045 102.906 572.65C88.5877 491.632 114.457 410.294 167.015 346.974C218.23 285.272 292.743 250.581 372.893 247.378Z" fill="#5650BE"/>\n </g>\n <defs>\n <clipPath id="clip0">\n <rect width="1600" height="900" fill="white"/>\n </clipPath>\n </defs>\n </svg>\n ']))),this.visualUrl?(0,x.qy)(o||(o=_(['\n <picture>\n <source srcset="','" />\n <img\n src="','"\n alt="','"\n loading="lazy"\n onerror="this.style.display=\'none\'"\n />\n </picture>\n '])),this.visualUrl,this.visualThumbnailUrl,this.visualAltText):x.s6):"logo"===this.visualType&&(n=(0,x.qy)(a||(a=_(['\n <div class="visual logo">\n <picture>\n <source srcset="','" />\n <img\n src="','"\n alt="','"\n loading="lazy"\n />\n </picture>\n </div>\n '])),this.visualUrl,this.visualThumbnailUrl,this.visualAltText)),n}cardContentTemplate(){return(0,x.qy)(s||(s=_(["\n ",'\n <div class="content">\n <div class="header">\n <div>\n ',"\n ","\n </div>\n ",'\n </div>\n <div class="body">\n ',"\n </div>\n ","\n </div>\n "])),this.visualTemplate(),this.eyebrow?(0,x.qy)(l||(l=_([' <div class="eyebrow">',"</div> "])),this.eyebrow):x.s6,this.title?(0,x.qy)(c||(c=_([' <div class="h3 title">',"</div> "])),this.title):x.s6,this.label?(0,x.qy)(h||(h=_(['\n <div>\n <cfa-label color="green">',"</cfa-label>\n </div>\n "])),this.label):x.s6,this.text?(0,x.qy)(d||(d=_([' <div class="small" .innerHTML=',"></div> "])),this.text):x.s6,this.metaText||this.actionLabel?(0,x.qy)(u||(u=_(['\n <div class="footer">\n ',"\n ","\n </div>\n "])),this.metaText?(0,x.qy)(p||(p=_(['\n <div\n class="meta-text small"\n .innerHTML=',"\n ></div>\n "])),this.metaText):x.s6,this.actionLabel?(0,x.qy)(v||(v=_([' <div class="action-label">',"</div> "])),this.actionLabel):x.s6):x.s6)}render(){return(0,x.qy)(f||(f=_(["\n ","\n "])),this.linkUrl?(0,x.qy)(g||(g=_(['\n <a\n href="','"\n target="','"\n rel="','"\n class="card ','"\n >\n ',"\n </a>\n "])),this.linkUrl,this.linkTarget,"_blank"==this.linkTarget?"noopener":x.s6,this.theme?"card--"+this.theme:"",this.cardContentTemplate()):(0,x.qy)(m||(m=_(['\n <div class="card ','">\n ',"\n </div>\n "])),this.theme?"card--"+this.theme:"",this.cardContentTemplate()))}}z(A,"properties",{theme:{},linkUrl:{},linkTarget:{},visualType:{},visualUrl:{},visualThumbnailUrl:{},visualAltText:{},eyebrow:{},label:{},title:{},text:{},metaText:{},actionLabel:{}}),z(A,"styles",[k.s,P.g,(0,x.AH)(y||(y=_(['\n :host {\n --action-border-color: var(--purple-20);\n --action-border-hover-color: var(--red-60);\n --action-text-color: var(--purple-60);\n --action-text-hover-color: var(--red-60);\n --bg-color: var(--white);\n --padding: var(--spacing-component-4);\n --text-color: var(--black);\n\n display: flex;\n flex-direction: column;\n margin-inline: auto;\n max-width: 100%;\n width: 100%;\n }\n\n .card,\n a.card {\n box-shadow: var(--shadow-small);\n border: var(--hairline) solid var(--gray-20);\n color: var(--text-color);\n display: flex;\n flex-direction: column;\n flex: 1;\n height: 100%;\n text-decoration: none;\n transition: 500ms;\n }\n\n a.card:hover {\n --action-color: var(--action-hover-color);\n\n box-shadow: var(--shadow-medium);\n }\n\n .content {\n background-color: var(--bg-color);\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n gap: var(--spacing-layout-half);\n padding: var(--padding);\n }\n\n .header {\n align-items: start;\n display: flex;\n flex-direction: column;\n gap: var(--spacing-layout-half);\n }\n\n .body {\n display: flex;\n flex-flow: column nowrap;\n flex-grow: 1;\n gap: var(--spacing-layout-half);\n height: 100%;\n text-align: var(--text-alignment, start);\n }\n\n .footer {\n display: flex;\n flex-direction: column;\n gap: var(--spacing-layout-half);\n }\n\n .eyebrow {\n color: var(--purple-60);\n }\n\n .eyebrow + * {\n margin-block-start: var(--spacing-component-2);\n }\n\n .meta-text {\n color: var(--gray-60);\n border-block-start: var(--hairline) solid var(--gray-40);\n padding-block-start: var(--spacing-component-2);\n }\n\n .card:has(.action-label) .meta-text {\n border-block-end: var(--hairline) solid var(--gray-40);\n padding-block-end: var(--spacing-component-2);\n }\n\n .action-label {\n align-self: flex-start;\n color: var(--action-text-color);\n display: inline-block;\n font-size: var(--font-size-small);\n font-weight: bold;\n }\n\n a:hover .action-label {\n color: var(--action-text-hover-color);\n }\n\n .action-label::after {\n background: linear-gradient(\n to top,\n var(--action-border-hover-color) 0% 50%,\n var(--action-border-color) 50% 100%\n );\n background-position: 0% 0%;\n background-size: 100% 200%;\n content: "";\n display: block;\n height: var(--spacing-component-2);\n transition: background-position 0.3s;\n }\n\n a:hover .action-label::after {\n background-position: 0% 100%;\n }\n\n .visual {\n box-sizing: border-box;\n display: flex;\n height: auto;\n height: var(--spacing-layout-7);\n position: relative;\n width: 100%;\n }\n\n img {\n height: 100%;\n object-fit: cover;\n width: 100%;\n }\n\n .fallback-image {\n background-color: var(--purple-80);\n position: absolute;\n inline-start: 0;\n block-start: 0;\n width: 100%;\n height: 100%;\n z-index: 0;\n }\n\n .fallback-image svg {\n height: 100%;\n width: 100%;\n }\n\n .visual picture {\n position: relative;\n z-index: 1;\n width: 100%;\n }\n\n .image::after {\n block-end: 0;\n block-start: 0;\n bottom: 0;\n box-shadow: inset 0 -50px 50px -50px var(--black-60);\n content: "";\n inline-end: 0;\n inline-start: 0;\n position: absolute;\n z-index: 2;\n }\n\n .logo {\n background-color: var(--white, #fff);\n box-sizing: border-box;\n border-block-end: 1px solid var(--gray-20);\n padding: var(--spacing-component-5);\n }\n\n .logo img {\n object-fit: contain;\n }\n '])))]);class E extends x.WF{render(){return(0,x.qy)(b||(b=_(['\n <div class="card-skeleton" role="status" aria-busy="true" aria-label="Loading card">\n <div class="visual-skeleton line" aria-hidden="true"></div>\n <div class="content">\n <div class="line line--eyebrow" aria-hidden="true"></div>\n <div class="line line--title" aria-hidden="true"></div>\n <div class="body" aria-hidden="true">\n <div class="line line--body"></div>\n <div class="line line--body line--body-short"></div>\n <div class="line line--action"></div>\n </div>\n </div>\n </div>\n '])))}}z(E,"styles",[k.s,P.g,(0,x.AH)(w||(w=_(['\n :host {\n display: flex;\n flex-direction: column;\n margin-inline: auto;\n max-width: 100%;\n width: 100%;\n }\n\n .card-skeleton {\n background-color: var(--white);\n border: var(--hairline) solid var(--gray-20);\n box-shadow: var(--shadow-small);\n color: var(--black);\n display: flex;\n flex: 1;\n flex-direction: column;\n height: 100%;\n }\n\n .visual-skeleton {\n background-color: var(--gray-20);\n height: var(--spacing-layout-7);\n overflow: hidden;\n position: relative;\n width: 100%;\n }\n\n .content {\n background-color: var(--white);\n display: flex;\n flex: 1;\n flex-direction: column;\n gap: var(--spacing-layout-half);\n padding: var(--spacing-component-4);\n }\n\n .body {\n display: flex;\n flex: 1;\n flex-direction: column;\n gap: var(--spacing-layout-half);\n }\n\n .line {\n background-color: var(--gray-20);\n border-radius: var(--spacing-component-1);\n display: block;\n overflow: hidden;\n position: relative;\n width: 100%;\n }\n\n .line::after {\n animation: shimmer 1.5s linear infinite;\n background: linear-gradient(\n 90deg,\n transparent 0%,\n var(--white-50, rgba(255, 255, 255, 0.45)) 50%,\n transparent 100%\n );\n content: "";\n inset: 0;\n position: absolute;\n transform: translateX(-100%);\n }\n\n .line--eyebrow {\n height: var(--line-height-small);\n max-width: 28%;\n }\n\n .line--title {\n height: var(--line-height-h3);\n max-width: 76%;\n }\n\n .line--body {\n height: var(--line-height);\n }\n\n .line--body-short {\n max-width: 86%;\n }\n\n .line--action {\n height: var(--line-height-small);\n margin-block-start: auto;\n max-width: 36%;\n }\n\n @keyframes shimmer {\n 100% {\n transform: translateX(100%);\n }\n }\n '])))]),customElements.get("cfa-card")||customElements.define("cfa-card",A),customElements.get("cfa-card-skeleton")||customElements.define("cfa-card-skeleton",E)},221(n,e,t){var i,r,o,a,s,l=t(161),c=t(601);function h(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function d(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}t(562);class u extends l.WF{constructor(){super(),this.currentPage=0,this.totalSlides=0,this.progressPercentage=0,this.isPaused=!0,this.prefersReducedMotion=window.matchMedia("(prefers-reduced-motion: reduce)").matches,this.itemsPerView=u.ITEMS_PER_VIEW_DESKTOP,this.autoPlay=!0,this.autoPlayDuration=Math.max(100,u.AUTOPLAY_DURATION),this.autoPlayTimer=null,this.autoPlayTimeout=null,this.touchStartX=null,this.touchEndX=null,this._initialized=!1,this._resizeTimerId=null,this._mouseEnterListener=null,this._mouseLeaveListener=null}connectedCallback(){super.connectedCallback();const n=this.getAttribute("items-per-view");if(null!==n){const e=parseInt(n,10);isNaN(e)||(this.itemsPerView=e)}this.style.setProperty("--items-per-view",this.itemsPerView),this.addEventListener("keydown",n=>this._handleKeydown(n)),this.addEventListener("touchstart",n=>this._handleTouchStart(n),!1),this.addEventListener("touchend",n=>this._handleTouchEnd(n),!1),this._resizeListener=()=>{this._resizeTimerId&&clearTimeout(this._resizeTimerId),this._resizeTimerId=setTimeout(()=>{this.updateItemsPerView(),this.updateCarouselHeight()},150)},window.addEventListener("resize",this._resizeListener)}disconnectedCallback(){var n;super.disconnectedCallback(),this.stopAutoPlay(),this._resizeListener&&window.removeEventListener("resize",this._resizeListener),this._resizeTimerId&&clearTimeout(this._resizeTimerId);const e=null===(n=this.shadowRoot)||void 0===n?void 0:n.querySelector(".carousel-slides");e&&this._mouseEnterListener&&this._mouseLeaveListener&&(e.removeEventListener("mouseenter",this._mouseEnterListener),e.removeEventListener("mouseleave",this._mouseLeaveListener))}updated(n){n.has("itemsPerView")&&this.style.setProperty("--items-per-view",this.itemsPerView),n.has("currentPage")&&this.updateItemVisibility()}firstUpdated(){const n=this.shadowRoot.querySelector("slot"),e=this.shadowRoot.querySelector(".carousel-slides");n&&!this._slotChangeSetup&&(this._slotChangeSetup=!0,n.addEventListener("slotchange",()=>{this._slotChangeTimeout&&clearTimeout(this._slotChangeTimeout),this._slotChangeTimeout=setTimeout(()=>{this._initialized||this._initializeCarousel()},50)})),e&&!this._mouseEnterListener&&(this._mouseEnterListener=()=>{this.stopAutoPlay()},this._mouseLeaveListener=()=>{this.isPaused||this._scheduleNextPage()},e.addEventListener("mouseenter",this._mouseEnterListener),e.addEventListener("mouseleave",this._mouseLeaveListener))}_initializeCarousel(){if(this._initialized)return;const n=this.shadowRoot.querySelector("slot");if(!n)return;const e=n.assignedElements();0!==e.length&&(this._initialized=!0,this.totalSlides=e.length,this.updateItemsPerView(),this.updateItemVisibility(),this.startAutoPlay(),this._waitForImages(e,5e3).then(()=>{this.updateCarouselHeight()}))}_waitForImages(n){let e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:3e3;return Promise.race([Promise.all(Array.from(n).map(n=>Promise.all(Array.from(n.querySelectorAll("img")).map(n=>n.complete?Promise.resolve():new Promise(e=>{n.addEventListener("load",e,{once:!0}),n.addEventListener("error",e,{once:!0})}))))),new Promise((n,t)=>setTimeout(()=>t(new Error("Image load timeout")),e))]).catch(()=>Promise.resolve())}get totalPages(){return Math.ceil(this.totalSlides/this.itemsPerView)}updateItemsPerView(){if(this.hasAttribute("items-per-view"))return;const n=window.innerWidth>=u.DESKTOP_BREAKPOINT?u.ITEMS_PER_VIEW_DESKTOP:u.ITEMS_PER_VIEW_MOBILE;n!==this.itemsPerView&&(this.itemsPerView=n,this.style.setProperty("--items-per-view",this.itemsPerView),this.currentPage>=this.totalPages&&(this.currentPage=0),this.requestUpdate())}updateItemVisibility(){const n=this.shadowRoot.querySelector("slot");if(!n)return;const e=n.assignedElements();if(0===e.length)return;const t=this.currentPage*this.itemsPerView,i=t+this.itemsPerView;e.forEach((n,e)=>{e>=t&&e<i?n.setAttribute("data-slide-active",""):n.removeAttribute("data-slide-active")}),this.updateCarouselHeight()}updateCarouselHeight(){const n=this.shadowRoot.querySelector("slot"),e=this.shadowRoot.querySelector(".carousel-slides");if(!n||!e)return;const t=n.assignedElements();if(0===t.length)return;const i=this.currentPage*this.itemsPerView,r=i+this.itemsPerView;requestAnimationFrame(()=>{requestAnimationFrame(()=>{setTimeout(()=>{let n=0;for(let e=i;e<r&&e<t.length;e++){const i=t[e].offsetHeight;n=Math.max(n,i)}const o=Math.max(n,u.SHADOW_SPACE);e.style.height=o+"px"},0)})})}startAutoPlay(){this.autoPlay&&!this.prefersReducedMotion&&0!==this.totalSlides?(this.isPaused=!1,this.progressPercentage=0,this._scheduleNextPage()):this.isPaused=!0}play(){this.prefersReducedMotion||this.startAutoPlay()}pause(){this.isPaused=!0,this.stopAutoPlay()}stopAutoPlay(){this.autoPlayTimer&&(clearInterval(this.autoPlayTimer),this.autoPlayTimer=null),this.autoPlayTimeout&&(clearTimeout(this.autoPlayTimeout),this.autoPlayTimeout=null)}_scheduleNextPage(){this.stopAutoPlay();const n=100/(this.autoPlayDuration/u.PROGRESS_UPDATE_INTERVAL);this.autoPlayTimer=setInterval(()=>{this.progressPercentage=Math.min(100,this.progressPercentage+n)},u.PROGRESS_UPDATE_INTERVAL),this.autoPlayTimeout=setTimeout(()=>{this.isPaused||(this.nextPage(),this.startAutoPlay())},this.autoPlayDuration)}nextPage(){this.currentPage=(this.currentPage+1)%this.totalPages,this.progressPercentage=0,this.stopAutoPlay(),this.requestUpdate(),this.play()}previousPage(){this.currentPage=(this.currentPage-1+this.totalPages)%this.totalPages,this.progressPercentage=0,this.stopAutoPlay(),this.requestUpdate(),this.play()}goToPage(n){n>=0&&n<this.totalPages&&n!==this.currentPage&&(this.currentPage=n,this.progressPercentage=0,this.stopAutoPlay(),this.requestUpdate(),this.play())}_handleKeydown(n){"ArrowRight"===n.key?(n.preventDefault(),this.nextPage(),this.pause()):"ArrowLeft"===n.key&&(n.preventDefault(),this.previousPage(),this.pause())}_handleTouchStart(n){n.changedTouches&&n.changedTouches.length>0&&(this.touchStartX=n.changedTouches[0].screenX)}_handleTouchEnd(n){n.changedTouches&&n.changedTouches.length>0&&(this.touchEndX=n.changedTouches[0].screenX,this._handleSwipe())}_handleSwipe(){if(null===this.touchStartX||null===this.touchEndX)return;const n=this.touchStartX-this.touchEndX;Math.abs(n)>u.SWIPE_THRESHOLD&&(n>0?(this.nextPage(),this.pause()):(this.previousPage(),this.pause()))}render(){return(0,l.qy)(i||(i=h(['\n <div\n class="carousel-container"\n role="region"\n aria-label="Content carousel"\n >\n <div class="carousel-slides">\n <div class="carousel-track">\n <slot @slotchange=',"></slot>\n </div>\n </div>\n\n ","\n </div>\n "])),()=>{if(!this._initialized){const n=this.shadowRoot.querySelector("slot");if(n){const e=n.assignedElements();this.totalSlides=e.length,this.updateItemVisibility(),this.requestUpdate()}}},this.totalSlides>0?(0,l.qy)(r||(r=h(['\n <div class="carousel-controls">\n <button\n class="carousel-button"\n @click=','\n aria-label="Previous page"\n >\n <cfa-icon>arrow_back</cfa-icon>\n </button>\n\n <div class="carousel-pagination">\n ','\n </div>\n\n <button\n class="carousel-button"\n @click=','\n aria-label="Next page"\n >\n <cfa-icon>arrow_forward</cfa-icon>\n </button>\n </div>\n '])),()=>this.previousPage(),Array.from({length:this.totalPages}).map((n,e)=>(0,l.qy)(o||(o=h(['\n <button\n class="carousel-dot"\n @click=','\n aria-label="Go to page '," of ",'"\n aria-current=',"\n >\n ","\n </button>\n "])),()=>this.goToPage(e),e+1,this.totalPages,e===this.currentPage?"true":"false",e!==this.currentPage||this.prefersReducedMotion?"":(0,l.qy)(a||(a=h(['<div\n class="carousel-dot-progress"\n style="width: ','%"\n ></div>'])),this.progressPercentage))),()=>this.nextPage()):"")}}d(u,"SWIPE_THRESHOLD",50),d(u,"SHADOW_SPACE",32),d(u,"PROGRESS_UPDATE_INTERVAL",100),d(u,"AUTOPLAY_DURATION",1e4),d(u,"DESKTOP_BREAKPOINT",768),d(u,"ITEMS_PER_VIEW_DESKTOP",3),d(u,"ITEMS_PER_VIEW_MOBILE",1),d(u,"properties",{currentPage:{type:Number,state:!0},totalSlides:{type:Number,state:!0},progressPercentage:{type:Number,state:!0},isPaused:{type:Boolean,state:!0},prefersReducedMotion:{type:Boolean,state:!0},itemsPerView:{type:Number},autoPlay:{type:Boolean},autoPlayDuration:{type:Number}}),d(u,"styles",[c.s,(0,l.AH)(s||(s=h(['\n :host {\n --carousel-fade-duration: 300ms;\n --carousel-control-size: var(--spacing-layout-2);\n --carousel-dot-size: var(--spacing-component-3);\n --carousel-dot-gap: var(--spacing-component-3);\n --carousel-dot-color: var(--black-20);\n --carousel-dot-active-color: var(--purple-60);\n --carousel-gap: var(--spacing-layout-1);\n }\n\n .carousel-container {\n display: flex;\n flex-direction: column;\n gap: var(--spacing-component-3);\n }\n\n .carousel-slides {\n width: 100%;\n overflow: hidden;\n transition: height 400ms ease-in-out;\n height: auto;\n }\n\n .carousel-track {\n display: flex;\n gap: var(--carousel-gap);\n }\n\n ::slotted(*) {\n flex: 0 0 calc((100% - (var(--items-per-view, 3) - 1) * var(--carousel-gap)) / var(--items-per-view, 3));\n display: none;\n opacity: 0;\n transition: opacity var(--carousel-fade-duration) ease-in-out;\n }\n\n ::slotted([data-slide-active]) {\n display: block;\n opacity: 1;\n }\n\n @media (prefers-reduced-motion: reduce) {\n .carousel-slides {\n transition: none;\n }\n \n ::slotted(*) {\n transition: none;\n }\n }\n\n .carousel-controls {\n display: flex;\n align-items: center;\n justify-content: center;\n gap: var(--spacing-component-3);\n }\n\n .carousel-button {\n background-color: transparent;\n border: 0;\n border-radius: 50%;\n color: var(--text-color);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n font-size: 1.5rem;\n height: var(--carousel-control-size);\n width: var(--carousel-control-size);\n transition: all 0.2s ease-in-out;\n flex-shrink: 0;\n }\n\n .carousel-button:hover {\n background-color: var(--purple-20);\n border-color: var(--purple-60);\n color: var(--purple-80);\n }\n\n .carousel-button:focus-visible {\n outline: var(--focus-outline);\n outline-offset: 2px;\n }\n\n .carousel-button cfa-icon {\n --size: var(--font-size);\n color: var(--purple-80);\n }\n\n .carousel-pagination {\n display: flex;\n align-items: center;\n gap: var(--carousel-dot-gap);\n flex-wrap: wrap;\n justify-content: center;\n }\n\n .carousel-dot {\n background-color: var(--carousel-dot-color);\n border: none;\n border-radius: 50%;\n cursor: pointer;\n height: var(--carousel-dot-size);\n min-width: var(--carousel-dot-size);\n padding: 0;\n position: relative;\n transition: all 0.3s ease-in-out;\n }\n\n .carousel-dot:hover {\n background-color: var(--gray-60);\n }\n\n .carousel-dot:focus-visible {\n outline: var(--focus-outline);\n outline-offset: 3px;\n }\n\n .carousel-dot[aria-current="true"] {\n background-color: var(--carousel-dot-color);\n border-radius: var(--carousel-dot-size);\n min-width: calc(var(--carousel-dot-size) * 4);\n overflow: hidden;\n }\n\n .carousel-dot-progress {\n background-color: var(--carousel-dot-active-color);\n height: 100%;\n width: 0%;\n transition: width 100ms linear;\n }\n\n @media (prefers-reduced-motion: reduce) {\n .carousel-dot-progress {\n transition: none;\n }\n }\n\n @media (max-width: 768px) {\n /* Note: 768px matches Carousel.DESKTOP_BREAKPOINT - keep in sync */\n .carousel-button {\n font-size: 1.25rem;\n height: calc(var(--carousel-control-size) * 0.85);\n width: calc(var(--carousel-control-size) * 0.85);\n }\n\n .carousel-dot {\n height: calc(var(--carousel-dot-size) * 0.8);\n min-width: calc(var(--carousel-dot-size) * 0.8);\n }\n }\n '])))]),customElements.get("cfa-carousel")||customElements.define("cfa-carousel",u)},562(n,e,t){var i,r,o,a,s,l=t(161),c=t(601);function h(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}class d extends l.WF{render(){return(0,l.qy)(i||(i=h(['\n <span class="icon">\n <slot></slot>\n </span>\n '])))}}o=d,a="styles",s=[c.s,(0,l.AH)(r||(r=h(['\n :host {\n --size: 1.2em;\n\n display: inline;\n line-height: inherit;\n }\n\n .icon {\n -webkit-font-feature-settings: "liga";\n direction: ltr;\n display: inline-block;\n font-family: "Material Symbols Rounded";\n font-size: var(--size);\n font-style: normal;\n font-weight: normal;\n letter-spacing: normal;\n margin-top: -0.1em;\n text-transform: none;\n vertical-align: middle;\n white-space: nowrap;\n word-wrap: normal;\n }\n '])))],(a=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(a))in o?Object.defineProperty(o,a,{value:s,enumerable:!0,configurable:!0,writable:!0}):o[a]=s,customElements.get("cfa-icon")||customElements.define("cfa-icon",d)},953(n,e,t){var i,r,o=t(161),a=t(601),s=t(205);function l(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function c(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}class h extends o.WF{render(){return(0,o.qy)(i||(i=l(['\n <div class="label small strong" color="','">\n <slot />\n </div>\n '])),this.color)}}c(h,"properties",{color:""}),c(h,"styles",[a.s,s.g,(0,o.AH)(r||(r=l(['\n .label {\n --background-color: var(--gray-20);\n --text-color: var(--black, #000);\n\n background-color: var(--background-color);\n color: var(--text-color);\n display: inline-block;\n line-height: 1em;\n padding: var(--spacing-component-2) var(--spacing-component-3);\n }\n\n .label[color="white"] {\n --background-color: var(--white, #fff);\n box-shadow: var(--shadow-small);\n }\n\n .label[color="purple"] {\n --background-color: var(--purple-20);\n }\n\n .label[color="red"] {\n --background-color: var(--red-20);\n }\n\n .label[color="blue"] {\n --background-color: var(--blue-20);\n }\n\n .label[color="green"] {\n --background-color: var(--green-20);\n }\n\n .label[color="yellow"] {\n --background-color: var(--yellow-20);\n }\n '])))]),customElements.get("cfa-label")||customElements.define("cfa-label",h)},152(n,e,t){var i,r,o,a,s,l,c=t(161),h=t(601),d=t(205);function u(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function p(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}class v extends c.WF{cardContentTemplate(){let n;return n=this.imageUrl?(0,c.qy)(i||(i=u([' <img src="','" alt="','" /> '])),this.imageUrl,this.name):(0,c.qy)(r||(r=u([" "," "])),this.name),n}render(){return(0,c.qy)(o||(o=u(["\n ","\n "])),this.linkUrl?(0,c.qy)(a||(a=u(['\n <a\n href="','"\n target="','"\n rel="','"\n class="card"\n >\n ',"\n </a>\n "])),this.linkUrl,this.linkTarget||"_self","_blank"==this.linkTarget?"noopener noreferrer":c.s6,this.cardContentTemplate()):(0,c.qy)(s||(s=u([' <div class="card">',"</div> "])),this.cardContentTemplate()))}}p(v,"properties",{name:{},imageUrl:{},linkUrl:{},linkTarget:{}}),p(v,"styles",[h.s,d.g,(0,c.AH)(l||(l=u(["\n :host {\n --bg-color: var(--blue-20);\n --text-color: var(--black);\n\n align-items: stretch;\n display: flex;\n flex-direction: row;\n }\n\n .card {\n align-items: center;\n background-color: var(--white);\n border: var(--hairline) solid var(--black-10);\n color: var(--text-color);\n display: flex;\n flex-direction: column;\n font-size: var(--font-size-h3);\n font-weight: bold;\n justify-content: center;\n line-height: var(--line-height-h4);\n margin-inline: auto;\n max-width: 100%;\n min-height: var(--spacing-layout-8);\n padding: var(--spacing-component-5);\n text-align: center;\n text-decoration: none;\n transition: box-shadow 1s;\n width: var(--column-span-4);\n }\n\n a.card {\n box-shadow: var(--shadow-small);\n color: var(--text-color);\n }\n\n a.card:hover {\n box-shadow: var(--shadow-medium);\n }\n\n img {\n aspect-ratio: 2 / 1;\n object-fit: contain;\n width: 100%;\n }\n "])))]),customElements.get("cfa-logo-card")||customElements.define("cfa-logo-card",v)},518(n,e,t){var i,r,o=t(161),a=t(601);function s(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function l(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}class c extends o.WF{handleSlotchange(n){const e=n.target.assignedNodes({flatten:!0}),t=this.shadowRoot.querySelector("ul");t.innerHTML="",e.forEach(n=>{"UL"===n.tagName&&n.querySelectorAll("li").forEach(n=>{t.appendChild(n.cloneNode(!0))})})}render(){return(0,o.qy)(i||(i=s(["\n <slot @slotchange=",'></slot>\n <nav data-font-size="','">\n <ul></ul>\n </nav>\n '])),this.handleSlotchange,this.fontSize)}}l(c,"properties",{fontSize:{}}),l(c,"styles",[a.s,(0,o.AH)(r||(r=s(['\n :host {\n --link-color: var(--purple-80);\n --link-hover-color: var(--purple-80);\n\n display: block;\n font-family: var(--font-family-sans-serif);\n }\n\n slot {\n display: none;\n }\n\n nav {\n font-size: var(--font-size);\n line-height: var(--line-height);\n }\n\n nav[data-font-size="small"] {\n font-size: var(--font-size-small);\n line-height: var(--line-height-small);\n }\n\n nav[data-font-size="large"] {\n font-size: var(--font-size-h3);\n line-height: var(--line-height-h3);\n }\n\n ul {\n display: flex;\n flex-direction: row;\n gap: var(--spacing-component-1);\n list-style: none;\n margin: 0;\n padding: 0;\n }\n\n li {\n flex-shrink: 0;\n margin: 0;\n padding: 0;\n }\n\n li.is-active a {\n box-shadow: inset 0 calc(-1 * var(--medium)) var(--link-hover-color);\n }\n\n a {\n box-shadow: 0;\n color: var(--link-color);\n display: block;\n font-weight: bold;\n padding: var(--spacing-component-2) var(--spacing-component-3);\n text-decoration: none;\n transition: box-shadow 0.25s ease-in-out;\n }\n\n a:hover {\n box-shadow: inset 0 calc(-1 * var(--medium)) var(--link-hover-color);\n }\n '])))]),customElements.get("cfa-nav")||customElements.define("cfa-nav",c)},280(n,e,t){var i,r,o=t(161),a=t(601);function s(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function l(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}class c extends o.WF{handleSlotchange(n){const e=n.target.assignedNodes({flatten:!0}),t=this.shadowRoot.querySelector("ul"),i=[];e.forEach(n=>{"UL"===n.tagName&&n.querySelectorAll("li").forEach(n=>{var e;t.appendChild(n.cloneNode(!0));const r=null===(e=n.querySelector("a"))||void 0===e?void 0:e.getAttribute("href");r&&r.startsWith("#")&&i.push(r.substring(1))})}),window.addEventListener("scroll",()=>this.updateActiveNav(i))}updateActiveNav(n){const e=window.scrollY;let t=null;if(n.forEach(n=>{const i=document.getElementById(n);i&&i.offsetTop<=e+256&&(t=n)}),this.shadowRoot.querySelectorAll("li a").forEach(n=>{n.classList.remove("is-active")}),t){const n=this.shadowRoot.querySelector('li a[href*="#'.concat(t,'"]'));n&&n.classList.add("is-active")}}render(){return(0,o.qy)(i||(i=s(["\n <slot @slotchange=","></slot>\n <nav>\n <ul>\n <li><strong>On this page:  </strong></li>\n </ul>\n </nav>\n "])),this.handleSlotchange)}}l(c,"properties",{fontSize:{}}),l(c,"styles",[a.s,(0,o.AH)(r||(r=s(["\n :host {\n --bg-color: var(--white);\n --link-color: var(--purple-80);\n --link-hover-color: var(--purple-80);\n\n background-color: var(--bg-color);\n display: block;\n padding-block: var(--spacing-layout-1);\n display: block;\n font-family: var(--font-family-sans-serif);\n font-size: var(--font-size-small);\n line-height: var(--font-size-small);\n }\n\n slot {\n display: none;\n }\n\n nav {\n }\n\n ul {\n display: flex;\n flex-direction: column;\n gap: var(--spacing-layout-half);\n margin: 0;\n padding: 0 var(--outer-margin);\n min-height: var(--spacing-layout-2);\n }\n\n li {\n display: block;\n }\n\n a {\n background-color: var(--purple-10);\n border-radius: var(--rounded-corners);\n color: var(--link-color);\n display: block;\n position: relative;\n padding: var(--spacing-layout-half);\n text-decoration: none;\n }\n\n a:hover {\n background-color: var(--blue-20);\n color: var(--link-hover-color);\n }\n\n a:active {\n background-color: var(--blue-40);\n color: var(--link-color);\n }\n\n @media (min-width: 768px) {\n :host {\n box-shadow: var(--shadow-small);\n padding-block: var(--spacing-component-2);\n position: sticky;\n top: 0;\n z-index: 3;\n }\n\n nav {\n align-items: center;\n display: flex;\n flex-direction: row;\n margin-inline: auto;\n max-width: var(--grid-max-width);\n overflow-x: auto;\n overflow-y: hidden;\n scrollbar-width: none;\n }\n\n ul {\n align-items: center;\n display: flex;\n flex-direction: row;\n gap: var(--spacing-component-2);\n }\n\n a,\n li {\n max-width: none;\n white-space: nowrap;\n }\n\n a.is-active {\n background-color: var(--blue-40);\n }\n }\n "])))]),customElements.get("cfa-page-nav")||customElements.define("cfa-page-nav",c)},696(n,e,t){var i,r,o,a,s=t(161),l=t(601),c=t(205),h=t(227);function d(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function u(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}t(562);class p extends s.WF{render(){return(0,s.qy)(i||(i=d(['\n <nav>\n <div class="next">\n ','\n </div>\n <div class="previous">\n ',"\n </div>\n </nav>\n "])),this.nextUrl?(0,s.qy)(r||(r=d(['\n <a href="','" class="cfa-button">\n <span class="small label"\n >Next <cfa-icon>arrow_forward</cfa-icon></span\n ><br />\n <span class="title normal">',"</span>\n </a>\n "])),this.nextUrl,this.nextTitle):"",this.previousUrl?(0,s.qy)(o||(o=d(['\n <a\n href="','"\n class="cfa-button cfa-button--outline"\n >\n <span class="small label"\n ><cfa-icon>arrow_back</cfa-icon> Previous</span\n ><br />\n <span class="title normal">',"</span>\n </a>\n "])),this.previousUrl,this.previousTitle):"")}}u(p,"properties",{previousTitle:{},previousUrl:{},nextTitle:{},nextUrl:{}}),u(p,"styles",[l.s,c.g,h.V,(0,s.AH)(a||(a=d(["\n :host {\n display: block;\n }\n\n * {\n box-sizing: border-box;\n text-wrap: comfortable;\n }\n\n nav {\n display: flex;\n flex-direction: column;\n column-gap: var(--gutter-width);\n row-gap: var(--spacing-layout-half);\n }\n\n nav > * > * {\n width: 100%;\n }\n\n @media (min-width: 768px) {\n nav {\n flex-direction: row-reverse;\n justify-content: space-between;\n }\n\n a {\n min-width: var(--column-span-4);\n }\n\n .next a {\n text-align: end;\n }\n\n .previous a {\n text-align: start;\n }\n }\n "])))]),customElements.get("cfa-pager")||customElements.define("cfa-pager",p)},663(n,e,t){var i,r,o,a,s=t(161),l=t(601),c=t(227);function h(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function d(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}t(562);class u extends s.WF{constructor(){super(),this.previousLabel="Previous",this.nextLabel="Next",this.page=1,this.totalPages=1}render(){return(0,s.qy)(i||(i=h(['\n <div class="pagination">\n <div class="previous">\n ','\n </div>\n <div class="status">Page '," of ",'</div>\n <div class="next">\n ',"\n </div>\n </div>\n "])),this.page>1?(0,s.qy)(r||(r=h(['\n <button class="cfa-button" @click="','">\n <cfa-icon>arrow_back</cfa-icon> ',"\n </button>\n "])),this.handlePreviousPage,this.previousLabel):"",this.page,this.totalPages,this.page<this.totalPages?(0,s.qy)(o||(o=h(['\n <button class="cfa-button" @click="','">\n '," <cfa-icon>arrow_forward</cfa-icon>\n </button>\n "])),this.handleNextPage,this.nextLabel):"")}handleNextPage(){if(this.page<this.totalPages){this.page++;const n=new CustomEvent("page-change",{bubbles:!0,cancelable:!0,detail:this.page});this.dispatchEvent(n)}}handlePreviousPage(){if(this.page>1){this.page--;const n=new CustomEvent("page-change",{bubbles:!0,cancelable:!0,detail:this.page});this.dispatchEvent(n)}}}d(u,"properties",{page:{type:Number},totalPages:{type:Number},previousLabel:{},nextLabel:{}}),d(u,"styles",[l.s,c.V,(0,s.AH)(a||(a=h(["\n :host {\n display: block;\n }\n\n .pagination {\n align-items: center;\n display: flex;\n flex-direction: row;\n gap: var(--gutter-width);\n justify-content: space-between;\n }\n\n .pagination > * {\n flex: 1;\n }\n\n .status {\n font-size: var(--font-size-small);\n line-height: var(-line-height-small);\n color: var(--gray-60);\n text-align: center;\n }\n\n @media (max-width: 768px) {\n .status {\n display: none;\n }\n }\n\n .previous {\n text-align: left;\n }\n\n .next {\n text-align: right;\n }\n "])))]),customElements.get("cfa-pagination")||customElements.define("cfa-pagination",u)},881(n,e,t){var i,r,o,a,s,l,c,h,d,u,p,v=t(161),f=t(601),g=t(205);function m(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function b(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}t(330),t(804);class y extends v.WF{render(){var n,e;return(0,v.qy)(i||(i=m(['\n <div class="card ','">\n \x3c!-- Link overlay pseudo-element so we can do nested links within the card --\x3e\n ','\n <div class="avatar">\n ','\n </div>\n <div class="details">\n <div>\n <div class="name h4">\n ',"\n </div>\n ",'\n </div>\n <div class="title small">\n ',"\n </div>\n ","\n </div>\n </div>\n "])),this.linkUrl?"has-link":"",this.linkUrl?(0,v.qy)(r||(r=m(['\n <a\n href="','"\n target="','"\n rel="','"\n class="link-overlay"\n tabindex="-1"\n >\n </a>\n '])),this.linkUrl,this.linkTarget||"_self","_blank"==this.linkTarget?"noopener":v.s6):"",this.linkUrl?(0,v.qy)(o||(o=m(['\n <a\n href="','"\n target="','"\n rel="','"\n >\n <cfa-avatar\n imageUrl="','"\n altText="Avatar photo of ','"\n size="3"\n >\n </cfa-avatar>\n </a>\n '])),this.linkUrl,this.linkTarget||"_self","_blank"==this.linkTarget?"noopener":v.s6,this.imageUrl,this.name):(0,v.qy)(a||(a=m(['\n <cfa-avatar\n imageUrl="','"\n altText="Avatar photo of ','"\n size="3"\n >\n </cfa-avatar>\n '])),this.imageUrl,this.name),this.linkUrl?(0,v.qy)(s||(s=m(['\n <a\n href="','"\n target="','"\n rel="','"\n >\n ',"\n </a>\n "])),this.linkUrl,this.linkTarget||"_self","_blank"==this.linkTarget?"noopener":v.s6,this.name.trim()):(0,v.qy)(l||(l=m([" "," "])),this.name.trim()),this.pronouns?(0,v.qy)(c||(c=m([' <span class="pronouns small">(',")</span> "])),this.pronouns):"",[null===(n=this.title)||void 0===n?void 0:n.trim(),null===(e=this.company)||void 0===e?void 0:e.trim()].filter(Boolean).join(", "),this.linkedInUrl||this.twitterHandle?(0,v.qy)(h||(h=m(['\n <div class="social">\n ',"\n ","\n </div>\n "])),this.linkedInUrl?(0,v.qy)(d||(d=m(['\n <a\n href="','"\n target="_blank"\n rel="noopener"\n title="View ','\'s profile on LinkedIn"\n >\n <cfa-social-icon icon="linkedin" />\n </a>\n '])),this.linkedInUrl,this.name):v.s6,this.twitterHandle?(0,v.qy)(u||(u=m(['\n <a\n href="https://twitter.com/','"\n target="_blank"\n rel="noopener"\n title="View ','\'s profile on X (Twitter)"\n >\n <cfa-social-icon icon="twitter" />\n </a>\n '])),this.twitterHandle,this.name):v.s6):v.s6)}}b(y,"properties",{name:{type:"string"},title:{type:"string"},company:{type:"string"},pronouns:{type:"string"},imageUrl:{type:"string"},imageAltText:{type:"string"},linkUrl:{type:"string"},linkedInUrl:{type:"string"},twitterHandle:{type:"string"}}),b(y,"styles",[f.s,g.g,(0,v.AH)(p||(p=m(['\n :host {\n display: block;\n }\n\n .card {\n border-radius: var(--rounded-corners);\n position: relative;\n display: flex;\n flex-direction: row;\n margin-inline: auto;\n max-width: 100%;\n text-align: start;\n width: var(--column-span-4);\n transform: translate(0, 0); // hack to ensure pseudo element is stacked above parent background\n }\n\n .card.has-link::before {\n border-radius: var(--rounded-corners);\n bottom: calc(-1 * var(--thick));\n content: "";\n height: calc(100% + 2 * var(--thick)));\n left: calc(-1 * var(--thick));\n position: absolute;\n right: calc(-1 * var(--thick));\n top: calc(-1 * var(--thick));\n width: calc(100% + 2 * var(--thick)));\n z-index: -1;\n transition: \n background-color 0.5s ease-in-out,\n box-shadow 0.5s ease-in-out;\n }\n\n .card.has-link:hover::before,\n .card.has-link:focus-visible::before {\n background-color: var(--white);\n box-shadow: var(--shadow-medium);\n }\n\n .card.has-link .name a {\n box-shadow: 0;\n color: var(--purple-80);\n transition: box-shadow 0.5s ease-in-out;\n }\n\n .card.has-link:hover .name a {\n box-shadow: inset 0 calc(-1 * var(--thick)) 0 0 var(--purple-20);\n }\n\n a {\n position: relative;\n text-decoration: none;\n z-index: 1;\n }\n\n a.link-overlay {\n position: static;\n }\n\n a.link-overlay::before {\n content: "";\n position: absolute;\n z-index: 0;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n }\n \n .avatar {\n flex-grow: 0;\n }\n\n .name {\n display: inline-block;\n }\n\n .pronouns {\n color: var(--purple-60);\n }\n \n .details {\n color: var(--black);\n flex-grow: 1;\n padding-block-start: var(--spacing-component-2);\n padding-inline-start: var(--spacing-component-2);\n }\n\n .social {\n font-size: 0.9rem;\n margin-block-start: var(--spacing-component-1);\n }\n \n .social a {\n align-items: center;\n border-radius: 10000px;\n color: var(--purple-80);\n display: inline-flex;\n height: var(--spacing-component-4);\n justify-content: center;\n margin: calc(-1 * var(--spacing-component-2));\n width: var(--spacing-component-4);\n }\n\n .social a:hover {\n background-color: var(--purple-20);\n }\n\n .social > a + a {\n margin-inline-start: var(--spacing-component-2);\n }\n '])))]),customElements.get("cfa-person-card")||customElements.define("cfa-person-card",y)},200(n,e,t){var i,r,o,a,s,l=t(161),c=t(601);function h(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}class d extends l.WF{render(){return(0,l.qy)(i||(i=h([" <slot /> "])))}}o=d,a="styles",s=[c.s,(0,l.AH)(r||(r=h(["\n :host {\n --bg-color: var(--gray-20);\n --text-color: var(--gray-80);\n\n background-color: var(--bg-color);\n border-radius: var(--spacing-component-3);\n color: var(--text-color);\n display: inline-block;\n font-size: var(--font-size-small);\n font-weight: bold;\n line-height: 1;\n margin-right: var(--spacing-component-1);\n padding: var(--spacing-component-1) var(--spacing-component-2);\n vertical-align: middle;\n }\n "])))],(a=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(a))in o?Object.defineProperty(o,a,{value:s,enumerable:!0,configurable:!0,writable:!0}):o[a]=s,customElements.get("cfa-pill")||customElements.define("cfa-pill",d)},884(n,e,t){var i,r,o,a,s,l=t(161),c=t(601),h=t(205);function d(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function u(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}t(562);class p extends l.WF{render(){return(0,l.qy)(i||(i=d(['\n <a\n href="','"\n target="','"\n class="promo\n "\n >\n ',"\n ","\n ","\n </a>\n "])),this.linkUrl||"javascript:void(0)",this.linkTarget||l.s6,this.heading?(0,l.qy)(r||(r=d([' <div class="h4 sans-serif">',"</div> "])),this.heading):l.s6,this.text?(0,l.qy)(o||(o=d([' <div class="small">',"</div> "])),this.text):l.s6,this.actionLabel?(0,l.qy)(a||(a=d(['\n <div class="action-label small strong">\n '," <cfa-icon>arrow_forward</cfa-icon>\n </div>\n "])),this.actionLabel):l.s6)}}u(p,"properties",{heading:{},text:{},actionLabel:{},linkUrl:{},linkTarget:{}}),u(p,"styles",[c.s,h.g,(0,l.AH)(s||(s=d(["\n :host {\n --bg-color: var(--blue-20);\n --padding: var(--spacing-component-4);\n --text-color: var(--black);\n --action-label-color: var(--purple-60);\n --action-label-hover-color: var(--red-60);\n\n display: block;\n }\n\n .promo,\n a.promo {\n background-color: var(--bg-color);\n box-shadow: var(--shadow-small);\n color: var(--text-color, #000);\n display: flex;\n flex-direction: column;\n gap: var(--spacing-layout-half);\n padding: var(--padding);\n text-align: center;\n text-decoration: none;\n transition: box-shadow 0.2s ease-in-out;\n }\n\n a.promo:hover {\n box-shadow: var(--shadow-medium);\n }\n\n .action-label {\n color: var(--action-label-color);\n }\n\n a.promo:hover .action-label {\n color: var(--action-label-hover-color);\n }\n "])))]),customElements.get("cfa-promo")||customElements.define("cfa-promo",p)},250(n,e,t){var i,r,o=t(161),a=t(601);function s(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function l(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}class c extends o.WF{render(){return(0,o.qy)(i||(i=s(["\n <blockquote>\n <slot />\n </blockquote>\n "])))}}l(c,"properties",{}),l(c,"styles",[a.s,(0,o.AH)(r||(r=s(["\n :host {\n --color: var(--purple-60);\n\n display: block;\n }\n blockquote {\n border-inline-start: var(--thick) solid var(--color);\n color: var(--color);\n font-size: var(--font-size-h3);\n font-weight: 600;\n line-height: var(--line-height-h3);\n margin: 0;\n padding: var(--spacing-layout-half) var(--spacing-layout-1);\n }\n p {\n margin: 0;\n }\n p + p {\n margin-block-start: var(--spacing-layout-half);\n }\n "])))]),customElements.get("cfa-pullquote")||customElements.define("cfa-pullquote",c)},771(n,e,t){var i,r,o=t(161),a=t(601);function s(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function l(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}class c extends o.WF{render(){return(0,o.qy)(i||(i=s(['\n <figure>\n <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 339.42 264.4" aria-hidden="true" shape-rendering="geometricPrecision">\n <path d="M91.69,126.5c-9.19,0-15.39,1-18.59,3,4.01-16,12.59-32.41,25.8-49.21h0c12.8-15.99,26.61-27.79,41.4-35.39h1.2l.61-1.21c3.19-1.2,4.79-4.2,4.79-9,0-3.2-1.39-6-4.21-8.4L104.9,2.29c-1.61-1.2-3.79-1.79-6.6-1.79l-4.2,1.2c-28.8,20.8-51.4,45.6-67.8,74.4C9.09,106.1.5,137.7.5,170.9c0,28.39,8.21,51.2,24.61,68.39,14.79,16.4,33.4,24.61,55.79,24.61,19.61,0,36.6-7.01,51-21,14-14.4,21-31.4,21-51s-6-34.8-18-46.8c-11.6-12.39-26-18.6-43.21-18.6Z"/>\n <path d="M276.52,126.5c-8.39,0-14.39,1-18,3,4.01-16,12.79-32.4,26.4-49.21,13.21-16,27-27.79,41.4-35.39l.6-1.21c4-1.2,6-4.2,6-9,0-2.8-1.39-5.61-4.21-8.4l-37.8-24c-2-1.2-4.21-1.79-6.6-1.79l-4.2,1.2h-.6c-29.21,20.8-52,45.61-68.39,74.4-17.21,30-25.8,61.6-25.8,94.8,0,28.39,8.21,51.2,24.6,68.39,15.6,16.4,34.61,24.61,57,24.61,19.61,0,36.6-7.01,51-21,14-14.4,21-31.4,21-51s-6-34.8-18-46.8c-11.6-12.39-26.4-18.6-44.4-18.6Z"/>\n </svg>\n <div class="content">\n <blockquote>\n <slot name="text" /><slot />\n </blockquote>\n <figcaption>\n <slot name="attribution" />\n </figcaption>\n </div>\n </figure>\n '])))}}l(c,"properties",{text:{},attribution:{}}),l(c,"styles",[a.s,(0,o.AH)(r||(r=s(['\n :host {\n --attribution-color: var(--purple-60);\n container-type: inline-size;\n display: block;\n width: 100%;\n }\n\n figure {\n margin: 0 auto;\n position: relative;\n width: 100%;\n }\n\n @container (min-width: 25rem) {\n figure {\n display: grid;\n grid-template-columns: 3rem 1fr;\n column-gap: var(--spacing-layout-1);\n grid-template-areas: \n "icon content";\n }\n\n svg {\n grid-area: icon;\n margin-block-end: 0;\n }\n\n .content {\n grid-area: content;\n }\n }\n\n blockquote {\n font-family: var(--font-family-serif);\n font-size: var(--font-size-h3);\n line-height: var(--line-height-h3);\n padding: 0;\n margin: 0;\n position: relative;\n }\n\n ::slotted(*) {\n display: inline;\n }\n\n figcaption {\n color: var(--attribution-color);\n font-size: var(--font-size-small);\n line-height: var(--line-height-small);\n font-weight: 600;\n margin-block-start: var(--spacing-layout-half);\n margin-inline: 0;\n position: relative;\n padding-inline-start: calc(var(--spacing-component-4) + var(--spacing-component-2));\n }\n\n figcaption::before {\n background-color: currentColor;\n content: "";\n display: block;\n position: absolute;\n left: 0;\n top: calc(var(--line-height-small) / 2 - var(--hairline) / 2);\n height: var(--hairline);\n width: var(--spacing-component-4);\n }\n\n svg {\n display: block;\n fill: var(--purple-60);\n height: calc(1.5 * var(--spacing-layout-1));\n margin-block-end: var(--spacing-layout-half);\n opacity: 0.5;\n width: auto;\n }\n '])))]),customElements.get("cfa-quote")||customElements.define("cfa-quote",c)},302(n,e,t){var i,r,o=t(161),a=t(601);function s(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function l(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}t(562);class c extends o.WF{constructor(){super(),this.showLabel="Show more",this.hideLabel="Show less",this.showIcon="expand_more",this.hideIcon="expand_less",this.expanded=!1}render(){return(0,o.qy)(i||(i=s(['\n <slot\n id="content"\n class="content ','"\n aria-labelledby="button"\n ?hidden="','"\n ></slot>\n <div class="controls">\n <button\n @click="','"\n aria-expanded="','"\n aria-controls="content"\n >\n ',"\n <cfa-icon>","</cfa-icon>\n </button>\n </div>\n "])),this.expanded?"is-expanded":"is-collapsed",!this.expanded,()=>this.expanded=!this.expanded,this.expanded,this.expanded?this.hideLabel:this.showLabel,this.expanded?this.hideIcon:this.showIcon)}}l(c,"properties",{showLabel:{type:String},hideLabel:{type:String},showIcon:{type:String},hideIcon:{type:String},expanded:{type:Boolean,reflect:!0}}),l(c,"styles",[a.s,(0,o.AH)(r||(r=s(["\n :host {\n --color: var(--purple-60);\n --hover-color: var(--red-60);\n --margin-top: var(--spacing-layout-half) !important;\n\n display: flex;\n flex-direction: column;\n row-gap: var(--spacing-between, 1rem);\n }\n\n :host([expanded]) {\n --margin-top: var(--spacing) !important;\n }\n\n button {\n background: transparent;\n border: none;\n color: var(--color);\n cursor: pointer;\n font: inherit;\n font-size: var(--font-size-small, 0.8rem);\n font-weight: bold;\n color: var(--)\n line-height: normal;\n margin: 0;\n overflow: visible;\n padding: 0;\n width: auto;\n }\n\n button:hover {\n color: var(--hover-color);\n }\n "])))]),customElements.get("cfa-reveal")||customElements.define("cfa-reveal",c)},638(n,e,t){var i,r,o,a=t(161),s=t(601);function l(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function c(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}class h extends a.WF{constructor(){super(),this.linkUrl="javascript:void(0);",this.linkTarget="_self"}render(){return(0,a.qy)(i||(i=l(['\n <a href="','" target="','" class="slide">\n <div class="image">\n ','\n </div>\n <div class="content">\n <slot></slot>\n </div>\n </a>\n '])),this.linkUrl,this.linkTarget,this.imageUrl?(0,a.qy)(r||(r=l(['\n <img\n src="','"\n alt="','"\n loading="lazy"\n onerror="this.style.display=\'none\'"\n />\n '])),this.imageUrl,this.imageAltText):"")}}c(h,"properties",{imageUrl:{},imageAltText:{},linkUrl:{},linkTarget:{}}),c(h,"styles",[s.s,(0,a.AH)(o||(o=l(['\n :host {\n --background: var(--white, #fff);\n --width: var(--column-span-12);\n }\n\n .slide {\n background: var(--background);\n filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));\n color: inherit;\n display: flex;\n flex-direction: column;\n height: 100%;\n justify-content: stretch;\n margin-inline: auto;\n max-width: var(--width);\n text-decoration: none;\n transition: filter 0.2s ease-in-out;\n width: 100%;\n }\n\n .slide:hover,\n .slide:focus {\n filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));\n }\n\n .image {\n background-image: url("https://codeforamerica.org/wp-content/themes/cfa-core/static/images/bg-placeholder-03.svg");\n background-position: center center;\n background-size: cover;\n height: var(--spacing-layout-9);\n position: relative;\n }\n\n .image::after {\n bottom: 0;\n box-shadow: inset 0 -50px 50px -50px var(--black-40);\n content: "";\n left: 0;\n position: absolute;\n right: 0;\n top: 0;\n z-index: 2;\n }\n\n .image img {\n height: 100%;\n object-fit: cover;\n width: 100%;\n }\n\n .content {\n box-sizing: border-box;\n display: flex;\n flex-direction: column;\n justify-content: center;\n padding: var(--spacing-component-4);\n }\n\n @media (min-width: 1024px) {\n .slide {\n flex-direction: row;\n min-height: calc(12 * var(--spacing-layout-1));\n }\n\n .slide > * {\n flex-basis: 50%;\n }\n\n .image {\n height: auto;\n }\n\n .image::after {\n box-shadow: inset -50px -50px 50px -50px var(--black-20);\n }\n }\n '])))]),customElements.get("cfa-slide")||customElements.define("cfa-slide",h)},804(n,e,t){var i,r,o,a,s,l,c,h,d,u,p,v,f,g,m,b,y=t(161),w=t(601);function x(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function k(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}class P extends y.WF{constructor(){super()}iconTemplate(n){switch(n){case"bluesky":return(0,y.qy)(i||(i=x(['\n <svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 568 501">\n <path class="st0" d="M123.1,33.7c65.1,48.9,135.2,148,160.9,201.2,25.7-53.2,95.8-152.3,160.9-201.2,47-35.3,123.1-62.6,123.1,24.3s-9.9,145.7-15.8,166.6c-20.3,72.5-94.2,90.9-159.9,79.7,114.9,19.6,144.1,84.3,81,149.1-119.9,123-172.3-30.9-185.7-70.3-2.5-7.2-3.6-10.6-3.6-7.7,0-2.9-1.2.5-3.6,7.7-13.4,39.4-65.8,193.3-185.7,70.3-63.1-64.8-33.9-129.5,81-149.1-65.7,11.2-139.6-7.3-159.9-79.7C9.9,203.7,0,75.3,0,57.9,0-28.9,76.1-1.6,123.1,33.7Z"/>\n </svg>\n '])));case"dropbox":return(0,y.qy)(r||(r=x(['\n <svg\n xmlns="http://www.w3.org/2000/svg"\n height="16"\n width="16.5"\n viewBox="0 0 528 512"\n >\n \x3c!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--\x3e\n <path\n d="M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z"\n />\n </svg>\n '])));case"facebook":return(0,y.qy)(o||(o=x(['\n <svg\n xmlns="http://www.w3.org/2000/svg"\n height="16"\n width="16"\n viewBox="0 0 512 512"\n >\n \x3c!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--\x3e\n <path\n d="M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256C0 376 82.7 476.8 194.2 504.5V334.2H141.4V256h52.8V222.3c0-87.1 39.4-127.5 125-127.5c16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1c-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H287V510.1C413.8 494.8 512 386.9 512 256h0z"\n />\n </svg>\n '])));case"github":return(0,y.qy)(a||(a=x(['\n <svg\n xmlns="http://www.w3.org/2000/svg"\n height="16"\n width="15.5"\n viewBox="0 0 496 512"\n >\n \x3c!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--\x3e\n <path\n d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3 .3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5 .3-6.2 2.3zm44.2-1.7c-2.9 .7-4.9 2.6-4.6 4.9 .3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3 .7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3 .3 2.9 2.3 3.9 1.6 1 3.6 .7 4.3-.7 .7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3 .7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3 .7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"\n />\n </svg>\n '])));case"google-drive":return(0,y.qy)(s||(s=x(['\n <svg\n xmlns="http://www.w3.org/2000/svg"\n height="16"\n width="16"\n viewBox="0 0 512 512"\n >\n \x3c!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--\x3e\n <path\n d="M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z"\n />\n </svg>\n '])));case"google":return(0,y.qy)(l||(l=x(['\n <svg\n xmlns="http://www.w3.org/2000/svg"\n height="16"\n width="15.25"\n viewBox="0 0 488 512"\n >\n \x3c!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--\x3e\n <path\n d="M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z"\n />\n </svg>\n '])));case"instagram":return(0,y.qy)(c||(c=x(['\n <svg\n xmlns="http://www.w3.org/2000/svg"\n height="16"\n width="14"\n viewBox="0 0 448 512"\n >\n \x3c!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--\x3e\n <path\n d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"\n />\n </svg>\n '])));case"linkedin":return(0,y.qy)(h||(h=x(['\n <svg\n xmlns="http://www.w3.org/2000/svg"\n height="16"\n width="14"\n viewBox="0 0 448 512"\n >\n \x3c!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--\x3e\n <path\n d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"\n />\n </svg>\n '])));case"reddit":return(0,y.qy)(d||(d=x(['\n <svg\n xmlns="http://www.w3.org/2000/svg"\n height="16"\n width="16"\n viewBox="0 0 512 512"\n >\n \x3c!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--\x3e\n <path\n d="M0 256C0 114.6 114.6 0 256 0S512 114.6 512 256s-114.6 256-256 256L37.1 512c-13.7 0-20.5-16.5-10.9-26.2L75 437C28.7 390.7 0 326.7 0 256zM349.6 153.6c23.6 0 42.7-19.1 42.7-42.7s-19.1-42.7-42.7-42.7c-20.6 0-37.8 14.6-41.8 34c-34.5 3.7-61.4 33-61.4 68.4l0 .2c-37.5 1.6-71.8 12.3-99 29.1c-10.1-7.8-22.8-12.5-36.5-12.5c-33 0-59.8 26.8-59.8 59.8c0 24 14.1 44.6 34.4 54.1c2 69.4 77.6 125.2 170.6 125.2s168.7-55.9 170.6-125.3c20.2-9.6 34.1-30.2 34.1-54c0-33-26.8-59.8-59.8-59.8c-13.7 0-26.3 4.6-36.4 12.4c-27.4-17-62.1-27.7-100-29.1l0-.2c0-25.4 18.9-46.5 43.4-49.9l0 0c4.4 18.8 21.3 32.8 41.5 32.8zM177.1 246.9c16.7 0 29.5 17.6 28.5 39.3s-13.5 29.6-30.3 29.6s-31.4-8.8-30.4-30.5s15.4-38.3 32.1-38.3zm190.1 38.3c1 21.7-13.7 30.5-30.4 30.5s-29.3-7.9-30.3-29.6c-1-21.7 11.8-39.3 28.5-39.3s31.2 16.6 32.1 38.3zm-48.1 56.7c-10.3 24.6-34.6 41.9-63 41.9s-52.7-17.3-63-41.9c-1.2-2.9 .8-6.2 3.9-6.5c18.4-1.9 38.3-2.9 59.1-2.9s40.7 1 59.1 2.9c3.1 .3 5.1 3.6 3.9 6.5z"\n />\n </svg>\n '])));case"soundcloud":return(0,y.qy)(u||(u=x(['\n <svg\n xmlns="http://www.w3.org/2000/svg"\n height="16"\n width="20"\n viewBox="0 0 640 512"\n >\n \x3c!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--\x3e\n <path\n d="M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2 .8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1 .6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7 .6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3 .1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z"\n />\n </svg>\n '])));case"threads":return(0,y.qy)(p||(p=x(['\n <svg\n xmlns="http://www.w3.org/2000/svg"\n height="16"\n width="14"\n viewBox="0 0 448 512"\n >\n \x3c!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--\x3e\n <path\n d="M331.5 235.7c2.2 .9 4.2 1.9 6.3 2.8c29.2 14.1 50.6 35.2 61.8 61.4c15.7 36.5 17.2 95.8-30.3 143.2c-36.2 36.2-80.3 52.5-142.6 53h-.3c-70.2-.5-124.1-24.1-160.4-70.2c-32.3-41-48.9-98.1-49.5-169.6V256v-.2C17 184.3 33.6 127.2 65.9 86.2C102.2 40.1 156.2 16.5 226.4 16h.3c70.3 .5 124.9 24 162.3 69.9c18.4 22.7 32 50 40.6 81.7l-40.4 10.8c-7.1-25.8-17.8-47.8-32.2-65.4c-29.2-35.8-73-54.2-130.5-54.6c-57 .5-100.1 18.8-128.2 54.4C72.1 146.1 58.5 194.3 58 256c.5 61.7 14.1 109.9 40.3 143.3c28 35.6 71.2 53.9 128.2 54.4c51.4-.4 85.4-12.6 113.7-40.9c32.3-32.2 31.7-71.8 21.4-95.9c-6.1-14.2-17.1-26-31.9-34.9c-3.7 26.9-11.8 48.3-24.7 64.8c-17.1 21.8-41.4 33.6-72.7 35.3c-23.6 1.3-46.3-4.4-63.9-16c-20.8-13.8-33-34.8-34.3-59.3c-2.5-48.3 35.7-83 95.2-86.4c21.1-1.2 40.9-.3 59.2 2.8c-2.4-14.8-7.3-26.6-14.6-35.2c-10-11.7-25.6-17.7-46.2-17.8H227c-16.6 0-39 4.6-53.3 26.3l-34.4-23.6c19.2-29.1 50.3-45.1 87.8-45.1h.8c62.6 .4 99.9 39.5 103.7 107.7l-.2 .2zm-156 68.8c1.3 25.1 28.4 36.8 54.6 35.3c25.6-1.4 54.6-11.4 59.5-73.2c-13.2-2.9-27.8-4.4-43.4-4.4c-4.8 0-9.6 .1-14.4 .4c-42.9 2.4-57.2 23.2-56.2 41.8l-.1 .1z"\n />\n </svg>\n '])));case"twitter":return(0,y.qy)(v||(v=x(['\n <svg\n xmlns="http://www.w3.org/2000/svg"\n height="16"\n width="16"\n viewBox="0 0 512 512"\n >\n \x3c!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--\x3e\n <path\n d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"\n />\n </svg>\n '])));case"wikipedia":return(0,y.qy)(f||(f=x(['\n <svg\n xmlns="http://www.w3.org/2000/svg"\n height="16"\n width="20"\n viewBox="0 0 640 512"\n >\n \x3c!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--\x3e\n <path\n d="M640 51.2l-.3 12.2c-28.1 .8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3 .3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4 .2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5 .3v13.1c-19.4 .6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4 .3-3.6 0-10.3 .3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5 .8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1 .2 .5z"\n />\n </svg>\n '])));case"youtube":return(0,y.qy)(g||(g=x(['\n <svg\n xmlns="http://www.w3.org/2000/svg"\n height="16"\n width="18"\n viewBox="0 0 576 512"\n >\n \x3c!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--\x3e\n <path\n d="M549.7 124.1c-6.3-23.7-24.8-42.3-48.3-48.6C458.8 64 288 64 288 64S117.2 64 74.6 75.5c-23.5 6.3-42 24.9-48.3 48.6-11.4 42.9-11.4 132.3-11.4 132.3s0 89.4 11.4 132.3c6.3 23.7 24.8 41.5 48.3 47.8C117.2 448 288 448 288 448s170.8 0 213.4-11.5c23.5-6.3 42-24.2 48.3-47.8 11.4-42.9 11.4-132.3 11.4-132.3s0-89.4-11.4-132.3zm-317.5 213.5V175.2l142.7 81.2-142.7 81.2z"\n />\n </svg>\n '])));default:return""}}render(){return(0,y.qy)(m||(m=x(['\n <span class="social-icon ','" aria-hidden="true">\n ',"\n </span>\n "])),this.icon,this.iconTemplate(this.icon))}}k(P,"properties",{icon:""}),k(P,"styles",[w.s,(0,y.AH)(b||(b=x(["\n .social-icon {\n -moz-osx-font-smoothing: grayscale;\n -webkit-font-smoothing: antialiased;\n }\n\n svg {\n fill: currentColor;\n height: 1em;\n vertical-align: -0.125em;\n width: 1em;\n }\n "])))]),customElements.get("cfa-social-icon")||customElements.define("cfa-social-icon",P)},301(n,e,t){var i,r,o=t(161),a=t(601),s=t(205);function l(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function c(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}class h extends o.WF{constructor(){super(),this.animated=!0}firstUpdated(){const n=this.shadowRoot.querySelector(".stat");new IntersectionObserver(n=>{n.forEach(n=>{n.isIntersecting&&n.target.classList.add("is-visible")})},{rootMargin:"0px 0px -20% 0px"}).observe(n)}render(){return(0,o.qy)(i||(i=l(['\n <div class="stat ','">\n <div class="above-label strong">','</div>\n <div class="figure display-2">\n <span>','</span>\n </div>\n <div class="below-label strong">',"</div>\n </div>\n "])),this.animated?"is-animated":"",this.beforeLabel,this.figure,this.afterLabel)}}c(h,"properties",{beforeLabel:{},figure:{},afterLabel:{},animated:{}}),c(h,"styles",[a.s,s.g,(0,o.AH)(r||(r=l(["\n :host {\n --text-color: var(--text-dark);\n --highlight-color: var(--purple-20);\n --highlight-thickness: var(--spacing-layout-half);\n\n align-self: center;\n display: block;\n margin-inline: auto;\n }\n .stat {\n align-items: center;\n color: var(--text-color);\n display: flex;\n flex-direction: column;\n text-align: center;\n }\n .figure {\n min-width: var(--spacing-layout-3);\n padding-inline: var(--spacing-component-2);\n }\n .figure > span {\n background-image: linear-gradient(\n var(--highlight-color),\n var(--highlight-color)\n );\n background-size: 100% var(--highlight-thickness);\n background-position: bottom 0.15em left;\n background-repeat: no-repeat;\n padding-inline: 0.25em;\n }\n /* Animation */\n @media (prefers-reduced-motion: no-preference) {\n .stat.is-animated .figure > span {\n background-size: 0% var(--highlight-thickness);\n transition: background-size 1s ease;\n }\n .stat.is-animated.is-visible .figure > span {\n background-size: 100% var(--highlight-thickness);\n }\n }\n "])))]),customElements.get("cfa-stat")||customElements.define("cfa-stat",h)},682(n,e,t){var i,r,o=t(161),a=t(601),s=t(227);function l(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function c(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}t(36);class h extends o.WF{constructor(){super()}firstUpdated(){this.addEventListener("click",this._onTabClick),this.setAttribute("role","tablist"),this._setInitialAriaAttributes()}_setInitialAriaAttributes(){this.querySelectorAll("cfa-tab").forEach((n,e)=>{n.setAttribute("role","tab"),n.setAttribute("aria-selected","false"),n.setAttribute("tabindex","-1"),0===e&&(n.setAttribute("aria-selected","true"),n.setAttribute("tabindex","0"))})}_onTabClick(n){const e=n.target.closest("cfa-tab");e&&this._setActiveTab(e)}_setActiveTab(n){this.querySelectorAll("cfa-tab").forEach(n=>{n.removeAttribute("active"),n.setAttribute("aria-selected","false"),n.setAttribute("tabindex","-1")}),n.setAttribute("active",""),n.setAttribute("aria-selected","true"),n.setAttribute("tabindex","0");let e=n.id;e&&e.startsWith("tab-")&&(e=e.substring(4)),console.log("Tab changed event dispatched with ID:",e),this.dispatchEvent(new CustomEvent("tab-changed",{detail:{id:e},bubbles:!0,composed:!0}))}render(){return(0,o.qy)(i||(i=l(['\n <div class="tab-list" role="tablist">\n <slot></slot>\n </div>\n '])))}}c(h,"properties",{}),c(h,"styles",[a.s,s.V,(0,o.AH)(r||(r=l(['\n :host {\n display: block;\n width: calc(100% + var(--outer-margin));\n }\n\n .tab-list {\n display: flex;\n flex-direction: row;\n line-height: 1;\n margin-inline-start: calc(-1 * var(--outer-margin));\n overflow-x: auto;\n overflow-y: hidden;\n scrollbar-width: none;\n white-space: nowrap;\n }\n\n .tab-list::before {\n content: "";\n min-width: var(--outer-margin);\n }\n\n .tab-list::after {\n border-bottom: var(--hairline) solid var(--gray-40);\n content: "";\n flex-grow: 1;\n margin-right: var(--outer-margin);\n }\n\n ::slotted(*) {\n max-width: none !important;\n white-space: nowrap !important;\n }\n '])))]),customElements.get("cfa-tab-list")||customElements.define("cfa-tab-list",h)},36(n,e,t){var i,r,o=t(161),a=t(601),s=t(205);function l(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function c(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}class h extends o.WF{constructor(){super(),this.active=!1,this.panelId=""}firstUpdated(){this.addEventListener("keydown",this._onKeyDown)}_onKeyDown(n){const e=Array.from(this.parentElement.querySelectorAll("cfa-tab")),t=e.indexOf(this);let i;switch(n.key){case"ArrowLeft":i=(t-1+e.length)%e.length,e[i].shadowRoot.querySelector("button").focus();break;case"ArrowRight":i=(t+1)%e.length,e[i].shadowRoot.querySelector("button").focus();break;case"Home":e[0].shadowRoot.querySelector("button").focus();break;case"End":e[e.length-1].shadowRoot.querySelector("button").focus()}}render(){return(0,o.qy)(i||(i=l(['\n <button\n role="tab"\n aria-selected="','"\n aria-controls="','"\n class="','"\n tabindex="','"\n >\n <slot></slot>\n </button>\n '])),this.active?"true":"false",this.panelId,this.active?"active":"",this.active?"0":"-1")}}c(h,"properties",{active:{type:Boolean},panelId:{type:String}}),c(h,"styles",[a.s,s.g,(0,o.AH)(r||(r=l(["\n button {\n background: none;\n border: 0;\n box-shadow: inset 0 calc(-1 * var(--hairline)) 0 0 var(--gray-40);\n color: var(--gray-80);\n cursor: pointer;\n font-family: var(--font-family-sans-serif);\n font-size: var(--font-size-small);\n font-weight: normal;\n padding: var(--spacing-component-2) var(--spacing-component-3)\n calc(var(--spacing-component-2) + var(--medium));\n }\n button:focus {\n background-color: var(--focus-color);\n outline: none;\n }\n button:not(.active):hover {\n box-shadow: inset 0 calc(-1 * var(--medium)) 0 0 var(--purple-40);\n color: var(--black);\n }\n button.active {\n box-shadow: inset 0 calc(-1 * var(--medium)) 0 0 var(--purple-60);\n color: var(--black);\n font-weight: bold;\n }\n "])))]),customElements.get("cfa-tab")||customElements.define("cfa-tab",h)},867(n,e,t){var i,r,o,a,s,l,c,h,d=t(161),u=t(601),p=t(205);function v(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}function f(n,e,t){return(e=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t,n}t(544),t(562);class g extends d.WF{tileContentTemplate(){return(0,d.qy)(i||(i=v(["\n ",'\n\n <div class="title h3">',"</div>\n\n \x3c!-- Description --\x3e\n ","\n\n \x3c!-- Action label --\x3e\n ","\n "])),this.imageUrl?(0,d.qy)(r||(r=v(['\n <picture>\n <cfa-blob></cfa-blob>\n <img\n src="','"\n alt="','"\n load="lazy"\n />\n </picture>\n '])),this.imageUrl,this.imageAltText):d.s6,this.title,this.description?(0,d.qy)(o||(o=v([' <p class="small">',"</p> "])),this.description):d.s6,this.actionLabel?(0,d.qy)(a||(a=v(['\n <div class="label small strong">\n '," <cfa-icon>arrow_forward</cfa-icon>\n </div>\n "])),this.actionLabel):d.s6)}render(){return(0,d.qy)(s||(s=v(["\n <style>\n cfa-blob {\n --color: var(--blob-color);\n }\n </style>\n ","\n "])),this.linkUrl?(0,d.qy)(l||(l=v(['\n <a\n href="','"\n target="','"\n rel="','"\n class="tile"\n >\n ',"\n </a>\n "])),this.linkUrl,this.linkTarget,"_blank"==this.linkTarget?"noopener":d.s6,this.tileContentTemplate()):(0,d.qy)(c||(c=v([' <div class="tile">',"</div> "])),this.tileContentTemplate()))}}f(g,"properties",{title:{type:String},description:{type:String},actionLabel:{type:String},linkUrl:{type:String},linkTarget:{type:String},imageUrl:{type:String},imageThumbnailUrl:{type:String},imageAltText:{type:String}}),f(g,"styles",[u.s,p.g,(0,d.AH)(h||(h=v(["\n :host {\n --bg-color: var(--white);\n --title-color: var(--purple-60);\n --text-color: var(--black);\n --action-label-color: var(--purple-80);\n --action-label-hover-highlight: var(--purple-20);\n --blob-color: var(--purple-20);\n\n align-items: stretch;\n display: flex;\n text-align: center;\n width: 100%;\n }\n\n .tile {\n background-color: var(--bg-color);\n border-radius: var(--spacing-component-2);\n border: var(--hairline) solid var(--black-20);\n color: var(--text-color);\n display: flex;\n flex-direction: column;\n padding: var(--spacing-component-4);\n text-decoration: none;\n transition:\n box-shadow 0.5s ease-in-out,\n border-color 0.5s ease-in-out;\n width: 100%;\n }\n\n a.tile:hover {\n box-shadow: var(--shadow-medium);\n border-color: rgba(0, 0, 0, 0);\n }\n\n picture {\n display: grid;\n place-items: center;\n padding-block-end: var(--spacing-layout-1);\n }\n\n picture > * {\n height: var(--spacing-layout-4);\n grid-area: 1 / 1;\n }\n\n cfa-blob {\n transition: scale 0.5s ease-in-out;\n }\n\n a.tile:hover cfa-blob {\n scale: 1.2;\n }\n\n img {\n object-fit: contain;\n z-index: 2;\n }\n\n .title {\n color: var(--title-color);\n }\n\n .label {\n color: var(--action-label-color);\n display: inline-block;\n margin-block-start: auto;\n padding-block-start: var(--spacing-layout-half);\n }\n "])))]),customElements.get("cfa-tile")||customElements.define("cfa-tile",g)},685(n,e,t){var i,r,o,a,s,l=t(161),c=t(601),h=t(205);function d(n,e){return e||(e=n.slice(0)),Object.freeze(Object.defineProperties(n,{raw:{value:Object.freeze(e)}}))}class u extends l.WF{render(){return(0,l.qy)(i||(i=d(['\n <div class="label eyebrow-with-line">Transcript</div>\n <div class="text small">\n <slot />\n </div>\n '])))}}o=u,a="styles",s=[c.s,h.g,(0,l.AH)(r||(r=d(["\n :host {\n --label-color: var(--purple-60);\n\n display: block;\n max-width: var(--column-span-8);\n }\n\n .label {\n --text-color: var(--label-color);\n }\n\n .text {\n background-color: var(--white);\n border: var(--hairline) solid var(--black-20);\n color: var(--black);\n height: calc(12 * var(--spacing-layout-1));\n overflow: auto;\n padding: var(--spacing-component-3);\n }\n "])))],(a=function(n){var e=function(n){if("object"!=typeof n||!n)return n;var e=n[Symbol.toPrimitive];if(void 0!==e){var t=e.call(n,"string");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(n)}(n);return"symbol"==typeof e?e:e+""}(a))in o?Object.defineProperty(o,a,{value:s,enumerable:!0,configurable:!0,writable:!0}):o[a]=s,customElements.get("cfa-transcript")||customElements.define("cfa-transcript",u)},601(n,e,t){var i;t.d(e,{s:()=>r});const r=(0,t(161).AH)(i||(o=["\n *:focus-visible,\n *:target {\n outline: var(--focus-outline);\n position: relative;\n }\n\n // RESET\n\n // Use a more-intuitive box-sizing model.\n *, *::before, *::after {\n box-sizing: border-box;\n }\n\n // Remove default margin\n * {\n margin: 0;\n }\n\n // Set default text-wrap of 'pretty'\n * {\n text-wrap: pretty;\n }\n\n // Wrap overly long words\n * {\n overflow-wrap: break-word;\n text-overflow: ellipsis;\n word-break: break-word;\n }\n\n // Fix Safari antialiasing for variable fonts\n * {\n font-synthesis: none !important;\n }\n\n // Improve text rendering\n body {\n -webkit-font-smoothing: antialiased;\n }\n\n // Reasonable media defaults\n img, picture, video, canvas, svg {\n display: block;\n height: auto;\n max-width: 100%;\n }\n\n // Remove built-in form typography styles\n input, button, textarea, select {\n font: inherit;\n }\n\n // Avoid text overflows\n p, h1, h2, h3, h4, h5, h6 {\n overflow-wrap: break-word;\n }\n\n // Create a root stacking context\n #root, #__next {\n isolation: isolate;\n }\n"],a||(a=o.slice(0)),i=Object.freeze(Object.defineProperties(o,{raw:{value:Object.freeze(a)}}))));var o,a},205(n,e,t){var i;t.d(e,{g:()=>r});const r=(0,t(161).AH)(i||(o=['\n // =====\n\n // Typography spacing\n\n // Add a single space around paragraphs, blockquotes, and lists\n p, ul, ol, blockquote {\n & + * {\n margin-block-start: var(--spacing, var(--spacing-layout-1, 1.5rem));\n }\n * + & {\n margin-block-start: var(--spacing, var(--spacing-layout-1, 1.5rem));\n }\n }\n\n h1, h2, h3, h4, .h1, .h2, .h3, .h4, .display-1, .display-2 {\n // Add a single line space after headings\n & + * {\n margin-block-start: var(--spacing, var(--spacing-layout-1, 1.5rem));\n }\n\n // Add two line spaces before headings\n * + & {\n --spacing: var(--spacing-layout-2);\n\n margin-block-start: --spacing;\n }\n\n // Only add a single space between headings and other headings\n & + & {\n --spacing: var(--spacing-layout-1);\n }\n\n // Reduce space after breadcrumbs and eyebrows\n cfa-breadcrumbs + & {\n margin-block-start: var(--spacing-layout-half) !important;\n }\n\n .eyebrow + & {\n margin-block-start: 0 !important;\n }\n }\n\n h1, .h1, .display-1, .display-2 {\n text-wrap: balance;\n }\n\n // =====\n\n // Font styles\n\n .regular {\n font-family: var(--font-family-base);\n font-size: var(--font-size);\n line-height: var(--line-height);\n }\n\n .display-1 {\n font-family: var(--font-family-heading);\n font-size: var(--font-size-display-1);\n font-weight: bold;\n line-height: var(--line-height-display-1);\n letter-spacing: var(--letter-spacing-display-1);\n }\n\n .display-2 {\n font-family: var(--font-family-heading);\n font-size: var(--font-size-display-2);\n font-weight: bold;\n line-height: var(--line-height-display-2);\n letter-spacing: var(--letter-spacing-display-2);\n }\n\n h1, \n .h1 {\n font-family: var(--font-family-heading);\n font-size: var(--font-size-h1);\n font-weight: bold;\n line-height: var(--line-height-h1);\n letter-spacing: var(--letter-spacing-h1);\n }\n\n h2, \n .h2 {\n font-family: var(--font-family-heading);\n font-size: var(--font-size-h2);\n font-weight: bold;\n line-height: var(--line-height-h2);\n letter-spacing: var(--letter-spacing-h2);\n }\n\n h3, \n .h3 {\n font-family: var(--font-family-heading);\n font-size: var(--font-size-h3);\n font-weight: bold;\n line-height: var(--line-height-h3);\n letter-spacing: var(--letter-spacing-h3);\n }\n\n h4, \n .h4 {\n font-family: var(--font-family-heading);\n font-size: var(--font-size-h4);\n font-weight: bold;\n line-height: var(--line-height-h4);\n letter-spacing: var(--letter-spacing-h4);\n }\n\n .extra-large {\n font-size: var(--font-size-extra-large);\n line-height: var(--line-height-extra-large);\n letter-spacing: var(--letter-spacing-extra-large);\n }\n\n .large {\n font-size: var(--font-size-large);\n line-height: var(--line-height-large);\n letter-spacing: var(--letter-spacing-large);\n }\n\n .small {\n font-size: var(--font-size-small);\n line-height: var(--line-height-small);\n letter-spacing: var(--letter-spacing-small);\n }\n\n .eyebrow {\n font-family: var(--font-family-sans-serif);\n font-size: var(--font-size-eyebrow);\n font-weight: var(--font-weight-eyebrow);\n letter-spacing: var(--letter-spacing-eyebrow);\n line-height: var(--line-height-eyebrow);\n text-transform: uppercase;\n }\n\n .eyebrow-with-line {\n align-items: center;\n color: var(--text-color);\n display: flex;\n font-family: var(--font-family-eyebrow);\n font-size: var(--font-size-eyebrow);\n font-weight: var(--font-weight-eyebrow);\n letter-spacing: var(--letter-spacing-eyebrow);\n line-height: var(--line-height-eyebrow);\n margin-block-end: var(--spacing-layout-half);\n position: relative;\n text-transform: uppercase;\n\n &::after {\n border-block-end: var(--hairline) solid currentColor;\n content: "";\n flex-grow: 1;\n margin-left: var(--spacing-component-3);\n }\n }\n\n .subtle {\n opacity: 0.6;\n }\n\n .serif {\n font-family: var(--font-family-serif);\n }\n\n .sans-serif {\n font-family: var(--font-family-sans-serif);\n }\n\n i,\n em,\n .italic {\n font-style: italic;\n }\n\n b,\n strong,\n .strong {\n font-weight: bold;\n }\n\n .normal {\n font-weight: normal;\n }\n\n .balance {\n text-wrap: balance;\n }\n\n .prominent-link,\n a.prominent-link {\n --accent-color: var(--purple-60);\n\n font-weight: bold;\n text-decoration: underline;\n text-decoration-color: var(--accent-color);\n text-decoration-thickness: var(--medium);\n text-underline-offset: 0.4em;\n transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out; \n\n &:hover {\n --accent-color: var(--red-60);\n }\n\n &:not(:has(cfa-icon))::after {\n @include icon.icon;\n \n content: "arrow_right_alt";\n display: inline-block;\n padding-inline-start: 0.1em;\n text-decoration: none;\n transition: padding 0.2s ease-in-out;\n width: 1em;\n }\n\n &:not(:has(cfa-icon)):hover::after {\n padding-inline-start: 0.3em;\n }\n\n cfa-icon {\n text-decoration: none;\n }\n }\n\n .white-text,\n .text-light /* fallback */ {\n -moz-osx-font-smoothing: grayscale; // Sharper antialising for white text on a dark background\n -webkit-font-smoothing: antialiased; // Sharper antialising for white text on a dark background\n color: var(--white);\n --link-color: var(--white);\n --link-hover-color: var(--white);\n }\n\n // =====\n\n // Highlights\n\n .highlight { \n --highlight-offset: 0.2em;\n\n box-decoration-break: clone;\n display: inline;\n background: linear-gradient(to top, transparent 0%, transparent var(--highlight-offset), var(--highlight-color) var(--highlight-offset), var(--highlight-color) calc(var(--highlight-offset) + var(--highlight-thickness)), transparent calc(var(--highlight-offset) + var(--highlight-thickness)), transparent 100%);\n padding-inline: 0.1em;\n -webkit-box-decoration-break: clone;\n margin-inline-start: -0.1em;\n margin-inline-end: -0.1em;\n word-wrap: break-word;\n }\n\n // ======\n\n // Lists\n\n .ul {\n list-style-type: disc;\n padding-left: var(--spacing-layout-1);\n }\n\n .ul > li {\n margin-inline-start: 0;\n padding-left: var(--spacing-component-2);\n }\n\n .ul > li + li {\n margin-block-start: var(--spacing-layout-half);\n }\n\n .ul > li > ul {\n margin-block-start: var(--spacing-layout-half);\n }\n\n .ol {\n list-style-type: decimal;\n padding-left: var(--spacing-layout-1);\n }\n\n .ol > li {\n margin-inline-start: 0;\n padding-inline-start: var(--spacing-component-2);\n }\n\n .ol > li + li {\n margin-block-start: var(--spacing-layout-half);\n }\n\n .ol > li > ul {\n margin-block-start: var(--spacing-layout-half);\n }\n\n .ul--unstyled {\n list-style: none;\n padding: 0;\n }\n\n .ul--unstyled > li {\n margin-inline: 0;\n padding: 0;\n }\n\n .ul--line-separators > li + li::before {\n border-block-start: 1px solid var(--gray-20);\n content: "";\n display: block;\n margin-block: var(--spacing-layout-half);\n width: 100%;\n }\n\n .ul--inline,\n .ul--inline-with-separators,\n .ul--inline-with-line-separators {\n display: inline;\n list-style: none;\n padding-inline: 0 !important;\n padding-left: 0 !important;\n }\n\n .ul--inline > li,\n .ul--inline-with-separators > li,\n .ul--inline-with-line-separators > li {\n display: inline-block;\n margin-inline-end: var(--spacing-component-3);\n padding: 0 !important;\n }\n\n .ul--inline li:last-child,\n .ul--inline-with-separators li:last-child,\n .ul--inline-with-line-separators li:last-child {\n margin-inline-end: 0;\n }\n\n .ul--inline > li + li,\n .ul--inline-with-separators > li + li,\n .ul--inline-with-line-separators > li + li {\n margin-block-start: 0;\n }\n\n .ul--inline-with-separators li,\n .ul--inline-with-line-separators li {\n margin-inline-end: 0;\n }\n\n .ul--inline-with-separators > li::after {\n content: "•";\n margin-inline: var(--spacing-component-2);\n opacity: 0.5;\n }\n\n .ul--inline-with-separators > li:last-child::after {\n content: "";\n }\n\n .ul--inline-with-line-separators > li::after {\n content: "|";\n margin-inline: var(--spacing-component-2);\n opacity: 0.5;\n }\n\n .ul--inline-with-line-separators > li:last-child::after {\n content: "";\n }\n\n // ===\n\n // Horizontal rule\n\n hr {\n --color: currentColor;\n\n background-color: var(--color);\n border: 0;\n color: var(--color);\n display: block;\n font-size: 0;\n height: var(--hairline);\n margin-block: var(--spacing-layout-1);\n opacity: 0.4;\n }\n\n // ===\n\n // Icons\n\n .icon {\n -webkit-font-feature-settings: \'liga\';\n direction: ltr;\n display: inline-block;\n font-family: \'Material Symbols Rounded\';\n font-feature-settings: \'liga\';\n font-size: 1.4em; \n font-style: normal;\n font-weight: normal;\n letter-spacing: normal;\n text-transform: none;\n vertical-align: middle;\n white-space: nowrap;\n word-wrap: normal;\n }\n'],a||(a=o.slice(0)),i=Object.freeze(Object.defineProperties(o,{raw:{value:Object.freeze(a)}}))));var o,a},826(n,e,t){t.d(e,{AH:()=>l,Rf:()=>c,sk:()=>h});const i=globalThis,r=i.ShadowRoot&&(void 0===i.ShadyCSS||i.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,o=Symbol(),a=new WeakMap;class s{constructor(n,e,t){if(this._$cssResult$=!0,t!==o)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=n,this.t=e}get styleSheet(){let n=this.o;const e=this.t;if(r&&void 0===n){const t=void 0!==e&&1===e.length;t&&(n=a.get(e)),void 0===n&&((this.o=n=new CSSStyleSheet).replaceSync(this.cssText),t&&a.set(e,n))}return n}toString(){return this.cssText}}const l=(n,...e)=>{const t=1===n.length?n[0]:e.reduce((e,t,i)=>e+(n=>{if(!0===n._$cssResult$)return n.cssText;if("number"==typeof n)return n;throw Error("Value passed to 'css' function must be a 'css' function result: "+n+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(t)+n[i+1],n[0]);return new s(t,n,o)},c=(n,e)=>{if(r)n.adoptedStyleSheets=e.map(n=>n instanceof CSSStyleSheet?n:n.styleSheet);else for(const t of e){const e=document.createElement("style"),r=i.litNonce;void 0!==r&&e.setAttribute("nonce",r),e.textContent=t.cssText,n.appendChild(e)}},h=r?n=>n:n=>n instanceof CSSStyleSheet?(n=>{let e="";for(const t of n.cssRules)e+=t.cssText;return(n=>new s("string"==typeof n?n:n+"",void 0,o))(e)})(n):n},760(n,e,t){t.d(e,{AH:()=>i.AH,mN:()=>b});var i=t(826);const{is:r,defineProperty:o,getOwnPropertyDescriptor:a,getOwnPropertyNames:s,getOwnPropertySymbols:l,getPrototypeOf:c}=Object,h=globalThis,d=h.trustedTypes,u=d?d.emptyScript:"",p=h.reactiveElementPolyfillSupport,v=(n,e)=>n,f={toAttribute(n,e){switch(e){case Boolean:n=n?u:null;break;case Object:case Array:n=null==n?n:JSON.stringify(n)}return n},fromAttribute(n,e){let t=n;switch(e){case Boolean:t=null!==n;break;case Number:t=null===n?null:Number(n);break;case Object:case Array:try{t=JSON.parse(n)}catch(n){t=null}}return t}},g=(n,e)=>!r(n,e),m={attribute:!0,type:String,converter:f,reflect:!1,useDefault:!1,hasChanged:g};Symbol.metadata??=Symbol("metadata"),h.litPropertyMetadata??=new WeakMap;class b extends HTMLElement{static addInitializer(n){this._$Ei(),(this.l??=[]).push(n)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(n,e=m){if(e.state&&(e.attribute=!1),this._$Ei(),this.prototype.hasOwnProperty(n)&&((e=Object.create(e)).wrapped=!0),this.elementProperties.set(n,e),!e.noAccessor){const t=Symbol(),i=this.getPropertyDescriptor(n,t,e);void 0!==i&&o(this.prototype,n,i)}}static getPropertyDescriptor(n,e,t){const{get:i,set:r}=a(this.prototype,n)??{get(){return this[e]},set(n){this[e]=n}};return{get:i,set(e){const o=i?.call(this);r?.call(this,e),this.requestUpdate(n,o,t)},configurable:!0,enumerable:!0}}static getPropertyOptions(n){return this.elementProperties.get(n)??m}static _$Ei(){if(this.hasOwnProperty(v("elementProperties")))return;const n=c(this);n.finalize(),void 0!==n.l&&(this.l=[...n.l]),this.elementProperties=new Map(n.elementProperties)}static finalize(){if(this.hasOwnProperty(v("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(v("properties"))){const n=this.properties,e=[...s(n),...l(n)];for(const t of e)this.createProperty(t,n[t])}const n=this[Symbol.metadata];if(null!==n){const e=litPropertyMetadata.get(n);if(void 0!==e)for(const[n,t]of e)this.elementProperties.set(n,t)}this._$Eh=new Map;for(const[n,e]of this.elementProperties){const t=this._$Eu(n,e);void 0!==t&&this._$Eh.set(t,n)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(n){const e=[];if(Array.isArray(n)){const t=new Set(n.flat(1/0).reverse());for(const n of t)e.unshift((0,i.sk)(n))}else void 0!==n&&e.push((0,i.sk)(n));return e}static _$Eu(n,e){const t=e.attribute;return!1===t?void 0:"string"==typeof t?t:"string"==typeof n?n.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){this._$ES=new Promise(n=>this.enableUpdating=n),this._$AL=new Map,this._$E_(),this.requestUpdate(),this.constructor.l?.forEach(n=>n(this))}addController(n){(this._$EO??=new Set).add(n),void 0!==this.renderRoot&&this.isConnected&&n.hostConnected?.()}removeController(n){this._$EO?.delete(n)}_$E_(){const n=new Map,e=this.constructor.elementProperties;for(const t of e.keys())this.hasOwnProperty(t)&&(n.set(t,this[t]),delete this[t]);n.size>0&&(this._$Ep=n)}createRenderRoot(){const n=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return(0,i.Rf)(n,this.constructor.elementStyles),n}connectedCallback(){this.renderRoot??=this.createRenderRoot(),this.enableUpdating(!0),this._$EO?.forEach(n=>n.hostConnected?.())}enableUpdating(n){}disconnectedCallback(){this._$EO?.forEach(n=>n.hostDisconnected?.())}attributeChangedCallback(n,e,t){this._$AK(n,t)}_$ET(n,e){const t=this.constructor.elementProperties.get(n),i=this.constructor._$Eu(n,t);if(void 0!==i&&!0===t.reflect){const r=(void 0!==t.converter?.toAttribute?t.converter:f).toAttribute(e,t.type);this._$Em=n,null==r?this.removeAttribute(i):this.setAttribute(i,r),this._$Em=null}}_$AK(n,e){const t=this.constructor,i=t._$Eh.get(n);if(void 0!==i&&this._$Em!==i){const n=t.getPropertyOptions(i),r="function"==typeof n.converter?{fromAttribute:n.converter}:void 0!==n.converter?.fromAttribute?n.converter:f;this._$Em=i;const o=r.fromAttribute(e,n.type);this[i]=o??this._$Ej?.get(i)??o,this._$Em=null}}requestUpdate(n,e,t,i=!1,r){if(void 0!==n){const o=this.constructor;if(!1===i&&(r=this[n]),t??=o.getPropertyOptions(n),!((t.hasChanged??g)(r,e)||t.useDefault&&t.reflect&&r===this._$Ej?.get(n)&&!this.hasAttribute(o._$Eu(n,t))))return;this.C(n,e,t)}!1===this.isUpdatePending&&(this._$ES=this._$EP())}C(n,e,{useDefault:t,reflect:i,wrapped:r},o){t&&!(this._$Ej??=new Map).has(n)&&(this._$Ej.set(n,o??e??this[n]),!0!==r||void 0!==o)||(this._$AL.has(n)||(this.hasUpdated||t||(e=void 0),this._$AL.set(n,e)),!0===i&&this._$Em!==n&&(this._$Eq??=new Set).add(n))}async _$EP(){this.isUpdatePending=!0;try{await this._$ES}catch(n){Promise.reject(n)}const n=this.scheduleUpdate();return null!=n&&await n,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??=this.createRenderRoot(),this._$Ep){for(const[n,e]of this._$Ep)this[n]=e;this._$Ep=void 0}const n=this.constructor.elementProperties;if(n.size>0)for(const[e,t]of n){const{wrapped:n}=t,i=this[e];!0!==n||this._$AL.has(e)||void 0===i||this.C(e,void 0,t,i)}}let n=!1;const e=this._$AL;try{n=this.shouldUpdate(e),n?(this.willUpdate(e),this._$EO?.forEach(n=>n.hostUpdate?.()),this.update(e)):this._$EM()}catch(e){throw n=!1,this._$EM(),e}n&&this._$AE(e)}willUpdate(n){}_$AE(n){this._$EO?.forEach(n=>n.hostUpdated?.()),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(n)),this.updated(n)}_$EM(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$ES}shouldUpdate(n){return!0}update(n){this._$Eq&&=this._$Eq.forEach(n=>this._$ET(n,this[n])),this._$EM()}updated(n){}firstUpdated(n){}}b.elementStyles=[],b.shadowRootOptions={mode:"open"},b[v("elementProperties")]=new Map,b[v("finalized")]=new Map,p?.({ReactiveElement:b}),(h.reactiveElementVersions??=[]).push("2.1.2")},228(n,e,t){t.d(e,{AH:()=>i.AH,JW:()=>r.JW,WF:()=>a,qy:()=>r.qy,s6:()=>r.s6});var i=t(760),r=t(752);const o=globalThis;class a extends i.mN{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){const n=super.createRenderRoot();return this.renderOptions.renderBefore??=n.firstChild,n}update(n){const e=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(n),this._$Do=(0,r.XX)(e,this.renderRoot,this.renderOptions)}connectedCallback(){super.connectedCallback(),this._$Do?.setConnected(!0)}disconnectedCallback(){super.disconnectedCallback(),this._$Do?.setConnected(!1)}render(){return r.c0}}a._$litElement$=!0,a.finalized=!0,o.litElementHydrateSupport?.({LitElement:a});const s=o.litElementPolyfillSupport;s?.({LitElement:a}),(o.litElementVersions??=[]).push("4.2.2")},752(n,e,t){t.d(e,{JW:()=>z,XX:()=>N,c0:()=>A,qy:()=>_,s6:()=>E});const i=globalThis,r=n=>n,o=i.trustedTypes,a=o?o.createPolicy("lit-html",{createHTML:n=>n}):void 0,s="$lit$",l=`lit$${Math.random().toFixed(9).slice(2)}$`,c="?"+l,h=`<${c}>`,d=document,u=()=>d.createComment(""),p=n=>null===n||"object"!=typeof n&&"function"!=typeof n,v=Array.isArray,f="[ \t\n\f\r]",g=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,m=/-->/g,b=/>/g,y=RegExp(`>|${f}(?:([^\\s"'>=/]+)(${f}*=${f}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),w=/'/g,x=/"/g,k=/^(?:script|style|textarea|title)$/i,P=n=>(e,...t)=>({_$litType$:n,strings:e,values:t}),_=P(1),z=P(2),A=(P(3),Symbol.for("lit-noChange")),E=Symbol.for("lit-nothing"),S=new WeakMap,j=d.createTreeWalker(d,129);function T(n,e){if(!v(n)||!n.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==a?a.createHTML(e):e}const $=(n,e)=>{const t=n.length-1,i=[];let r,o=2===e?"<svg>":3===e?"<math>":"",a=g;for(let e=0;e<t;e++){const t=n[e];let c,d,u=-1,p=0;for(;p<t.length&&(a.lastIndex=p,d=a.exec(t),null!==d);)p=a.lastIndex,a===g?"!--"===d[1]?a=m:void 0!==d[1]?a=b:void 0!==d[2]?(k.test(d[2])&&(r=RegExp("</"+d[2],"g")),a=y):void 0!==d[3]&&(a=y):a===y?">"===d[0]?(a=r??g,u=-1):void 0===d[1]?u=-2:(u=a.lastIndex-d[2].length,c=d[1],a=void 0===d[3]?y:'"'===d[3]?x:w):a===x||a===w?a=y:a===m||a===b?a=g:(a=y,r=void 0);const v=a===y&&n[e+1].startsWith("/>")?" ":"";o+=a===g?t+h:u>=0?(i.push(c),t.slice(0,u)+s+t.slice(u)+l+v):t+l+(-2===u?e:v)}return[T(n,o+(n[t]||"<?>")+(2===e?"</svg>":3===e?"</math>":"")),i]};class O{constructor({strings:n,_$litType$:e},t){let i;this.parts=[];let r=0,a=0;const h=n.length-1,d=this.parts,[p,v]=$(n,e);if(this.el=O.createElement(p,t),j.currentNode=this.el.content,2===e||3===e){const n=this.el.content.firstChild;n.replaceWith(...n.childNodes)}for(;null!==(i=j.nextNode())&&d.length<h;){if(1===i.nodeType){if(i.hasAttributes())for(const n of i.getAttributeNames())if(n.endsWith(s)){const e=v[a++],t=i.getAttribute(n).split(l),o=/([.?@])?(.*)/.exec(e);d.push({type:1,index:r,name:o[2],strings:t,ctor:"."===o[1]?H:"?"===o[1]?M:"@"===o[1]?R:U}),i.removeAttribute(n)}else n.startsWith(l)&&(d.push({type:6,index:r}),i.removeAttribute(n));if(k.test(i.tagName)){const n=i.textContent.split(l),e=n.length-1;if(e>0){i.textContent=o?o.emptyScript:"";for(let t=0;t<e;t++)i.append(n[t],u()),j.nextNode(),d.push({type:2,index:++r});i.append(n[e],u())}}}else if(8===i.nodeType)if(i.data===c)d.push({type:2,index:r});else{let n=-1;for(;-1!==(n=i.data.indexOf(l,n+1));)d.push({type:7,index:r}),n+=l.length-1}r++}}static createElement(n,e){const t=d.createElement("template");return t.innerHTML=n,t}}function C(n,e,t=n,i){if(e===A)return e;let r=void 0!==i?t._$Co?.[i]:t._$Cl;const o=p(e)?void 0:e._$litDirective$;return r?.constructor!==o&&(r?._$AO?.(!1),void 0===o?r=void 0:(r=new o(n),r._$AT(n,t,i)),void 0!==i?(t._$Co??=[])[i]=r:t._$Cl=r),void 0!==r&&(e=C(n,r._$AS(n,e.values),r,i)),e}class q{constructor(n,e){this._$AV=[],this._$AN=void 0,this._$AD=n,this._$AM=e}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(n){const{el:{content:e},parts:t}=this._$AD,i=(n?.creationScope??d).importNode(e,!0);j.currentNode=i;let r=j.nextNode(),o=0,a=0,s=t[0];for(;void 0!==s;){if(o===s.index){let e;2===s.type?e=new L(r,r.nextSibling,this,n):1===s.type?e=new s.ctor(r,s.name,s.strings,this,n):6===s.type&&(e=new I(r,this,n)),this._$AV.push(e),s=t[++a]}o!==s?.index&&(r=j.nextNode(),o++)}return j.currentNode=d,i}p(n){let e=0;for(const t of this._$AV)void 0!==t&&(void 0!==t.strings?(t._$AI(n,t,e),e+=t.strings.length-2):t._$AI(n[e])),e++}}class L{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(n,e,t,i){this.type=2,this._$AH=E,this._$AN=void 0,this._$AA=n,this._$AB=e,this._$AM=t,this.options=i,this._$Cv=i?.isConnected??!0}get parentNode(){let n=this._$AA.parentNode;const e=this._$AM;return void 0!==e&&11===n?.nodeType&&(n=e.parentNode),n}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(n,e=this){n=C(this,n,e),p(n)?n===E||null==n||""===n?(this._$AH!==E&&this._$AR(),this._$AH=E):n!==this._$AH&&n!==A&&this._(n):void 0!==n._$litType$?this.$(n):void 0!==n.nodeType?this.T(n):(n=>v(n)||"function"==typeof n?.[Symbol.iterator])(n)?this.k(n):this._(n)}O(n){return this._$AA.parentNode.insertBefore(n,this._$AB)}T(n){this._$AH!==n&&(this._$AR(),this._$AH=this.O(n))}_(n){this._$AH!==E&&p(this._$AH)?this._$AA.nextSibling.data=n:this.T(d.createTextNode(n)),this._$AH=n}$(n){const{values:e,_$litType$:t}=n,i="number"==typeof t?this._$AC(n):(void 0===t.el&&(t.el=O.createElement(T(t.h,t.h[0]),this.options)),t);if(this._$AH?._$AD===i)this._$AH.p(e);else{const n=new q(i,this),t=n.u(this.options);n.p(e),this.T(t),this._$AH=n}}_$AC(n){let e=S.get(n.strings);return void 0===e&&S.set(n.strings,e=new O(n)),e}k(n){v(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let t,i=0;for(const r of n)i===e.length?e.push(t=new L(this.O(u()),this.O(u()),this,this.options)):t=e[i],t._$AI(r),i++;i<e.length&&(this._$AR(t&&t._$AB.nextSibling,i),e.length=i)}_$AR(n=this._$AA.nextSibling,e){for(this._$AP?.(!1,!0,e);n!==this._$AB;){const e=r(n).nextSibling;r(n).remove(),n=e}}setConnected(n){void 0===this._$AM&&(this._$Cv=n,this._$AP?.(n))}}class U{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(n,e,t,i,r){this.type=1,this._$AH=E,this._$AN=void 0,this.element=n,this.name=e,this._$AM=i,this.options=r,t.length>2||""!==t[0]||""!==t[1]?(this._$AH=Array(t.length-1).fill(new String),this.strings=t):this._$AH=E}_$AI(n,e=this,t,i){const r=this.strings;let o=!1;if(void 0===r)n=C(this,n,e,0),o=!p(n)||n!==this._$AH&&n!==A,o&&(this._$AH=n);else{const i=n;let a,s;for(n=r[0],a=0;a<r.length-1;a++)s=C(this,i[t+a],e,a),s===A&&(s=this._$AH[a]),o||=!p(s)||s!==this._$AH[a],s===E?n=E:n!==E&&(n+=(s??"")+r[a+1]),this._$AH[a]=s}o&&!i&&this.j(n)}j(n){n===E?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,n??"")}}class H extends U{constructor(){super(...arguments),this.type=3}j(n){this.element[this.name]=n===E?void 0:n}}class M extends U{constructor(){super(...arguments),this.type=4}j(n){this.element.toggleAttribute(this.name,!!n&&n!==E)}}class R extends U{constructor(n,e,t,i,r){super(n,e,t,i,r),this.type=5}_$AI(n,e=this){if((n=C(this,n,e,0)??E)===A)return;const t=this._$AH,i=n===E&&t!==E||n.capture!==t.capture||n.once!==t.once||n.passive!==t.passive,r=n!==E&&(t===E||i);i&&this.element.removeEventListener(this.name,this,t),r&&this.element.addEventListener(this.name,this,n),this._$AH=n}handleEvent(n){"function"==typeof this._$AH?this._$AH.call(this.options?.host??this.element,n):this._$AH.handleEvent(n)}}class I{constructor(n,e,t){this.element=n,this.type=6,this._$AN=void 0,this._$AM=e,this.options=t}get _$AU(){return this._$AM._$AU}_$AI(n){C(this,n)}}const F=i.litHtmlPolyfillSupport;F?.(O,L),(i.litHtmlVersions??=[]).push("3.3.3");const N=(n,e,t)=>{const i=t?.renderBefore??e;let r=i._$litPart$;if(void 0===r){const n=t?.renderBefore??null;i._$litPart$=r=new L(e.insertBefore(u(),n),n,void 0,t??{})}return r._$AI(n),r}},161(n,e,t){t.d(e,{AH:()=>i.AH,JW:()=>i.JW,WF:()=>i.WF,qy:()=>i.qy,s6:()=>i.s6}),t(760),t(752);var i=t(228)}},e={};function t(i){var r=e[i];if(void 0!==r)return r.exports;var o=e[i]={exports:{}};return n[i](o,o.exports,t),o.exports}t.d=(n,e)=>{for(var i in e)t.o(e,i)&&!t.o(n,i)&&Object.defineProperty(n,i,{enumerable:!0,get:e[i]})},t.o=(n,e)=>Object.prototype.hasOwnProperty.call(n,e),t(330),t(544),t(227),t(562),t(953),t(200),t(250),t(771),t(804),t(301),t(517),t(710),t(202),t(542),t(547),t(334),t(152),t(518),t(280),t(696),t(663),t(881),t(884),t(302),t(638),t(36),t(682),t(867),t(685),t(221)})();
|