@charset "UTF-8";.glass-card{position:relative;display:flex;flex-direction:column;height:100%;padding:var(--card-padding, 1.5rem);background:rgba(255,255,255,var(--glass-opacity, .1));backdrop-filter:blur(var(--blur-amount, 12px)) saturate(180%) brightness(1.05);-webkit-backdrop-filter:blur(var(--blur-amount, 12px)) saturate(180%) brightness(1.05);border-radius:var(--border-radius, 16px);border:1px solid rgba(255,255,255,.2);box-shadow:var(--mat-elevation-2);color:var(--mat-text-primary);transition:background-color var(--mat-theme-transition),border-color var(--mat-theme-transition),box-shadow var(--mat-theme-transition),backdrop-filter var(--mat-theme-transition),transform var(--mat-transition-standard),opacity var(--mat-transition-standard)}@media(prefers-color-scheme:dark){.glass-card{background:rgba(255,255,255,var(--glass-opacity, .05));backdrop-filter:blur(var(--blur-amount, 12px)) saturate(180%) brightness(.92);-webkit-backdrop-filter:blur(var(--blur-amount, 12px)) saturate(180%) brightness(.92);border-color:#ffffff1a}}:host-context(.dark-theme) .glass-card,:host-context(body.dark-theme) .glass-card,:host-context(html.dark-theme) .glass-card{background:rgba(255,255,255,var(--glass-opacity, .05));backdrop-filter:blur(var(--blur-amount, 12px)) saturate(180%) brightness(.92);-webkit-backdrop-filter:blur(var(--blur-amount, 12px)) saturate(180%) brightness(.92);border-color:#ffffff1a}:host-context(.light-theme) .glass-card,:host-context(body.light-theme) .glass-card,:host-context(html.light-theme) .glass-card{background:rgba(255,255,255,var(--glass-opacity, .1));backdrop-filter:blur(var(--blur-amount, 12px)) saturate(180%) brightness(1.05);-webkit-backdrop-filter:blur(var(--blur-amount, 12px)) saturate(180%) brightness(1.05);border-color:#fff3}:host-context(.no-glass) .glass-card,:host-context(html.no-glass) .glass-card,:host-context(body.no-glass) .glass-card{background:var(--mat-background-card)!important;border-color:var(--mat-border)!important;backdrop-filter:none!important;-webkit-backdrop-filter:none!important}:host-context(.no-glass) .glass-card.hoverAble:hover,:host-context(html.no-glass) .glass-card.hoverAble:hover,:host-context(body.no-glass) .glass-card.hoverAble:hover{background:var(--mat-background-hover)!important;backdrop-filter:none!important;-webkit-backdrop-filter:none!important}.glass-card.hoverAble{cursor:pointer}.glass-card.hoverAble:hover{transform:translateY(-2px);box-shadow:var(--mat-elevation-4);background:rgba(255,255,255,calc(var(--glass-opacity, .1) + .05));backdrop-filter:blur(calc(var(--blur-amount, 12px) + 2px)) saturate(200%) brightness(1.1);-webkit-backdrop-filter:blur(calc(var(--blur-amount, 12px) + 2px)) saturate(200%) brightness(1.1);border-color:#ffffff4d}@media(prefers-color-scheme:dark){.glass-card.hoverAble:hover{background:rgba(255,255,255,calc(var(--glass-opacity, .05) + .02));backdrop-filter:blur(calc(var(--blur-amount, 12px) + 2px)) saturate(200%) brightness(.95);-webkit-backdrop-filter:blur(calc(var(--blur-amount, 12px) + 2px)) saturate(200%) brightness(.95);border-color:#ffffff26}}:host-context(.dark-theme) .glass-card.hoverAble:hover,:host-context(body.dark-theme) .glass-card.hoverAble:hover,:host-context(html.dark-theme) .glass-card.hoverAble:hover{background:rgba(255,255,255,calc(var(--glass-opacity, .05) + .02));backdrop-filter:blur(calc(var(--blur-amount, 12px) + 2px)) saturate(200%) brightness(.95);-webkit-backdrop-filter:blur(calc(var(--blur-amount, 12px) + 2px)) saturate(200%) brightness(.95);border-color:#ffffff26}.glass-card.hoverAble:active{transform:translateY(0);box-shadow:var(--mat-elevation-2)}.glass-card:focus-visible{outline:2px solid var(--mat-primary);outline-offset:2px;box-shadow:var(--mat-elevation-4),0 0 0 2px var(--mat-background),0 0 0 4px var(--mat-primary)}.glass-card-header{display:flex;flex-direction:column;gap:.5rem;margin-bottom:1rem}.glass-card-header:empty{margin-bottom:0}.glass-card-icon{font-size:2rem;line-height:1;margin-bottom:.25rem;display:inline-block}.glass-card-title{margin:0;font-size:1.25rem;font-weight:600;line-height:1.4;color:var(--mat-text-primary);transition:color var(--mat-theme-transition)}.glass-card-subtitle{margin:0;font-size:.875rem;font-weight:400;line-height:1.5;color:var(--mat-text-secondary);transition:color var(--mat-theme-transition)}.glass-card-content{flex:var(--glass-card-content-flex, 1);display:var(--glass-card-content-display, flex);flex-direction:var(--glass-card-content-flex-direction, column);overflow:var(--glass-card-content-overflow, visible);min-height:var(--glass-card-content-min-height, auto);color:var(--mat-text-primary);transition:color var(--mat-theme-transition)}@media(max-width:768px){.glass-card{padding:var(--card-padding, 1rem);border-radius:var(--border-radius, 12px)}.glass-card-title{font-size:1.125rem}.glass-card-subtitle{font-size:.8125rem}.glass-card-icon{font-size:1.75rem}}@media(prefers-contrast:high){.glass-card{border-width:2px;background:var(--mat-surface);backdrop-filter:none;-webkit-backdrop-filter:none}.glass-card:hover{background:var(--mat-surface-variant)}}@media(prefers-reduced-motion:reduce){.glass-card{transition:background-color var(--mat-theme-transition),border-color var(--mat-theme-transition),color var(--mat-theme-transition)}.glass-card.hoverAble:hover,.glass-card.hoverAble:active{transform:none}}:root{--ui-glass-opacity: .1;--ui-glass-blur: 12px;--ui-glass-border: rgba(255, 255, 255, .2);--glass-opacity: var(--ui-glass-opacity);--blur-amount: var(--ui-glass-blur)}body.dark-theme,html.dark-theme{--ui-glass-opacity: .05;--ui-glass-border: rgba(255, 255, 255, .1)}html.no-glass,body.no-glass,[data-ui-glass=off]{--ui-glass-opacity: 0;--ui-glass-blur: 0;--glass-enabled: 0}html:not(.no-glass):not([data-ui-glass=off]),body:not(.no-glass):not([data-ui-glass=off]){--glass-enabled: 1}:root{--uysd-content-max: 75rem;--uysd-content-padding-inline: clamp(1rem, 3.5vw, 1.5rem);--uysd-block-gap: clamp(1.25rem, 3vw, 1.75rem);--uysd-page-padding-block: clamp(1.25rem, 3vw, 2rem);--uysd-page-padding-bottom: clamp(2rem, 5vw, 3rem);--uysd-surface-radius: 1.25rem;--uysd-grid-gap: clamp(1rem, 2.5vw, 1.5rem);--uysd-header-height: 4.5rem;--uysd-header-height-scrolled: 3.75rem;--uysd-focus-ring: 2px solid var(--mat-sys-primary);--uysd-focus-offset: 2px;--landing-content-max: var(--uysd-content-max);--landing-content-padding-inline: var(--uysd-content-padding-inline);--landing-block-gap: var(--uysd-block-gap);--landing-page-padding-block: var(--uysd-page-padding-block);--landing-page-padding-bottom: var(--uysd-page-padding-bottom);--landing-surface-radius: var(--uysd-surface-radius);--landing-grid-gap: var(--uysd-grid-gap);--landing-header-height: var(--uysd-header-height);--landing-header-height-scrolled: var(--uysd-header-height-scrolled);--landing-focus-ring: var(--uysd-focus-ring);--landing-focus-offset: var(--uysd-focus-offset)}.landing-surface-panel{width:100%;box-sizing:border-box;background:var(--mat-sys-surface-container);color:var(--mat-sys-on-surface);border-radius:var(--landing-surface-radius, 1.25rem);box-shadow:var(--mat-elevation-1, 0 1px 3px rgba(15, 23, 42, .08));border-color:var(--mat-sys-outline-variant, rgba(0, 0, 0, .12));transition:box-shadow .25s ease,border-color .25s ease}.landing-surface-panel .mat-mdc-card-content{display:flex;flex-direction:column;gap:var(--landing-grid-gap, 1.25rem);padding:var(--landing-surface-padding, clamp(1.25rem, 3vw, 2rem))!important}.landing-marketing-card{height:100%;border-radius:calc(var(--landing-surface-radius, 1.25rem) - .25rem);transition:transform .22s cubic-bezier(.2,0,0,1),box-shadow .22s cubic-bezier(.2,0,0,1)}.landing-marketing-card:hover{transform:translateY(-3px);box-shadow:var(--mat-elevation-3, 0 6px 20px rgba(15, 23, 42, .12))}.landing-marketing-card .mat-mdc-card-header{padding-bottom:0}.landing-marketing-card .mat-mdc-card-content{padding:1rem 1.25rem 1.25rem!important}.introduction__title,.home-section__title,.marketing-section__title{font-size:clamp(1.875rem,4.5vw,2.5rem);font-weight:700;letter-spacing:-.025em;line-height:1.12;color:var(--mat-sys-on-surface)}.introduction__subtitle{font-size:clamp(1.125rem,2.5vw,1.375rem);font-weight:500;color:var(--mat-sys-on-surface-variant, var(--mat-sys-on-surface))}.introduction__description,.home-section__description,.marketing-section__description{font-size:clamp(1rem,2vw,1.0625rem);line-height:1.7;color:var(--mat-sys-on-surface-variant, var(--mat-sys-on-surface))}.landing-cta-row{display:flex;flex-wrap:wrap;gap:.75rem;justify-content:center}.landing-cta-btn{min-width:10rem}@media(prefers-reduced-motion:reduce){.landing-marketing-card,.landing-surface-panel{transition:none}.landing-marketing-card:hover{transform:none}}.uysd-content-rail{width:100%;max-width:var(--uysd-content-max);margin-inline:auto;padding-inline:var(--uysd-content-padding-inline);box-sizing:border-box}.uysd-page,.admin-page,.shop-page,.blog-page,.contact-page,.site-home,.view-article-page,.edit-article-page,.view-product-page,.edit-product-page,.page-container{width:100%;max-width:var(--uysd-content-max);margin-inline:auto;padding-inline:var(--uysd-content-padding-inline);box-sizing:border-box;display:flex;flex-direction:column;gap:var(--uysd-block-gap);padding-block:var(--uysd-page-padding-block) var(--uysd-page-padding-bottom);min-height:calc(100dvh - var(--uysd-header-height, 4.5rem));min-width:0}.uysd-page__header,.admin-page__header,.shop-page__header{display:flex;flex-wrap:wrap;align-items:center;gap:.75rem 1rem;padding-bottom:.75rem;border-bottom:1px solid var(--mat-sys-outline-variant, rgba(0, 0, 0, .1))}.uysd-page__title,.admin-page__header h1,.shop-page__header h1,.customers__title{flex:1;margin:0;font-size:clamp(1.375rem,3vw,1.75rem);font-weight:700;letter-spacing:-.025em;line-height:1.2;color:var(--mat-sys-on-surface)}.uysd-page__subtitle,.admin-page__header p,.shop-page__header p{flex-basis:100%;width:100%;margin:0 0 1rem;font-size:clamp(.9375rem,2vw,1.0625rem);line-height:1.6;color:var(--mat-sys-on-surface-variant, var(--mat-sys-on-surface))}.uysd-page__loading,.admin-page__loading,.shop-page__empty,.customers__loading{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;padding:clamp(2rem,5vw,3rem);color:var(--mat-sys-on-surface-variant)}.uysd-page__error,.shop-page__error,.customers__error{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.75rem;padding:1rem 1.25rem;border-radius:calc(var(--uysd-surface-radius) - .25rem);background:var(--mat-sys-error-container);color:var(--mat-sys-on-error-container)}.uysd-page__empty,.admin-page__empty,.customers__no-access{text-align:center;padding:clamp(2rem,5vw,3rem) var(--uysd-content-padding-inline);max-width:28rem;margin-inline:auto;border-radius:var(--uysd-surface-radius);background:var(--mat-sys-surface-container-low, var(--mat-sys-surface));border:1px solid var(--mat-sys-outline-variant, rgba(0, 0, 0, .1))}.uysd-page__empty p,.admin-page__empty p,.customers__no-access p{margin:0;color:var(--mat-sys-on-surface-variant)}.uysd-table-wrapper{display:block;width:100%;max-width:100%;min-width:0;overflow-x:auto;overflow-y:clip}@supports not (overflow: clip){.uysd-table-wrapper{overflow-y:hidden}}.uysd-table-wrapper{overscroll-behavior-x:contain;border-radius:var(--uysd-surface-radius);border:1px solid var(--mat-sys-outline-variant, rgba(0, 0, 0, .1));background:var(--mat-sys-surface-container-low, var(--mat-sys-surface));box-shadow:var(--mat-elevation-1, 0 1px 3px rgba(15, 23, 42, .06))}.uysd-table{width:100%;min-width:max-content;background:var(--mat-sys-surface)}.uysd-table th{font-weight:600;background:var(--mat-sys-surface-container-high, var(--mat-sys-surface-container))}.uysd-table td.mat-mdc-cell,.uysd-table .mat-mdc-cell{color:var(--mat-sys-on-surface);vertical-align:middle}.uysd-table app-quote-request-link{display:inline-block;max-width:14rem;vertical-align:middle}.uysd-table a.quote-request-link{display:inline-flex;align-items:center;gap:.25rem;max-width:14rem;min-width:0;color:var(--mat-sys-primary);text-decoration:none;vertical-align:middle;overflow:hidden}.uysd-table a.quote-request-link:hover{text-decoration:underline}.uysd-table a[href^="mailto:"]:not(.quote-request-link),.uysd-table a[href^="http://"]:not(.quote-request-link),.uysd-table a[href^="https://"]:not(.quote-request-link){color:var(--mat-sys-primary);text-decoration:none;display:inline-block;max-width:11rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:bottom}.uysd-table a[href^="mailto:"]:not(.quote-request-link):hover,.uysd-table a[href^="http://"]:not(.quote-request-link):hover,.uysd-table a[href^="https://"]:not(.quote-request-link):hover{text-decoration:underline}.uysd-table tr.mat-mdc-row:hover,.uysd-table tr.mat-row:hover{background:var(--mat-sys-surface-container, var(--mat-sys-surface))}@media(max-width:768px){.uysd-table-wrapper{-webkit-overflow-scrolling:touch}}.uysd-card-list{display:flex;flex-direction:column;gap:var(--uysd-grid-gap);width:100%}.uysd-elevated-card,.order-card{border-radius:var(--uysd-surface-radius);border:1px solid var(--mat-sys-outline-variant, rgba(0, 0, 0, .1));background:var(--mat-sys-surface-container-low, var(--mat-sys-surface));box-shadow:var(--mat-elevation-1, 0 1px 3px rgba(15, 23, 42, .06));transition:box-shadow .2s ease,transform .2s ease}.uysd-elevated-card:hover,.order-card:hover{box-shadow:var(--mat-elevation-2, 0 4px 12px rgba(15, 23, 42, .1))}.header-content{width:100%;max-width:var(--uysd-content-max);margin-inline:auto;padding-inline:var(--uysd-content-padding-inline);box-sizing:border-box;display:flex;align-items:center;gap:.5rem;flex-wrap:nowrap;min-height:inherit}.header-toolbar{min-height:var(--uysd-header-height, 4.5rem)}a:focus-visible,button:focus-visible,[mat-button]:focus-visible,[mat-menu-item]:focus-visible{outline:var(--uysd-focus-ring);outline-offset:var(--uysd-focus-offset)}html{scroll-behavior:smooth;scroll-padding-top:var(--uysd-header-height, 4.5rem)}@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.uysd-elevated-card,.order-card{transition:none}}:root{color-scheme:light dark;font-family:var(--uysd-font-family, "Inter", sans-serif);--mat-sys-primary: light-dark( var(--light-mat-sys-primary, #005cbb), var(--dark-mat-sys-primary, #00dddd) );--mat-sys-primary-container: light-dark( var(--light-mat-sys-primary-container, #d7e3ff), var(--dark-mat-sys-primary-container, #004f4f) );--mat-sys-on-primary-container: light-dark( var(--light-mat-sys-on-primary-container, var(--light-mat-sys-primary, #005cbb)), var(--dark-mat-sys-on-primary-container, var(--dark-mat-sys-primary, #00dddd)) );--mat-sys-surface: light-dark( var(--light-mat-sys-surface, #fdfbff), var(--dark-mat-sys-surface, #1a1b1f) );--mat-sys-surface-container: light-dark( var(--light-mat-sys-surface-container, var(--light-mat-sys-surface, #fdfbff)), var(--dark-mat-sys-surface-container, var(--dark-mat-sys-surface, #1a1b1f)) );--mat-sys-surface-container-high: light-dark( var(--light-mat-sys-surface-container-high, var(--light-mat-sys-surface, #fdfbff)), var(--dark-mat-sys-surface-container-high, var(--dark-mat-sys-surface, #1a1b1f)) );--mat-sys-on-surface: light-dark( var(--light-mat-sys-on-surface, #1a1b1f), var(--dark-mat-sys-on-surface, #e3e2e6) );--mat-sys-on-surface-container: light-dark( var(--light-mat-sys-on-surface-container, #1a1b1f), var(--dark-mat-sys-on-surface-container, #e3e2e6) );--uysd-page-background: light-dark( var(--light-custom-background, #f4f3f6), var(--dark-custom-background, #121316) )}body{background-color:var(--uysd-page-background)}mat-icon{font-size-adjust:none}html{color-scheme:light;--mat-sys-background: #faf9fd;--mat-sys-error: #ba1a1a;--mat-sys-error-container: #ffdad6;--mat-sys-inverse-on-surface: #f2f0f4;--mat-sys-inverse-primary: #abc7ff;--mat-sys-inverse-surface: #2f3033;--mat-sys-on-background: #1a1b1f;--mat-sys-on-error: #ffffff;--mat-sys-on-error-container: #93000a;--mat-sys-on-primary: #ffffff;--mat-sys-on-primary-container: #00458f;--mat-sys-on-primary-fixed: #001b3f;--mat-sys-on-primary-fixed-variant: #00458f;--mat-sys-on-secondary: #ffffff;--mat-sys-on-secondary-container: #3e4759;--mat-sys-on-secondary-fixed: #131c2b;--mat-sys-on-secondary-fixed-variant: #3e4759;--mat-sys-on-surface: #1a1b1f;--mat-sys-on-surface-variant: #44474e;--mat-sys-on-tertiary: #ffffff;--mat-sys-on-tertiary-container: #0000ef;--mat-sys-on-tertiary-fixed: #00006e;--mat-sys-on-tertiary-fixed-variant: #0000ef;--mat-sys-outline: #74777f;--mat-sys-outline-variant: #c4c6d0;--mat-sys-primary: #005cbb;--mat-sys-primary-container: #d7e3ff;--mat-sys-primary-fixed: #d7e3ff;--mat-sys-primary-fixed-dim: #abc7ff;--mat-sys-scrim: #000000;--mat-sys-secondary: #565e71;--mat-sys-secondary-container: #dae2f9;--mat-sys-secondary-fixed: #dae2f9;--mat-sys-secondary-fixed-dim: #bec6dc;--mat-sys-shadow: #000000;--mat-sys-surface: #faf9fd;--mat-sys-surface-bright: #faf9fd;--mat-sys-surface-container: #efedf0;--mat-sys-surface-container-high: #e9e7eb;--mat-sys-surface-container-highest: #e3e2e6;--mat-sys-surface-container-low: #f4f3f6;--mat-sys-surface-container-lowest: #ffffff;--mat-sys-surface-dim: #dbd9dd;--mat-sys-surface-tint: #005cbb;--mat-sys-surface-variant: #e0e2ec;--mat-sys-tertiary: #343dff;--mat-sys-tertiary-container: #e0e0ff;--mat-sys-tertiary-fixed: #e0e0ff;--mat-sys-tertiary-fixed-dim: #bec2ff;--mat-sys-neutral-variant20: #2d3038;--mat-sys-neutral10: #1a1b1f;--mat-sys-level0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-sys-level1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-sys-level2: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-sys-level3: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-sys-level4: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-sys-level5: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-sys-body-large: 400 1rem / 1.5rem Roboto;--mat-sys-body-large-font: Roboto;--mat-sys-body-large-line-height: 1.5rem;--mat-sys-body-large-size: 1rem;--mat-sys-body-large-tracking: .031rem;--mat-sys-body-large-weight: 400;--mat-sys-body-medium: 400 .875rem / 1.25rem Roboto;--mat-sys-body-medium-font: Roboto;--mat-sys-body-medium-line-height: 1.25rem;--mat-sys-body-medium-size: .875rem;--mat-sys-body-medium-tracking: .016rem;--mat-sys-body-medium-weight: 400;--mat-sys-body-small: 400 .75rem / 1rem Roboto;--mat-sys-body-small-font: Roboto;--mat-sys-body-small-line-height: 1rem;--mat-sys-body-small-size: .75rem;--mat-sys-body-small-tracking: .025rem;--mat-sys-body-small-weight: 400;--mat-sys-display-large: 400 3.562rem / 4rem Roboto;--mat-sys-display-large-font: Roboto;--mat-sys-display-large-line-height: 4rem;--mat-sys-display-large-size: 3.562rem;--mat-sys-display-large-tracking: -.016rem;--mat-sys-display-large-weight: 400;--mat-sys-display-medium: 400 2.812rem / 3.25rem Roboto;--mat-sys-display-medium-font: Roboto;--mat-sys-display-medium-line-height: 3.25rem;--mat-sys-display-medium-size: 2.812rem;--mat-sys-display-medium-tracking: 0;--mat-sys-display-medium-weight: 400;--mat-sys-display-small: 400 2.25rem / 2.75rem Roboto;--mat-sys-display-small-font: Roboto;--mat-sys-display-small-line-height: 2.75rem;--mat-sys-display-small-size: 2.25rem;--mat-sys-display-small-tracking: 0;--mat-sys-display-small-weight: 400;--mat-sys-headline-large: 400 2rem / 2.5rem Roboto;--mat-sys-headline-large-font: Roboto;--mat-sys-headline-large-line-height: 2.5rem;--mat-sys-headline-large-size: 2rem;--mat-sys-headline-large-tracking: 0;--mat-sys-headline-large-weight: 400;--mat-sys-headline-medium: 400 1.75rem / 2.25rem Roboto;--mat-sys-headline-medium-font: Roboto;--mat-sys-headline-medium-line-height: 2.25rem;--mat-sys-headline-medium-size: 1.75rem;--mat-sys-headline-medium-tracking: 0;--mat-sys-headline-medium-weight: 400;--mat-sys-headline-small: 400 1.5rem / 2rem Roboto;--mat-sys-headline-small-font: Roboto;--mat-sys-headline-small-line-height: 2rem;--mat-sys-headline-small-size: 1.5rem;--mat-sys-headline-small-tracking: 0;--mat-sys-headline-small-weight: 400;--mat-sys-label-large: 500 .875rem / 1.25rem Roboto;--mat-sys-label-large-font: Roboto;--mat-sys-label-large-line-height: 1.25rem;--mat-sys-label-large-size: .875rem;--mat-sys-label-large-tracking: .006rem;--mat-sys-label-large-weight: 500;--mat-sys-label-large-weight-prominent: 700;--mat-sys-label-medium: 500 .75rem / 1rem Roboto;--mat-sys-label-medium-font: Roboto;--mat-sys-label-medium-line-height: 1rem;--mat-sys-label-medium-size: .75rem;--mat-sys-label-medium-tracking: .031rem;--mat-sys-label-medium-weight: 500;--mat-sys-label-medium-weight-prominent: 700;--mat-sys-label-small: 500 .688rem / 1rem Roboto;--mat-sys-label-small-font: Roboto;--mat-sys-label-small-line-height: 1rem;--mat-sys-label-small-size: .688rem;--mat-sys-label-small-tracking: .031rem;--mat-sys-label-small-weight: 500;--mat-sys-title-large: 400 1.375rem / 1.75rem Roboto;--mat-sys-title-large-font: Roboto;--mat-sys-title-large-line-height: 1.75rem;--mat-sys-title-large-size: 1.375rem;--mat-sys-title-large-tracking: 0;--mat-sys-title-large-weight: 400;--mat-sys-title-medium: 500 1rem / 1.5rem Roboto;--mat-sys-title-medium-font: Roboto;--mat-sys-title-medium-line-height: 1.5rem;--mat-sys-title-medium-size: 1rem;--mat-sys-title-medium-tracking: .009rem;--mat-sys-title-medium-weight: 500;--mat-sys-title-small: 500 .875rem / 1.25rem Roboto;--mat-sys-title-small-font: Roboto;--mat-sys-title-small-line-height: 1.25rem;--mat-sys-title-small-size: .875rem;--mat-sys-title-small-tracking: .006rem;--mat-sys-title-small-weight: 500;--mat-sys-corner-extra-large: 28px;--mat-sys-corner-extra-large-top: 28px 28px 0 0;--mat-sys-corner-extra-small: 4px;--mat-sys-corner-extra-small-top: 4px 4px 0 0;--mat-sys-corner-full: 9999px;--mat-sys-corner-large: 16px;--mat-sys-corner-large-end: 0 16px 16px 0;--mat-sys-corner-large-start: 16px 0 0 16px;--mat-sys-corner-large-top: 16px 16px 0 0;--mat-sys-corner-medium: 12px;--mat-sys-corner-none: 0;--mat-sys-corner-small: 8px;--mat-sys-dragged-state-layer-opacity: .16;--mat-sys-focus-state-layer-opacity: .12;--mat-sys-hover-state-layer-opacity: .08;--mat-sys-pressed-state-layer-opacity: .12}html.dark-theme,body.dark-theme{color-scheme:dark;--mat-sys-background: #101414;--mat-sys-error: #ffb4ab;--mat-sys-error-container: #93000a;--mat-sys-inverse-on-surface: #2d3131;--mat-sys-inverse-primary: #006a6a;--mat-sys-inverse-surface: #e0e3e2;--mat-sys-on-background: #e0e3e2;--mat-sys-on-error: #690005;--mat-sys-on-error-container: #ffdad6;--mat-sys-on-primary: #003737;--mat-sys-on-primary-container: #00fbfb;--mat-sys-on-primary-fixed: #002020;--mat-sys-on-primary-fixed-variant: #004f4f;--mat-sys-on-secondary: #1b3534;--mat-sys-on-secondary-container: #cce8e7;--mat-sys-on-secondary-fixed: #051f1f;--mat-sys-on-secondary-fixed-variant: #324b4b;--mat-sys-on-surface: #e0e3e2;--mat-sys-on-surface-variant: #dae5e4;--mat-sys-on-tertiary: #502400;--mat-sys-on-tertiary-container: #ffdcc7;--mat-sys-on-tertiary-fixed: #311300;--mat-sys-on-tertiary-fixed-variant: #723600;--mat-sys-outline: #889392;--mat-sys-outline-variant: #3f4948;--mat-sys-primary: #00dddd;--mat-sys-primary-container: #004f4f;--mat-sys-primary-fixed: #00fbfb;--mat-sys-primary-fixed-dim: #00dddd;--mat-sys-scrim: #000000;--mat-sys-secondary: #b0cccb;--mat-sys-secondary-container: #324b4b;--mat-sys-secondary-fixed: #cce8e7;--mat-sys-secondary-fixed-dim: #b0cccb;--mat-sys-shadow: #000000;--mat-sys-surface: #101414;--mat-sys-surface-bright: #363a39;--mat-sys-surface-container: #1c2020;--mat-sys-surface-container-high: #272b2a;--mat-sys-surface-container-highest: #313635;--mat-sys-surface-container-low: #191c1c;--mat-sys-surface-container-lowest: #0b0f0e;--mat-sys-surface-dim: #101414;--mat-sys-surface-tint: #00dddd;--mat-sys-surface-variant: #3f4948;--mat-sys-tertiary: #ffb787;--mat-sys-tertiary-container: #723600;--mat-sys-tertiary-fixed: #ffdcc7;--mat-sys-tertiary-fixed-dim: #ffb787;--mat-sys-neutral-variant20: #293232;--mat-sys-neutral10: #191c1c;--mat-sys-level0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-sys-level1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-sys-level2: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-sys-level3: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-sys-level4: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-sys-level5: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-sys-body-large: 400 1rem / 1.5rem Roboto;--mat-sys-body-large-font: Roboto;--mat-sys-body-large-line-height: 1.5rem;--mat-sys-body-large-size: 1rem;--mat-sys-body-large-tracking: .031rem;--mat-sys-body-large-weight: 400;--mat-sys-body-medium: 400 .875rem / 1.25rem Roboto;--mat-sys-body-medium-font: Roboto;--mat-sys-body-medium-line-height: 1.25rem;--mat-sys-body-medium-size: .875rem;--mat-sys-body-medium-tracking: .016rem;--mat-sys-body-medium-weight: 400;--mat-sys-body-small: 400 .75rem / 1rem Roboto;--mat-sys-body-small-font: Roboto;--mat-sys-body-small-line-height: 1rem;--mat-sys-body-small-size: .75rem;--mat-sys-body-small-tracking: .025rem;--mat-sys-body-small-weight: 400;--mat-sys-display-large: 400 3.562rem / 4rem Roboto;--mat-sys-display-large-font: Roboto;--mat-sys-display-large-line-height: 4rem;--mat-sys-display-large-size: 3.562rem;--mat-sys-display-large-tracking: -.016rem;--mat-sys-display-large-weight: 400;--mat-sys-display-medium: 400 2.812rem / 3.25rem Roboto;--mat-sys-display-medium-font: Roboto;--mat-sys-display-medium-line-height: 3.25rem;--mat-sys-display-medium-size: 2.812rem;--mat-sys-display-medium-tracking: 0;--mat-sys-display-medium-weight: 400;--mat-sys-display-small: 400 2.25rem / 2.75rem Roboto;--mat-sys-display-small-font: Roboto;--mat-sys-display-small-line-height: 2.75rem;--mat-sys-display-small-size: 2.25rem;--mat-sys-display-small-tracking: 0;--mat-sys-display-small-weight: 400;--mat-sys-headline-large: 400 2rem / 2.5rem Roboto;--mat-sys-headline-large-font: Roboto;--mat-sys-headline-large-line-height: 2.5rem;--mat-sys-headline-large-size: 2rem;--mat-sys-headline-large-tracking: 0;--mat-sys-headline-large-weight: 400;--mat-sys-headline-medium: 400 1.75rem / 2.25rem Roboto;--mat-sys-headline-medium-font: Roboto;--mat-sys-headline-medium-line-height: 2.25rem;--mat-sys-headline-medium-size: 1.75rem;--mat-sys-headline-medium-tracking: 0;--mat-sys-headline-medium-weight: 400;--mat-sys-headline-small: 400 1.5rem / 2rem Roboto;--mat-sys-headline-small-font: Roboto;--mat-sys-headline-small-line-height: 2rem;--mat-sys-headline-small-size: 1.5rem;--mat-sys-headline-small-tracking: 0;--mat-sys-headline-small-weight: 400;--mat-sys-label-large: 500 .875rem / 1.25rem Roboto;--mat-sys-label-large-font: Roboto;--mat-sys-label-large-line-height: 1.25rem;--mat-sys-label-large-size: .875rem;--mat-sys-label-large-tracking: .006rem;--mat-sys-label-large-weight: 500;--mat-sys-label-large-weight-prominent: 700;--mat-sys-label-medium: 500 .75rem / 1rem Roboto;--mat-sys-label-medium-font: Roboto;--mat-sys-label-medium-line-height: 1rem;--mat-sys-label-medium-size: .75rem;--mat-sys-label-medium-tracking: .031rem;--mat-sys-label-medium-weight: 500;--mat-sys-label-medium-weight-prominent: 700;--mat-sys-label-small: 500 .688rem / 1rem Roboto;--mat-sys-label-small-font: Roboto;--mat-sys-label-small-line-height: 1rem;--mat-sys-label-small-size: .688rem;--mat-sys-label-small-tracking: .031rem;--mat-sys-label-small-weight: 500;--mat-sys-title-large: 400 1.375rem / 1.75rem Roboto;--mat-sys-title-large-font: Roboto;--mat-sys-title-large-line-height: 1.75rem;--mat-sys-title-large-size: 1.375rem;--mat-sys-title-large-tracking: 0;--mat-sys-title-large-weight: 400;--mat-sys-title-medium: 500 1rem / 1.5rem Roboto;--mat-sys-title-medium-font: Roboto;--mat-sys-title-medium-line-height: 1.5rem;--mat-sys-title-medium-size: 1rem;--mat-sys-title-medium-tracking: .009rem;--mat-sys-title-medium-weight: 500;--mat-sys-title-small: 500 .875rem / 1.25rem Roboto;--mat-sys-title-small-font: Roboto;--mat-sys-title-small-line-height: 1.25rem;--mat-sys-title-small-size: .875rem;--mat-sys-title-small-tracking: .006rem;--mat-sys-title-small-weight: 500;--mat-sys-corner-extra-large: 28px;--mat-sys-corner-extra-large-top: 28px 28px 0 0;--mat-sys-corner-extra-small: 4px;--mat-sys-corner-extra-small-top: 4px 4px 0 0;--mat-sys-corner-full: 9999px;--mat-sys-corner-large: 16px;--mat-sys-corner-large-end: 0 16px 16px 0;--mat-sys-corner-large-start: 16px 0 0 16px;--mat-sys-corner-large-top: 16px 16px 0 0;--mat-sys-corner-medium: 12px;--mat-sys-corner-none: 0;--mat-sys-corner-small: 8px;--mat-sys-dragged-state-layer-opacity: .16;--mat-sys-focus-state-layer-opacity: .12;--mat-sys-hover-state-layer-opacity: .08;--mat-sys-pressed-state-layer-opacity: .12}@media(prefers-color-scheme:dark){html:not(.dark-theme):not(.light-theme){color-scheme:dark;--mat-sys-background: #101414;--mat-sys-error: #ffb4ab;--mat-sys-error-container: #93000a;--mat-sys-inverse-on-surface: #2d3131;--mat-sys-inverse-primary: #006a6a;--mat-sys-inverse-surface: #e0e3e2;--mat-sys-on-background: #e0e3e2;--mat-sys-on-error: #690005;--mat-sys-on-error-container: #ffdad6;--mat-sys-on-primary: #003737;--mat-sys-on-primary-container: #00fbfb;--mat-sys-on-primary-fixed: #002020;--mat-sys-on-primary-fixed-variant: #004f4f;--mat-sys-on-secondary: #1b3534;--mat-sys-on-secondary-container: #cce8e7;--mat-sys-on-secondary-fixed: #051f1f;--mat-sys-on-secondary-fixed-variant: #324b4b;--mat-sys-on-surface: #e0e3e2;--mat-sys-on-surface-variant: #dae5e4;--mat-sys-on-tertiary: #502400;--mat-sys-on-tertiary-container: #ffdcc7;--mat-sys-on-tertiary-fixed: #311300;--mat-sys-on-tertiary-fixed-variant: #723600;--mat-sys-outline: #889392;--mat-sys-outline-variant: #3f4948;--mat-sys-primary: #00dddd;--mat-sys-primary-container: #004f4f;--mat-sys-primary-fixed: #00fbfb;--mat-sys-primary-fixed-dim: #00dddd;--mat-sys-scrim: #000000;--mat-sys-secondary: #b0cccb;--mat-sys-secondary-container: #324b4b;--mat-sys-secondary-fixed: #cce8e7;--mat-sys-secondary-fixed-dim: #b0cccb;--mat-sys-shadow: #000000;--mat-sys-surface: #101414;--mat-sys-surface-bright: #363a39;--mat-sys-surface-container: #1c2020;--mat-sys-surface-container-high: #272b2a;--mat-sys-surface-container-highest: #313635;--mat-sys-surface-container-low: #191c1c;--mat-sys-surface-container-lowest: #0b0f0e;--mat-sys-surface-dim: #101414;--mat-sys-surface-tint: #00dddd;--mat-sys-surface-variant: #3f4948;--mat-sys-tertiary: #ffb787;--mat-sys-tertiary-container: #723600;--mat-sys-tertiary-fixed: #ffdcc7;--mat-sys-tertiary-fixed-dim: #ffb787;--mat-sys-neutral-variant20: #293232;--mat-sys-neutral10: #191c1c;--mat-sys-level0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-sys-level1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-sys-level2: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-sys-level3: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-sys-level4: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-sys-level5: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-sys-body-large: 400 1rem / 1.5rem Roboto;--mat-sys-body-large-font: Roboto;--mat-sys-body-large-line-height: 1.5rem;--mat-sys-body-large-size: 1rem;--mat-sys-body-large-tracking: .031rem;--mat-sys-body-large-weight: 400;--mat-sys-body-medium: 400 .875rem / 1.25rem Roboto;--mat-sys-body-medium-font: Roboto;--mat-sys-body-medium-line-height: 1.25rem;--mat-sys-body-medium-size: .875rem;--mat-sys-body-medium-tracking: .016rem;--mat-sys-body-medium-weight: 400;--mat-sys-body-small: 400 .75rem / 1rem Roboto;--mat-sys-body-small-font: Roboto;--mat-sys-body-small-line-height: 1rem;--mat-sys-body-small-size: .75rem;--mat-sys-body-small-tracking: .025rem;--mat-sys-body-small-weight: 400;--mat-sys-display-large: 400 3.562rem / 4rem Roboto;--mat-sys-display-large-font: Roboto;--mat-sys-display-large-line-height: 4rem;--mat-sys-display-large-size: 3.562rem;--mat-sys-display-large-tracking: -.016rem;--mat-sys-display-large-weight: 400;--mat-sys-display-medium: 400 2.812rem / 3.25rem Roboto;--mat-sys-display-medium-font: Roboto;--mat-sys-display-medium-line-height: 3.25rem;--mat-sys-display-medium-size: 2.812rem;--mat-sys-display-medium-tracking: 0;--mat-sys-display-medium-weight: 400;--mat-sys-display-small: 400 2.25rem / 2.75rem Roboto;--mat-sys-display-small-font: Roboto;--mat-sys-display-small-line-height: 2.75rem;--mat-sys-display-small-size: 2.25rem;--mat-sys-display-small-tracking: 0;--mat-sys-display-small-weight: 400;--mat-sys-headline-large: 400 2rem / 2.5rem Roboto;--mat-sys-headline-large-font: Roboto;--mat-sys-headline-large-line-height: 2.5rem;--mat-sys-headline-large-size: 2rem;--mat-sys-headline-large-tracking: 0;--mat-sys-headline-large-weight: 400;--mat-sys-headline-medium: 400 1.75rem / 2.25rem Roboto;--mat-sys-headline-medium-font: Roboto;--mat-sys-headline-medium-line-height: 2.25rem;--mat-sys-headline-medium-size: 1.75rem;--mat-sys-headline-medium-tracking: 0;--mat-sys-headline-medium-weight: 400;--mat-sys-headline-small: 400 1.5rem / 2rem Roboto;--mat-sys-headline-small-font: Roboto;--mat-sys-headline-small-line-height: 2rem;--mat-sys-headline-small-size: 1.5rem;--mat-sys-headline-small-tracking: 0;--mat-sys-headline-small-weight: 400;--mat-sys-label-large: 500 .875rem / 1.25rem Roboto;--mat-sys-label-large-font: Roboto;--mat-sys-label-large-line-height: 1.25rem;--mat-sys-label-large-size: .875rem;--mat-sys-label-large-tracking: .006rem;--mat-sys-label-large-weight: 500;--mat-sys-label-large-weight-prominent: 700;--mat-sys-label-medium: 500 .75rem / 1rem Roboto;--mat-sys-label-medium-font: Roboto;--mat-sys-label-medium-line-height: 1rem;--mat-sys-label-medium-size: .75rem;--mat-sys-label-medium-tracking: .031rem;--mat-sys-label-medium-weight: 500;--mat-sys-label-medium-weight-prominent: 700;--mat-sys-label-small: 500 .688rem / 1rem Roboto;--mat-sys-label-small-font: Roboto;--mat-sys-label-small-line-height: 1rem;--mat-sys-label-small-size: .688rem;--mat-sys-label-small-tracking: .031rem;--mat-sys-label-small-weight: 500;--mat-sys-title-large: 400 1.375rem / 1.75rem Roboto;--mat-sys-title-large-font: Roboto;--mat-sys-title-large-line-height: 1.75rem;--mat-sys-title-large-size: 1.375rem;--mat-sys-title-large-tracking: 0;--mat-sys-title-large-weight: 400;--mat-sys-title-medium: 500 1rem / 1.5rem Roboto;--mat-sys-title-medium-font: Roboto;--mat-sys-title-medium-line-height: 1.5rem;--mat-sys-title-medium-size: 1rem;--mat-sys-title-medium-tracking: .009rem;--mat-sys-title-medium-weight: 500;--mat-sys-title-small: 500 .875rem / 1.25rem Roboto;--mat-sys-title-small-font: Roboto;--mat-sys-title-small-line-height: 1.25rem;--mat-sys-title-small-size: .875rem;--mat-sys-title-small-tracking: .006rem;--mat-sys-title-small-weight: 500;--mat-sys-corner-extra-large: 28px;--mat-sys-corner-extra-large-top: 28px 28px 0 0;--mat-sys-corner-extra-small: 4px;--mat-sys-corner-extra-small-top: 4px 4px 0 0;--mat-sys-corner-full: 9999px;--mat-sys-corner-large: 16px;--mat-sys-corner-large-end: 0 16px 16px 0;--mat-sys-corner-large-start: 16px 0 0 16px;--mat-sys-corner-large-top: 16px 16px 0 0;--mat-sys-corner-medium: 12px;--mat-sys-corner-none: 0;--mat-sys-corner-small: 8px;--mat-sys-dragged-state-layer-opacity: .16;--mat-sys-focus-state-layer-opacity: .12;--mat-sys-hover-state-layer-opacity: .08;--mat-sys-pressed-state-layer-opacity: .12}}:root{--uysd-font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif}body{margin:0;height:100%;font-family:var(--uysd-font-family);background:var(--uysd-page-background, var(--mat-sys-surface));color:var(--mat-sys-on-surface);font-size-adjust:.46;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;overflow-x:hidden}html:not(.no-glass):not([data-ui-glass=off]) body{background:linear-gradient(160deg,var(--mat-sys-surface-container-low, var(--mat-sys-surface)) 0%,var(--mat-sys-surface) 45%,var(--mat-sys-surface-container, var(--mat-sys-surface)) 100%)}html:not(.no-glass):not([data-ui-glass=off]) .header-toolbar{background:rgba(255,255,255,var(--ui-glass-opacity));backdrop-filter:blur(var(--ui-glass-blur)) saturate(180%);-webkit-backdrop-filter:blur(var(--ui-glass-blur)) saturate(180%);border:1px solid var(--ui-glass-border);background:var(--mat-sys-surface-container-high, var(--mat-sys-surface-container));border-top:none;border-left:none;border-right:none;border-bottom:1px solid var(--mat-sys-outline-variant, rgba(0, 0, 0, .12));box-shadow:var(--mat-elevation-2, 0 2px 8px rgba(15, 23, 42, .08))}html:not(.no-glass):not([data-ui-glass=off]) .blog-card{background:#ffffff1f;backdrop-filter:blur(10px) saturate(180%) brightness(1.08);-webkit-backdrop-filter:blur(10px) saturate(180%) brightness(1.08);border:1px solid rgba(255,255,255,.3);transition:background-color var(--mat-theme-transition),border-color var(--mat-theme-transition),color var(--mat-theme-transition),backdrop-filter var(--mat-theme-transition),box-shadow var(--mat-transition-standard),transform var(--mat-transition-standard)}html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover{transform:translateY(-1px);box-shadow:var(--mat-elevation-4);background:#ffffff2e;backdrop-filter:blur(12px) saturate(200%) brightness(1.12);-webkit-backdrop-filter:blur(12px) saturate(200%) brightness(1.12);border-color:#fff6}.no-blur html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,html.no-blur html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,body.no-blur html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover{background:var(--mat-background-hover)!important;border-color:var(--mat-border)!important;backdrop-filter:none!important;-webkit-backdrop-filter:none!important}@media(prefers-color-scheme:dark){html:not(.no-glass):not([data-ui-glass=off]) .blog-card{background:#ffffff0f;backdrop-filter:blur(10px) saturate(180%) brightness(.9);-webkit-backdrop-filter:blur(10px) saturate(180%) brightness(.9);border-color:#fff3}html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover{background:#ffffff15;backdrop-filter:blur(12px) saturate(200%) brightness(.93);-webkit-backdrop-filter:blur(12px) saturate(200%) brightness(.93);border-color:#ffffff4d}.no-blur html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,html.no-blur html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,body.no-blur html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover{background:var(--mat-background-hover)!important;border-color:var(--mat-border)!important;backdrop-filter:none!important;-webkit-backdrop-filter:none!important}}:host-context(.dark-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card,:host-context(body.dark-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card,:host-context(html.dark-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card{background:#ffffff0f;backdrop-filter:blur(10px) saturate(180%) brightness(.9);-webkit-backdrop-filter:blur(10px) saturate(180%) brightness(.9);border-color:#fff3}:host-context(.dark-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,:host-context(body.dark-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,:host-context(html.dark-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover{background:#ffffff15;backdrop-filter:blur(12px) saturate(200%) brightness(.93);-webkit-backdrop-filter:blur(12px) saturate(200%) brightness(.93);border-color:#ffffff4d}.no-blur :host-context(.dark-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,html.no-blur :host-context(.dark-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,body.no-blur :host-context(.dark-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,.no-blur :host-context(body.dark-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,html.no-blur :host-context(body.dark-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,body.no-blur :host-context(body.dark-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,.no-blur :host-context(html.dark-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,html.no-blur :host-context(html.dark-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,body.no-blur :host-context(html.dark-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover{background:var(--mat-background-hover)!important;border-color:var(--mat-border)!important;backdrop-filter:none!important;-webkit-backdrop-filter:none!important}:host-context(.light-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card,:host-context(body.light-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card,:host-context(html.light-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card{background:#ffffff1f;backdrop-filter:blur(10px) saturate(180%) brightness(1.08);-webkit-backdrop-filter:blur(10px) saturate(180%) brightness(1.08);border:1px solid rgba(255,255,255,.3)}:host-context(.light-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,:host-context(body.light-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,:host-context(html.light-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover{background:#ffffff2e;backdrop-filter:blur(12px) saturate(200%) brightness(1.12);-webkit-backdrop-filter:blur(12px) saturate(200%) brightness(1.12);border-color:#fff6}.no-blur :host-context(.light-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,html.no-blur :host-context(.light-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,body.no-blur :host-context(.light-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,.no-blur :host-context(body.light-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,html.no-blur :host-context(body.light-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,body.no-blur :host-context(body.light-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,.no-blur :host-context(html.light-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,html.no-blur :host-context(html.light-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover,body.no-blur :host-context(html.light-theme) html:not(.no-glass):not([data-ui-glass=off]) .blog-card:hover{background:var(--mat-background-hover)!important;border-color:var(--mat-border)!important;backdrop-filter:none!important;-webkit-backdrop-filter:none!important}html:not(.no-glass):not([data-ui-glass=off]) .blog-card{box-shadow:var(--mat-elevation-2, 0 4px 12px rgba(15, 23, 42, .12));border-radius:12px}body:has(.auth-page){overflow:hidden}.app-main{min-height:calc(100vh - 4rem);min-height:calc(100dvh - 4rem)}button.mat-mdc-menu-item[data-active=true]{background-color:var(--mat-sys-secondary-container)!important;color:var(--mat-sys-on-secondary-container)!important}app-header .header-brand{display:inline-flex;align-items:center;justify-content:flex-start;flex-shrink:0;height:3rem;min-width:3rem;text-decoration:none;color:inherit}app-header .header-brand-logo,app-header .brand-logo{display:block;flex-shrink:0;height:3rem;width:auto;max-width:12rem;object-fit:contain;object-position:left center}app-header .header-logo{display:block;flex-shrink:0;height:3rem;width:auto;object-fit:contain}@media(max-width:768px){app-header .header-brand{height:2.25rem;min-width:2.25rem}app-header .header-brand-logo,app-header .brand-logo{height:2.25rem;max-width:9rem}app-header .header-logo{height:2.25rem}}app-header .header-content button.mat-mdc-mini-fab{--mdc-fab-small-container-size: 3rem;--mat-fab-small-container-color: var(--mat-sys-primary-container);--mat-fab-small-foreground-color: var(--mat-sys-on-primary-container, var(--mat-sys-primary));--mat-fab-small-state-layer-color: var(--mat-sys-on-primary-container, var(--mat-sys-primary));--mat-fab-small-ripple-color: color-mix( in srgb, var(--mat-sys-on-primary-container, var(--mat-sys-primary)) 12%, transparent );flex-shrink:0;width:3rem;height:3rem;min-width:3rem;max-width:3rem;padding:0}app-header .header-content button.mat-mdc-mini-fab .mat-icon{font-size:1.5rem;width:1.5rem;height:1.5rem}app-header .header-lang-trigger{width:3rem;min-width:3rem;max-width:3rem;font-size:.75rem;font-weight:500}@media(max-width:768px){app-header .header-content button.mat-mdc-mini-fab{--mdc-fab-small-container-size: 2.25rem;width:2.25rem;height:2.25rem;min-width:2.25rem;max-width:2.25rem}app-header .header-content button.mat-mdc-mini-fab .mat-icon{font-size:1.25rem;width:1.25rem;height:1.25rem}app-header .header-lang-trigger{width:2.25rem;min-width:2.25rem;max-width:2.25rem;font-size:.6875rem}}app-header .header-dropdown{position:relative;display:inline-flex;align-items:center}app-header .header-dropdown.header-menu-btn--mobile{display:inline-flex}app-header .header-dropdown__panel{position:absolute;top:calc(100% + .5rem);right:0;z-index:1100;width:max-content;max-width:calc(100vw - 1rem);max-height:min(44rem,80vh);overflow-y:auto;display:flex;flex-direction:column;gap:.125rem;padding:.5rem;background:var(--mat-sys-surface-container-high, var(--mat-sys-surface-container));color:var(--mat-sys-on-surface);border:1px solid var(--mat-sys-outline-variant, rgba(0, 0, 0, .12));border-radius:.75rem;box-shadow:var(--mat-elevation-3, 0 8px 24px rgba(15, 23, 42, .18))}app-header .header-dropdown__panel--nav{min-width:0}app-header .header-dropdown__item{display:flex;align-items:center;gap:.625rem;width:auto;min-width:100%;padding:.625rem .75rem;border:0;border-radius:.5rem;background:transparent;color:var(--mat-sys-on-surface);font:inherit;font-size:.9375rem;text-align:left;white-space:nowrap;cursor:pointer;transition:background-color .15s ease}app-header .header-dropdown__item .mat-icon{flex-shrink:0;font-size:1.25rem;width:1.25rem;height:1.25rem}app-header .header-dropdown__item:hover{background-color:color-mix(in srgb,var(--mat-sys-on-surface) 8%,transparent)}app-header .header-dropdown__item:focus-visible{outline:2px solid var(--mat-sys-primary, currentColor);outline-offset:-2px}app-header .header-dropdown__item[data-active=true]{background-color:var(--mat-sys-secondary-container);color:var(--mat-sys-on-secondary-container);font-weight:600}@media(min-width:1024px){app-header .header-dropdown.header-menu-btn--mobile{display:none}}lib-site-footer,lib-tenant-site-footer lib-site-footer{display:block;position:relative;color:var(--mat-sys-on-surface);border-top:1px solid color-mix(in srgb,var(--mat-sys-on-surface, currentColor) 14%,transparent);background:linear-gradient(180deg,var(--mat-sys-surface-container-low, var(--mat-sys-surface)) 0%,var(--mat-sys-surface-container, var(--mat-sys-surface)) 100%);--footer-icon-phone: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M6.62 10.79a15.5 15.5 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24a11.4 11.4 0 0 0 3.57.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1a11.4 11.4 0 0 0 .57 3.57a1 1 0 0 1-.25 1.02z"/></svg>');--footer-icon-mail: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4l-8 5l-8-5V6l8 5l8-5z"/></svg>');--footer-icon-location: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z"/></svg>')}lib-site-footer:before,lib-tenant-site-footer lib-site-footer:before{content:"";position:absolute;inset-block-start:-1px;inset-inline:0;height:3px;background:linear-gradient(90deg,var(--mat-sys-primary) 0%,color-mix(in srgb,var(--mat-sys-primary) 55%,var(--mat-sys-primary-container, var(--mat-sys-surface))) 50%,var(--mat-sys-primary-container, var(--mat-sys-primary)) 100%);opacity:.92}lib-site-footer .footer-container,lib-tenant-site-footer lib-site-footer .footer-container{width:100%;max-width:var(--uysd-content-max);margin-inline:auto;padding-inline:var(--uysd-content-padding-inline);padding-block:3rem 1.75rem;box-sizing:border-box}lib-site-footer .footer-main,lib-tenant-site-footer lib-site-footer .footer-main{display:grid;grid-template-columns:1fr;gap:2.5rem 2rem;margin-bottom:2.5rem;align-items:start;text-align:center}@media(min-width:600px){lib-site-footer .footer-main,lib-tenant-site-footer lib-site-footer .footer-main{grid-template-columns:repeat(3,minmax(0,1fr));gap:2.5rem 3rem}lib-site-footer .footer-section--contact,lib-tenant-site-footer lib-site-footer .footer-section--contact{grid-column:1}lib-site-footer .footer-section--business,lib-tenant-site-footer lib-site-footer .footer-section--business{grid-column:2}lib-site-footer .footer-section--legal,lib-tenant-site-footer lib-site-footer .footer-section--legal{grid-column:3}}lib-site-footer .footer-section,lib-tenant-site-footer lib-site-footer .footer-section{text-align:center}lib-site-footer .footer-section-title,lib-tenant-site-footer lib-site-footer .footer-section-title{margin:0 0 1.1rem;font-size:.78rem;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--mat-sys-on-surface-variant, var(--mat-sys-on-surface))}lib-site-footer .contact-info,lib-tenant-site-footer lib-site-footer .contact-info{display:flex;flex-direction:column;gap:.75rem;align-items:center}lib-site-footer .contact-link,lib-tenant-site-footer lib-site-footer .contact-link{display:inline-flex;align-items:center;gap:.55rem;color:var(--mat-sys-on-surface);text-decoration:none;font-size:.95rem;border-radius:.4rem;transition:color .16s ease,transform .16s ease}lib-site-footer .contact-link:hover,lib-tenant-site-footer lib-site-footer .contact-link:hover{color:var(--mat-sys-primary);transform:translateY(-1px)}lib-site-footer .contact-link:focus-visible,lib-tenant-site-footer lib-site-footer .contact-link:focus-visible{outline:var(--landing-focus-ring, var(--uysd-focus-ring, 2px solid var(--mat-sys-primary)));outline-offset:var(--landing-focus-offset, 2px)}lib-site-footer .contact-link__icon,lib-tenant-site-footer lib-site-footer .contact-link__icon{flex-shrink:0;width:1.05rem;height:1.05rem;background-color:var(--mat-sys-primary)}lib-site-footer .contact-link__icon--phone,lib-tenant-site-footer lib-site-footer .contact-link__icon--phone{-webkit-mask:var(--footer-icon-phone) center/contain no-repeat;mask:var(--footer-icon-phone) center/contain no-repeat}lib-site-footer .contact-link__icon--mail,lib-tenant-site-footer lib-site-footer .contact-link__icon--mail{-webkit-mask:var(--footer-icon-mail) center/contain no-repeat;mask:var(--footer-icon-mail) center/contain no-repeat}lib-site-footer .contact-link__icon--location,lib-tenant-site-footer lib-site-footer .contact-link__icon--location{-webkit-mask:var(--footer-icon-location) center/contain no-repeat;mask:var(--footer-icon-location) center/contain no-repeat}lib-site-footer .contact-link__address,lib-tenant-site-footer lib-site-footer .contact-link__address{margin:0;font-style:normal;text-align:center}lib-site-footer .business-info,lib-tenant-site-footer lib-site-footer .business-info{display:flex;flex-direction:column;gap:.75rem;margin:0;text-align:center}lib-site-footer .business-row,lib-tenant-site-footer lib-site-footer .business-row{display:flex;flex-direction:column;gap:.1rem;align-items:center}lib-site-footer .business-label,lib-tenant-site-footer lib-site-footer .business-label{font-size:.72rem;font-weight:600;letter-spacing:.04em;text-transform:uppercase;color:var(--mat-sys-on-surface-variant, var(--mat-sys-on-surface))}lib-site-footer .business-value,lib-tenant-site-footer lib-site-footer .business-value{margin:0;font-size:.92rem;line-height:1.45;color:var(--mat-sys-on-surface)}lib-site-footer .footer-links,lib-tenant-site-footer lib-site-footer .footer-links{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;align-items:center;gap:.65rem}lib-site-footer .footer-link,lib-tenant-site-footer lib-site-footer .footer-link{position:relative;display:inline-block;color:var(--mat-sys-on-surface);text-decoration:none;font-size:.95rem;transition:color .16s ease}lib-site-footer .footer-link:after,lib-tenant-site-footer lib-site-footer .footer-link:after{content:"";position:absolute;inset-block-end:-2px;inset-inline-start:0;width:100%;height:1px;background:currentColor;transform:scaleX(0);transform-origin:left;transition:transform .2s ease}lib-site-footer .footer-link:hover,lib-tenant-site-footer lib-site-footer .footer-link:hover{color:var(--mat-sys-primary)}lib-site-footer .footer-link:hover:after,lib-tenant-site-footer lib-site-footer .footer-link:hover:after{transform:scaleX(1)}lib-site-footer .footer-link:focus-visible,lib-tenant-site-footer lib-site-footer .footer-link:focus-visible{outline:var(--landing-focus-ring, var(--uysd-focus-ring, 2px solid var(--mat-sys-primary)));outline-offset:var(--landing-focus-offset, 2px)}lib-site-footer .footer-bottom,lib-tenant-site-footer lib-site-footer .footer-bottom{border-top:1px solid color-mix(in srgb,var(--mat-sys-on-surface, currentColor) 10%,transparent);padding-top:1.5rem;text-align:center}lib-site-footer .footer-copyright,lib-tenant-site-footer lib-site-footer .footer-copyright{margin:0;font-size:.85rem;color:var(--mat-sys-on-surface-variant, var(--mat-sys-on-surface))}@media(max-width:599px){lib-site-footer .footer-container,lib-tenant-site-footer lib-site-footer .footer-container{padding-block:2.25rem 1.5rem}lib-site-footer .footer-main,lib-tenant-site-footer lib-site-footer .footer-main{gap:0;margin-bottom:1.75rem}lib-site-footer .footer-section:not(:first-child),lib-tenant-site-footer lib-site-footer .footer-section:not(:first-child){margin-top:1.5rem;padding-top:1.5rem;border-top:1px solid color-mix(in srgb,var(--mat-sys-on-surface, currentColor) 12%,transparent)}lib-site-footer .footer-section-title,lib-tenant-site-footer lib-site-footer .footer-section-title{margin-bottom:.9rem}lib-site-footer .contact-link,lib-tenant-site-footer lib-site-footer .contact-link{padding-block:.3rem}lib-site-footer .footer-links,lib-tenant-site-footer lib-site-footer .footer-links{gap:.35rem}lib-site-footer .footer-link,lib-tenant-site-footer lib-site-footer .footer-link{padding-block:.35rem}}img.blog-card__image.adopted{display:block;width:100%;height:100%;aspect-ratio:16/9;object-fit:cover;border-radius:0;margin-inline:auto}.view-article-card__featured-host{width:100%;margin:0 0 1.25rem;aspect-ratio:16/9;max-height:28rem;overflow:hidden;border-radius:.5rem;background:var(--mat-sys-surface-container, #e8e8ed)}img.view-article-card__featured{display:block;width:100%;height:100%;max-height:28rem;aspect-ratio:16/9;object-fit:cover;border-radius:.5rem}img.view-article-card__body-img{display:block;width:100%;max-height:28rem;aspect-ratio:16/9;object-fit:cover;border-radius:.5rem;margin:0 0 1.25rem}.material-icons,.material-symbols-outlined{font-family:Material Icons,Material Symbols Outlined;font-weight:400;font-style:normal;font-size:1.5rem;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;font-feature-settings:"liga";-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased}.header-lang-menu .mat-mdc-menu-item{display:flex;align-items:center;justify-content:space-between;gap:.5rem}.header-lang-menu .mat-mdc-menu-item .lang-name{flex:1}.header-lang-menu .mat-mdc-menu-item .translation-icon{font-size:1rem;width:1rem;height:1rem;margin-left:.5rem}.header-lang-menu .mat-mdc-menu-item .translation-icon.has{color:var(--mat-sys-tertiary)}.header-lang-menu .mat-mdc-menu-item .translation-icon.missing{color:var(--mat-sys-outline);opacity:.5}.header-lang-menu .mat-mdc-menu-item.has-translation .lang-name{font-weight:500}.header-lang-menu .mat-mdc-menu-item.no-translation .lang-name{opacity:.7}.view-article-card__content,.edit-article-editor__content,.new-article-editor__content{--article-code-bg: light-dark(#121212, #2b2d36);--article-code-fg: light-dark(#f3f3f3, #f5f6fa);--article-code-muted: light-dark(#9a9a9a, #c8cad4);--article-code-comment: light-dark(#9a9a9a, #c8cad4);--article-code-keyword: light-dark(#82aaff, #8ee8e8);--article-code-string: light-dark(#c3e88d, #d7f5a8);--article-code-decorator: light-dark(#ff6b6b, #ff9a9a);--article-code-name: light-dark(#ffcb6b, #ffe08a);--article-code-type: light-dark(#89ddff, #b4f0ff);--article-code-this: light-dark(#f78c6c, #ffc09a);--article-code-number: light-dark(#f78c6c, #ffc09a);--article-code-chrome: light-dark(#fff, #f5f6fa);--article-code-border: light-dark( transparent, color-mix(in srgb, var(--mat-sys-outline-variant, #938f99) 75%, transparent) );--article-code-scrollbar: light-dark(#5c5c5c, #8b8d98)}.view-article-card__content a:not(.article-code-block__action),.edit-article-editor__content a:not(.article-code-block__action),.new-article-editor__content a:not(.article-code-block__action){color:var(--mat-sys-primary);text-decoration:none}.view-article-card__content a:not(.article-code-block__action):link,.view-article-card__content a:not(.article-code-block__action):visited,.edit-article-editor__content a:not(.article-code-block__action):link,.edit-article-editor__content a:not(.article-code-block__action):visited,.new-article-editor__content a:not(.article-code-block__action):link,.new-article-editor__content a:not(.article-code-block__action):visited{color:var(--mat-sys-primary)}.view-article-card__content a:not(.article-code-block__action):hover,.edit-article-editor__content a:not(.article-code-block__action):hover,.new-article-editor__content a:not(.article-code-block__action):hover{text-decoration:underline}.view-article-card__content a:not(.article-code-block__action):focus-visible,.edit-article-editor__content a:not(.article-code-block__action):focus-visible,.new-article-editor__content a:not(.article-code-block__action):focus-visible{outline:var(--uysd-focus-ring, 2px solid var(--mat-sys-primary));outline-offset:2px;border-radius:.15rem}.view-article-card__content :not(pre)>code,.edit-article-editor__content :not(pre)>code,.new-article-editor__content :not(pre)>code{font-family:ui-monospace,Cascadia Code,SF Mono,Menlo,Consolas,monospace;font-size:.9em;padding:.12em .42em;border-radius:.35rem;background:color-mix(in srgb,var(--mat-sys-primary, #005cbb) 16%,var(--mat-sys-surface-container, transparent));color:var(--mat-sys-on-surface)}.view-article-card__content pre,.edit-article-editor__content pre,.new-article-editor__content pre{margin:1.15rem 0;padding:1.15rem 1.35rem 1.2rem;border-radius:1.5rem;background:var(--article-code-bg, #121212);color:var(--article-code-fg, #f3f3f3);border:1px solid var(--article-code-border, transparent);overflow-x:auto;font-family:ui-monospace,Cascadia Code,SF Mono,Menlo,Consolas,monospace;font-size:.92rem;line-height:1.55;white-space:pre;tab-size:2;-webkit-overflow-scrolling:touch}.view-article-card__content pre::-webkit-scrollbar,.edit-article-editor__content pre::-webkit-scrollbar,.new-article-editor__content pre::-webkit-scrollbar{height:8px}.view-article-card__content pre::-webkit-scrollbar-track,.edit-article-editor__content pre::-webkit-scrollbar-track,.new-article-editor__content pre::-webkit-scrollbar-track{background:transparent}.view-article-card__content pre::-webkit-scrollbar-thumb,.edit-article-editor__content pre::-webkit-scrollbar-thumb,.new-article-editor__content pre::-webkit-scrollbar-thumb{background:var(--article-code-scrollbar, #5c5c5c);border-radius:999px}.view-article-card__content pre,.edit-article-editor__content pre,.new-article-editor__content pre{scrollbar-color:var(--article-code-scrollbar, #5c5c5c) transparent;scrollbar-width:thin}.view-article-card__content pre code,.edit-article-editor__content pre code,.new-article-editor__content pre code{font-family:inherit;font-size:inherit;background:transparent;padding:0;color:inherit;border-radius:0}.view-article-card__content .article-code-block,.edit-article-editor__content .article-code-block,.new-article-editor__content .article-code-block{margin:1.25rem 0;padding:1.05rem 1.25rem 1.15rem;border-radius:1.5rem;background:var(--article-code-bg);color:var(--article-code-fg);border:1px solid var(--article-code-border);overflow:hidden}.view-article-card__content .article-code-block pre,.edit-article-editor__content .article-code-block pre,.new-article-editor__content .article-code-block pre{margin:0;padding:0;border-radius:0;background:transparent;border:0}.view-article-card__content .article-code-block__header,.edit-article-editor__content .article-code-block__header,.new-article-editor__content .article-code-block__header{display:flex;align-items:center;justify-content:space-between;gap:.75rem;margin:0 0 .85rem;min-height:1.35rem}.view-article-card__content .article-code-block__lang,.edit-article-editor__content .article-code-block__lang,.new-article-editor__content .article-code-block__lang{font-family:var(--uysd-font-family, system-ui, sans-serif);font-size:.95rem;font-weight:600;letter-spacing:.01em;color:var(--article-code-chrome);line-height:1.2}.view-article-card__content .article-code-block__actions,.edit-article-editor__content .article-code-block__actions,.new-article-editor__content .article-code-block__actions{display:flex;align-items:center;gap:.55rem;flex-shrink:0}.view-article-card__content .article-code-block__action,.edit-article-editor__content .article-code-block__action,.new-article-editor__content .article-code-block__action{display:inline-flex;align-items:center;justify-content:center;width:1.5rem;height:1.5rem;padding:0;border:0;background:transparent;color:var(--article-code-chrome);cursor:pointer;opacity:.92}.view-article-card__content .article-code-block__action:hover,.view-article-card__content .article-code-block__action:focus-visible,.edit-article-editor__content .article-code-block__action:hover,.edit-article-editor__content .article-code-block__action:focus-visible,.new-article-editor__content .article-code-block__action:hover,.new-article-editor__content .article-code-block__action:focus-visible{opacity:1}.view-article-card__content .article-code-block__action:focus-visible,.edit-article-editor__content .article-code-block__action:focus-visible,.new-article-editor__content .article-code-block__action:focus-visible{outline:2px solid var(--article-code-chrome);outline-offset:2px;border-radius:.25rem}.view-article-card__content .article-code-block__action svg,.edit-article-editor__content .article-code-block__action svg,.new-article-editor__content .article-code-block__action svg{width:1.125rem;height:1.125rem;display:block;color:inherit;stroke:currentColor;fill:none;pointer-events:none}.view-article-card__content .article-code-block__action[data-copied=true],.edit-article-editor__content .article-code-block__action[data-copied=true],.new-article-editor__content .article-code-block__action[data-copied=true]{opacity:1;color:var(--article-code-string, #c3e88d)}.view-article-card__content .article-code-token--comment,.edit-article-editor__content .article-code-token--comment,.new-article-editor__content .article-code-token--comment{color:var(--article-code-comment, #9a9a9a)}.view-article-card__content .article-code-token--keyword,.edit-article-editor__content .article-code-token--keyword,.new-article-editor__content .article-code-token--keyword{color:var(--article-code-keyword, #82aaff)}.view-article-card__content .article-code-token--string,.edit-article-editor__content .article-code-token--string,.new-article-editor__content .article-code-token--string{color:var(--article-code-string, #c3e88d)}.view-article-card__content .article-code-token--decorator,.edit-article-editor__content .article-code-token--decorator,.new-article-editor__content .article-code-token--decorator{color:var(--article-code-decorator, #ff6b6b)}.view-article-card__content .article-code-token--name,.edit-article-editor__content .article-code-token--name,.new-article-editor__content .article-code-token--name{color:var(--article-code-name, #ffcb6b)}.view-article-card__content .article-code-token--type,.edit-article-editor__content .article-code-token--type,.new-article-editor__content .article-code-token--type{color:var(--article-code-type, #89ddff)}.view-article-card__content .article-code-token--this,.view-article-card__content .article-code-token--number,.edit-article-editor__content .article-code-token--this,.edit-article-editor__content .article-code-token--number,.new-article-editor__content .article-code-token--this,.new-article-editor__content .article-code-token--number{color:var(--article-code-this, #f78c6c)}
