@codeforamerica/marcomms-design-system 1.19.0 → 1.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/card.js +4 -0
- package/dist/components/label.js +4 -0
- package/dist/components/logo-card.js +4 -0
- package/dist/components/pager.js +7 -3
- package/dist/components/person-card.js +5 -1
- package/dist/components/promo.js +4 -0
- package/dist/components/stat.js +4 -0
- package/dist/components/tab-list.js +5 -1
- package/dist/components/tab.js +4 -0
- package/dist/components/tile.js +4 -0
- package/dist/components/transcript.js +4 -0
- package/dist/core.css +1 -1
- package/dist/index.js +4 -0
- package/dist/styles.css +1 -1
- package/package.json +2 -1
- package/src/components/accordion.js +141 -0
- package/src/components/accordion.stories.js +56 -0
- package/src/components/avatar.js +62 -0
- package/src/components/avatar.stories.js +27 -0
- package/src/components/bar.js +102 -0
- package/src/components/bar.stories.js +22 -0
- package/src/components/blob.js +128 -0
- package/src/components/blob.stories.js +73 -0
- package/src/components/box.js +55 -0
- package/src/components/box.stories.js +24 -0
- package/src/components/breadcrumbs.js +80 -0
- package/src/components/breadcrumbs.stories.js +27 -0
- package/src/components/button.js +163 -0
- package/src/components/button.scss +157 -0
- package/src/components/button.stories.js +49 -0
- package/src/components/callout.js +62 -0
- package/src/components/callout.stories.js +20 -0
- package/src/components/card.js +456 -0
- package/src/components/card.stories.js +227 -0
- package/src/components/carousel.js +662 -0
- package/src/components/carousel.stories.js +165 -0
- package/src/components/details.scss +71 -0
- package/src/components/details.stories.js +27 -0
- package/src/components/form-elements.scss +304 -0
- package/src/components/form-elements.stories.js +134 -0
- package/src/components/icon.js +44 -0
- package/src/components/icon.scss +32 -0
- package/src/components/icon.stories.js +38 -0
- package/src/components/label.js +63 -0
- package/src/components/label.stories.js +29 -0
- package/src/components/link-list.scss +80 -0
- package/src/components/link-list.stories.js +52 -0
- package/src/components/loader.scss +24 -0
- package/src/components/loader.stories.js +12 -0
- package/src/components/logo-card.js +93 -0
- package/src/components/logo-card.stories.js +48 -0
- package/src/components/nav.js +98 -0
- package/src/components/nav.stories.js +40 -0
- package/src/components/page-nav.js +171 -0
- package/src/components/page-nav.stories.js +112 -0
- package/src/components/pager.js +98 -0
- package/src/components/pager.stories.js +30 -0
- package/src/components/pagination.js +116 -0
- package/src/components/pagination.stories.js +30 -0
- package/src/components/person-card.js +240 -0
- package/src/components/person-card.stories.js +58 -0
- package/src/components/pill.js +33 -0
- package/src/components/pill.stories.js +25 -0
- package/src/components/placeholder.js +25 -0
- package/src/components/placeholder.stories.js +10 -0
- package/src/components/promo.js +82 -0
- package/src/components/promo.stories.js +37 -0
- package/src/components/pullquote.js +42 -0
- package/src/components/pullquote.stories.js +16 -0
- package/src/components/quote.js +111 -0
- package/src/components/quote.stories.js +23 -0
- package/src/components/reveal.js +83 -0
- package/src/components/reveal.stories.js +40 -0
- package/src/components/slide.js +122 -0
- package/src/components/slide.stories.js +49 -0
- package/src/components/social-icon.js +236 -0
- package/src/components/social-icon.stories.js +36 -0
- package/src/components/stat.js +92 -0
- package/src/components/stat.stories.js +28 -0
- package/src/components/tab-list.js +114 -0
- package/src/components/tab-list.stories.js +18 -0
- package/src/components/tab.js +95 -0
- package/src/components/tab.stories.js +29 -0
- package/src/components/tile.js +149 -0
- package/src/components/tile.stories.js +41 -0
- package/src/components/transcript.js +44 -0
- package/src/components/transcript.stories.js +103 -0
- package/src/core/base.scss +86 -0
- package/src/core/colors.mdx +100 -0
- package/src/core/grid.mdx +244 -0
- package/src/core/grid.scss +394 -0
- package/src/core/helpers.scss +111 -0
- package/src/core/layout.scss +103 -0
- package/src/core/layout.stories.js +145 -0
- package/src/core/reset.scss +53 -0
- package/src/core/shadows.mdx +108 -0
- package/src/core/tokens.scss +261 -0
- package/src/core/typography.mdx +79 -0
- package/src/core/typography.scss +415 -0
- package/src/core.js +10 -0
- package/src/index.js +43 -0
- package/src/shared/common.js +65 -0
- package/src/shared/layout.js +14 -0
- package/src/shared/typography.js +401 -0
- package/src/styles.scss +15 -0
package/dist/components/card.js
CHANGED
package/dist/components/label.js
CHANGED
package/dist/components/pager.js
CHANGED
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
--font-size: var(--font-size-base);
|
|
157
157
|
--line-height: var(--line-height-base);
|
|
158
158
|
}
|
|
159
|
-
`},562(t,e,i){var n=i(161),o=i(601);class
|
|
159
|
+
`},562(t,e,i){var n=i(161),o=i(601);class r extends n.WF{static styles=(()=>[o.s,n.AH`
|
|
160
160
|
:host {
|
|
161
161
|
--size: 1.2em;
|
|
162
162
|
|
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
<span class="icon">
|
|
184
184
|
<slot></slot>
|
|
185
185
|
</span>
|
|
186
|
-
`}}customElements.get("cfa-icon")||customElements.define("cfa-icon",
|
|
186
|
+
`}}customElements.get("cfa-icon")||customElements.define("cfa-icon",r)},601(t,e,i){i.d(e,{s:()=>n});const n=i(161).AH`
|
|
187
187
|
*:focus-visible,
|
|
188
188
|
*:target {
|
|
189
189
|
outline: var(--focus-outline);
|
|
@@ -430,6 +430,10 @@
|
|
|
430
430
|
font-weight: normal;
|
|
431
431
|
}
|
|
432
432
|
|
|
433
|
+
.balance {
|
|
434
|
+
text-wrap: balance;
|
|
435
|
+
}
|
|
436
|
+
|
|
433
437
|
.prominent-link,
|
|
434
438
|
a.prominent-link {
|
|
435
439
|
--accent-color: var(--purple-60);
|
|
@@ -639,7 +643,7 @@
|
|
|
639
643
|
white-space: nowrap;
|
|
640
644
|
word-wrap: normal;
|
|
641
645
|
}
|
|
642
|
-
`},826(t,e,i){i.d(e,{AH:()=>l,Rf:()=>h,sk:()=>c});const n=globalThis,o=n.ShadowRoot&&(void 0===n.ShadyCSS||n.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,s=Symbol(),r=new WeakMap;class a{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,n)=>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[n+1],t[0]);return new a(i,t,s)},h=(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=n.litNonce;void 0!==o&&e.setAttribute("nonce",o),e.textContent=i.cssText,t.appendChild(e)}},c=o?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const i of t.cssRules)e+=i.cssText;return(t=>new a("string"==typeof t?t:t+"",void 0,s))(e)})(t):t},760(t,e,i){i.d(e,{AH:()=>n.AH,mN:()=>b});var n=i(826);const{is:o,defineProperty:s,getOwnPropertyDescriptor:r,getOwnPropertyNames:a,getOwnPropertySymbols:l,getPrototypeOf:h}=Object,c=globalThis,d=c.trustedTypes,p=d?d.emptyScript:"",f=c.reactiveElementPolyfillSupport,u=(t,e)=>t,g={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),v={attribute:!0,type:String,converter:g,reflect:!1,useDefault:!1,hasChanged:m};Symbol.metadata??=Symbol("metadata"),c.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=v){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(),n=this.getPropertyDescriptor(t,i,e);void 0!==n&&s(this.prototype,t,n)}}static getPropertyDescriptor(t,e,i){const{get:n,set:o}=r(this.prototype,t)??{get(){return this[e]},set(t){this[e]=t}};return{get:n,set(e){const s=n?.call(this);o?.call(this,e),this.requestUpdate(t,s,i)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??v}static _$Ei(){if(this.hasOwnProperty(u("elementProperties")))return;const t=h(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=[...a(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,n.sk)(t))}else void 0!==t&&e.push((0,n.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,n.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),n=this.constructor._$Eu(t,i);if(void 0!==n&&!0===i.reflect){const o=(void 0!==i.converter?.toAttribute?i.converter:g).toAttribute(e,i.type);this._$Em=t,null==o?this.removeAttribute(n):this.setAttribute(n,o),this._$Em=null}}_$AK(t,e){const i=this.constructor,n=i._$Eh.get(t);if(void 0!==n&&this._$Em!==n){const t=i.getPropertyOptions(n),o="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:g;this._$Em=n;const s=o.fromAttribute(e,t.type);this[n]=s??this._$Ej?.get(n)??s,this._$Em=null}}requestUpdate(t,e,i,n=!1,o){if(void 0!==t){const s=this.constructor;if(!1===n&&(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:n,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===n&&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,n=this[e];!0!==t||this._$AL.has(e)||void 0===n||this.C(e,void 0,i,n)}}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,f?.({ReactiveElement:b}),(c.reactiveElementVersions??=[]).push("2.1.2")},228(t,e,i){i.d(e,{AH:()=>n.AH,WF:()=>r,qy:()=>o.qy});var n=i(760),o=i(752);const s=globalThis;class r extends n.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 a=s.litElementPolyfillSupport;a?.({LitElement:r}),(s.litElementVersions??=[]).push("4.2.2")},752(t,e,i){i.d(e,{XX:()=>L,c0:()=>k,qy:()=>x});const n=globalThis,o=t=>t,s=n.trustedTypes,r=s?s.createPolicy("lit-html",{createHTML:t=>t}):void 0,a="$lit$",l=`lit$${Math.random().toFixed(9).slice(2)}$`,h="?"+l,c=`<${h}>`,d=document,p=()=>d.createComment(""),f=t=>null===t||"object"!=typeof t&&"function"!=typeof t,u=Array.isArray,g="[ \t\n\f\r]",m=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,v=/-->/g,b=/>/g,y=RegExp(`>|${g}(?:([^\\s"'>=/]+)(${g}*=${g}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),$=/'/g,w=/"/g,_=/^(?:script|style|textarea|title)$/i,A=t=>(e,...i)=>({_$litType$:t,strings:e,values:i}),x=A(1),k=(A(2),A(3),Symbol.for("lit-noChange")),E=Symbol.for("lit-nothing"),S=new WeakMap,z=d.createTreeWalker(d,129);function C(t,e){if(!u(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==r?r.createHTML(e):e}const P=(t,e)=>{const i=t.length-1,n=[];let o,s=2===e?"<svg>":3===e?"<math>":"",r=m;for(let e=0;e<i;e++){const i=t[e];let h,d,p=-1,f=0;for(;f<i.length&&(r.lastIndex=f,d=r.exec(i),null!==d);)f=r.lastIndex,r===m?"!--"===d[1]?r=v:void 0!==d[1]?r=b:void 0!==d[2]?(_.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,h=d[1],r=void 0===d[3]?y:'"'===d[3]?w:$):r===w||r===$?r=y:r===v||r===b?r=m:(r=y,o=void 0);const u=r===y&&t[e+1].startsWith("/>")?" ":"";s+=r===m?i+c:p>=0?(n.push(h),i.slice(0,p)+a+i.slice(p)+l+u):i+l+(-2===p?e:u)}return[C(t,s+(t[i]||"<?>")+(2===e?"</svg>":3===e?"</math>":"")),n]};class H{constructor({strings:t,_$litType$:e},i){let n;this.parts=[];let o=0,r=0;const c=t.length-1,d=this.parts,[f,u]=P(t,e);if(this.el=H.createElement(f,i),z.currentNode=this.el.content,2===e||3===e){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(n=z.nextNode())&&d.length<c;){if(1===n.nodeType){if(n.hasAttributes())for(const t of n.getAttributeNames())if(t.endsWith(a)){const e=u[r++],i=n.getAttribute(t).split(l),s=/([.?@])?(.*)/.exec(e);d.push({type:1,index:o,name:s[2],strings:i,ctor:"."===s[1]?M:"?"===s[1]?N:"@"===s[1]?j:R}),n.removeAttribute(t)}else t.startsWith(l)&&(d.push({type:6,index:o}),n.removeAttribute(t));if(_.test(n.tagName)){const t=n.textContent.split(l),e=t.length-1;if(e>0){n.textContent=s?s.emptyScript:"";for(let i=0;i<e;i++)n.append(t[i],p()),z.nextNode(),d.push({type:2,index:++o});n.append(t[e],p())}}}else if(8===n.nodeType)if(n.data===h)d.push({type:2,index:o});else{let t=-1;for(;-1!==(t=n.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 U(t,e,i=t,n){if(e===k)return e;let o=void 0!==n?i._$Co?.[n]:i._$Cl;const s=f(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,n)),void 0!==n?(i._$Co??=[])[n]=o:i._$Cl=o),void 0!==o&&(e=U(t,o._$AS(t,e.values),o,n)),e}class O{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,n=(t?.creationScope??d).importNode(e,!0);z.currentNode=n;let o=z.nextNode(),s=0,r=0,a=i[0];for(;void 0!==a;){if(s===a.index){let e;2===a.type?e=new T(o,o.nextSibling,this,t):1===a.type?e=new a.ctor(o,a.name,a.strings,this,t):6===a.type&&(e=new q(o,this,t)),this._$AV.push(e),a=i[++r]}s!==a?.index&&(o=z.nextNode(),s++)}return z.currentNode=d,n}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 T{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,e,i,n){this.type=2,this._$AH=E,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=i,this.options=n,this._$Cv=n?.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=U(this,t,e),f(t)?t===E||null==t||""===t?(this._$AH!==E&&this._$AR(),this._$AH=E):t!==this._$AH&&t!==k&&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!==E&&f(this._$AH)?this._$AA.nextSibling.data=t:this.T(d.createTextNode(t)),this._$AH=t}$(t){const{values:e,_$litType$:i}=t,n="number"==typeof i?this._$AC(t):(void 0===i.el&&(i.el=H.createElement(C(i.h,i.h[0]),this.options)),i);if(this._$AH?._$AD===n)this._$AH.p(e);else{const t=new O(n,this),i=t.u(this.options);t.p(e),this.T(i),this._$AH=t}}_$AC(t){let e=S.get(t.strings);return void 0===e&&S.set(t.strings,e=new H(t)),e}k(t){u(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let i,n=0;for(const o of t)n===e.length?e.push(i=new T(this.O(p()),this.O(p()),this,this.options)):i=e[n],i._$AI(o),n++;n<e.length&&(this._$AR(i&&i._$AB.nextSibling,n),e.length=n)}_$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 R{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,i,n,o){this.type=1,this._$AH=E,this._$AN=void 0,this.element=t,this.name=e,this._$AM=n,this.options=o,i.length>2||""!==i[0]||""!==i[1]?(this._$AH=Array(i.length-1).fill(new String),this.strings=i):this._$AH=E}_$AI(t,e=this,i,n){const o=this.strings;let s=!1;if(void 0===o)t=U(this,t,e,0),s=!f(t)||t!==this._$AH&&t!==k,s&&(this._$AH=t);else{const n=t;let r,a;for(t=o[0],r=0;r<o.length-1;r++)a=U(this,n[i+r],e,r),a===k&&(a=this._$AH[r]),s||=!f(a)||a!==this._$AH[r],a===E?t=E:t!==E&&(t+=(a??"")+o[r+1]),this._$AH[r]=a}s&&!n&&this.j(t)}j(t){t===E?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class M extends R{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===E?void 0:t}}class N extends R{constructor(){super(...arguments),this.type=4}j(t){this.element.toggleAttribute(this.name,!!t&&t!==E)}}class j extends R{constructor(t,e,i,n,o){super(t,e,i,n,o),this.type=5}_$AI(t,e=this){if((t=U(this,t,e,0)??E)===k)return;const i=this._$AH,n=t===E&&i!==E||t.capture!==i.capture||t.once!==i.once||t.passive!==i.passive,o=t!==E&&(i===E||n);n&&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 q{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){U(this,t)}}const D=n.litHtmlPolyfillSupport;D?.(H,T),(n.litHtmlVersions??=[]).push("3.3.2");const L=(t,e,i)=>{const n=i?.renderBefore??e;let o=n._$litPart$;if(void 0===o){const t=i?.renderBefore??null;n._$litPart$=o=new T(e.insertBefore(p(),t),t,void 0,i??{})}return o._$AI(t),o}},161(t,e,i){i.d(e,{AH:()=>n.AH,WF:()=>n.WF,qy:()=>n.qy}),i(760),i(752);var n=i(228)}},e={};function i(n){var o=e[n];if(void 0!==o)return o.exports;var s=e[n]={exports:{}};return t[n](s,s.exports,i),s.exports}i.d=(t,e)=>{for(var n in e)i.o(e,n)&&!i.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},i.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var n=i(161),o=i(601),s=i(205),r=i(227);i(562);class a extends n.WF{static properties={previousTitle:{},previousUrl:{},nextTitle:{},nextUrl:{}};static styles=(()=>[o.s,s.g,r.V,n.AH`
|
|
646
|
+
`},826(t,e,i){i.d(e,{AH:()=>l,Rf:()=>h,sk:()=>c});const n=globalThis,o=n.ShadowRoot&&(void 0===n.ShadyCSS||n.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,r=Symbol(),s=new WeakMap;class a{constructor(t,e,i){if(this._$cssResult$=!0,i!==r)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=s.get(e)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),i&&s.set(e,t))}return t}toString(){return this.cssText}}const l=(t,...e)=>{const i=1===t.length?t[0]:e.reduce((e,i,n)=>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[n+1],t[0]);return new a(i,t,r)},h=(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=n.litNonce;void 0!==o&&e.setAttribute("nonce",o),e.textContent=i.cssText,t.appendChild(e)}},c=o?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const i of t.cssRules)e+=i.cssText;return(t=>new a("string"==typeof t?t:t+"",void 0,r))(e)})(t):t},760(t,e,i){i.d(e,{AH:()=>n.AH,mN:()=>b});var n=i(826);const{is:o,defineProperty:r,getOwnPropertyDescriptor:s,getOwnPropertyNames:a,getOwnPropertySymbols:l,getPrototypeOf:h}=Object,c=globalThis,d=c.trustedTypes,p=d?d.emptyScript:"",f=c.reactiveElementPolyfillSupport,u=(t,e)=>t,g={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),v={attribute:!0,type:String,converter:g,reflect:!1,useDefault:!1,hasChanged:m};Symbol.metadata??=Symbol("metadata"),c.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=v){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(),n=this.getPropertyDescriptor(t,i,e);void 0!==n&&r(this.prototype,t,n)}}static getPropertyDescriptor(t,e,i){const{get:n,set:o}=s(this.prototype,t)??{get(){return this[e]},set(t){this[e]=t}};return{get:n,set(e){const r=n?.call(this);o?.call(this,e),this.requestUpdate(t,r,i)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??v}static _$Ei(){if(this.hasOwnProperty(u("elementProperties")))return;const t=h(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=[...a(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,n.sk)(t))}else void 0!==t&&e.push((0,n.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,n.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),n=this.constructor._$Eu(t,i);if(void 0!==n&&!0===i.reflect){const o=(void 0!==i.converter?.toAttribute?i.converter:g).toAttribute(e,i.type);this._$Em=t,null==o?this.removeAttribute(n):this.setAttribute(n,o),this._$Em=null}}_$AK(t,e){const i=this.constructor,n=i._$Eh.get(t);if(void 0!==n&&this._$Em!==n){const t=i.getPropertyOptions(n),o="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:g;this._$Em=n;const r=o.fromAttribute(e,t.type);this[n]=r??this._$Ej?.get(n)??r,this._$Em=null}}requestUpdate(t,e,i,n=!1,o){if(void 0!==t){const r=this.constructor;if(!1===n&&(o=this[t]),i??=r.getPropertyOptions(t),!((i.hasChanged??m)(o,e)||i.useDefault&&i.reflect&&o===this._$Ej?.get(t)&&!this.hasAttribute(r._$Eu(t,i))))return;this.C(t,e,i)}!1===this.isUpdatePending&&(this._$ES=this._$EP())}C(t,e,{useDefault:i,reflect:n,wrapped:o},r){i&&!(this._$Ej??=new Map).has(t)&&(this._$Ej.set(t,r??e??this[t]),!0!==o||void 0!==r)||(this._$AL.has(t)||(this.hasUpdated||i||(e=void 0),this._$AL.set(t,e)),!0===n&&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,n=this[e];!0!==t||this._$AL.has(e)||void 0===n||this.C(e,void 0,i,n)}}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,f?.({ReactiveElement:b}),(c.reactiveElementVersions??=[]).push("2.1.2")},228(t,e,i){i.d(e,{AH:()=>n.AH,WF:()=>s,qy:()=>o.qy});var n=i(760),o=i(752);const r=globalThis;class s extends n.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}}s._$litElement$=!0,s.finalized=!0,r.litElementHydrateSupport?.({LitElement:s});const a=r.litElementPolyfillSupport;a?.({LitElement:s}),(r.litElementVersions??=[]).push("4.2.2")},752(t,e,i){i.d(e,{XX:()=>L,c0:()=>k,qy:()=>x});const n=globalThis,o=t=>t,r=n.trustedTypes,s=r?r.createPolicy("lit-html",{createHTML:t=>t}):void 0,a="$lit$",l=`lit$${Math.random().toFixed(9).slice(2)}$`,h="?"+l,c=`<${h}>`,d=document,p=()=>d.createComment(""),f=t=>null===t||"object"!=typeof t&&"function"!=typeof t,u=Array.isArray,g="[ \t\n\f\r]",m=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,v=/-->/g,b=/>/g,y=RegExp(`>|${g}(?:([^\\s"'>=/]+)(${g}*=${g}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),$=/'/g,w=/"/g,_=/^(?:script|style|textarea|title)$/i,A=t=>(e,...i)=>({_$litType$:t,strings:e,values:i}),x=A(1),k=(A(2),A(3),Symbol.for("lit-noChange")),E=Symbol.for("lit-nothing"),S=new WeakMap,z=d.createTreeWalker(d,129);function C(t,e){if(!u(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==s?s.createHTML(e):e}const P=(t,e)=>{const i=t.length-1,n=[];let o,r=2===e?"<svg>":3===e?"<math>":"",s=m;for(let e=0;e<i;e++){const i=t[e];let h,d,p=-1,f=0;for(;f<i.length&&(s.lastIndex=f,d=s.exec(i),null!==d);)f=s.lastIndex,s===m?"!--"===d[1]?s=v:void 0!==d[1]?s=b:void 0!==d[2]?(_.test(d[2])&&(o=RegExp("</"+d[2],"g")),s=y):void 0!==d[3]&&(s=y):s===y?">"===d[0]?(s=o??m,p=-1):void 0===d[1]?p=-2:(p=s.lastIndex-d[2].length,h=d[1],s=void 0===d[3]?y:'"'===d[3]?w:$):s===w||s===$?s=y:s===v||s===b?s=m:(s=y,o=void 0);const u=s===y&&t[e+1].startsWith("/>")?" ":"";r+=s===m?i+c:p>=0?(n.push(h),i.slice(0,p)+a+i.slice(p)+l+u):i+l+(-2===p?e:u)}return[C(t,r+(t[i]||"<?>")+(2===e?"</svg>":3===e?"</math>":"")),n]};class H{constructor({strings:t,_$litType$:e},i){let n;this.parts=[];let o=0,s=0;const c=t.length-1,d=this.parts,[f,u]=P(t,e);if(this.el=H.createElement(f,i),z.currentNode=this.el.content,2===e||3===e){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(n=z.nextNode())&&d.length<c;){if(1===n.nodeType){if(n.hasAttributes())for(const t of n.getAttributeNames())if(t.endsWith(a)){const e=u[s++],i=n.getAttribute(t).split(l),r=/([.?@])?(.*)/.exec(e);d.push({type:1,index:o,name:r[2],strings:i,ctor:"."===r[1]?M:"?"===r[1]?N:"@"===r[1]?j:R}),n.removeAttribute(t)}else t.startsWith(l)&&(d.push({type:6,index:o}),n.removeAttribute(t));if(_.test(n.tagName)){const t=n.textContent.split(l),e=t.length-1;if(e>0){n.textContent=r?r.emptyScript:"";for(let i=0;i<e;i++)n.append(t[i],p()),z.nextNode(),d.push({type:2,index:++o});n.append(t[e],p())}}}else if(8===n.nodeType)if(n.data===h)d.push({type:2,index:o});else{let t=-1;for(;-1!==(t=n.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 U(t,e,i=t,n){if(e===k)return e;let o=void 0!==n?i._$Co?.[n]:i._$Cl;const r=f(e)?void 0:e._$litDirective$;return o?.constructor!==r&&(o?._$AO?.(!1),void 0===r?o=void 0:(o=new r(t),o._$AT(t,i,n)),void 0!==n?(i._$Co??=[])[n]=o:i._$Cl=o),void 0!==o&&(e=U(t,o._$AS(t,e.values),o,n)),e}class O{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,n=(t?.creationScope??d).importNode(e,!0);z.currentNode=n;let o=z.nextNode(),r=0,s=0,a=i[0];for(;void 0!==a;){if(r===a.index){let e;2===a.type?e=new T(o,o.nextSibling,this,t):1===a.type?e=new a.ctor(o,a.name,a.strings,this,t):6===a.type&&(e=new q(o,this,t)),this._$AV.push(e),a=i[++s]}r!==a?.index&&(o=z.nextNode(),r++)}return z.currentNode=d,n}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 T{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,e,i,n){this.type=2,this._$AH=E,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=i,this.options=n,this._$Cv=n?.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=U(this,t,e),f(t)?t===E||null==t||""===t?(this._$AH!==E&&this._$AR(),this._$AH=E):t!==this._$AH&&t!==k&&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!==E&&f(this._$AH)?this._$AA.nextSibling.data=t:this.T(d.createTextNode(t)),this._$AH=t}$(t){const{values:e,_$litType$:i}=t,n="number"==typeof i?this._$AC(t):(void 0===i.el&&(i.el=H.createElement(C(i.h,i.h[0]),this.options)),i);if(this._$AH?._$AD===n)this._$AH.p(e);else{const t=new O(n,this),i=t.u(this.options);t.p(e),this.T(i),this._$AH=t}}_$AC(t){let e=S.get(t.strings);return void 0===e&&S.set(t.strings,e=new H(t)),e}k(t){u(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let i,n=0;for(const o of t)n===e.length?e.push(i=new T(this.O(p()),this.O(p()),this,this.options)):i=e[n],i._$AI(o),n++;n<e.length&&(this._$AR(i&&i._$AB.nextSibling,n),e.length=n)}_$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 R{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,i,n,o){this.type=1,this._$AH=E,this._$AN=void 0,this.element=t,this.name=e,this._$AM=n,this.options=o,i.length>2||""!==i[0]||""!==i[1]?(this._$AH=Array(i.length-1).fill(new String),this.strings=i):this._$AH=E}_$AI(t,e=this,i,n){const o=this.strings;let r=!1;if(void 0===o)t=U(this,t,e,0),r=!f(t)||t!==this._$AH&&t!==k,r&&(this._$AH=t);else{const n=t;let s,a;for(t=o[0],s=0;s<o.length-1;s++)a=U(this,n[i+s],e,s),a===k&&(a=this._$AH[s]),r||=!f(a)||a!==this._$AH[s],a===E?t=E:t!==E&&(t+=(a??"")+o[s+1]),this._$AH[s]=a}r&&!n&&this.j(t)}j(t){t===E?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class M extends R{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===E?void 0:t}}class N extends R{constructor(){super(...arguments),this.type=4}j(t){this.element.toggleAttribute(this.name,!!t&&t!==E)}}class j extends R{constructor(t,e,i,n,o){super(t,e,i,n,o),this.type=5}_$AI(t,e=this){if((t=U(this,t,e,0)??E)===k)return;const i=this._$AH,n=t===E&&i!==E||t.capture!==i.capture||t.once!==i.once||t.passive!==i.passive,o=t!==E&&(i===E||n);n&&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 q{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){U(this,t)}}const D=n.litHtmlPolyfillSupport;D?.(H,T),(n.litHtmlVersions??=[]).push("3.3.2");const L=(t,e,i)=>{const n=i?.renderBefore??e;let o=n._$litPart$;if(void 0===o){const t=i?.renderBefore??null;n._$litPart$=o=new T(e.insertBefore(p(),t),t,void 0,i??{})}return o._$AI(t),o}},161(t,e,i){i.d(e,{AH:()=>n.AH,WF:()=>n.WF,qy:()=>n.qy}),i(760),i(752);var n=i(228)}},e={};function i(n){var o=e[n];if(void 0!==o)return o.exports;var r=e[n]={exports:{}};return t[n](r,r.exports,i),r.exports}i.d=(t,e)=>{for(var n in e)i.o(e,n)&&!i.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},i.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var n=i(161),o=i(601),r=i(205),s=i(227);i(562);class a extends n.WF{static properties={previousTitle:{},previousUrl:{},nextTitle:{},nextUrl:{}};static styles=(()=>[o.s,r.g,s.V,n.AH`
|
|
643
647
|
:host {
|
|
644
648
|
display: block;
|
|
645
649
|
}
|
|
@@ -461,6 +461,10 @@
|
|
|
461
461
|
font-weight: normal;
|
|
462
462
|
}
|
|
463
463
|
|
|
464
|
+
.balance {
|
|
465
|
+
text-wrap: balance;
|
|
466
|
+
}
|
|
467
|
+
|
|
464
468
|
.prominent-link,
|
|
465
469
|
a.prominent-link {
|
|
466
470
|
--accent-color: var(--purple-60);
|
|
@@ -670,7 +674,7 @@
|
|
|
670
674
|
white-space: nowrap;
|
|
671
675
|
word-wrap: normal;
|
|
672
676
|
}
|
|
673
|
-
`},826(t,e,i){i.d(e,{AH:()=>l,Rf:()=>c,sk:()=>h});const s=globalThis,n=s.ShadowRoot&&(void 0===s.ShadyCSS||s.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,o=Symbol(),r=new WeakMap;class a{constructor(t,e,i){if(this._$cssResult$=!0,i!==o)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(n&&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,s)=>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[s+1],t[0]);return new a(i,t,o)},c=(t,e)=>{if(n)t.adoptedStyleSheets=e.map(t=>t instanceof CSSStyleSheet?t:t.styleSheet);else for(const i of e){const e=document.createElement("style"),n=s.litNonce;void 0!==n&&e.setAttribute("nonce",n),e.textContent=i.cssText,t.appendChild(e)}},h=n?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const i of t.cssRules)e+=i.cssText;return(t=>new a("string"==typeof t?t:t+"",void 0,o))(e)})(t):t},760(t,e,i){i.d(e,{AH:()=>s.AH,mN:()=>y});var s=i(826);const{is:n,defineProperty:o,getOwnPropertyDescriptor:r,getOwnPropertyNames:a,getOwnPropertySymbols:l,getPrototypeOf:c}=Object,h=globalThis,p=h.trustedTypes,d=p?p.emptyScript:"",g=h.reactiveElementPolyfillSupport,m=(t,e)=>t,f={toAttribute(t,e){switch(e){case Boolean:t=t?d: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}},u=(t,e)=>!n(t,e),v={attribute:!0,type:String,converter:f,reflect:!1,useDefault:!1,hasChanged:u};Symbol.metadata??=Symbol("metadata"),h.litPropertyMetadata??=new WeakMap;class y 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=v){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(),s=this.getPropertyDescriptor(t,i,e);void 0!==s&&o(this.prototype,t,s)}}static getPropertyDescriptor(t,e,i){const{get:s,set:n}=r(this.prototype,t)??{get(){return this[e]},set(t){this[e]=t}};return{get:s,set(e){const o=s?.call(this);n?.call(this,e),this.requestUpdate(t,o,i)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??v}static _$Ei(){if(this.hasOwnProperty(m("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(m("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(m("properties"))){const t=this.properties,e=[...a(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,s.sk)(t))}else void 0!==t&&e.push((0,s.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,s.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),s=this.constructor._$Eu(t,i);if(void 0!==s&&!0===i.reflect){const n=(void 0!==i.converter?.toAttribute?i.converter:f).toAttribute(e,i.type);this._$Em=t,null==n?this.removeAttribute(s):this.setAttribute(s,n),this._$Em=null}}_$AK(t,e){const i=this.constructor,s=i._$Eh.get(t);if(void 0!==s&&this._$Em!==s){const t=i.getPropertyOptions(s),n="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:f;this._$Em=s;const o=n.fromAttribute(e,t.type);this[s]=o??this._$Ej?.get(s)??o,this._$Em=null}}requestUpdate(t,e,i,s=!1,n){if(void 0!==t){const o=this.constructor;if(!1===s&&(n=this[t]),i??=o.getPropertyOptions(t),!((i.hasChanged??u)(n,e)||i.useDefault&&i.reflect&&n===this._$Ej?.get(t)&&!this.hasAttribute(o._$Eu(t,i))))return;this.C(t,e,i)}!1===this.isUpdatePending&&(this._$ES=this._$EP())}C(t,e,{useDefault:i,reflect:s,wrapped:n},o){i&&!(this._$Ej??=new Map).has(t)&&(this._$Ej.set(t,o??e??this[t]),!0!==n||void 0!==o)||(this._$AL.has(t)||(this.hasUpdated||i||(e=void 0),this._$AL.set(t,e)),!0===s&&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,s=this[e];!0!==t||this._$AL.has(e)||void 0===s||this.C(e,void 0,i,s)}}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){}}y.elementStyles=[],y.shadowRootOptions={mode:"open"},y[m("elementProperties")]=new Map,y[m("finalized")]=new Map,g?.({ReactiveElement:y}),(h.reactiveElementVersions??=[]).push("2.1.2")},228(t,e,i){i.d(e,{AH:()=>s.AH,WF:()=>r,qy:()=>n.qy,s6:()=>n.s6});var s=i(760),n=i(752);const o=globalThis;class r extends s.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,n.XX)(e,this.renderRoot,this.renderOptions)}connectedCallback(){super.connectedCallback(),this._$Do?.setConnected(!0)}disconnectedCallback(){super.disconnectedCallback(),this._$Do?.setConnected(!1)}render(){return n.c0}}r._$litElement$=!0,r.finalized=!0,o.litElementHydrateSupport?.({LitElement:r});const a=o.litElementPolyfillSupport;a?.({LitElement:r}),(o.litElementVersions??=[]).push("4.2.2")},752(t,e,i){i.d(e,{XX:()=>I,c0:()=>k,qy:()=>x,s6:()=>z});const s=globalThis,n=t=>t,o=s.trustedTypes,r=o?o.createPolicy("lit-html",{createHTML:t=>t}):void 0,a="$lit$",l=`lit$${Math.random().toFixed(9).slice(2)}$`,c="?"+l,h=`<${c}>`,p=document,d=()=>p.createComment(""),g=t=>null===t||"object"!=typeof t&&"function"!=typeof t,m=Array.isArray,f="[ \t\n\f\r]",u=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,v=/-->/g,y=/>/g,w=RegExp(`>|${f}(?:([^\\s"'>=/]+)(${f}*=${f}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),$=/'/g,b=/"/g,_=/^(?:script|style|textarea|title)$/i,A=t=>(e,...i)=>({_$litType$:t,strings:e,values:i}),x=A(1),k=(A(2),A(3),Symbol.for("lit-noChange")),z=Symbol.for("lit-nothing"),E=new WeakMap,C=p.createTreeWalker(p,129);function S(t,e){if(!m(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==r?r.createHTML(e):e}const H=(t,e)=>{const i=t.length-1,s=[];let n,o=2===e?"<svg>":3===e?"<math>":"",r=u;for(let e=0;e<i;e++){const i=t[e];let c,p,d=-1,g=0;for(;g<i.length&&(r.lastIndex=g,p=r.exec(i),null!==p);)g=r.lastIndex,r===u?"!--"===p[1]?r=v:void 0!==p[1]?r=y:void 0!==p[2]?(_.test(p[2])&&(n=RegExp("</"+p[2],"g")),r=w):void 0!==p[3]&&(r=w):r===w?">"===p[0]?(r=n??u,d=-1):void 0===p[1]?d=-2:(d=r.lastIndex-p[2].length,c=p[1],r=void 0===p[3]?w:'"'===p[3]?b:$):r===b||r===$?r=w:r===v||r===y?r=u:(r=w,n=void 0);const m=r===w&&t[e+1].startsWith("/>")?" ":"";o+=r===u?i+h:d>=0?(s.push(c),i.slice(0,d)+a+i.slice(d)+l+m):i+l+(-2===d?e:m)}return[S(t,o+(t[i]||"<?>")+(2===e?"</svg>":3===e?"</math>":"")),s]};class U{constructor({strings:t,_$litType$:e},i){let s;this.parts=[];let n=0,r=0;const h=t.length-1,p=this.parts,[g,m]=H(t,e);if(this.el=U.createElement(g,i),C.currentNode=this.el.content,2===e||3===e){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(s=C.nextNode())&&p.length<h;){if(1===s.nodeType){if(s.hasAttributes())for(const t of s.getAttributeNames())if(t.endsWith(a)){const e=m[r++],i=s.getAttribute(t).split(l),o=/([.?@])?(.*)/.exec(e);p.push({type:1,index:n,name:o[2],strings:i,ctor:"."===o[1]?F:"?"===o[1]?O:"@"===o[1]?q:T}),s.removeAttribute(t)}else t.startsWith(l)&&(p.push({type:6,index:n}),s.removeAttribute(t));if(_.test(s.tagName)){const t=s.textContent.split(l),e=t.length-1;if(e>0){s.textContent=o?o.emptyScript:"";for(let i=0;i<e;i++)s.append(t[i],d()),C.nextNode(),p.push({type:2,index:++n});s.append(t[e],d())}}}else if(8===s.nodeType)if(s.data===c)p.push({type:2,index:n});else{let t=-1;for(;-1!==(t=s.data.indexOf(l,t+1));)p.push({type:7,index:n}),t+=l.length-1}n++}}static createElement(t,e){const i=p.createElement("template");return i.innerHTML=t,i}}function M(t,e,i=t,s){if(e===k)return e;let n=void 0!==s?i._$Co?.[s]:i._$Cl;const o=g(e)?void 0:e._$litDirective$;return n?.constructor!==o&&(n?._$AO?.(!1),void 0===o?n=void 0:(n=new o(t),n._$AT(t,i,s)),void 0!==s?(i._$Co??=[])[s]=n:i._$Cl=n),void 0!==n&&(e=M(t,n._$AS(t,e.values),n,s)),e}class L{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,s=(t?.creationScope??p).importNode(e,!0);C.currentNode=s;let n=C.nextNode(),o=0,r=0,a=i[0];for(;void 0!==a;){if(o===a.index){let e;2===a.type?e=new P(n,n.nextSibling,this,t):1===a.type?e=new a.ctor(n,a.name,a.strings,this,t):6===a.type&&(e=new R(n,this,t)),this._$AV.push(e),a=i[++r]}o!==a?.index&&(n=C.nextNode(),o++)}return C.currentNode=p,s}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 P{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,e,i,s){this.type=2,this._$AH=z,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=i,this.options=s,this._$Cv=s?.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=M(this,t,e),g(t)?t===z||null==t||""===t?(this._$AH!==z&&this._$AR(),this._$AH=z):t!==this._$AH&&t!==k&&this._(t):void 0!==t._$litType$?this.$(t):void 0!==t.nodeType?this.T(t):(t=>m(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(p.createTextNode(t)),this._$AH=t}$(t){const{values:e,_$litType$:i}=t,s="number"==typeof i?this._$AC(t):(void 0===i.el&&(i.el=U.createElement(S(i.h,i.h[0]),this.options)),i);if(this._$AH?._$AD===s)this._$AH.p(e);else{const t=new L(s,this),i=t.u(this.options);t.p(e),this.T(i),this._$AH=t}}_$AC(t){let e=E.get(t.strings);return void 0===e&&E.set(t.strings,e=new U(t)),e}k(t){m(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let i,s=0;for(const n of t)s===e.length?e.push(i=new P(this.O(d()),this.O(d()),this,this.options)):i=e[s],i._$AI(n),s++;s<e.length&&(this._$AR(i&&i._$AB.nextSibling,s),e.length=s)}_$AR(t=this._$AA.nextSibling,e){for(this._$AP?.(!1,!0,e);t!==this._$AB;){const e=n(t).nextSibling;n(t).remove(),t=e}}setConnected(t){void 0===this._$AM&&(this._$Cv=t,this._$AP?.(t))}}class T{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,i,s,n){this.type=1,this._$AH=z,this._$AN=void 0,this.element=t,this.name=e,this._$AM=s,this.options=n,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,s){const n=this.strings;let o=!1;if(void 0===n)t=M(this,t,e,0),o=!g(t)||t!==this._$AH&&t!==k,o&&(this._$AH=t);else{const s=t;let r,a;for(t=n[0],r=0;r<n.length-1;r++)a=M(this,s[i+r],e,r),a===k&&(a=this._$AH[r]),o||=!g(a)||a!==this._$AH[r],a===z?t=z:t!==z&&(t+=(a??"")+n[r+1]),this._$AH[r]=a}o&&!s&&this.j(t)}j(t){t===z?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class F extends T{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===z?void 0:t}}class O extends T{constructor(){super(...arguments),this.type=4}j(t){this.element.toggleAttribute(this.name,!!t&&t!==z)}}class q extends T{constructor(t,e,i,s,n){super(t,e,i,s,n),this.type=5}_$AI(t,e=this){if((t=M(this,t,e,0)??z)===k)return;const i=this._$AH,s=t===z&&i!==z||t.capture!==i.capture||t.once!==i.once||t.passive!==i.passive,n=t!==z&&(i===z||s);s&&this.element.removeEventListener(this.name,this,i),n&&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 R{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){M(this,t)}}const N=s.litHtmlPolyfillSupport;N?.(U,P),(s.litHtmlVersions??=[]).push("3.3.2");const I=(t,e,i)=>{const s=i?.renderBefore??e;let n=s._$litPart$;if(void 0===n){const t=i?.renderBefore??null;s._$litPart$=n=new P(e.insertBefore(d(),t),t,void 0,i??{})}return n._$AI(t),n}},161(t,e,i){i.d(e,{AH:()=>s.AH,WF:()=>s.WF,qy:()=>s.qy,s6:()=>s.s6}),i(760),i(752);var s=i(228)}},e={};function i(s){var n=e[s];if(void 0!==n)return n.exports;var o=e[s]={exports:{}};return t[s](o,o.exports,i),o.exports}i.d=(t,e)=>{for(var s in e)i.o(e,s)&&!i.o(t,s)&&Object.defineProperty(t,s,{enumerable:!0,get:e[s]})},i.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var s=i(161),n=i(601),o=i(205);i(330),i(804);class r extends s.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=(()=>[n.s,o.g,s.AH`
|
|
677
|
+
`},826(t,e,i){i.d(e,{AH:()=>l,Rf:()=>c,sk:()=>h});const s=globalThis,n=s.ShadowRoot&&(void 0===s.ShadyCSS||s.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,o=Symbol(),r=new WeakMap;class a{constructor(t,e,i){if(this._$cssResult$=!0,i!==o)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(n&&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,s)=>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[s+1],t[0]);return new a(i,t,o)},c=(t,e)=>{if(n)t.adoptedStyleSheets=e.map(t=>t instanceof CSSStyleSheet?t:t.styleSheet);else for(const i of e){const e=document.createElement("style"),n=s.litNonce;void 0!==n&&e.setAttribute("nonce",n),e.textContent=i.cssText,t.appendChild(e)}},h=n?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const i of t.cssRules)e+=i.cssText;return(t=>new a("string"==typeof t?t:t+"",void 0,o))(e)})(t):t},760(t,e,i){i.d(e,{AH:()=>s.AH,mN:()=>w});var s=i(826);const{is:n,defineProperty:o,getOwnPropertyDescriptor:r,getOwnPropertyNames:a,getOwnPropertySymbols:l,getPrototypeOf:c}=Object,h=globalThis,p=h.trustedTypes,d=p?p.emptyScript:"",g=h.reactiveElementPolyfillSupport,m=(t,e)=>t,f={toAttribute(t,e){switch(e){case Boolean:t=t?d: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}},u=(t,e)=>!n(t,e),v={attribute:!0,type:String,converter:f,reflect:!1,useDefault:!1,hasChanged:u};Symbol.metadata??=Symbol("metadata"),h.litPropertyMetadata??=new WeakMap;class w 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=v){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(),s=this.getPropertyDescriptor(t,i,e);void 0!==s&&o(this.prototype,t,s)}}static getPropertyDescriptor(t,e,i){const{get:s,set:n}=r(this.prototype,t)??{get(){return this[e]},set(t){this[e]=t}};return{get:s,set(e){const o=s?.call(this);n?.call(this,e),this.requestUpdate(t,o,i)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??v}static _$Ei(){if(this.hasOwnProperty(m("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(m("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(m("properties"))){const t=this.properties,e=[...a(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,s.sk)(t))}else void 0!==t&&e.push((0,s.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,s.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),s=this.constructor._$Eu(t,i);if(void 0!==s&&!0===i.reflect){const n=(void 0!==i.converter?.toAttribute?i.converter:f).toAttribute(e,i.type);this._$Em=t,null==n?this.removeAttribute(s):this.setAttribute(s,n),this._$Em=null}}_$AK(t,e){const i=this.constructor,s=i._$Eh.get(t);if(void 0!==s&&this._$Em!==s){const t=i.getPropertyOptions(s),n="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:f;this._$Em=s;const o=n.fromAttribute(e,t.type);this[s]=o??this._$Ej?.get(s)??o,this._$Em=null}}requestUpdate(t,e,i,s=!1,n){if(void 0!==t){const o=this.constructor;if(!1===s&&(n=this[t]),i??=o.getPropertyOptions(t),!((i.hasChanged??u)(n,e)||i.useDefault&&i.reflect&&n===this._$Ej?.get(t)&&!this.hasAttribute(o._$Eu(t,i))))return;this.C(t,e,i)}!1===this.isUpdatePending&&(this._$ES=this._$EP())}C(t,e,{useDefault:i,reflect:s,wrapped:n},o){i&&!(this._$Ej??=new Map).has(t)&&(this._$Ej.set(t,o??e??this[t]),!0!==n||void 0!==o)||(this._$AL.has(t)||(this.hasUpdated||i||(e=void 0),this._$AL.set(t,e)),!0===s&&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,s=this[e];!0!==t||this._$AL.has(e)||void 0===s||this.C(e,void 0,i,s)}}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){}}w.elementStyles=[],w.shadowRootOptions={mode:"open"},w[m("elementProperties")]=new Map,w[m("finalized")]=new Map,g?.({ReactiveElement:w}),(h.reactiveElementVersions??=[]).push("2.1.2")},228(t,e,i){i.d(e,{AH:()=>s.AH,WF:()=>r,qy:()=>n.qy,s6:()=>n.s6});var s=i(760),n=i(752);const o=globalThis;class r extends s.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,n.XX)(e,this.renderRoot,this.renderOptions)}connectedCallback(){super.connectedCallback(),this._$Do?.setConnected(!0)}disconnectedCallback(){super.disconnectedCallback(),this._$Do?.setConnected(!1)}render(){return n.c0}}r._$litElement$=!0,r.finalized=!0,o.litElementHydrateSupport?.({LitElement:r});const a=o.litElementPolyfillSupport;a?.({LitElement:r}),(o.litElementVersions??=[]).push("4.2.2")},752(t,e,i){i.d(e,{XX:()=>I,c0:()=>k,qy:()=>x,s6:()=>z});const s=globalThis,n=t=>t,o=s.trustedTypes,r=o?o.createPolicy("lit-html",{createHTML:t=>t}):void 0,a="$lit$",l=`lit$${Math.random().toFixed(9).slice(2)}$`,c="?"+l,h=`<${c}>`,p=document,d=()=>p.createComment(""),g=t=>null===t||"object"!=typeof t&&"function"!=typeof t,m=Array.isArray,f="[ \t\n\f\r]",u=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,v=/-->/g,w=/>/g,y=RegExp(`>|${f}(?:([^\\s"'>=/]+)(${f}*=${f}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),$=/'/g,b=/"/g,_=/^(?:script|style|textarea|title)$/i,A=t=>(e,...i)=>({_$litType$:t,strings:e,values:i}),x=A(1),k=(A(2),A(3),Symbol.for("lit-noChange")),z=Symbol.for("lit-nothing"),E=new WeakMap,C=p.createTreeWalker(p,129);function S(t,e){if(!m(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==r?r.createHTML(e):e}const H=(t,e)=>{const i=t.length-1,s=[];let n,o=2===e?"<svg>":3===e?"<math>":"",r=u;for(let e=0;e<i;e++){const i=t[e];let c,p,d=-1,g=0;for(;g<i.length&&(r.lastIndex=g,p=r.exec(i),null!==p);)g=r.lastIndex,r===u?"!--"===p[1]?r=v:void 0!==p[1]?r=w:void 0!==p[2]?(_.test(p[2])&&(n=RegExp("</"+p[2],"g")),r=y):void 0!==p[3]&&(r=y):r===y?">"===p[0]?(r=n??u,d=-1):void 0===p[1]?d=-2:(d=r.lastIndex-p[2].length,c=p[1],r=void 0===p[3]?y:'"'===p[3]?b:$):r===b||r===$?r=y:r===v||r===w?r=u:(r=y,n=void 0);const m=r===y&&t[e+1].startsWith("/>")?" ":"";o+=r===u?i+h:d>=0?(s.push(c),i.slice(0,d)+a+i.slice(d)+l+m):i+l+(-2===d?e:m)}return[S(t,o+(t[i]||"<?>")+(2===e?"</svg>":3===e?"</math>":"")),s]};class U{constructor({strings:t,_$litType$:e},i){let s;this.parts=[];let n=0,r=0;const h=t.length-1,p=this.parts,[g,m]=H(t,e);if(this.el=U.createElement(g,i),C.currentNode=this.el.content,2===e||3===e){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(s=C.nextNode())&&p.length<h;){if(1===s.nodeType){if(s.hasAttributes())for(const t of s.getAttributeNames())if(t.endsWith(a)){const e=m[r++],i=s.getAttribute(t).split(l),o=/([.?@])?(.*)/.exec(e);p.push({type:1,index:n,name:o[2],strings:i,ctor:"."===o[1]?F:"?"===o[1]?O:"@"===o[1]?q:T}),s.removeAttribute(t)}else t.startsWith(l)&&(p.push({type:6,index:n}),s.removeAttribute(t));if(_.test(s.tagName)){const t=s.textContent.split(l),e=t.length-1;if(e>0){s.textContent=o?o.emptyScript:"";for(let i=0;i<e;i++)s.append(t[i],d()),C.nextNode(),p.push({type:2,index:++n});s.append(t[e],d())}}}else if(8===s.nodeType)if(s.data===c)p.push({type:2,index:n});else{let t=-1;for(;-1!==(t=s.data.indexOf(l,t+1));)p.push({type:7,index:n}),t+=l.length-1}n++}}static createElement(t,e){const i=p.createElement("template");return i.innerHTML=t,i}}function M(t,e,i=t,s){if(e===k)return e;let n=void 0!==s?i._$Co?.[s]:i._$Cl;const o=g(e)?void 0:e._$litDirective$;return n?.constructor!==o&&(n?._$AO?.(!1),void 0===o?n=void 0:(n=new o(t),n._$AT(t,i,s)),void 0!==s?(i._$Co??=[])[s]=n:i._$Cl=n),void 0!==n&&(e=M(t,n._$AS(t,e.values),n,s)),e}class L{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,s=(t?.creationScope??p).importNode(e,!0);C.currentNode=s;let n=C.nextNode(),o=0,r=0,a=i[0];for(;void 0!==a;){if(o===a.index){let e;2===a.type?e=new P(n,n.nextSibling,this,t):1===a.type?e=new a.ctor(n,a.name,a.strings,this,t):6===a.type&&(e=new R(n,this,t)),this._$AV.push(e),a=i[++r]}o!==a?.index&&(n=C.nextNode(),o++)}return C.currentNode=p,s}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 P{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,e,i,s){this.type=2,this._$AH=z,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=i,this.options=s,this._$Cv=s?.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=M(this,t,e),g(t)?t===z||null==t||""===t?(this._$AH!==z&&this._$AR(),this._$AH=z):t!==this._$AH&&t!==k&&this._(t):void 0!==t._$litType$?this.$(t):void 0!==t.nodeType?this.T(t):(t=>m(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(p.createTextNode(t)),this._$AH=t}$(t){const{values:e,_$litType$:i}=t,s="number"==typeof i?this._$AC(t):(void 0===i.el&&(i.el=U.createElement(S(i.h,i.h[0]),this.options)),i);if(this._$AH?._$AD===s)this._$AH.p(e);else{const t=new L(s,this),i=t.u(this.options);t.p(e),this.T(i),this._$AH=t}}_$AC(t){let e=E.get(t.strings);return void 0===e&&E.set(t.strings,e=new U(t)),e}k(t){m(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let i,s=0;for(const n of t)s===e.length?e.push(i=new P(this.O(d()),this.O(d()),this,this.options)):i=e[s],i._$AI(n),s++;s<e.length&&(this._$AR(i&&i._$AB.nextSibling,s),e.length=s)}_$AR(t=this._$AA.nextSibling,e){for(this._$AP?.(!1,!0,e);t!==this._$AB;){const e=n(t).nextSibling;n(t).remove(),t=e}}setConnected(t){void 0===this._$AM&&(this._$Cv=t,this._$AP?.(t))}}class T{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,i,s,n){this.type=1,this._$AH=z,this._$AN=void 0,this.element=t,this.name=e,this._$AM=s,this.options=n,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,s){const n=this.strings;let o=!1;if(void 0===n)t=M(this,t,e,0),o=!g(t)||t!==this._$AH&&t!==k,o&&(this._$AH=t);else{const s=t;let r,a;for(t=n[0],r=0;r<n.length-1;r++)a=M(this,s[i+r],e,r),a===k&&(a=this._$AH[r]),o||=!g(a)||a!==this._$AH[r],a===z?t=z:t!==z&&(t+=(a??"")+n[r+1]),this._$AH[r]=a}o&&!s&&this.j(t)}j(t){t===z?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class F extends T{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===z?void 0:t}}class O extends T{constructor(){super(...arguments),this.type=4}j(t){this.element.toggleAttribute(this.name,!!t&&t!==z)}}class q extends T{constructor(t,e,i,s,n){super(t,e,i,s,n),this.type=5}_$AI(t,e=this){if((t=M(this,t,e,0)??z)===k)return;const i=this._$AH,s=t===z&&i!==z||t.capture!==i.capture||t.once!==i.once||t.passive!==i.passive,n=t!==z&&(i===z||s);s&&this.element.removeEventListener(this.name,this,i),n&&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 R{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){M(this,t)}}const N=s.litHtmlPolyfillSupport;N?.(U,P),(s.litHtmlVersions??=[]).push("3.3.2");const I=(t,e,i)=>{const s=i?.renderBefore??e;let n=s._$litPart$;if(void 0===n){const t=i?.renderBefore??null;s._$litPart$=n=new P(e.insertBefore(d(),t),t,void 0,i??{})}return n._$AI(t),n}},161(t,e,i){i.d(e,{AH:()=>s.AH,WF:()=>s.WF,qy:()=>s.qy,s6:()=>s.s6}),i(760),i(752);var s=i(228)}},e={};function i(s){var n=e[s];if(void 0!==n)return n.exports;var o=e[s]={exports:{}};return t[s](o,o.exports,i),o.exports}i.d=(t,e)=>{for(var s in e)i.o(e,s)&&!i.o(t,s)&&Object.defineProperty(t,s,{enumerable:!0,get:e[s]})},i.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var s=i(161),n=i(601),o=i(205);i(330),i(804);class r extends s.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=(()=>[n.s,o.g,s.AH`
|
|
674
678
|
:host {
|
|
675
679
|
display: block;
|
|
676
680
|
}
|
package/dist/components/promo.js
CHANGED
package/dist/components/stat.js
CHANGED
|
@@ -439,6 +439,10 @@
|
|
|
439
439
|
font-weight: normal;
|
|
440
440
|
}
|
|
441
441
|
|
|
442
|
+
.balance {
|
|
443
|
+
text-wrap: balance;
|
|
444
|
+
}
|
|
445
|
+
|
|
442
446
|
.prominent-link,
|
|
443
447
|
a.prominent-link {
|
|
444
448
|
--accent-color: var(--purple-60);
|
|
@@ -648,7 +652,7 @@
|
|
|
648
652
|
white-space: nowrap;
|
|
649
653
|
word-wrap: normal;
|
|
650
654
|
}
|
|
651
|
-
`},826(t,e,i){i.d(e,{AH:()=>l,Rf:()=>h,sk:()=>c});const n=globalThis,o=n.ShadowRoot&&(void 0===n.ShadyCSS||n.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,r=Symbol(),s=new WeakMap;class a{constructor(t,e,i){if(this._$cssResult$=!0,i!==r)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=s.get(e)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),i&&s.set(e,t))}return t}toString(){return this.cssText}}const l=(t,...e)=>{const i=1===t.length?t[0]:e.reduce((e,i,n)=>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[n+1],t[0]);return new a(i,t,r)},h=(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=n.litNonce;void 0!==o&&e.setAttribute("nonce",o),e.textContent=i.cssText,t.appendChild(e)}},c=o?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const i of t.cssRules)e+=i.cssText;return(t=>new a("string"==typeof t?t:t+"",void 0,r))(e)})(t):t},760(t,e,i){i.d(e,{AH:()=>n.AH,mN:()=>m});var n=i(826);const{is:o,defineProperty:r,getOwnPropertyDescriptor:s,getOwnPropertyNames:a,getOwnPropertySymbols:l,getPrototypeOf:h}=Object,c=globalThis,d=c.trustedTypes,p=d?d.emptyScript:"",u=c.reactiveElementPolyfillSupport,f=(t,e)=>t,g={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}},b=(t,e)=>!o(t,e),v={attribute:!0,type:String,converter:g,reflect:!1,useDefault:!1,hasChanged:b};Symbol.metadata??=Symbol("metadata"),c.litPropertyMetadata??=new WeakMap;class m 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=v){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(),n=this.getPropertyDescriptor(t,i,e);void 0!==n&&r(this.prototype,t,n)}}static getPropertyDescriptor(t,e,i){const{get:n,set:o}=s(this.prototype,t)??{get(){return this[e]},set(t){this[e]=t}};return{get:n,set(e){const r=n?.call(this);o?.call(this,e),this.requestUpdate(t,r,i)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??v}static _$Ei(){if(this.hasOwnProperty(f("elementProperties")))return;const t=h(this);t.finalize(),void 0!==t.l&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(f("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(f("properties"))){const t=this.properties,e=[...a(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,n.sk)(t))}else void 0!==t&&e.push((0,n.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,n.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),n=this.constructor._$Eu(t,i);if(void 0!==n&&!0===i.reflect){const o=(void 0!==i.converter?.toAttribute?i.converter:g).toAttribute(e,i.type);this._$Em=t,null==o?this.removeAttribute(n):this.setAttribute(n,o),this._$Em=null}}_$AK(t,e){const i=this.constructor,n=i._$Eh.get(t);if(void 0!==n&&this._$Em!==n){const t=i.getPropertyOptions(n),o="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:g;this._$Em=n;const r=o.fromAttribute(e,t.type);this[n]=r??this._$Ej?.get(n)??r,this._$Em=null}}requestUpdate(t,e,i,n=!1,o){if(void 0!==t){const r=this.constructor;if(!1===n&&(o=this[t]),i??=r.getPropertyOptions(t),!((i.hasChanged??b)(o,e)||i.useDefault&&i.reflect&&o===this._$Ej?.get(t)&&!this.hasAttribute(r._$Eu(t,i))))return;this.C(t,e,i)}!1===this.isUpdatePending&&(this._$ES=this._$EP())}C(t,e,{useDefault:i,reflect:n,wrapped:o},r){i&&!(this._$Ej??=new Map).has(t)&&(this._$Ej.set(t,r??e??this[t]),!0!==o||void 0!==r)||(this._$AL.has(t)||(this.hasUpdated||i||(e=void 0),this._$AL.set(t,e)),!0===n&&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,n=this[e];!0!==t||this._$AL.has(e)||void 0===n||this.C(e,void 0,i,n)}}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){}}m.elementStyles=[],m.shadowRootOptions={mode:"open"},m[f("elementProperties")]=new Map,m[f("finalized")]=new Map,u?.({ReactiveElement:m}),(c.reactiveElementVersions??=[]).push("2.1.2")},228(t,e,i){i.d(e,{AH:()=>n.AH,WF:()=>s,qy:()=>o.qy});var n=i(760),o=i(752);const r=globalThis;class s extends n.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}}s._$litElement$=!0,s.finalized=!0,r.litElementHydrateSupport?.({LitElement:s});const a=r.litElementPolyfillSupport;a?.({LitElement:s}),(r.litElementVersions??=[]).push("4.2.2")},752(t,e,i){i.d(e,{XX:()=>L,c0:()=>k,qy:()=>x});const n=globalThis,o=t=>t,r=n.trustedTypes,s=r?r.createPolicy("lit-html",{createHTML:t=>t}):void 0,a="$lit$",l=`lit$${Math.random().toFixed(9).slice(2)}$`,h="?"+l,c=`<${h}>`,d=document,p=()=>d.createComment(""),u=t=>null===t||"object"!=typeof t&&"function"!=typeof t,f=Array.isArray,g="[ \t\n\f\r]",b=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,v=/-->/g,m=/>/g,y=RegExp(`>|${g}(?:([^\\s"'>=/]+)(${g}*=${g}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),$=/'/g,w=/"/g,_=/^(?:script|style|textarea|title)$/i,A=t=>(e,...i)=>({_$litType$:t,strings:e,values:i}),x=A(1),k=(A(2),A(3),Symbol.for("lit-noChange")),E=Symbol.for("lit-nothing"),S=new WeakMap,C=d.createTreeWalker(d,129);function z(t,e){if(!f(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==s?s.createHTML(e):e}const P=(t,e)=>{const i=t.length-1,n=[];let o,r=2===e?"<svg>":3===e?"<math>":"",s=b;for(let e=0;e<i;e++){const i=t[e];let h,d,p=-1,u=0;for(;u<i.length&&(s.lastIndex=u,d=s.exec(i),null!==d);)u=s.lastIndex,s===b?"!--"===d[1]?s=v:void 0!==d[1]?s=m:void 0!==d[2]?(_.test(d[2])&&(o=RegExp("</"+d[2],"g")),s=y):void 0!==d[3]&&(s=y):s===y?">"===d[0]?(s=o??b,p=-1):void 0===d[1]?p=-2:(p=s.lastIndex-d[2].length,h=d[1],s=void 0===d[3]?y:'"'===d[3]?w:$):s===w||s===$?s=y:s===v||s===m?s=b:(s=y,o=void 0);const f=s===y&&t[e+1].startsWith("/>")?" ":"";r+=s===b?i+c:p>=0?(n.push(h),i.slice(0,p)+a+i.slice(p)+l+f):i+l+(-2===p?e:f)}return[z(t,r+(t[i]||"<?>")+(2===e?"</svg>":3===e?"</math>":"")),n]};class H{constructor({strings:t,_$litType$:e},i){let n;this.parts=[];let o=0,s=0;const c=t.length-1,d=this.parts,[u,f]=P(t,e);if(this.el=H.createElement(u,i),C.currentNode=this.el.content,2===e||3===e){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(n=C.nextNode())&&d.length<c;){if(1===n.nodeType){if(n.hasAttributes())for(const t of n.getAttributeNames())if(t.endsWith(a)){const e=f[s++],i=n.getAttribute(t).split(l),r=/([.?@])?(.*)/.exec(e);d.push({type:1,index:o,name:r[2],strings:i,ctor:"."===r[1]?M:"?"===r[1]?N:"@"===r[1]?q:T}),n.removeAttribute(t)}else t.startsWith(l)&&(d.push({type:6,index:o}),n.removeAttribute(t));if(_.test(n.tagName)){const t=n.textContent.split(l),e=t.length-1;if(e>0){n.textContent=r?r.emptyScript:"";for(let i=0;i<e;i++)n.append(t[i],p()),C.nextNode(),d.push({type:2,index:++o});n.append(t[e],p())}}}else if(8===n.nodeType)if(n.data===h)d.push({type:2,index:o});else{let t=-1;for(;-1!==(t=n.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 U(t,e,i=t,n){if(e===k)return e;let o=void 0!==n?i._$Co?.[n]:i._$Cl;const r=u(e)?void 0:e._$litDirective$;return o?.constructor!==r&&(o?._$AO?.(!1),void 0===r?o=void 0:(o=new r(t),o._$AT(t,i,n)),void 0!==n?(i._$Co??=[])[n]=o:i._$Cl=o),void 0!==o&&(e=U(t,o._$AS(t,e.values),o,n)),e}class R{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,n=(t?.creationScope??d).importNode(e,!0);C.currentNode=n;let o=C.nextNode(),r=0,s=0,a=i[0];for(;void 0!==a;){if(r===a.index){let e;2===a.type?e=new O(o,o.nextSibling,this,t):1===a.type?e=new a.ctor(o,a.name,a.strings,this,t):6===a.type&&(e=new I(o,this,t)),this._$AV.push(e),a=i[++s]}r!==a?.index&&(o=C.nextNode(),r++)}return C.currentNode=d,n}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 O{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,e,i,n){this.type=2,this._$AH=E,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=i,this.options=n,this._$Cv=n?.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=U(this,t,e),u(t)?t===E||null==t||""===t?(this._$AH!==E&&this._$AR(),this._$AH=E):t!==this._$AH&&t!==k&&this._(t):void 0!==t._$litType$?this.$(t):void 0!==t.nodeType?this.T(t):(t=>f(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!==E&&u(this._$AH)?this._$AA.nextSibling.data=t:this.T(d.createTextNode(t)),this._$AH=t}$(t){const{values:e,_$litType$:i}=t,n="number"==typeof i?this._$AC(t):(void 0===i.el&&(i.el=H.createElement(z(i.h,i.h[0]),this.options)),i);if(this._$AH?._$AD===n)this._$AH.p(e);else{const t=new R(n,this),i=t.u(this.options);t.p(e),this.T(i),this._$AH=t}}_$AC(t){let e=S.get(t.strings);return void 0===e&&S.set(t.strings,e=new H(t)),e}k(t){f(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let i,n=0;for(const o of t)n===e.length?e.push(i=new O(this.O(p()),this.O(p()),this,this.options)):i=e[n],i._$AI(o),n++;n<e.length&&(this._$AR(i&&i._$AB.nextSibling,n),e.length=n)}_$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 T{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,i,n,o){this.type=1,this._$AH=E,this._$AN=void 0,this.element=t,this.name=e,this._$AM=n,this.options=o,i.length>2||""!==i[0]||""!==i[1]?(this._$AH=Array(i.length-1).fill(new String),this.strings=i):this._$AH=E}_$AI(t,e=this,i,n){const o=this.strings;let r=!1;if(void 0===o)t=U(this,t,e,0),r=!u(t)||t!==this._$AH&&t!==k,r&&(this._$AH=t);else{const n=t;let s,a;for(t=o[0],s=0;s<o.length-1;s++)a=U(this,n[i+s],e,s),a===k&&(a=this._$AH[s]),r||=!u(a)||a!==this._$AH[s],a===E?t=E:t!==E&&(t+=(a??"")+o[s+1]),this._$AH[s]=a}r&&!n&&this.j(t)}j(t){t===E?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class M extends T{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===E?void 0:t}}class N extends T{constructor(){super(...arguments),this.type=4}j(t){this.element.toggleAttribute(this.name,!!t&&t!==E)}}class q extends T{constructor(t,e,i,n,o){super(t,e,i,n,o),this.type=5}_$AI(t,e=this){if((t=U(this,t,e,0)??E)===k)return;const i=this._$AH,n=t===E&&i!==E||t.capture!==i.capture||t.once!==i.once||t.passive!==i.passive,o=t!==E&&(i===E||n);n&&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 I{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){U(this,t)}}const D=n.litHtmlPolyfillSupport;D?.(H,O),(n.litHtmlVersions??=[]).push("3.3.2");const L=(t,e,i)=>{const n=i?.renderBefore??e;let o=n._$litPart$;if(void 0===o){const t=i?.renderBefore??null;n._$litPart$=o=new O(e.insertBefore(p(),t),t,void 0,i??{})}return o._$AI(t),o}},161(t,e,i){i.d(e,{AH:()=>n.AH,WF:()=>n.WF,qy:()=>n.qy}),i(760),i(752);var n=i(228)}},e={};function i(n){var o=e[n];if(void 0!==o)return o.exports;var r=e[n]={exports:{}};return t[n](r,r.exports,i),r.exports}i.d=(t,e)=>{for(var n in e)i.o(e,n)&&!i.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},i.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var n=i(161),o=i(601),r=i(227);i(36);class s extends n.WF{static properties={};static styles=(()=>[o.s,r.V,n.AH`
|
|
655
|
+
`},826(t,e,i){i.d(e,{AH:()=>l,Rf:()=>h,sk:()=>c});const n=globalThis,o=n.ShadowRoot&&(void 0===n.ShadyCSS||n.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,r=Symbol(),s=new WeakMap;class a{constructor(t,e,i){if(this._$cssResult$=!0,i!==r)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=s.get(e)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),i&&s.set(e,t))}return t}toString(){return this.cssText}}const l=(t,...e)=>{const i=1===t.length?t[0]:e.reduce((e,i,n)=>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[n+1],t[0]);return new a(i,t,r)},h=(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=n.litNonce;void 0!==o&&e.setAttribute("nonce",o),e.textContent=i.cssText,t.appendChild(e)}},c=o?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const i of t.cssRules)e+=i.cssText;return(t=>new a("string"==typeof t?t:t+"",void 0,r))(e)})(t):t},760(t,e,i){i.d(e,{AH:()=>n.AH,mN:()=>m});var n=i(826);const{is:o,defineProperty:r,getOwnPropertyDescriptor:s,getOwnPropertyNames:a,getOwnPropertySymbols:l,getPrototypeOf:h}=Object,c=globalThis,d=c.trustedTypes,p=d?d.emptyScript:"",u=c.reactiveElementPolyfillSupport,f=(t,e)=>t,g={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}},b=(t,e)=>!o(t,e),v={attribute:!0,type:String,converter:g,reflect:!1,useDefault:!1,hasChanged:b};Symbol.metadata??=Symbol("metadata"),c.litPropertyMetadata??=new WeakMap;class m 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=v){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(),n=this.getPropertyDescriptor(t,i,e);void 0!==n&&r(this.prototype,t,n)}}static getPropertyDescriptor(t,e,i){const{get:n,set:o}=s(this.prototype,t)??{get(){return this[e]},set(t){this[e]=t}};return{get:n,set(e){const r=n?.call(this);o?.call(this,e),this.requestUpdate(t,r,i)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??v}static _$Ei(){if(this.hasOwnProperty(f("elementProperties")))return;const t=h(this);t.finalize(),void 0!==t.l&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(f("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(f("properties"))){const t=this.properties,e=[...a(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,n.sk)(t))}else void 0!==t&&e.push((0,n.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,n.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),n=this.constructor._$Eu(t,i);if(void 0!==n&&!0===i.reflect){const o=(void 0!==i.converter?.toAttribute?i.converter:g).toAttribute(e,i.type);this._$Em=t,null==o?this.removeAttribute(n):this.setAttribute(n,o),this._$Em=null}}_$AK(t,e){const i=this.constructor,n=i._$Eh.get(t);if(void 0!==n&&this._$Em!==n){const t=i.getPropertyOptions(n),o="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:g;this._$Em=n;const r=o.fromAttribute(e,t.type);this[n]=r??this._$Ej?.get(n)??r,this._$Em=null}}requestUpdate(t,e,i,n=!1,o){if(void 0!==t){const r=this.constructor;if(!1===n&&(o=this[t]),i??=r.getPropertyOptions(t),!((i.hasChanged??b)(o,e)||i.useDefault&&i.reflect&&o===this._$Ej?.get(t)&&!this.hasAttribute(r._$Eu(t,i))))return;this.C(t,e,i)}!1===this.isUpdatePending&&(this._$ES=this._$EP())}C(t,e,{useDefault:i,reflect:n,wrapped:o},r){i&&!(this._$Ej??=new Map).has(t)&&(this._$Ej.set(t,r??e??this[t]),!0!==o||void 0!==r)||(this._$AL.has(t)||(this.hasUpdated||i||(e=void 0),this._$AL.set(t,e)),!0===n&&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,n=this[e];!0!==t||this._$AL.has(e)||void 0===n||this.C(e,void 0,i,n)}}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){}}m.elementStyles=[],m.shadowRootOptions={mode:"open"},m[f("elementProperties")]=new Map,m[f("finalized")]=new Map,u?.({ReactiveElement:m}),(c.reactiveElementVersions??=[]).push("2.1.2")},228(t,e,i){i.d(e,{AH:()=>n.AH,WF:()=>s,qy:()=>o.qy});var n=i(760),o=i(752);const r=globalThis;class s extends n.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}}s._$litElement$=!0,s.finalized=!0,r.litElementHydrateSupport?.({LitElement:s});const a=r.litElementPolyfillSupport;a?.({LitElement:s}),(r.litElementVersions??=[]).push("4.2.2")},752(t,e,i){i.d(e,{XX:()=>L,c0:()=>k,qy:()=>x});const n=globalThis,o=t=>t,r=n.trustedTypes,s=r?r.createPolicy("lit-html",{createHTML:t=>t}):void 0,a="$lit$",l=`lit$${Math.random().toFixed(9).slice(2)}$`,h="?"+l,c=`<${h}>`,d=document,p=()=>d.createComment(""),u=t=>null===t||"object"!=typeof t&&"function"!=typeof t,f=Array.isArray,g="[ \t\n\f\r]",b=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,v=/-->/g,m=/>/g,y=RegExp(`>|${g}(?:([^\\s"'>=/]+)(${g}*=${g}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),w=/'/g,$=/"/g,_=/^(?:script|style|textarea|title)$/i,A=t=>(e,...i)=>({_$litType$:t,strings:e,values:i}),x=A(1),k=(A(2),A(3),Symbol.for("lit-noChange")),E=Symbol.for("lit-nothing"),S=new WeakMap,C=d.createTreeWalker(d,129);function z(t,e){if(!f(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==s?s.createHTML(e):e}const P=(t,e)=>{const i=t.length-1,n=[];let o,r=2===e?"<svg>":3===e?"<math>":"",s=b;for(let e=0;e<i;e++){const i=t[e];let h,d,p=-1,u=0;for(;u<i.length&&(s.lastIndex=u,d=s.exec(i),null!==d);)u=s.lastIndex,s===b?"!--"===d[1]?s=v:void 0!==d[1]?s=m:void 0!==d[2]?(_.test(d[2])&&(o=RegExp("</"+d[2],"g")),s=y):void 0!==d[3]&&(s=y):s===y?">"===d[0]?(s=o??b,p=-1):void 0===d[1]?p=-2:(p=s.lastIndex-d[2].length,h=d[1],s=void 0===d[3]?y:'"'===d[3]?$:w):s===$||s===w?s=y:s===v||s===m?s=b:(s=y,o=void 0);const f=s===y&&t[e+1].startsWith("/>")?" ":"";r+=s===b?i+c:p>=0?(n.push(h),i.slice(0,p)+a+i.slice(p)+l+f):i+l+(-2===p?e:f)}return[z(t,r+(t[i]||"<?>")+(2===e?"</svg>":3===e?"</math>":"")),n]};class H{constructor({strings:t,_$litType$:e},i){let n;this.parts=[];let o=0,s=0;const c=t.length-1,d=this.parts,[u,f]=P(t,e);if(this.el=H.createElement(u,i),C.currentNode=this.el.content,2===e||3===e){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(n=C.nextNode())&&d.length<c;){if(1===n.nodeType){if(n.hasAttributes())for(const t of n.getAttributeNames())if(t.endsWith(a)){const e=f[s++],i=n.getAttribute(t).split(l),r=/([.?@])?(.*)/.exec(e);d.push({type:1,index:o,name:r[2],strings:i,ctor:"."===r[1]?M:"?"===r[1]?N:"@"===r[1]?q:T}),n.removeAttribute(t)}else t.startsWith(l)&&(d.push({type:6,index:o}),n.removeAttribute(t));if(_.test(n.tagName)){const t=n.textContent.split(l),e=t.length-1;if(e>0){n.textContent=r?r.emptyScript:"";for(let i=0;i<e;i++)n.append(t[i],p()),C.nextNode(),d.push({type:2,index:++o});n.append(t[e],p())}}}else if(8===n.nodeType)if(n.data===h)d.push({type:2,index:o});else{let t=-1;for(;-1!==(t=n.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 U(t,e,i=t,n){if(e===k)return e;let o=void 0!==n?i._$Co?.[n]:i._$Cl;const r=u(e)?void 0:e._$litDirective$;return o?.constructor!==r&&(o?._$AO?.(!1),void 0===r?o=void 0:(o=new r(t),o._$AT(t,i,n)),void 0!==n?(i._$Co??=[])[n]=o:i._$Cl=o),void 0!==o&&(e=U(t,o._$AS(t,e.values),o,n)),e}class R{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,n=(t?.creationScope??d).importNode(e,!0);C.currentNode=n;let o=C.nextNode(),r=0,s=0,a=i[0];for(;void 0!==a;){if(r===a.index){let e;2===a.type?e=new O(o,o.nextSibling,this,t):1===a.type?e=new a.ctor(o,a.name,a.strings,this,t):6===a.type&&(e=new I(o,this,t)),this._$AV.push(e),a=i[++s]}r!==a?.index&&(o=C.nextNode(),r++)}return C.currentNode=d,n}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 O{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,e,i,n){this.type=2,this._$AH=E,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=i,this.options=n,this._$Cv=n?.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=U(this,t,e),u(t)?t===E||null==t||""===t?(this._$AH!==E&&this._$AR(),this._$AH=E):t!==this._$AH&&t!==k&&this._(t):void 0!==t._$litType$?this.$(t):void 0!==t.nodeType?this.T(t):(t=>f(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!==E&&u(this._$AH)?this._$AA.nextSibling.data=t:this.T(d.createTextNode(t)),this._$AH=t}$(t){const{values:e,_$litType$:i}=t,n="number"==typeof i?this._$AC(t):(void 0===i.el&&(i.el=H.createElement(z(i.h,i.h[0]),this.options)),i);if(this._$AH?._$AD===n)this._$AH.p(e);else{const t=new R(n,this),i=t.u(this.options);t.p(e),this.T(i),this._$AH=t}}_$AC(t){let e=S.get(t.strings);return void 0===e&&S.set(t.strings,e=new H(t)),e}k(t){f(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let i,n=0;for(const o of t)n===e.length?e.push(i=new O(this.O(p()),this.O(p()),this,this.options)):i=e[n],i._$AI(o),n++;n<e.length&&(this._$AR(i&&i._$AB.nextSibling,n),e.length=n)}_$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 T{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,i,n,o){this.type=1,this._$AH=E,this._$AN=void 0,this.element=t,this.name=e,this._$AM=n,this.options=o,i.length>2||""!==i[0]||""!==i[1]?(this._$AH=Array(i.length-1).fill(new String),this.strings=i):this._$AH=E}_$AI(t,e=this,i,n){const o=this.strings;let r=!1;if(void 0===o)t=U(this,t,e,0),r=!u(t)||t!==this._$AH&&t!==k,r&&(this._$AH=t);else{const n=t;let s,a;for(t=o[0],s=0;s<o.length-1;s++)a=U(this,n[i+s],e,s),a===k&&(a=this._$AH[s]),r||=!u(a)||a!==this._$AH[s],a===E?t=E:t!==E&&(t+=(a??"")+o[s+1]),this._$AH[s]=a}r&&!n&&this.j(t)}j(t){t===E?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class M extends T{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===E?void 0:t}}class N extends T{constructor(){super(...arguments),this.type=4}j(t){this.element.toggleAttribute(this.name,!!t&&t!==E)}}class q extends T{constructor(t,e,i,n,o){super(t,e,i,n,o),this.type=5}_$AI(t,e=this){if((t=U(this,t,e,0)??E)===k)return;const i=this._$AH,n=t===E&&i!==E||t.capture!==i.capture||t.once!==i.once||t.passive!==i.passive,o=t!==E&&(i===E||n);n&&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 I{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){U(this,t)}}const D=n.litHtmlPolyfillSupport;D?.(H,O),(n.litHtmlVersions??=[]).push("3.3.2");const L=(t,e,i)=>{const n=i?.renderBefore??e;let o=n._$litPart$;if(void 0===o){const t=i?.renderBefore??null;n._$litPart$=o=new O(e.insertBefore(p(),t),t,void 0,i??{})}return o._$AI(t),o}},161(t,e,i){i.d(e,{AH:()=>n.AH,WF:()=>n.WF,qy:()=>n.qy}),i(760),i(752);var n=i(228)}},e={};function i(n){var o=e[n];if(void 0!==o)return o.exports;var r=e[n]={exports:{}};return t[n](r,r.exports,i),r.exports}i.d=(t,e)=>{for(var n in e)i.o(e,n)&&!i.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},i.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var n=i(161),o=i(601),r=i(227);i(36);class s extends n.WF{static properties={};static styles=(()=>[o.s,r.V,n.AH`
|
|
652
656
|
:host {
|
|
653
657
|
display: block;
|
|
654
658
|
width: calc(100% + var(--outer-margin));
|
package/dist/components/tab.js
CHANGED
package/dist/components/tile.js
CHANGED
package/dist/core.css
CHANGED
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
html{color:var(--text-color);font-family:var(--font-family-base);font-size:var(--font-size-base);font-weight:var(--font-weight-regular);image-rendering:-webkit-optimize-contrast;letter-spacing:var(--letter-spacing-base);line-height:var(--line-height-base);scroll-behavior:smooth;scroll-padding-top:var(--spacing-layout-3);text-underline-offset:var(--text-underline-offset)}body{display:flex;flex-direction:column;min-height:1vh}body>main{flex-grow:1}a{color:var(--link-color);text-decoration:underline;text-decoration-thickness:var(--hairline)}a:hover{color:var(--link-hover-color)}*:focus-visible,*:target{outline:var(--focus-outline);position:relative}[data-color-mode=dark]{--link-color: var(--white);--link-hover-color: var(--white);color:var(--white)}[data-color-mode=light]{--link-color: var(--link-color);--link-hover-color: var(--link-hover-color);color:var(--text-color)}@font-face{font-family:"Source Sans 3";font-style:normal;src:url("../static/fonts/SourceSans3.woff2") format("woff2")}@font-face{font-family:"Source Sans 3";font-style:italic;src:url("../static/fonts/SourceSans3-Italic.woff2") format("woff2")}@font-face{font-family:"Source Serif 4";font-style:normal;src:url("../static/fonts/SourceSerif4.woff2") format("woff2")}@font-face{font-family:"Source Serif 4";font-style:italic;src:url("../static/fonts/SourceSerif4-Italic.woff2") format("woff2")}
|
|
4
4
|
.wrapper{box-sizing:border-box;max-width:1200px;margin:0 auto;padding-inline:30px}.container-fluid{margin-inline:auto;display:flex;flex-direction:column;width:100%}.container-fluid--no-gap{row-gap:0}.container-fluid:has(>.row):not(.container-fluid--no-gap){row-gap:var(--row-gap, 30px)}.wrapper.container-fluid{padding-inline:30px}.container{margin-inline:auto;padding-inline:30px;display:flex;flex-direction:column;width:100%}.row{display:flex;flex-flow:row wrap;box-sizing:border-box;flex-basis:100%;column-gap:var(--column-gap, 30px);row-gap:var(--row-gap, var(--column-gap, 30px))}.row.reverse{flex-direction:row-reverse}.row--no-gap{column-gap:0;row-gap:0}.row--no-gap .col-xs-1{flex-basis:8.3333333333%;max-width:8.3333333333%}.row--no-gap .col-xs-2{flex-basis:16.6666666667%;max-width:16.6666666667%}.row--no-gap .col-xs-3{flex-basis:25%;max-width:25%}.row--no-gap .col-xs-4{flex-basis:33.3333333333%;max-width:33.3333333333%}.row--no-gap .col-xs-5{flex-basis:41.6666666667%;max-width:41.6666666667%}.row--no-gap .col-xs-6{flex-basis:50%;max-width:50%}.row--no-gap .col-xs-7{flex-basis:58.3333333333%;max-width:58.3333333333%}.row--no-gap .col-xs-8{flex-basis:66.6666666667%;max-width:66.6666666667%}.row--no-gap .col-xs-9{flex-basis:75%;max-width:75%}.row--no-gap .col-xs-10{flex-basis:83.3333333333%;max-width:83.3333333333%}.row--no-gap .col-xs-11{flex-basis:91.6666666667%;max-width:91.6666666667%}.row--no-gap .col-xs-12{flex-basis:100%;max-width:100%}@media only screen and (min-width: 480px){.row--no-gap .col-sm-1{flex-basis:8.3333333333%;max-width:8.3333333333%}.row--no-gap .col-sm-2{flex-basis:16.6666666667%;max-width:16.6666666667%}.row--no-gap .col-sm-3{flex-basis:25%;max-width:25%}.row--no-gap .col-sm-4{flex-basis:33.3333333333%;max-width:33.3333333333%}.row--no-gap .col-sm-5{flex-basis:41.6666666667%;max-width:41.6666666667%}.row--no-gap .col-sm-6{flex-basis:50%;max-width:50%}.row--no-gap .col-sm-7{flex-basis:58.3333333333%;max-width:58.3333333333%}.row--no-gap .col-sm-8{flex-basis:66.6666666667%;max-width:66.6666666667%}.row--no-gap .col-sm-9{flex-basis:75%;max-width:75%}.row--no-gap .col-sm-10{flex-basis:83.3333333333%;max-width:83.3333333333%}.row--no-gap .col-sm-11{flex-basis:91.6666666667%;max-width:91.6666666667%}.row--no-gap .col-sm-12{flex-basis:100%;max-width:100%}}@media only screen and (min-width: 768px){.row--no-gap .col-md-1{flex-basis:8.3333333333%;max-width:8.3333333333%}.row--no-gap .col-md-2{flex-basis:16.6666666667%;max-width:16.6666666667%}.row--no-gap .col-md-3{flex-basis:25%;max-width:25%}.row--no-gap .col-md-4{flex-basis:33.3333333333%;max-width:33.3333333333%}.row--no-gap .col-md-5{flex-basis:41.6666666667%;max-width:41.6666666667%}.row--no-gap .col-md-6{flex-basis:50%;max-width:50%}.row--no-gap .col-md-7{flex-basis:58.3333333333%;max-width:58.3333333333%}.row--no-gap .col-md-8{flex-basis:66.6666666667%;max-width:66.6666666667%}.row--no-gap .col-md-9{flex-basis:75%;max-width:75%}.row--no-gap .col-md-10{flex-basis:83.3333333333%;max-width:83.3333333333%}.row--no-gap .col-md-11{flex-basis:91.6666666667%;max-width:91.6666666667%}.row--no-gap .col-md-12{flex-basis:100%;max-width:100%}}@media only screen and (min-width: 1024px){.row--no-gap .col-lg-1{flex-basis:8.3333333333%;max-width:8.3333333333%}.row--no-gap .col-lg-2{flex-basis:16.6666666667%;max-width:16.6666666667%}.row--no-gap .col-lg-3{flex-basis:25%;max-width:25%}.row--no-gap .col-lg-4{flex-basis:33.3333333333%;max-width:33.3333333333%}.row--no-gap .col-lg-5{flex-basis:41.6666666667%;max-width:41.6666666667%}.row--no-gap .col-lg-6{flex-basis:50%;max-width:50%}.row--no-gap .col-lg-7{flex-basis:58.3333333333%;max-width:58.3333333333%}.row--no-gap .col-lg-8{flex-basis:66.6666666667%;max-width:66.6666666667%}.row--no-gap .col-lg-9{flex-basis:75%;max-width:75%}.row--no-gap .col-lg-10{flex-basis:83.3333333333%;max-width:83.3333333333%}.row--no-gap .col-lg-11{flex-basis:91.6666666667%;max-width:91.6666666667%}.row--no-gap .col-lg-12{flex-basis:100%;max-width:100%}}.container-fluid>.row{flex:1}.container-fluid--grid-test{position:relative}.container-fluid--grid-test::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;pointer-events:none;z-index:0;background:linear-gradient(to right, rgba(200, 200, 200, 0.3) 0, rgba(200, 200, 200, 0.3) 30px, transparent 30px),linear-gradient(to left, rgba(200, 200, 200, 0.3) 0, rgba(200, 200, 200, 0.3) 30px, transparent 30px)}.container-fluid--grid-test::after{content:"";position:absolute;top:0;left:30px;right:30px;bottom:0;pointer-events:none;z-index:1;background-image:repeating-linear-gradient(to right, transparent 0, transparent calc((100% - 330px) / 12), rgba(200, 200, 200, 0.4) calc((100% - 330px) / 12), rgba(200, 200, 200, 0.4) calc((100% - 330px) / 12 + 30px), transparent calc((100% - 330px) / 12 + 30px))}.container-fluid--grid-test .row{position:relative;z-index:2}.col-xs{box-sizing:border-box;flex:0 0 auto;flex-grow:1;flex-basis:0;max-width:100%}.col-xs-1{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 1) + 0px);max-width:calc(calc(calc(100% - 330px) / 12 * 1) + 0px)}.col-xs-2{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 2) + 30px);max-width:calc(calc(calc(100% - 330px) / 12 * 2) + 30px)}.col-xs-3{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 3) + 60px);max-width:calc(calc(calc(100% - 330px) / 12 * 3) + 60px)}.col-xs-4{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 4) + 90px);max-width:calc(calc(calc(100% - 330px) / 12 * 4) + 90px)}.col-xs-5{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 5) + 120px);max-width:calc(calc(calc(100% - 330px) / 12 * 5) + 120px)}.col-xs-6{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 6) + 150px);max-width:calc(calc(calc(100% - 330px) / 12 * 6) + 150px)}.col-xs-7{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 7) + 180px);max-width:calc(calc(calc(100% - 330px) / 12 * 7) + 180px)}.col-xs-8{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 8) + 210px);max-width:calc(calc(calc(100% - 330px) / 12 * 8) + 210px)}.col-xs-9{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 9) + 240px);max-width:calc(calc(calc(100% - 330px) / 12 * 9) + 240px)}.col-xs-10{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 10) + 270px);max-width:calc(calc(calc(100% - 330px) / 12 * 10) + 270px)}.col-xs-11{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 11) + 300px);max-width:calc(calc(calc(100% - 330px) / 12 * 11) + 300px)}.col-xs-12{box-sizing:border-box;flex:0 0 auto;flex-basis:100%;max-width:100%}.col-xs-offset-0{margin-left:0}.col-xs-offset-1{margin-left:calc(calc(100% - 330px)/12*1 + 30px)}.col-xs-offset-2{margin-left:calc(calc(100% - 330px)/12*2 + 60px)}.col-xs-offset-3{margin-left:calc(calc(100% - 330px)/12*3 + 90px)}.col-xs-offset-4{margin-left:calc(calc(100% - 330px)/12*4 + 120px)}.col-xs-offset-5{margin-left:calc(calc(100% - 330px)/12*5 + 150px)}.col-xs-offset-6{margin-left:calc(calc(100% - 330px)/12*6 + 180px)}.col-xs-offset-7{margin-left:calc(calc(100% - 330px)/12*7 + 210px)}.col-xs-offset-8{margin-left:calc(calc(100% - 330px)/12*8 + 240px)}.col-xs-offset-9{margin-left:calc(calc(100% - 330px)/12*9 + 270px)}.col-xs-offset-10{margin-left:calc(calc(100% - 330px)/12*10 + 300px)}.col-xs-offset-11{margin-left:calc(calc(100% - 330px)/12*11 + 330px)}.col-xs-offset-12{margin-left:calc(calc(100% - 330px)/12*12 + 360px)}.col.reverse{flex-direction:column-reverse}@media only screen and (min-width: 480px){.container{width:480px}.col-sm{box-sizing:border-box;flex:0 0 auto;flex-grow:1;flex-basis:0;max-width:100%}.col-sm-1{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 1) + 0px);max-width:calc(calc(calc(100% - 330px) / 12 * 1) + 0px)}.col-sm-2{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 2) + 30px);max-width:calc(calc(calc(100% - 330px) / 12 * 2) + 30px)}.col-sm-3{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 3) + 60px);max-width:calc(calc(calc(100% - 330px) / 12 * 3) + 60px)}.col-sm-4{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 4) + 90px);max-width:calc(calc(calc(100% - 330px) / 12 * 4) + 90px)}.col-sm-5{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 5) + 120px);max-width:calc(calc(calc(100% - 330px) / 12 * 5) + 120px)}.col-sm-6{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 6) + 150px);max-width:calc(calc(calc(100% - 330px) / 12 * 6) + 150px)}.col-sm-7{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 7) + 180px);max-width:calc(calc(calc(100% - 330px) / 12 * 7) + 180px)}.col-sm-8{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 8) + 210px);max-width:calc(calc(calc(100% - 330px) / 12 * 8) + 210px)}.col-sm-9{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 9) + 240px);max-width:calc(calc(calc(100% - 330px) / 12 * 9) + 240px)}.col-sm-10{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 10) + 270px);max-width:calc(calc(calc(100% - 330px) / 12 * 10) + 270px)}.col-sm-11{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 11) + 300px);max-width:calc(calc(calc(100% - 330px) / 12 * 11) + 300px)}.col-sm-12{box-sizing:border-box;flex:0 0 auto;flex-basis:100%;max-width:100%}.col-sm-offset-0{margin-left:0}.col-sm-offset-1{margin-left:calc(calc(100% - 330px)/12*1 + 30px)}.col-sm-offset-2{margin-left:calc(calc(100% - 330px)/12*2 + 60px)}.col-sm-offset-3{margin-left:calc(calc(100% - 330px)/12*3 + 90px)}.col-sm-offset-4{margin-left:calc(calc(100% - 330px)/12*4 + 120px)}.col-sm-offset-5{margin-left:calc(calc(100% - 330px)/12*5 + 150px)}.col-sm-offset-6{margin-left:calc(calc(100% - 330px)/12*6 + 180px)}.col-sm-offset-7{margin-left:calc(calc(100% - 330px)/12*7 + 210px)}.col-sm-offset-8{margin-left:calc(calc(100% - 330px)/12*8 + 240px)}.col-sm-offset-9{margin-left:calc(calc(100% - 330px)/12*9 + 270px)}.col-sm-offset-10{margin-left:calc(calc(100% - 330px)/12*10 + 300px)}.col-sm-offset-11{margin-left:calc(calc(100% - 330px)/12*11 + 330px)}.col-sm-offset-12{margin-left:calc(calc(100% - 330px)/12*12 + 360px)}.row-sm-1{flex:1 !important}.row-sm-2{flex:2 !important}.row-sm-3{flex:3 !important}.row-first-sm{order:-1}.row-last-sm{order:1}}@media only screen and (min-width: 768px){.container{width:768px}.col-md{box-sizing:border-box;flex:0 0 auto;flex-grow:1;flex-basis:0;max-width:100%}.col-md-1{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 1) + 0px);max-width:calc(calc(calc(100% - 330px) / 12 * 1) + 0px)}.col-md-2{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 2) + 30px);max-width:calc(calc(calc(100% - 330px) / 12 * 2) + 30px)}.col-md-3{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 3) + 60px);max-width:calc(calc(calc(100% - 330px) / 12 * 3) + 60px)}.col-md-4{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 4) + 90px);max-width:calc(calc(calc(100% - 330px) / 12 * 4) + 90px)}.col-md-5{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 5) + 120px);max-width:calc(calc(calc(100% - 330px) / 12 * 5) + 120px)}.col-md-6{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 6) + 150px);max-width:calc(calc(calc(100% - 330px) / 12 * 6) + 150px)}.col-md-7{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 7) + 180px);max-width:calc(calc(calc(100% - 330px) / 12 * 7) + 180px)}.col-md-8{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 8) + 210px);max-width:calc(calc(calc(100% - 330px) / 12 * 8) + 210px)}.col-md-9{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 9) + 240px);max-width:calc(calc(calc(100% - 330px) / 12 * 9) + 240px)}.col-md-10{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 10) + 270px);max-width:calc(calc(calc(100% - 330px) / 12 * 10) + 270px)}.col-md-11{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 11) + 300px);max-width:calc(calc(calc(100% - 330px) / 12 * 11) + 300px)}.col-md-12{box-sizing:border-box;flex:0 0 auto;flex-basis:100%;max-width:100%}.col-md-offset-0{margin-left:0}.col-md-offset-1{margin-left:calc(calc(100% - 330px)/12*1 + 30px)}.col-md-offset-2{margin-left:calc(calc(100% - 330px)/12*2 + 60px)}.col-md-offset-3{margin-left:calc(calc(100% - 330px)/12*3 + 90px)}.col-md-offset-4{margin-left:calc(calc(100% - 330px)/12*4 + 120px)}.col-md-offset-5{margin-left:calc(calc(100% - 330px)/12*5 + 150px)}.col-md-offset-6{margin-left:calc(calc(100% - 330px)/12*6 + 180px)}.col-md-offset-7{margin-left:calc(calc(100% - 330px)/12*7 + 210px)}.col-md-offset-8{margin-left:calc(calc(100% - 330px)/12*8 + 240px)}.col-md-offset-9{margin-left:calc(calc(100% - 330px)/12*9 + 270px)}.col-md-offset-10{margin-left:calc(calc(100% - 330px)/12*10 + 300px)}.col-md-offset-11{margin-left:calc(calc(100% - 330px)/12*11 + 330px)}.col-md-offset-12{margin-left:calc(calc(100% - 330px)/12*12 + 360px)}.row-md-1{flex:1 !important}.row-md-2{flex:2 !important}.row-md-3{flex:3 !important}.row-first-md{order:-1}.row-last-md{order:1}}@media only screen and (min-width: 1024px){.container{width:1200px}.col-lg{box-sizing:border-box;flex:0 0 auto;flex-grow:1;flex-basis:0;max-width:100%}.col-lg-1{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 1) + 0px);max-width:calc(calc(calc(100% - 330px) / 12 * 1) + 0px)}.col-lg-2{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 2) + 30px);max-width:calc(calc(calc(100% - 330px) / 12 * 2) + 30px)}.col-lg-3{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 3) + 60px);max-width:calc(calc(calc(100% - 330px) / 12 * 3) + 60px)}.col-lg-4{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 4) + 90px);max-width:calc(calc(calc(100% - 330px) / 12 * 4) + 90px)}.col-lg-5{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 5) + 120px);max-width:calc(calc(calc(100% - 330px) / 12 * 5) + 120px)}.col-lg-6{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 6) + 150px);max-width:calc(calc(calc(100% - 330px) / 12 * 6) + 150px)}.col-lg-7{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 7) + 180px);max-width:calc(calc(calc(100% - 330px) / 12 * 7) + 180px)}.col-lg-8{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 8) + 210px);max-width:calc(calc(calc(100% - 330px) / 12 * 8) + 210px)}.col-lg-9{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 9) + 240px);max-width:calc(calc(calc(100% - 330px) / 12 * 9) + 240px)}.col-lg-10{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 10) + 270px);max-width:calc(calc(calc(100% - 330px) / 12 * 10) + 270px)}.col-lg-11{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 11) + 300px);max-width:calc(calc(calc(100% - 330px) / 12 * 11) + 300px)}.col-lg-12{box-sizing:border-box;flex:0 0 auto;flex-basis:100%;max-width:100%}.col-lg-offset-0{margin-left:0}.col-lg-offset-1{margin-left:calc(calc(100% - 330px)/12*1 + 30px)}.col-lg-offset-2{margin-left:calc(calc(100% - 330px)/12*2 + 60px)}.col-lg-offset-3{margin-left:calc(calc(100% - 330px)/12*3 + 90px)}.col-lg-offset-4{margin-left:calc(calc(100% - 330px)/12*4 + 120px)}.col-lg-offset-5{margin-left:calc(calc(100% - 330px)/12*5 + 150px)}.col-lg-offset-6{margin-left:calc(calc(100% - 330px)/12*6 + 180px)}.col-lg-offset-7{margin-left:calc(calc(100% - 330px)/12*7 + 210px)}.col-lg-offset-8{margin-left:calc(calc(100% - 330px)/12*8 + 240px)}.col-lg-offset-9{margin-left:calc(calc(100% - 330px)/12*9 + 270px)}.col-lg-offset-10{margin-left:calc(calc(100% - 330px)/12*10 + 300px)}.col-lg-offset-11{margin-left:calc(calc(100% - 330px)/12*11 + 330px)}.col-lg-offset-12{margin-left:calc(calc(100% - 330px)/12*12 + 360px)}.row-lg-1{flex:1 !important}.row-lg-2{flex:2 !important}.row-lg-3{flex:3 !important}.row-first-lg{order:-1}.row-last-lg{order:1}}.start-xs{justify-content:flex-start}.center-xs{justify-content:center}.end-xs{justify-content:flex-end}.around-xs{justify-content:space-around}.between-xs{justify-content:space-between}.top-xs{align-items:flex-start}.middle-xs{align-items:center}.bottom-xs{align-items:flex-end}.stretch-xs{align-items:stretch}.stretch-xs>*{display:flex}.first-xs{order:-1}.last-xs{order:1}@media only screen and (min-width: 480px){.start-sm{justify-content:flex-start}.center-sm{justify-content:center}.end-sm{justify-content:flex-end}.around-sm{justify-content:space-around}.between-sm{justify-content:space-between}.top-sm{align-items:flex-start}.middle-sm{align-items:center}.bottom-sm{align-items:flex-end}.stretch-sm{align-items:stretch}.stretch-sm>*{display:flex;flex-direction:column}.stretch-sm>*>*{height:100%}.first-sm{order:-1}.last-sm{order:1}}@media only screen and (min-width: 768px){.start-md{justify-content:flex-start}.center-md{justify-content:center}.end-md{justify-content:flex-end}.around-md{justify-content:space-around}.between-md{justify-content:space-between}.top-md{align-items:flex-start}.middle-md{align-items:center}.bottom-md{align-items:flex-end}.stretch-md{align-items:stretch}.stretch-md>*{display:flex;flex-direction:column}.stretch-md>*>*{height:100%}.first-md{order:-1}.last-md{order:1}}@media only screen and (min-width: 1024px){.start-lg{justify-content:flex-start}.center-lg{justify-content:center}.end-lg{justify-content:flex-end}.around-lg{justify-content:space-around}.between-lg{justify-content:space-between}.top-lg{align-items:flex-start}.middle-lg{align-items:center}.bottom-lg{align-items:flex-end}.stretch-lg{align-items:stretch}.stretch-lg>*{display:flex;flex-direction:column}.stretch-lg>*>*{height:100%}.first-lg{order:-1}.last-lg{order:1}}
|
|
5
5
|
.wrapper{box-sizing:border-box;max-width:1200px;margin:0 auto;padding-inline:30px}.container-fluid{margin-inline:auto;display:flex;flex-direction:column;width:100%}.container-fluid--no-gap{row-gap:0}.container-fluid:has(>.row):not(.container-fluid--no-gap){row-gap:var(--row-gap, 30px)}.wrapper.container-fluid{padding-inline:30px}.container{margin-inline:auto;padding-inline:30px;display:flex;flex-direction:column;width:100%}.row{display:flex;flex-flow:row wrap;box-sizing:border-box;flex-basis:100%;column-gap:var(--column-gap, 30px);row-gap:var(--row-gap, var(--column-gap, 30px))}.row.reverse{flex-direction:row-reverse}.row--no-gap{column-gap:0;row-gap:0}.row--no-gap .col-xs-1{flex-basis:8.3333333333%;max-width:8.3333333333%}.row--no-gap .col-xs-2{flex-basis:16.6666666667%;max-width:16.6666666667%}.row--no-gap .col-xs-3{flex-basis:25%;max-width:25%}.row--no-gap .col-xs-4{flex-basis:33.3333333333%;max-width:33.3333333333%}.row--no-gap .col-xs-5{flex-basis:41.6666666667%;max-width:41.6666666667%}.row--no-gap .col-xs-6{flex-basis:50%;max-width:50%}.row--no-gap .col-xs-7{flex-basis:58.3333333333%;max-width:58.3333333333%}.row--no-gap .col-xs-8{flex-basis:66.6666666667%;max-width:66.6666666667%}.row--no-gap .col-xs-9{flex-basis:75%;max-width:75%}.row--no-gap .col-xs-10{flex-basis:83.3333333333%;max-width:83.3333333333%}.row--no-gap .col-xs-11{flex-basis:91.6666666667%;max-width:91.6666666667%}.row--no-gap .col-xs-12{flex-basis:100%;max-width:100%}@media only screen and (min-width: 480px){.row--no-gap .col-sm-1{flex-basis:8.3333333333%;max-width:8.3333333333%}.row--no-gap .col-sm-2{flex-basis:16.6666666667%;max-width:16.6666666667%}.row--no-gap .col-sm-3{flex-basis:25%;max-width:25%}.row--no-gap .col-sm-4{flex-basis:33.3333333333%;max-width:33.3333333333%}.row--no-gap .col-sm-5{flex-basis:41.6666666667%;max-width:41.6666666667%}.row--no-gap .col-sm-6{flex-basis:50%;max-width:50%}.row--no-gap .col-sm-7{flex-basis:58.3333333333%;max-width:58.3333333333%}.row--no-gap .col-sm-8{flex-basis:66.6666666667%;max-width:66.6666666667%}.row--no-gap .col-sm-9{flex-basis:75%;max-width:75%}.row--no-gap .col-sm-10{flex-basis:83.3333333333%;max-width:83.3333333333%}.row--no-gap .col-sm-11{flex-basis:91.6666666667%;max-width:91.6666666667%}.row--no-gap .col-sm-12{flex-basis:100%;max-width:100%}}@media only screen and (min-width: 768px){.row--no-gap .col-md-1{flex-basis:8.3333333333%;max-width:8.3333333333%}.row--no-gap .col-md-2{flex-basis:16.6666666667%;max-width:16.6666666667%}.row--no-gap .col-md-3{flex-basis:25%;max-width:25%}.row--no-gap .col-md-4{flex-basis:33.3333333333%;max-width:33.3333333333%}.row--no-gap .col-md-5{flex-basis:41.6666666667%;max-width:41.6666666667%}.row--no-gap .col-md-6{flex-basis:50%;max-width:50%}.row--no-gap .col-md-7{flex-basis:58.3333333333%;max-width:58.3333333333%}.row--no-gap .col-md-8{flex-basis:66.6666666667%;max-width:66.6666666667%}.row--no-gap .col-md-9{flex-basis:75%;max-width:75%}.row--no-gap .col-md-10{flex-basis:83.3333333333%;max-width:83.3333333333%}.row--no-gap .col-md-11{flex-basis:91.6666666667%;max-width:91.6666666667%}.row--no-gap .col-md-12{flex-basis:100%;max-width:100%}}@media only screen and (min-width: 1024px){.row--no-gap .col-lg-1{flex-basis:8.3333333333%;max-width:8.3333333333%}.row--no-gap .col-lg-2{flex-basis:16.6666666667%;max-width:16.6666666667%}.row--no-gap .col-lg-3{flex-basis:25%;max-width:25%}.row--no-gap .col-lg-4{flex-basis:33.3333333333%;max-width:33.3333333333%}.row--no-gap .col-lg-5{flex-basis:41.6666666667%;max-width:41.6666666667%}.row--no-gap .col-lg-6{flex-basis:50%;max-width:50%}.row--no-gap .col-lg-7{flex-basis:58.3333333333%;max-width:58.3333333333%}.row--no-gap .col-lg-8{flex-basis:66.6666666667%;max-width:66.6666666667%}.row--no-gap .col-lg-9{flex-basis:75%;max-width:75%}.row--no-gap .col-lg-10{flex-basis:83.3333333333%;max-width:83.3333333333%}.row--no-gap .col-lg-11{flex-basis:91.6666666667%;max-width:91.6666666667%}.row--no-gap .col-lg-12{flex-basis:100%;max-width:100%}}.container-fluid>.row{flex:1}.container-fluid--grid-test{position:relative}.container-fluid--grid-test::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;pointer-events:none;z-index:0;background:linear-gradient(to right, rgba(200, 200, 200, 0.3) 0, rgba(200, 200, 200, 0.3) 30px, transparent 30px),linear-gradient(to left, rgba(200, 200, 200, 0.3) 0, rgba(200, 200, 200, 0.3) 30px, transparent 30px)}.container-fluid--grid-test::after{content:"";position:absolute;top:0;left:30px;right:30px;bottom:0;pointer-events:none;z-index:1;background-image:repeating-linear-gradient(to right, transparent 0, transparent calc((100% - 330px) / 12), rgba(200, 200, 200, 0.4) calc((100% - 330px) / 12), rgba(200, 200, 200, 0.4) calc((100% - 330px) / 12 + 30px), transparent calc((100% - 330px) / 12 + 30px))}.container-fluid--grid-test .row{position:relative;z-index:2}.col-xs{box-sizing:border-box;flex:0 0 auto;flex-grow:1;flex-basis:0;max-width:100%}.col-xs-1{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 1) + 0px);max-width:calc(calc(calc(100% - 330px) / 12 * 1) + 0px)}.col-xs-2{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 2) + 30px);max-width:calc(calc(calc(100% - 330px) / 12 * 2) + 30px)}.col-xs-3{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 3) + 60px);max-width:calc(calc(calc(100% - 330px) / 12 * 3) + 60px)}.col-xs-4{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 4) + 90px);max-width:calc(calc(calc(100% - 330px) / 12 * 4) + 90px)}.col-xs-5{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 5) + 120px);max-width:calc(calc(calc(100% - 330px) / 12 * 5) + 120px)}.col-xs-6{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 6) + 150px);max-width:calc(calc(calc(100% - 330px) / 12 * 6) + 150px)}.col-xs-7{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 7) + 180px);max-width:calc(calc(calc(100% - 330px) / 12 * 7) + 180px)}.col-xs-8{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 8) + 210px);max-width:calc(calc(calc(100% - 330px) / 12 * 8) + 210px)}.col-xs-9{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 9) + 240px);max-width:calc(calc(calc(100% - 330px) / 12 * 9) + 240px)}.col-xs-10{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 10) + 270px);max-width:calc(calc(calc(100% - 330px) / 12 * 10) + 270px)}.col-xs-11{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 11) + 300px);max-width:calc(calc(calc(100% - 330px) / 12 * 11) + 300px)}.col-xs-12{box-sizing:border-box;flex:0 0 auto;flex-basis:100%;max-width:100%}.col-xs-offset-0{margin-left:0}.col-xs-offset-1{margin-left:calc(calc(100% - 330px)/12*1 + 30px)}.col-xs-offset-2{margin-left:calc(calc(100% - 330px)/12*2 + 60px)}.col-xs-offset-3{margin-left:calc(calc(100% - 330px)/12*3 + 90px)}.col-xs-offset-4{margin-left:calc(calc(100% - 330px)/12*4 + 120px)}.col-xs-offset-5{margin-left:calc(calc(100% - 330px)/12*5 + 150px)}.col-xs-offset-6{margin-left:calc(calc(100% - 330px)/12*6 + 180px)}.col-xs-offset-7{margin-left:calc(calc(100% - 330px)/12*7 + 210px)}.col-xs-offset-8{margin-left:calc(calc(100% - 330px)/12*8 + 240px)}.col-xs-offset-9{margin-left:calc(calc(100% - 330px)/12*9 + 270px)}.col-xs-offset-10{margin-left:calc(calc(100% - 330px)/12*10 + 300px)}.col-xs-offset-11{margin-left:calc(calc(100% - 330px)/12*11 + 330px)}.col-xs-offset-12{margin-left:calc(calc(100% - 330px)/12*12 + 360px)}.col.reverse{flex-direction:column-reverse}@media only screen and (min-width: 480px){.container{width:480px}.col-sm{box-sizing:border-box;flex:0 0 auto;flex-grow:1;flex-basis:0;max-width:100%}.col-sm-1{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 1) + 0px);max-width:calc(calc(calc(100% - 330px) / 12 * 1) + 0px)}.col-sm-2{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 2) + 30px);max-width:calc(calc(calc(100% - 330px) / 12 * 2) + 30px)}.col-sm-3{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 3) + 60px);max-width:calc(calc(calc(100% - 330px) / 12 * 3) + 60px)}.col-sm-4{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 4) + 90px);max-width:calc(calc(calc(100% - 330px) / 12 * 4) + 90px)}.col-sm-5{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 5) + 120px);max-width:calc(calc(calc(100% - 330px) / 12 * 5) + 120px)}.col-sm-6{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 6) + 150px);max-width:calc(calc(calc(100% - 330px) / 12 * 6) + 150px)}.col-sm-7{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 7) + 180px);max-width:calc(calc(calc(100% - 330px) / 12 * 7) + 180px)}.col-sm-8{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 8) + 210px);max-width:calc(calc(calc(100% - 330px) / 12 * 8) + 210px)}.col-sm-9{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 9) + 240px);max-width:calc(calc(calc(100% - 330px) / 12 * 9) + 240px)}.col-sm-10{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 10) + 270px);max-width:calc(calc(calc(100% - 330px) / 12 * 10) + 270px)}.col-sm-11{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 11) + 300px);max-width:calc(calc(calc(100% - 330px) / 12 * 11) + 300px)}.col-sm-12{box-sizing:border-box;flex:0 0 auto;flex-basis:100%;max-width:100%}.col-sm-offset-0{margin-left:0}.col-sm-offset-1{margin-left:calc(calc(100% - 330px)/12*1 + 30px)}.col-sm-offset-2{margin-left:calc(calc(100% - 330px)/12*2 + 60px)}.col-sm-offset-3{margin-left:calc(calc(100% - 330px)/12*3 + 90px)}.col-sm-offset-4{margin-left:calc(calc(100% - 330px)/12*4 + 120px)}.col-sm-offset-5{margin-left:calc(calc(100% - 330px)/12*5 + 150px)}.col-sm-offset-6{margin-left:calc(calc(100% - 330px)/12*6 + 180px)}.col-sm-offset-7{margin-left:calc(calc(100% - 330px)/12*7 + 210px)}.col-sm-offset-8{margin-left:calc(calc(100% - 330px)/12*8 + 240px)}.col-sm-offset-9{margin-left:calc(calc(100% - 330px)/12*9 + 270px)}.col-sm-offset-10{margin-left:calc(calc(100% - 330px)/12*10 + 300px)}.col-sm-offset-11{margin-left:calc(calc(100% - 330px)/12*11 + 330px)}.col-sm-offset-12{margin-left:calc(calc(100% - 330px)/12*12 + 360px)}.row-sm-1{flex:1 !important}.row-sm-2{flex:2 !important}.row-sm-3{flex:3 !important}.row-first-sm{order:-1}.row-last-sm{order:1}}@media only screen and (min-width: 768px){.container{width:768px}.col-md{box-sizing:border-box;flex:0 0 auto;flex-grow:1;flex-basis:0;max-width:100%}.col-md-1{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 1) + 0px);max-width:calc(calc(calc(100% - 330px) / 12 * 1) + 0px)}.col-md-2{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 2) + 30px);max-width:calc(calc(calc(100% - 330px) / 12 * 2) + 30px)}.col-md-3{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 3) + 60px);max-width:calc(calc(calc(100% - 330px) / 12 * 3) + 60px)}.col-md-4{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 4) + 90px);max-width:calc(calc(calc(100% - 330px) / 12 * 4) + 90px)}.col-md-5{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 5) + 120px);max-width:calc(calc(calc(100% - 330px) / 12 * 5) + 120px)}.col-md-6{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 6) + 150px);max-width:calc(calc(calc(100% - 330px) / 12 * 6) + 150px)}.col-md-7{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 7) + 180px);max-width:calc(calc(calc(100% - 330px) / 12 * 7) + 180px)}.col-md-8{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 8) + 210px);max-width:calc(calc(calc(100% - 330px) / 12 * 8) + 210px)}.col-md-9{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 9) + 240px);max-width:calc(calc(calc(100% - 330px) / 12 * 9) + 240px)}.col-md-10{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 10) + 270px);max-width:calc(calc(calc(100% - 330px) / 12 * 10) + 270px)}.col-md-11{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 11) + 300px);max-width:calc(calc(calc(100% - 330px) / 12 * 11) + 300px)}.col-md-12{box-sizing:border-box;flex:0 0 auto;flex-basis:100%;max-width:100%}.col-md-offset-0{margin-left:0}.col-md-offset-1{margin-left:calc(calc(100% - 330px)/12*1 + 30px)}.col-md-offset-2{margin-left:calc(calc(100% - 330px)/12*2 + 60px)}.col-md-offset-3{margin-left:calc(calc(100% - 330px)/12*3 + 90px)}.col-md-offset-4{margin-left:calc(calc(100% - 330px)/12*4 + 120px)}.col-md-offset-5{margin-left:calc(calc(100% - 330px)/12*5 + 150px)}.col-md-offset-6{margin-left:calc(calc(100% - 330px)/12*6 + 180px)}.col-md-offset-7{margin-left:calc(calc(100% - 330px)/12*7 + 210px)}.col-md-offset-8{margin-left:calc(calc(100% - 330px)/12*8 + 240px)}.col-md-offset-9{margin-left:calc(calc(100% - 330px)/12*9 + 270px)}.col-md-offset-10{margin-left:calc(calc(100% - 330px)/12*10 + 300px)}.col-md-offset-11{margin-left:calc(calc(100% - 330px)/12*11 + 330px)}.col-md-offset-12{margin-left:calc(calc(100% - 330px)/12*12 + 360px)}.row-md-1{flex:1 !important}.row-md-2{flex:2 !important}.row-md-3{flex:3 !important}.row-first-md{order:-1}.row-last-md{order:1}}@media only screen and (min-width: 1024px){.container{width:1200px}.col-lg{box-sizing:border-box;flex:0 0 auto;flex-grow:1;flex-basis:0;max-width:100%}.col-lg-1{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 1) + 0px);max-width:calc(calc(calc(100% - 330px) / 12 * 1) + 0px)}.col-lg-2{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 2) + 30px);max-width:calc(calc(calc(100% - 330px) / 12 * 2) + 30px)}.col-lg-3{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 3) + 60px);max-width:calc(calc(calc(100% - 330px) / 12 * 3) + 60px)}.col-lg-4{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 4) + 90px);max-width:calc(calc(calc(100% - 330px) / 12 * 4) + 90px)}.col-lg-5{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 5) + 120px);max-width:calc(calc(calc(100% - 330px) / 12 * 5) + 120px)}.col-lg-6{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 6) + 150px);max-width:calc(calc(calc(100% - 330px) / 12 * 6) + 150px)}.col-lg-7{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 7) + 180px);max-width:calc(calc(calc(100% - 330px) / 12 * 7) + 180px)}.col-lg-8{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 8) + 210px);max-width:calc(calc(calc(100% - 330px) / 12 * 8) + 210px)}.col-lg-9{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 9) + 240px);max-width:calc(calc(calc(100% - 330px) / 12 * 9) + 240px)}.col-lg-10{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 10) + 270px);max-width:calc(calc(calc(100% - 330px) / 12 * 10) + 270px)}.col-lg-11{box-sizing:border-box;flex:0 0 auto;flex-basis:calc(calc(calc(100% - 330px) / 12 * 11) + 300px);max-width:calc(calc(calc(100% - 330px) / 12 * 11) + 300px)}.col-lg-12{box-sizing:border-box;flex:0 0 auto;flex-basis:100%;max-width:100%}.col-lg-offset-0{margin-left:0}.col-lg-offset-1{margin-left:calc(calc(100% - 330px)/12*1 + 30px)}.col-lg-offset-2{margin-left:calc(calc(100% - 330px)/12*2 + 60px)}.col-lg-offset-3{margin-left:calc(calc(100% - 330px)/12*3 + 90px)}.col-lg-offset-4{margin-left:calc(calc(100% - 330px)/12*4 + 120px)}.col-lg-offset-5{margin-left:calc(calc(100% - 330px)/12*5 + 150px)}.col-lg-offset-6{margin-left:calc(calc(100% - 330px)/12*6 + 180px)}.col-lg-offset-7{margin-left:calc(calc(100% - 330px)/12*7 + 210px)}.col-lg-offset-8{margin-left:calc(calc(100% - 330px)/12*8 + 240px)}.col-lg-offset-9{margin-left:calc(calc(100% - 330px)/12*9 + 270px)}.col-lg-offset-10{margin-left:calc(calc(100% - 330px)/12*10 + 300px)}.col-lg-offset-11{margin-left:calc(calc(100% - 330px)/12*11 + 330px)}.col-lg-offset-12{margin-left:calc(calc(100% - 330px)/12*12 + 360px)}.row-lg-1{flex:1 !important}.row-lg-2{flex:2 !important}.row-lg-3{flex:3 !important}.row-first-lg{order:-1}.row-last-lg{order:1}}.start-xs{justify-content:flex-start}.center-xs{justify-content:center}.end-xs{justify-content:flex-end}.around-xs{justify-content:space-around}.between-xs{justify-content:space-between}.top-xs{align-items:flex-start}.middle-xs{align-items:center}.bottom-xs{align-items:flex-end}.stretch-xs{align-items:stretch}.stretch-xs>*{display:flex}.first-xs{order:-1}.last-xs{order:1}@media only screen and (min-width: 480px){.start-sm{justify-content:flex-start}.center-sm{justify-content:center}.end-sm{justify-content:flex-end}.around-sm{justify-content:space-around}.between-sm{justify-content:space-between}.top-sm{align-items:flex-start}.middle-sm{align-items:center}.bottom-sm{align-items:flex-end}.stretch-sm{align-items:stretch}.stretch-sm>*{display:flex;flex-direction:column}.stretch-sm>*>*{height:100%}.first-sm{order:-1}.last-sm{order:1}}@media only screen and (min-width: 768px){.start-md{justify-content:flex-start}.center-md{justify-content:center}.end-md{justify-content:flex-end}.around-md{justify-content:space-around}.between-md{justify-content:space-between}.top-md{align-items:flex-start}.middle-md{align-items:center}.bottom-md{align-items:flex-end}.stretch-md{align-items:stretch}.stretch-md>*{display:flex;flex-direction:column}.stretch-md>*>*{height:100%}.first-md{order:-1}.last-md{order:1}}@media only screen and (min-width: 1024px){.start-lg{justify-content:flex-start}.center-lg{justify-content:center}.end-lg{justify-content:flex-end}.around-lg{justify-content:space-around}.between-lg{justify-content:space-between}.top-lg{align-items:flex-start}.middle-lg{align-items:center}.bottom-lg{align-items:flex-end}.stretch-lg{align-items:stretch}.stretch-lg>*{display:flex;flex-direction:column}.stretch-lg>*>*{height:100%}.first-lg{order:-1}.last-lg{order:1}}.section{--bg-color: var(--white);--border: var(--hairline) solid var(--black-10);--padding: var(--spacing-layout-2);--spacing: var(--spacing-layout-1);background-color:var(--bg-color);border-block-start:var(--border);padding-block:var(--padding)}.cluster{overflow:hidden}.cluster>*{display:flex;flex-wrap:wrap;margin:var(--spacing, calc(var(--spacing-layout-1) / 2 * -1))}.cluster>*>*{margin:var(--spacing, calc(var(--spacing-layout-1) / 2))}.stack{--spacing: var(--spacing-layout-1)}.stack>*+*{margin-block-start:var(--spacing)}.container-fluid.stack{gap:var(--spacing)}.container-fluid.stack>*+*{margin-block-start:0}.stack-with-lines>*+*::before{border-block-start:var(--hairline) solid var(--black-20);content:"";display:block;margin-block:var(--spacing, var(--spacing-layout-1));width:100%}:has(>.grid){container-type:inline-size}.grid{--spacing: var(--spacing-layout-1);align-items:stretch;column-gap:var(--spacing);display:flex;flex-flow:row wrap;justify-content:flex-start;row-gap:var(--spacing)}.grid>*{flex:0 0 auto;flex-basis:100%;max-width:100%}@container (width >= 768px){.grid>*{flex-basis:calc((100% - var(--spacing)*2)/3);max-width:calc((100% - var(--spacing)*2)/3)}.grid:has(>:nth-child(1):nth-last-child(1)),.grid:has(>:nth-child(2):nth-last-child(1)){justify-content:center}}
|
|
6
|
-
.cfa-icon{height:var(--spacing-layout-5);margin-left:auto;margin-right:auto;width:var(--spacing-layout-5)}.cfa-icon img{display:block;height:100%;object-fit:contain;object-position:center center;width:100%}p+*,ul+*,ol+*,blockquote+*{margin-block-start:var(--spacing, var(--spacing-layout-1, 1.5rem))}*+p,*+ul,*+ol,*+blockquote{margin-block-start:var(--spacing, var(--spacing-layout-1, 1.5rem))}h1+*,h2+*,h3+*,h4+*,.h1+*,.h2+*,.h3+*,.h4+*,.display-1+*,.display-2+*{margin-block-start:var(--spacing, var(--spacing-layout-1, 1.5rem))}*+h1,*+h2,*+h3,*+h4,*+.h1,*+.h2,*+.h3,*+.h4,*+.display-1,*+.display-2{--spacing: var(--spacing-layout-2);margin-block-start:--spacing}h1+h1,h1+h2,h1+h3,h1+h4,h1+.h1,h1+.h2,h1+.h3,h1+.h4,h1+.display-1,h1+.display-2,h2+h1,h2+h2,h2+h3,h2+h4,h2+.h1,h2+.h2,h2+.h3,h2+.h4,h2+.display-1,h2+.display-2,h3+h1,h3+h2,h3+h3,h3+h4,h3+.h1,h3+.h2,h3+.h3,h3+.h4,h3+.display-1,h3+.display-2,h4+h1,h4+h2,h4+h3,h4+h4,h4+.h1,h4+.h2,h4+.h3,h4+.h4,h4+.display-1,h4+.display-2,.h1+h1,.h1+h2,.h1+h3,.h1+h4,.h1+.h1,.h1+.h2,.h1+.h3,.h1+.h4,.h1+.display-1,.h1+.display-2,.h2+h1,.h2+h2,.h2+h3,.h2+h4,.h2+.h1,.h2+.h2,.h2+.h3,.h2+.h4,.h2+.display-1,.h2+.display-2,.h3+h1,.h3+h2,.h3+h3,.h3+h4,.h3+.h1,.h3+.h2,.h3+.h3,.h3+.h4,.h3+.display-1,.h3+.display-2,.h4+h1,.h4+h2,.h4+h3,.h4+h4,.h4+.h1,.h4+.h2,.h4+.h3,.h4+.h4,.h4+.display-1,.h4+.display-2,.display-1+h1,.display-1+h2,.display-1+h3,.display-1+h4,.display-1+.h1,.display-1+.h2,.display-1+.h3,.display-1+.h4,.display-1+.display-1,.display-1+.display-2,.display-2+h1,.display-2+h2,.display-2+h3,.display-2+h4,.display-2+.h1,.display-2+.h2,.display-2+.h3,.display-2+.h4,.display-2+.display-1,.display-2+.display-2{--spacing: var(--spacing-layout-1)}cfa-breadcrumbs+h1,cfa-breadcrumbs+h2,cfa-breadcrumbs+h3,cfa-breadcrumbs+h4,cfa-breadcrumbs+.h1,cfa-breadcrumbs+.h2,cfa-breadcrumbs+.h3,cfa-breadcrumbs+.h4,cfa-breadcrumbs+.display-1,cfa-breadcrumbs+.display-2{margin-block-start:var(--spacing-layout-half) !important}.eyebrow+h1,.eyebrow+h2,.eyebrow+h3,.eyebrow+h4,.eyebrow+.h1,.eyebrow+.h2,.eyebrow+.h3,.eyebrow+.h4,.eyebrow+.display-1,.eyebrow+.display-2{margin-block-start:0 !important}h1,.h1,.display-1,.display-2{text-wrap:balance}.regular{font-family:var(--font-family-base);font-size:var(--font-size-base);line-height:var(--line-height-base)}.display-1{font-family:var(--font-family-heading);font-size:var(--font-size-display-1);font-weight:bold;line-height:var(--line-height-display-1);letter-spacing:var(--letter-spacing-display-1)}.display-2{font-family:var(--font-family-heading);font-size:var(--font-size-display-2);font-weight:bold;line-height:var(--line-height-display-2);letter-spacing:var(--letter-spacing-display-2)}h1,.h1{font-family:var(--font-family-heading);font-size:var(--font-size-h1);font-weight:bold;line-height:var(--line-height-h1);letter-spacing:var(--letter-spacing-h1)}h2,.h2{font-family:var(--font-family-heading);font-size:var(--font-size-h2);font-weight:bold;line-height:var(--line-height-h2);letter-spacing:var(--letter-spacing-h2)}h3,.h3{font-family:var(--font-family-heading);font-size:var(--font-size-h3);font-weight:bold;line-height:var(--line-height-h3);letter-spacing:var(--letter-spacing-h3)}h4,.h4{font-family:var(--font-family-heading);font-size:var(--font-size-h4);font-weight:bold;line-height:var(--line-height-h4);letter-spacing:var(--letter-spacing-h4)}.extra-large{font-size:var(--font-size-extra-large);line-height:var(--line-height-extra-large);letter-spacing:var(--letter-spacing-extra-large)}.large{font-size:var(--font-size-large);line-height:var(--line-height-large);letter-spacing:var(--letter-spacing-large)}.small{font-size:var(--font-size-small);line-height:var(--line-height-small);letter-spacing:var(--letter-spacing-small)}.eyebrow{font-family:var(--font-family-sans-serif);font-size:var(--font-size-eyebrow);font-weight:var(--font-weight-eyebrow);letter-spacing:var(--letter-spacing-eyebrow);line-height:var(--line-height-eyebrow);text-transform:uppercase}.eyebrow-with-line{align-items:center;color:var(--text-color);display:flex;font-family:var(--font-family-eyebrow);font-size:var(--font-size-eyebrow);font-weight:var(--font-weight-eyebrow);letter-spacing:var(--letter-spacing-eyebrow);line-height:var(--line-height-eyebrow);margin-block-end:var(--spacing-layout-half);position:relative;text-transform:uppercase}.eyebrow-with-line::after{border-block-end:var(--hairline) solid currentColor;content:"";flex-grow:1;margin-left:var(--spacing-component-3)}.subtle{opacity:.6}.serif{font-family:var(--font-family-serif)}.sans-serif{font-family:var(--font-family-sans-serif)}i,em,.italic{font-style:italic}b,strong,.strong{font-weight:bold}.normal{font-weight:normal}.prominent-link,a.prominent-link{--accent-color: var(--purple-60);font-weight:bold;text-decoration:underline;text-decoration-color:var(--accent-color);text-decoration-thickness:var(--medium);text-underline-offset:.4em;transition:color .2s ease-in-out,border-color .2s ease-in-out}.prominent-link:hover,a.prominent-link:hover{--accent-color: var(--red-60)}.prominent-link:not(:has(cfa-icon))::after,a.prominent-link:not(:has(cfa-icon))::after{-webkit-font-feature-settings:"liga";direction:ltr;display:inline-block;font-family:"Material Symbols Rounded";font-size:1.4em;font-style:normal;font-weight:normal;letter-spacing:normal;text-transform:none;vertical-align:middle;margin-top:-0.1em;white-space:nowrap;word-wrap:normal;content:"arrow_right_alt";display:inline-block;padding-inline-start:.1em;text-decoration:none;transition:padding .2s ease-in-out;width:1em}.prominent-link:not(:has(cfa-icon)):hover::after,a.prominent-link:not(:has(cfa-icon)):hover::after{padding-inline-start:.3em}.prominent-link cfa-icon,a.prominent-link cfa-icon{text-decoration:none}.white-text,.text-light{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--white);--link-color: var(--white);--link-hover-color: var(--white)}.highlight{--highlight-offset: 0.2em;box-decoration-break:clone;display:inline;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%);padding-inline:.1em;-webkit-box-decoration-break:clone;margin-inline-start:-0.1em;margin-inline-end:-0.1em;word-wrap:break-word}.ul,.content ul{list-style-type:disc;padding-left:var(--spacing-layout-1)}.ul+*,*+.ul,.content ul+*,*+.content ul{margin-block-start:var(--spacing, var(--spacing-layout-1))}.ul>li,.content ul>li{margin-inline-start:0;padding-left:var(--spacing-component-2)}.ul>li+li,.content ul>li+li{margin-block-start:var(--spacing-layout-half)}.ul>li>ul,.content ul>li>ul{margin-block-start:var(--spacing-layout-half)}.ol,.content ol{list-style-type:decimal;padding-left:var(--spacing-layout-1)}.ol+*,*+.ol,.content ol+*,*+.content ol{margin-block-start:var(--spacing, var(--spacing-layout-1))}.ol>li,.content ol>li{margin-inline-start:0;padding-inline-start:var(--spacing-component-2)}.ol>li+li,.content ol>li+li{margin-block-start:var(--spacing-layout-half)}.ol>li>ul,.content ol>li>ul{margin-block-start:var(--spacing-layout-half)}.ul--unstyled{list-style:none;padding:0}.ul--unstyled>li{margin-inline:0;padding:0}.ul--line-separators>li+li::before{border-block-start:1px solid var(--gray-20);width:100%;content:"";display:block;margin-block:var(--spacing-layout-half)}.ul--inline,.ul--inline-with-line-separators,.ul--inline-with-separators{display:inline;list-style:none;padding-inline:0 !important}.ul--inline>li,.ul--inline-with-line-separators>li,.ul--inline-with-separators>li{display:inline-block;margin-inline-end:var(--spacing-component-3);padding:0 !important}.ul--inline li:last-child,.ul--inline-with-line-separators li:last-child,.ul--inline-with-separators li:last-child{margin-inline-end:0}.ul--inline>li+li,.ul--inline-with-line-separators>li+li,.ul--inline-with-separators>li+li{margin-block-start:0}.ul--inline-with-separators li{margin-inline-end:0}.ul--inline-with-separators>li::after{content:"•";margin-inline:var(--spacing-component-2);opacity:.5}.ul--inline-with-separators>li:last-child::after{content:""}.ul--inline-with-line-separators li{margin-inline-end:0}.ul--inline-with-line-separators>li::after{content:"|";margin-inline:var(--spacing-component-2);opacity:.5}.ul--inline-with-line-separators>li:last-child::after{content:""}hr{--color: currentColor;background-color:var(--color);border:0;color:var(--color);display:block;font-size:0;height:var(--hairline);margin-block:var(--spacing-layout-1);opacity:.4}.icon{-webkit-font-feature-settings:"liga";direction:ltr;display:inline-block;font-family:"Material Symbols Rounded";font-feature-settings:"liga";font-size:1.4em;font-style:normal;font-weight:normal;letter-spacing:normal;text-transform:none;vertical-align:middle;white-space:nowrap;word-wrap:normal}
|
|
6
|
+
.cfa-icon{height:var(--spacing-layout-5);margin-left:auto;margin-right:auto;width:var(--spacing-layout-5)}.cfa-icon img{display:block;height:100%;object-fit:contain;object-position:center center;width:100%}p+*,ul+*,ol+*,blockquote+*{margin-block-start:var(--spacing, var(--spacing-layout-1, 1.5rem))}*+p,*+ul,*+ol,*+blockquote{margin-block-start:var(--spacing, var(--spacing-layout-1, 1.5rem))}h1+*,h2+*,h3+*,h4+*,.h1+*,.h2+*,.h3+*,.h4+*,.display-1+*,.display-2+*{margin-block-start:var(--spacing, var(--spacing-layout-1, 1.5rem))}*+h1,*+h2,*+h3,*+h4,*+.h1,*+.h2,*+.h3,*+.h4,*+.display-1,*+.display-2{--spacing: var(--spacing-layout-2);margin-block-start:--spacing}h1+h1,h1+h2,h1+h3,h1+h4,h1+.h1,h1+.h2,h1+.h3,h1+.h4,h1+.display-1,h1+.display-2,h2+h1,h2+h2,h2+h3,h2+h4,h2+.h1,h2+.h2,h2+.h3,h2+.h4,h2+.display-1,h2+.display-2,h3+h1,h3+h2,h3+h3,h3+h4,h3+.h1,h3+.h2,h3+.h3,h3+.h4,h3+.display-1,h3+.display-2,h4+h1,h4+h2,h4+h3,h4+h4,h4+.h1,h4+.h2,h4+.h3,h4+.h4,h4+.display-1,h4+.display-2,.h1+h1,.h1+h2,.h1+h3,.h1+h4,.h1+.h1,.h1+.h2,.h1+.h3,.h1+.h4,.h1+.display-1,.h1+.display-2,.h2+h1,.h2+h2,.h2+h3,.h2+h4,.h2+.h1,.h2+.h2,.h2+.h3,.h2+.h4,.h2+.display-1,.h2+.display-2,.h3+h1,.h3+h2,.h3+h3,.h3+h4,.h3+.h1,.h3+.h2,.h3+.h3,.h3+.h4,.h3+.display-1,.h3+.display-2,.h4+h1,.h4+h2,.h4+h3,.h4+h4,.h4+.h1,.h4+.h2,.h4+.h3,.h4+.h4,.h4+.display-1,.h4+.display-2,.display-1+h1,.display-1+h2,.display-1+h3,.display-1+h4,.display-1+.h1,.display-1+.h2,.display-1+.h3,.display-1+.h4,.display-1+.display-1,.display-1+.display-2,.display-2+h1,.display-2+h2,.display-2+h3,.display-2+h4,.display-2+.h1,.display-2+.h2,.display-2+.h3,.display-2+.h4,.display-2+.display-1,.display-2+.display-2{--spacing: var(--spacing-layout-1)}cfa-breadcrumbs+h1,cfa-breadcrumbs+h2,cfa-breadcrumbs+h3,cfa-breadcrumbs+h4,cfa-breadcrumbs+.h1,cfa-breadcrumbs+.h2,cfa-breadcrumbs+.h3,cfa-breadcrumbs+.h4,cfa-breadcrumbs+.display-1,cfa-breadcrumbs+.display-2{margin-block-start:var(--spacing-layout-half) !important}.eyebrow+h1,.eyebrow+h2,.eyebrow+h3,.eyebrow+h4,.eyebrow+.h1,.eyebrow+.h2,.eyebrow+.h3,.eyebrow+.h4,.eyebrow+.display-1,.eyebrow+.display-2{margin-block-start:0 !important}h1,.h1,.display-1,.display-2{text-wrap:balance}.regular{font-family:var(--font-family-base);font-size:var(--font-size-base);line-height:var(--line-height-base)}.display-1{font-family:var(--font-family-heading);font-size:var(--font-size-display-1);font-weight:bold;line-height:var(--line-height-display-1);letter-spacing:var(--letter-spacing-display-1)}.display-2{font-family:var(--font-family-heading);font-size:var(--font-size-display-2);font-weight:bold;line-height:var(--line-height-display-2);letter-spacing:var(--letter-spacing-display-2)}h1,.h1{font-family:var(--font-family-heading);font-size:var(--font-size-h1);font-weight:bold;line-height:var(--line-height-h1);letter-spacing:var(--letter-spacing-h1)}h2,.h2{font-family:var(--font-family-heading);font-size:var(--font-size-h2);font-weight:bold;line-height:var(--line-height-h2);letter-spacing:var(--letter-spacing-h2)}h3,.h3{font-family:var(--font-family-heading);font-size:var(--font-size-h3);font-weight:bold;line-height:var(--line-height-h3);letter-spacing:var(--letter-spacing-h3)}h4,.h4{font-family:var(--font-family-heading);font-size:var(--font-size-h4);font-weight:bold;line-height:var(--line-height-h4);letter-spacing:var(--letter-spacing-h4)}.extra-large{font-size:var(--font-size-extra-large);line-height:var(--line-height-extra-large);letter-spacing:var(--letter-spacing-extra-large)}.large{font-size:var(--font-size-large);line-height:var(--line-height-large);letter-spacing:var(--letter-spacing-large)}.small{font-size:var(--font-size-small);line-height:var(--line-height-small);letter-spacing:var(--letter-spacing-small)}.eyebrow{font-family:var(--font-family-sans-serif);font-size:var(--font-size-eyebrow);font-weight:var(--font-weight-eyebrow);letter-spacing:var(--letter-spacing-eyebrow);line-height:var(--line-height-eyebrow);text-transform:uppercase}.eyebrow-with-line{align-items:center;color:var(--text-color);display:flex;font-family:var(--font-family-eyebrow);font-size:var(--font-size-eyebrow);font-weight:var(--font-weight-eyebrow);letter-spacing:var(--letter-spacing-eyebrow);line-height:var(--line-height-eyebrow);margin-block-end:var(--spacing-layout-half);position:relative;text-transform:uppercase}.eyebrow-with-line::after{border-block-end:var(--hairline) solid currentColor;content:"";flex-grow:1;margin-left:var(--spacing-component-3)}.subtle{opacity:.6}.serif{font-family:var(--font-family-serif)}.sans-serif{font-family:var(--font-family-sans-serif)}i,em,.italic{font-style:italic}b,strong,.strong{font-weight:bold}.normal{font-weight:normal}.balance{text-wrap:balance}.prominent-link,a.prominent-link{--accent-color: var(--purple-60);font-weight:bold;text-decoration:underline;text-decoration-color:var(--accent-color);text-decoration-thickness:var(--medium);text-underline-offset:.4em;transition:color .2s ease-in-out,border-color .2s ease-in-out}.prominent-link:hover,a.prominent-link:hover{--accent-color: var(--red-60)}.prominent-link:not(:has(cfa-icon))::after,a.prominent-link:not(:has(cfa-icon))::after{-webkit-font-feature-settings:"liga";direction:ltr;display:inline-block;font-family:"Material Symbols Rounded";font-size:1.4em;font-style:normal;font-weight:normal;letter-spacing:normal;text-transform:none;vertical-align:middle;margin-top:-0.1em;white-space:nowrap;word-wrap:normal;content:"arrow_right_alt";display:inline-block;padding-inline-start:.1em;text-decoration:none;transition:padding .2s ease-in-out;width:1em}.prominent-link:not(:has(cfa-icon)):hover::after,a.prominent-link:not(:has(cfa-icon)):hover::after{padding-inline-start:.3em}.prominent-link cfa-icon,a.prominent-link cfa-icon{text-decoration:none}.white-text,.text-light{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--white);--link-color: var(--white);--link-hover-color: var(--white)}.highlight{--highlight-offset: 0.2em;box-decoration-break:clone;display:inline;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%);padding-inline:.1em;-webkit-box-decoration-break:clone;margin-inline-start:-0.1em;margin-inline-end:-0.1em;word-wrap:break-word}.ul,.content ul{list-style-type:disc;padding-left:var(--spacing-layout-1)}.ul+*,*+.ul,.content ul+*,*+.content ul{margin-block-start:var(--spacing, var(--spacing-layout-1))}.ul>li,.content ul>li{margin-inline-start:0;padding-left:var(--spacing-component-2)}.ul>li+li,.content ul>li+li{margin-block-start:var(--spacing-layout-half)}.ul>li>ul,.content ul>li>ul{margin-block-start:var(--spacing-layout-half)}.ol,.content ol{list-style-type:decimal;padding-left:var(--spacing-layout-1)}.ol+*,*+.ol,.content ol+*,*+.content ol{margin-block-start:var(--spacing, var(--spacing-layout-1))}.ol>li,.content ol>li{margin-inline-start:0;padding-inline-start:var(--spacing-component-2)}.ol>li+li,.content ol>li+li{margin-block-start:var(--spacing-layout-half)}.ol>li>ul,.content ol>li>ul{margin-block-start:var(--spacing-layout-half)}.ul--unstyled{list-style:none;padding:0}.ul--unstyled>li{margin-inline:0;padding:0}.ul--line-separators>li+li::before{border-block-start:1px solid var(--gray-20);width:100%;content:"";display:block;margin-block:var(--spacing-layout-half)}.ul--inline,.ul--inline-with-line-separators,.ul--inline-with-separators{display:inline;list-style:none;padding-inline:0 !important}.ul--inline>li,.ul--inline-with-line-separators>li,.ul--inline-with-separators>li{display:inline-block;margin-inline-end:var(--spacing-component-3);padding:0 !important}.ul--inline li:last-child,.ul--inline-with-line-separators li:last-child,.ul--inline-with-separators li:last-child{margin-inline-end:0}.ul--inline>li+li,.ul--inline-with-line-separators>li+li,.ul--inline-with-separators>li+li{margin-block-start:0}.ul--inline-with-separators li{margin-inline-end:0}.ul--inline-with-separators>li::after{content:"•";margin-inline:var(--spacing-component-2);opacity:.5}.ul--inline-with-separators>li:last-child::after{content:""}.ul--inline-with-line-separators li{margin-inline-end:0}.ul--inline-with-line-separators>li::after{content:"|";margin-inline:var(--spacing-component-2);opacity:.5}.ul--inline-with-line-separators>li:last-child::after{content:""}hr{--color: currentColor;background-color:var(--color);border:0;color:var(--color);display:block;font-size:0;height:var(--hairline);margin-block:var(--spacing-layout-1);opacity:.4}.icon{-webkit-font-feature-settings:"liga";direction:ltr;display:inline-block;font-family:"Material Symbols Rounded";font-feature-settings:"liga";font-size:1.4em;font-style:normal;font-weight:normal;letter-spacing:normal;text-transform:none;vertical-align:middle;white-space:nowrap;word-wrap:normal}
|
|
7
7
|
.text-left{text-align:start !important}.text-center{text-align:center !important}.text-right{text-align:end !important}.color-purple{color:var(--purple-80)}.color-red{color:var(--red-80)}.color-green{color:var(--green-80)}.no-margin{margin:0}.rounded-corners{border-radius:var(--rounded-corners)}.is-hidden{border:0;clip:rect(0, 0, 0, 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.is-loading{position:relative;opacity:.4}.is-loading:after{content:"";height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%}.sr-only,.screen-reader-text{border:0;clip:rect(0, 0, 0, 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}a.skip-link{background-color:var(--white);height:1px;left:-999px;overflow:hidden;position:absolute;text-decoration:none;top:auto;width:1px;z-index:-999}a.skip-link:focus,a.skip-link:active{height:initial;left:var(--spacing-component-2);overflow:auto;padding:var(--spacing-component-2);text-align:center;top:var(--spacing-component-2);width:initial;z-index:999}
|