/* Bouton hamburger */
#mobile-menu-button {
     display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    z-index: 100;
    background: transparent;
    cursor: pointer;
    color: #000;
    width: 40px;
    height: 40px;
    margin-left: auto; /* Pousse le bouton à droite */
}

@media (min-width: 1024px) {
    #mobile-menu-button {
        display: none !important;
    }
}

#mobile-menu-button svg {
    width: 24px;
    height: 24px;
}

#mobile-menu-button svg path {
    stroke: #000;
    stroke-width: 2;
}

/* Ou si vous voulez être plus spécifique */
#mobile-menu-button svg path {
    stroke: #000; /* Noir */
}

/* Menu mobile overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 98;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    background-color: var(--primary);
}
@media (min-width: 1024px) {
    .mobile-menu-overlay {
        display: none;
    }
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

/* Liens du menu mobile */
.mobile-menu-overlay .flex {
    display: flex;
}

.mobile-menu-overlay .flex-col {
    flex-direction: column;
}

.mobile-menu-overlay .h-full {
    height: 100%;
}



.mobile-menu-overlay .px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.mobile-menu-overlay a {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}





.astro-route-announcer {
  position:absolute;
  left:0;
  top:0;
  clip:rect(0 0 0 0);
  clip-path:inset(50%);
  overflow:hidden;
  white-space:nowrap;
  width:1px;
height:1px}

/*! tailwindcss v4.0.9 | MIT License | https://tailwindcss.com */@layer theme {
:root,:host {
  --font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-serif:"untitled-serif",sans-serif;
  --font-mono:"pitch",sans-serif;
  --color-red-100:oklch(.936 .032 17.717);
  --color-red-500:oklch(.637 .237 25.331);
  --color-red-600:oklch(.577 .245 27.325);
  --color-red-700:oklch(.505 .213 27.518);
  --color-red-900:oklch(.396 .141 25.723);
  --color-orange-50:oklch(.98 .016 73.684);
  --color-green-100:oklch(.962 .044 156.743);
  --color-green-700:oklch(.527 .154 150.069);
  --color-blue-600:oklch(.546 .245 262.881);
  --color-blue-900:oklch(.379 .146 265.522);
  --color-gray-100:oklch(.967 .003 264.542);
  --color-gray-200:oklch(.928 .006 264.531);
  --color-gray-300:oklch(.872 .01 258.338);
  --color-gray-600:oklch(.446 .03 256.802);
  --color-neutral-50:oklch(.985 0 0);
  --color-neutral-100:oklch(.97 0 0);
  --color-neutral-200:oklch(.922 0 0);
  --color-neutral-300:oklch(.87 0 0);
  --color-neutral-400:oklch(.708 0 0);
  --color-neutral-500:oklch(.556 0 0);
  --color-neutral-700:oklch(.371 0 0);
  --color-neutral-800:oklch(.269 0 0);
  --color-neutral-900:oklch(.205 0 0);
  --color-neutral-950:oklch(.145 0 0);
  --color-black:#000;
  --color-white:#fff;
  --spacing:.25rem;
  --container-sm:24rem;
  --container-md:28rem;
  --container-lg:32rem;
  --container-xl:36rem;
  --text-xs--line-height:calc(1/.75);
  --text-sm--line-height:calc(1.25/.875);
  --text-base--line-height: 1.5 ;
  --text-lg--line-height:calc(1.75/1.125);
  --text-xl--line-height:calc(1.75/1.25);
  --text-2xl--line-height:calc(2/1.5);
  --text-3xl:1.875rem;
  --text-3xl--line-height: 1.2 ;
  --font-weight-light:300;
  --font-weight-normal:400;
  --font-weight-medium:500;
  --font-weight-bold:700;
  --font-weight-black:900;
  --leading-tight:1.25;
  --radius-xs:.125rem;
  --ease-out:cubic-bezier(0,0,.2,1);
  --animate-pulse:pulse 2s cubic-bezier(.4,0,.6,1)infinite;
  --blur-sm:8px;
  --default-transition-duration:.15s;
  --default-transition-timing-function:cubic-bezier(.4,0,.2,1);
  --default-font-family:var(--font-sans);
  --default-font-feature-settings:var(--font-sans--font-feature-settings);
  --default-font-variation-settings:var(--font-sans--font-variation-settings);
  --default-mono-font-family:var(--font-mono);
  --default-mono-font-feature-settings:var(--font-mono--font-feature-settings);
  --default-mono-font-variation-settings:var(--font-mono--font-variation-settings);
  --d-1:oklch(2.31 23 280);
  --d-2:oklch(1.2 50 100);
--d-3:oklch(2.31 80 6)}

}

@layer base {
*,:after,:before,::backdrop {
  box-sizing:border-box;
  border:0 solid;
  margin:0;
padding:0}

::file-selector-button {
  box-sizing:border-box;
  border:0 solid;
  margin:0;
padding:0}

html,:host {
  -webkit-text-size-adjust:100%;
  tab-size:4;
  line-height:1.5;
  font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");
  font-feature-settings:var(--default-font-feature-settings,normal);
  font-variation-settings:var(--default-font-variation-settings,normal);
-webkit-tap-highlight-color:transparent}

body {
line-height:inherit}

hr {
  height:0;
  color:inherit;
border-top-width:1px}

abbr:where([title]) {
  -webkit-text-decoration:underline dotted;
text-decoration:underline dotted}

h1,h2,h3,h4,h5,h6 {
  font-size:inherit;
font-weight:inherit}

a {
  color:inherit;
  -webkit-text-decoration:inherit;
text-decoration:inherit}

b,strong {
font-weight:bolder}

code,kbd,samp,pre {
  font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);
  font-feature-settings:var(--default-mono-font-feature-settings,normal);
  font-variation-settings:var(--default-mono-font-variation-settings,normal);
font-size:1em}

small {
font-size:80%}

sub,sup {
  vertical-align:baseline;
  font-size:75%;
  line-height:0;
position:relative}

sub {
bottom:-.25em}

sup {
top:-.5em}

table {
  text-indent:0;
  border-color:inherit;
border-collapse:collapse}

:-moz-focusring {
outline:auto}

progress {
vertical-align:baseline}

summary {
display:list-item}

ol,ul,menu {
list-style:none}

img,svg,video,canvas,audio,iframe,embed,object {
  vertical-align:middle;
display:block}

img,video {
  max-width:100%;
height:auto}

button,input,select,optgroup,textarea {
  font:inherit;
  font-feature-settings:inherit;
  font-variation-settings:inherit;
  letter-spacing:inherit;
  color:inherit;
  opacity:1;
  background-color:#0000;
border-radius:0}

::file-selector-button {
  font:inherit;
  font-feature-settings:inherit;
  font-variation-settings:inherit;
  letter-spacing:inherit;
  color:inherit;
  opacity:1;
  background-color:#0000;
border-radius:0}

:where(select:is([multiple],[size])) optgroup {
font-weight:bolder}

:where(select:is([multiple],[size])) optgroup option {
padding-inline-start:20px}

::file-selector-button {
margin-inline-end:4px}

::placeholder {
  opacity:1;
color:color-mix(in oklab,currentColor 50%,transparent)}

textarea {
resize:vertical}

::-webkit-search-decoration {
-webkit-appearance:none}

::-webkit-date-and-time-value {
  min-height:1lh;
text-align:inherit}

::-webkit-datetime-edit {
display:inline-flex}

::-webkit-datetime-edit-fields-wrapper {
padding:0}

::-webkit-datetime-edit {
padding-block:0}

::-webkit-datetime-edit-year-field {
padding-block:0}

::-webkit-datetime-edit-month-field {
padding-block:0}

::-webkit-datetime-edit-day-field {
padding-block:0}

::-webkit-datetime-edit-hour-field {
padding-block:0}

::-webkit-datetime-edit-minute-field {
padding-block:0}

::-webkit-datetime-edit-second-field {
padding-block:0}

::-webkit-datetime-edit-millisecond-field {
padding-block:0}

::-webkit-datetime-edit-meridiem-field {
padding-block:0}

:-moz-ui-invalid {
box-shadow:none}

button,input:where([type=button],[type=reset],[type=submit]) {
appearance:button}

::file-selector-button {
appearance:button}

::-webkit-inner-spin-button {
height:auto}

::-webkit-outer-spin-button {
height:auto}

[hidden]:where(:not([hidden=until-found])) {
display:none!important}

* {
  border-color:var(--border);
outline-color:color-mix(in oklab,var(--ring)50%,transparent)}

body {
  background-color:var(--background);
color:var(--foreground)}

.d1 {
border:2px solid var(--d-1)}

.d2 {
border:2px solid var(--d-2)}

.d3 {
border:2px solid var(--d-3)}

.prose-link-mono {
font-family:var(--font-mono)!important}

.prose-link-serif {
font-family:var(--font-serif)!important}

.button {
  height:calc(var(--spacing)*9);
  justify-content:center;
  align-items:center;
  gap:calc(var(--spacing)*2);
  border-style:var(--tw-border-style);
  border-width:1px;
  border-color:color-mix(in oklab,var(--foreground)20%,transparent);
  background-color:var(--primary);
  width:fit-content;
  padding-inline:calc(var(--spacing)*4);
  padding-block:calc(var(--spacing)*2);
  font-family:pitch,sans-serif;
  font-size:16px;
  line-height:var(--tw-leading,var(--text-sm--line-height));
  --tw-font-weight:var(--font-weight-medium);
  font-weight:var(--font-weight-medium);
  white-space:nowrap;
  --tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);
  box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
  transition-property:color,box-shadow;
  transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));
  transition-duration:var(--tw-duration,var(--default-transition-duration));
  --tw-outline-style:none;
  border-radius:0;
  outline-style:none;
  flex-shrink:0;
  display:inline-flex;
text-decoration-line:none!important}

@media (hover:hover) {
.button:hover {
  background-color:color-mix(in oklab,var(--foreground)10%,transparent);
color:var(--foreground)}

}

.button:focus-visible {
  border-color:var(--color-neutral-300);
  border-color:var(--color-neutral-950);
  --tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(3px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);
  box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);
--tw-ring-color:color-mix(in oklab,var(--color-neutral-950)50%,transparent)}

.button:disabled {
  pointer-events:none;
opacity:.5}

.button:has(>svg) {
padding-inline:calc(var(--spacing)*3)}

.button[aria-invalid=true] {
  border-color:var(--color-red-500);
  border-color:var(--color-red-900);
--tw-ring-color:color-mix(in oklab,var(--color-red-900)20%,transparent)}

.button svg {
  pointer-events:none;
flex-shrink:0}

.button svg:not([class*=size-]) {
  width:calc(var(--spacing)*4);
height:calc(var(--spacing)*4)}

.layout-container {
  background-color:var(--primary);
  width:100%;
  padding-inline:calc(var(--spacing)*4);
margin-inline:auto}

@media (width>=40rem) {
.layout-container {
max-width:40rem}

}

@media (width>=48rem) {
.layout-container {
max-width:48rem}

}

@media (width>=64rem) {
.layout-container {
max-width:64rem}

}

@media (width>=80rem) {
.layout-container {
max-width:80rem}

}

@media (width>=96rem) {
.layout-container {
max-width:96rem}

}

@media (width>=40rem) {
.layout-container {
padding-inline:calc(var(--spacing)*6)}

}

@media (width>=48rem) {
.layout-container {
padding-inline:calc(var(--spacing)*8)}

}

.iframe-gradient-overlay {
position:relative}

.iframe-gradient-overlay:after {
  content:"";
  background:linear-gradient(to top,var(--primary),#0000);
  pointer-events:none;
  z-index:100000;
  height:80px;
  position:absolute;
  bottom:0;
  left:0;
right:0}

}

@layer components;
@layer utilities {
.pointer-events-none {
pointer-events:none}

.visible {
visibility:visible}

.sr-only {
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border-width:0;
  width:1px;
  height:1px;
  margin:-1px;
  padding:0;
  position:absolute;
overflow:hidden}

.absolute {
position:absolute}

.fixed {
position:fixed}

.relative {
position:relative}

.sticky {
position:sticky}

.inset-0 {
inset:calc(var(--spacing)*0)}

.top-0 {
top:calc(var(--spacing)*0)}

.top-4 {
top:calc(var(--spacing)*4)}

.top-6 {
top:calc(var(--spacing)*6)}

.top-20 {
top:calc(var(--spacing)*20)}

.top-\[50\%\] {
top:50%}

.right-0 {
right:calc(var(--spacing)*0)}

.right-4 {
right:calc(var(--spacing)*4)}

.right-6 {
right:calc(var(--spacing)*6)}

.right-10 {
right:calc(var(--spacing)*10)}

.bottom-0 {
bottom:calc(var(--spacing)*0)}

.bottom-24 {
bottom:calc(var(--spacing)*24)}

.-left-3\/5 {
left:-60%}

.left-0 {
left:calc(var(--spacing)*0)}

.left-\[-9999px\] {
left:-9999px}

.left-\[50\%\] {
left:50%}

.z-0 {
z-index:0}

.z-10 {
z-index:10}

.z-20 {
z-index:20}

.z-50 {
z-index:50}

.z-\[99\] {
z-index:99}

.col-span-3 {
grid-column:span 3/span 3}

.col-span-4 {
grid-column:span 4/span 4}

.col-span-6 {
grid-column:span 6/span 6}

.col-span-12 {
grid-column:span 12/span 12}

.col-start-1 {
grid-column-start:1}

.container {
width:100%}

@media (width>=40rem) {
.container {
max-width:40rem}

}

@media (width>=48rem) {
.container {
max-width:48rem}

}

@media (width>=64rem) {
.container {
max-width:64rem}

}

@media (width>=80rem) {
.container {
max-width:80rem}

}

@media (width>=96rem) {
.container {
max-width:96rem}

}

.mx-auto {
margin-inline:auto}

.my-3 {
margin-block:calc(var(--spacing)*3)}

.my-4 {
margin-block:calc(var(--spacing)*4)}

.my-5 {
margin-block:calc(var(--spacing)*5)}

.my-6 {
margin-block:calc(var(--spacing)*6)}

.my-10 {
margin-block:calc(var(--spacing)*10)}

.my-20 {
margin-block:calc(var(--spacing)*20)}

.prose {
  color:var(--tw-prose-body);
  --tw-prose-body:oklch(.373 .034 259.733);
  --tw-prose-headings:oklch(.21 .034 264.665);
  --tw-prose-lead:oklch(.446 .03 256.802);
  --tw-prose-links:oklch(.21 .034 264.665);
  --tw-prose-bold:oklch(.21 .034 264.665);
  --tw-prose-counters:oklch(.551 .027 264.364);
  --tw-prose-bullets:oklch(.872 .01 258.338);
  --tw-prose-hr:oklch(.928 .006 264.531);
  --tw-prose-quotes:oklch(.21 .034 264.665);
  --tw-prose-quote-borders:oklch(.928 .006 264.531);
  --tw-prose-captions:oklch(.551 .027 264.364);
  --tw-prose-kbd:oklch(.21 .034 264.665);
  --tw-prose-kbd-shadows:NaN NaN NaN;
  --tw-prose-code:oklch(.21 .034 264.665);
  --tw-prose-pre-code:oklch(.928 .006 264.531);
  --tw-prose-pre-bg:oklch(.278 .033 256.848);
  --tw-prose-th-borders:oklch(.872 .01 258.338);
  --tw-prose-td-borders:oklch(.928 .006 264.531);
  --tw-prose-invert-body:oklch(.872 .01 258.338);
  --tw-prose-invert-headings:#fff;
  --tw-prose-invert-lead:oklch(.707 .022 261.325);
  --tw-prose-invert-links:#fff;
  --tw-prose-invert-bold:#fff;
  --tw-prose-invert-counters:oklch(.707 .022 261.325);
  --tw-prose-invert-bullets:oklch(.446 .03 256.802);
  --tw-prose-invert-hr:oklch(.373 .034 259.733);
  --tw-prose-invert-quotes:oklch(.967 .003 264.542);
  --tw-prose-invert-quote-borders:oklch(.373 .034 259.733);
  --tw-prose-invert-captions:oklch(.707 .022 261.325);
  --tw-prose-invert-kbd:#fff;
  --tw-prose-invert-kbd-shadows:255 255 255;
  --tw-prose-invert-code:#fff;
  --tw-prose-invert-pre-code:oklch(.872 .01 258.338);
  --tw-prose-invert-pre-bg:#00000080;
  --tw-prose-invert-th-borders:oklch(.446 .03 256.802);
  --tw-prose-invert-td-borders:oklch(.373 .034 259.733);
  max-width:65ch;
  font-size:1rem;
line-height:1.75}

.prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)) {
  margin-top:1.25em;
margin-bottom:1.25em}

.prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:var(--tw-prose-lead);
  margin-top:1.2em;
  margin-bottom:1.2em;
  font-size:1.25em;
line-height:1.6}

.prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:var(--tw-prose-links);
  font-weight:500;
text-decoration:underline}

.prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:var(--tw-prose-bold);
font-weight:600}

.prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)) {
color:inherit}

.prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)) {
  margin-top:1.25em;
  margin-bottom:1.25em;
  padding-inline-start:1.625em;
list-style-type:decimal}

.prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)) {
list-style-type:upper-alpha}

.prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)) {
list-style-type:lower-alpha}

.prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)) {
list-style-type:upper-alpha}

.prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)) {
list-style-type:lower-alpha}

.prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)) {
list-style-type:upper-roman}

.prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)) {
list-style-type:lower-roman}

.prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)) {
list-style-type:upper-roman}

.prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)) {
list-style-type:lower-roman}

.prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)) {
list-style-type:decimal}

.prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)) {
  margin-top:1.25em;
  margin-bottom:1.25em;
  padding-inline-start:1.625em;
list-style-type:disc}

.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker {
  color:var(--tw-prose-counters);
font-weight:400}

.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker {
color:var(--tw-prose-bullets)}

.prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:var(--tw-prose-headings);
  margin-top:1.25em;
font-weight:600}

.prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)) {
  border-color:var(--tw-prose-hr);
  border-top-width:1px;
  margin-top:3em;
margin-bottom:3em}

.prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:var(--tw-prose-quotes);
  border-inline-start-width:.25rem;
  border-inline-start-color:var(--tw-prose-quote-borders);
  quotes:"“""”""‘""’";
  margin-top:1.6em;
  margin-bottom:1.6em;
  padding-inline-start:1em;
  font-style:italic;
font-weight:500}

.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before {
content:open-quote}

.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after {
content:close-quote}

.prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:var(--tw-prose-headings);
  margin-top:0;
  margin-bottom:.888889em;
  font-size:2.25em;
  font-weight:800;
line-height:1.11111}

.prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:inherit;
font-weight:900}

.prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:var(--tw-prose-headings);
  margin-top:2em;
  margin-bottom:1em;
  font-size:1.5em;
  font-weight:700;
line-height:1.33333}

.prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:inherit;
font-weight:800}

.prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:var(--tw-prose-headings);
  margin-top:1.6em;
  margin-bottom:.6em;
  font-size:1.25em;
  font-weight:600;
line-height:1.6}

.prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:inherit;
font-weight:700}

.prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:var(--tw-prose-headings);
  margin-top:1.5em;
  margin-bottom:.5em;
  font-weight:600;
line-height:1.5}

.prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:inherit;
font-weight:700}

.prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)) {
  margin-top:2em;
margin-bottom:2em}

.prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)) {
  margin-top:2em;
  margin-bottom:2em;
display:block}

.prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)) {
  margin-top:2em;
margin-bottom:2em}

.prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:var(--tw-prose-kbd);
  box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows)/10%),0 3px rgb(var(--tw-prose-kbd-shadows)/10%);
  padding-top:.1875em;
  padding-inline-end:.375em;
  padding-bottom:.1875em;
  border-radius:.3125rem;
  padding-inline-start:.375em;
  font-family:inherit;
  font-size:.875em;
font-weight:500}

.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:var(--tw-prose-code);
  font-size:.875em;
font-weight:600}

.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before,.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after {
content:"`"}

.prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)) {
color:inherit}

.prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:inherit;
font-size:.875em}

.prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:inherit;
font-size:.9em}

.prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)) {
color:inherit}

.prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:var(--tw-prose-pre-code);
  background-color:var(--tw-prose-pre-bg);
  padding-top:.857143em;
  padding-inline-end:1.14286em;
  padding-bottom:.857143em;
  border-radius:.375rem;
  margin-top:1.71429em;
  margin-bottom:1.71429em;
  padding-inline-start:1.14286em;
  font-size:.875em;
  font-weight:400;
  line-height:1.71429;
overflow-x:auto}

.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)) {
  font-weight:inherit;
  color:inherit;
  font-size:inherit;
  font-family:inherit;
  line-height:inherit;
  background-color:#0000;
  border-width:0;
  border-radius:0;
padding:0}

.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before,.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after {
content:none}

.prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)) {
  table-layout:auto;
  width:100%;
  margin-top:2em;
  margin-bottom:2em;
  font-size:.875em;
line-height:1.71429}

.prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)) {
  border-bottom-width:1px;
border-bottom-color:var(--tw-prose-th-borders)}

.prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:var(--tw-prose-headings);
  vertical-align:bottom;
  padding-inline-end:.571429em;
  padding-bottom:.571429em;
  padding-inline-start:.571429em;
font-weight:600}

.prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)) {
  border-bottom-width:1px;
border-bottom-color:var(--tw-prose-td-borders)}

.prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)) {
border-bottom-width:0}

.prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)) {
vertical-align:baseline}

.prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)) {
  border-top-width:1px;
border-top-color:var(--tw-prose-th-borders)}

.prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)) {
vertical-align:top}

.prose :where(th,td):not(:where([class~=not-prose],[class~=not-prose] *)) {
text-align:start}

.prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)) {
  margin-top:0;
margin-bottom:0}

.prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)) {
  color:var(--tw-prose-captions);
  margin-top:.857143em;
  font-size:.875em;
line-height:1.42857}

.prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)) {
  margin-top:0;
margin-bottom:0}

.prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)) {
  margin-top:.5em;
margin-bottom:.5em}

.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)) {
padding-inline-start:.375em}

.prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)) {
  margin-top:.75em;
margin-bottom:.75em}

.prose :where(.prose>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)) {
margin-top:1.25em}

.prose :where(.prose>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)) {
margin-bottom:1.25em}

.prose :where(.prose>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)) {
margin-top:1.25em}

.prose :where(.prose>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)) {
margin-bottom:1.25em}

.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)) {
  margin-top:.75em;
margin-bottom:.75em}

.prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)) {
  margin-top:1.25em;
margin-bottom:1.25em}

.prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)) {
  margin-top:.5em;
padding-inline-start:1.625em}

.prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)) {
margin-top:0}

.prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)) {
padding-inline-start:0}

.prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)) {
padding-inline-end:0}

.prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)) {
  padding-top:.571429em;
  padding-inline-end:.571429em;
  padding-bottom:.571429em;
padding-inline-start:.571429em}

.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)) {
padding-inline-start:0}

.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)) {
padding-inline-end:0}

.prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)) {
  margin-top:2em;
margin-bottom:2em}

.prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)) {
margin-top:0}

.prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)) {
margin-bottom:0}

.mt-2 {
margin-top:calc(var(--spacing)*2)}

.mt-4 {
margin-top:calc(var(--spacing)*4)}

.mt-6 {
margin-top:calc(var(--spacing)*6)}

.mt-10 {
margin-top:calc(var(--spacing)*10)}

.mt-12 {
margin-top:calc(var(--spacing)*12)}

.mt-\[calc\(100vh-70px\)\] {
margin-top:calc(100vh - 70px)}

.mt-\[calc\(100vh-83\.55px\)\] {
margin-top:calc(100vh - 83.55px)}

.mt-auto {
margin-top:auto}

.mr-auto {
margin-right:auto}

.mb-1 {
margin-bottom:calc(var(--spacing)*1)}

.mb-2 {
margin-bottom:calc(var(--spacing)*2)}

.mb-4 {
margin-bottom:calc(var(--spacing)*4)}

.mb-6 {
margin-bottom:calc(var(--spacing)*6)}

.mb-8 {
margin-bottom:calc(var(--spacing)*8)}

.mb-10 {
margin-bottom:calc(var(--spacing)*10)}

.mb-16 {
margin-bottom:calc(var(--spacing)*16)}

.block {
display:block}

.flex {
display:flex}

.grid {
display:grid}

.hidden {
display:none}

.inline-block {
display:inline-block}

.inline-flex {
display:inline-flex}

.aspect-\[5\/7\] {
aspect-ratio:5/7}

.aspect-auto {
aspect-ratio:auto}

.size-5 {
  width:calc(var(--spacing)*5);
height:calc(var(--spacing)*5)}

.size-6 {
  width:calc(var(--spacing)*6);
height:calc(var(--spacing)*6)}

.size-9 {
  width:calc(var(--spacing)*9);
height:calc(var(--spacing)*9)}

.h-0 {
height:calc(var(--spacing)*0)}

.h-2 {
height:calc(var(--spacing)*2)}

.h-6 {
height:calc(var(--spacing)*6)}

.h-8 {
height:calc(var(--spacing)*8)}

.h-9 {
height:calc(var(--spacing)*9)}

.h-10 {
height:calc(var(--spacing)*10)}

.h-\[1px\] {
height:1px}

.h-\[2rem\] {
height:2rem}

.h-\[3rem\] {
height:3rem}

.h-\[60dvh\] {
height:60dvh}

.h-\[70vh\] {
height:70vh}

.h-\[500px\] {
height:500px}

.h-auto {
height:auto}

.h-full {
height:100%}

.max-h-80 {
max-height:calc(var(--spacing)*80)}

.max-h-\[60dvh\] {
max-height:60dvh}

.max-h-\[90vh\] {
max-height:90vh}

.max-h-full {
max-height:100%}

.min-h-28 {
min-height:calc(var(--spacing)*28)}

.min-h-\[30px\] {
min-height:30px}

.min-h-\[80vh\] {
min-height:80vh}

.min-h-\[190px\] {
min-height:190px}

.min-h-screen {
min-height:100vh}

.\!w-28 {
width:calc(var(--spacing)*28)!important}

.\!w-32 {
width:calc(var(--spacing)*32)!important}

.w-0 {
width:calc(var(--spacing)*0)}

.w-1\/2 {
width:50%}

.w-6 {
width:calc(var(--spacing)*6)}

.w-8 {
width:calc(var(--spacing)*8)}

.w-16 {
width:calc(var(--spacing)*16)}

.w-\[50\%\] {
width:50%}

.w-\[100px\] {
width:100px}

.w-auto {
width:auto}

.w-fit {
width:fit-content}

.w-full {
width:100%}

.\!max-w-36 {
max-width:calc(var(--spacing)*36)!important}

.max-w-32 {
max-width:calc(var(--spacing)*32)}

.max-w-\[70\%\] {
max-width:70%}

.max-w-\[600px\] {
max-width:600px}

.max-w-\[calc\(100\%-2rem\)\] {
max-width:calc(100% - 2rem)}

.max-w-full {
max-width:100%}

.max-w-md {
max-width:var(--container-md)}

.max-w-none {
max-width:none}

.max-w-sm {
max-width:var(--container-sm)}

.max-w-xl {
max-width:var(--container-xl)}

.min-w-0 {
min-width:calc(var(--spacing)*0)}

.min-w-\[280px\] {
min-width:280px}

.flex-1 {
flex:1}

.flex-shrink-0,.shrink-0 {
flex-shrink:0}

.basis-1\/2 {
flex-basis:50%}

.basis-1\/3 {
flex-basis:33.3333%}

.basis-2\/3 {
flex-basis:66.6667%}

.translate-x-1\/2 {
  --tw-translate-x: 50% ;
translate:var(--tw-translate-x)var(--tw-translate-y)}

.translate-x-\[-50\%\] {
  --tw-translate-x:-50%;
translate:var(--tw-translate-x)var(--tw-translate-y)}

.translate-y-\[-50\%\] {
  --tw-translate-y:-50%;
translate:var(--tw-translate-x)var(--tw-translate-y)}

.transform {
transform:var(--tw-rotate-x)var(--tw-rotate-y)var(--tw-rotate-z)var(--tw-skew-x)var(--tw-skew-y)}

.animate-pulse {
animation:var(--animate-pulse)}

.cursor-pointer {
cursor:pointer}

.resize {
resize:both}

.list-inside {
list-style-position:inside}

.list-decimal {
list-style-type:decimal}

.list-disc {
list-style-type:disc}

.grid-cols-8 {
grid-template-columns:repeat(8,minmax(0,1fr))}

.grid-cols-12 {
grid-template-columns:repeat(12,minmax(0,1fr))}

.flex-col {
flex-direction:column}

.flex-row {
flex-direction:row}

.flex-row-reverse {
flex-direction:row-reverse}

.flex-wrap {
flex-wrap:wrap}

.content-end {
align-content:flex-end}

.items-center {
align-items:center}

.items-end {
align-items:flex-end}

.items-start {
align-items:flex-start}

.justify-between {
justify-content:space-between}

.justify-center {
justify-content:center}

.justify-end {
justify-content:flex-end}

.justify-start {
justify-content:flex-start}

.gap-0\.5 {
gap:calc(var(--spacing)*.5)}

.gap-1 {
gap:calc(var(--spacing)*1)}

.gap-1\.5 {
gap:calc(var(--spacing)*1.5)}

.gap-2 {
gap:calc(var(--spacing)*2)}

.gap-2\.5 {
gap:calc(var(--spacing)*2.5)}

.gap-4 {
gap:calc(var(--spacing)*4)}

.gap-5 {
gap:calc(var(--spacing)*5)}

.gap-6 {
gap:calc(var(--spacing)*6)}

.gap-10 {
gap:calc(var(--spacing)*10)}

.gap-12 {
gap:calc(var(--spacing)*12)}

.gap-16 {
gap:calc(var(--spacing)*16)}

.gap-20 {
gap:calc(var(--spacing)*20)}

:where(.space-y-1>:not(:last-child)) {
  --tw-space-y-reverse:0;
  margin-block-start:calc(calc(var(--spacing)*1)*var(--tw-space-y-reverse));
margin-block-end:calc(calc(var(--spacing)*1)*calc(1 - var(--tw-space-y-reverse)))}

:where(.space-y-2>:not(:last-child)) {
  --tw-space-y-reverse:0;
  margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));
margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}

:where(.space-y-4>:not(:last-child)) {
  --tw-space-y-reverse:0;
  margin-block-start:calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));
margin-block-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)))}

:where(.space-y-5>:not(:last-child)) {
  --tw-space-y-reverse:0;
  margin-block-start:calc(calc(var(--spacing)*5)*var(--tw-space-y-reverse));
margin-block-end:calc(calc(var(--spacing)*5)*calc(1 - var(--tw-space-y-reverse)))}

.gap-x-4 {
column-gap:calc(var(--spacing)*4)}

:where(.space-x-2>:not(:last-child)) {
  --tw-space-x-reverse:0;
  margin-inline-start:calc(calc(var(--spacing)*2)*var(--tw-space-x-reverse));
margin-inline-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-x-reverse)))}

:where(.space-x-4>:not(:last-child)) {
  --tw-space-x-reverse:0;
  margin-inline-start:calc(calc(var(--spacing)*4)*var(--tw-space-x-reverse));
margin-inline-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-x-reverse)))}

:where(.space-x-5>:not(:last-child)) {
  --tw-space-x-reverse:0;
  margin-inline-start:calc(calc(var(--spacing)*5)*var(--tw-space-x-reverse));
margin-inline-end:calc(calc(var(--spacing)*5)*calc(1 - var(--tw-space-x-reverse)))}

.gap-y-16 {
row-gap:calc(var(--spacing)*16)}

.overflow-auto {
overflow:auto}

.overflow-hidden {
overflow:hidden}

.overflow-x-hidden {
overflow-x:hidden}

.overflow-y-auto {
overflow-y:auto}

.rounded {
border-radius:.25rem}

.rounded-full {
border-radius:3.40282e38px}

.rounded-md {
border-radius:calc(var(--radius) - 2px)}

.rounded-none {
border-radius:0}

.rounded-xs {
border-radius:var(--radius-xs)}

.border {
  border-style:var(--tw-border-style);
border-width:1px}

.border-0 {
  border-style:var(--tw-border-style);
border-width:0}

.border-b {
  border-bottom-style:var(--tw-border-style);
border-bottom-width:1px}

.border-l-4 {
  border-left-style:var(--tw-border-style);
border-left-width:4px}

.border-none {
  --tw-border-style:none;
border-style:none}

.border-foreground {
border-color:var(--foreground)}

.border-foreground\/10 {
border-color:color-mix(in oklab,var(--foreground)10%,transparent)}

.border-foreground\/20 {
border-color:color-mix(in oklab,var(--foreground)20%,transparent)}

.border-gray-300 {
border-color:var(--color-gray-300)}

.border-neutral-200 {
border-color:var(--color-neutral-200)}

.border-primary {
border-color:var(--primary)}

.bg-background {
background-color:var(--background)}

.bg-black {
background-color:var(--color-black)}

.bg-black\/50 {
background-color:color-mix(in oklab,var(--color-black)50%,transparent)}

.bg-black\/80 {
background-color:color-mix(in oklab,var(--color-black)80%,transparent)}

.bg-blue-600 {
background-color:var(--color-blue-600)}

.bg-foreground {
background-color:var(--foreground)}

.bg-foreground\/10 {
background-color:color-mix(in oklab,var(--foreground)10%,transparent)}

.bg-gray-100 {
background-color:var(--color-gray-100)}

.bg-gray-200 {
background-color:var(--color-gray-200)}

.bg-green-100 {
background-color:var(--color-green-100)}

.bg-neutral-100 {
background-color:var(--color-neutral-100)}

.bg-neutral-900 {
background-color:var(--color-neutral-900)}

.bg-orange-50\/50 {
background-color:color-mix(in oklab,var(--color-orange-50)50%,transparent)}

.bg-primary {
background-color:var(--primary)}

.bg-primary\/10 {
background-color:color-mix(in oklab,var(--primary)10%,transparent)}

.bg-red-100 {
background-color:var(--color-red-100)}

.bg-red-500 {
background-color:var(--color-red-500)}

.bg-red-600 {
background-color:var(--color-red-600)}

.bg-transparent {
background-color:#0000}

.bg-white {
background-color:var(--color-white)}

.object-contain {
object-fit:contain}

.object-cover {
object-fit:cover}

.p-0 {
padding:calc(var(--spacing)*0)}

.p-2 {
padding:calc(var(--spacing)*2)}

.p-3 {
padding:calc(var(--spacing)*3)}

.p-4 {
padding:calc(var(--spacing)*4)}

.p-6 {
padding:calc(var(--spacing)*6)}

.px-1 {
padding-inline:calc(var(--spacing)*1)}

.px-2 {
padding-inline:calc(var(--spacing)*2)}

.px-3 {
padding-inline:calc(var(--spacing)*3)}

.px-4 {
padding-inline:calc(var(--spacing)*4)}

.px-5 {
padding-inline:calc(var(--spacing)*5)}

.px-6 {
padding-inline:calc(var(--spacing)*6)}

.px-14 {
padding-inline:calc(var(--spacing)*14)}

.py-0\.5 {
padding-block:calc(var(--spacing)*.5)}

.py-1 {
padding-block:calc(var(--spacing)*1)}

.py-2 {
padding-block:calc(var(--spacing)*2)}

.py-2\.5 {
padding-block:calc(var(--spacing)*2.5)}

.py-3 {
padding-block:calc(var(--spacing)*3)}

.py-4 {
padding-block:calc(var(--spacing)*4)}

.py-5 {
padding-block:calc(var(--spacing)*5)}

.py-10 {
padding-block:calc(var(--spacing)*10)}

.py-12 {
padding-block:calc(var(--spacing)*12)}

.pt-2 {
padding-top:calc(var(--spacing)*2)}

.pt-5 {
padding-top:calc(var(--spacing)*5)}

.pt-10 {
padding-top:calc(var(--spacing)*10)}

.pb-0\.5 {
padding-bottom:calc(var(--spacing)*.5)}

.pb-8 {
padding-bottom:calc(var(--spacing)*8)}

.pb-10 {
padding-bottom:calc(var(--spacing)*10)}

.pb-12 {
padding-bottom:calc(var(--spacing)*12)}

.pb-\[56\.25\%\] {
padding-bottom:56.25%}

.pb-\[177\.78\%\] {
padding-bottom:177.78%}

.pl-4 {
padding-left:calc(var(--spacing)*4)}

.text-left {
text-align:left}

.text-right {
text-align:right}

.font-mono {
font-family:pitch,sans-serif}

.font-serif {
font-family:untitled-serif,sans-serif}

.text-2xl {
  font-size:30px;
line-height:var(--tw-leading,var(--text-2xl--line-height))}

.text-3xl {
  font-size:var(--text-3xl);
line-height:var(--tw-leading,var(--text-3xl--line-height))}

.text-base {
  font-size:18px;
line-height:var(--tw-leading,var(--text-base--line-height))}

.text-lg {
  font-size:21px;
line-height:var(--tw-leading,var(--text-lg--line-height))}

.text-sm {
  font-size:16px;
line-height:var(--tw-leading,var(--text-sm--line-height))}

.text-xl {
  font-size:26px;
line-height:var(--tw-leading,var(--text-xl--line-height))}

.text-xs {
  font-size:14px;
line-height:var(--tw-leading,var(--text-xs--line-height))}

.text-2xs {
font-size:12.5px}

.text-\[20rem\] {
font-size:20rem}

.leading-tight {
  --tw-leading:var(--leading-tight);
line-height:var(--leading-tight)}

.font-black {
  --tw-font-weight:var(--font-weight-black);
font-weight:var(--font-weight-black)}

.font-bold {
  --tw-font-weight:var(--font-weight-bold);
font-weight:var(--font-weight-bold)}

.font-light {
  --tw-font-weight:var(--font-weight-light);
font-weight:var(--font-weight-light)}

.font-medium {
  --tw-font-weight:var(--font-weight-medium);
font-weight:var(--font-weight-medium)}

.font-normal {
  --tw-font-weight:var(--font-weight-normal);
font-weight:var(--font-weight-normal)}

.text-balance {
text-wrap:balance}

.text-pretty {
text-wrap:pretty}

.whitespace-nowrap {
white-space:nowrap}

.text-background {
color:var(--background)}

.text-blue-600 {
color:var(--color-blue-600)}

.text-blue-900 {
color:var(--color-blue-900)}

.text-foreground {
color:var(--foreground)}

.text-foreground\/60 {
color:color-mix(in oklab,var(--foreground)60%,transparent)}

.text-gray-600 {
color:var(--color-gray-600)}

.text-green-700 {
color:var(--color-green-700)}

.text-neutral-900 {
color:var(--color-neutral-900)}

.text-primary {
color:var(--primary)}

.text-red-100 {
color:var(--color-red-100)}

.text-red-500 {
color:var(--color-red-500)}

.text-red-700 {
color:var(--color-red-700)}

.text-red-900 {
color:var(--color-red-900)}

.text-white {
color:var(--color-white)}

.uppercase {
text-transform:uppercase}

.italic {
font-style:italic}

.underline {
text-decoration-line:underline}

.underline-offset-1 {
text-underline-offset:1px}

.underline-offset-4 {
text-underline-offset:4px}

.opacity-0 {
opacity:0}

.opacity-50 {
opacity:.5}

.opacity-90 {
opacity:.9}

.opacity-100 {
opacity:1}

.shadow-lg {
  --tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);
box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}

.shadow-xs {
  --tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);
box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}

.ring-offset-white {
--tw-ring-offset-color:var(--color-white)}

.outline {
  outline-style:var(--tw-outline-style);
outline-width:1px}

.blur {
  --tw-blur:blur(8px);
filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}

.blur-sm {
  --tw-blur:blur(var(--blur-sm));
filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}

.grayscale {
  --tw-grayscale:grayscale(100%);
filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}

.filter {
filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}

.transition {
  transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;
  transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));
transition-duration:var(--tw-duration,var(--default-transition-duration))}

.transition-\[color\,box-shadow\] {
  transition-property:color,box-shadow;
  transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));
transition-duration:var(--tw-duration,var(--default-transition-duration))}

.transition-all {
  transition-property:all;
  transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));
transition-duration:var(--tw-duration,var(--default-transition-duration))}

.transition-colors {
  transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;
  transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));
transition-duration:var(--tw-duration,var(--default-transition-duration))}

.transition-opacity {
  transition-property:opacity;
  transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));
transition-duration:var(--tw-duration,var(--default-transition-duration))}

.transition-transform {
  transition-property:transform,translate,scale,rotate;
  transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));
transition-duration:var(--tw-duration,var(--default-transition-duration))}

.duration-75 {
  --tw-duration:75ms;
transition-duration:75ms}

.duration-200 {
  --tw-duration:.2s;
transition-duration:.2s}

.duration-300 {
  --tw-duration:.3s;
transition-duration:.3s}

.ease-out {
  --tw-ease:var(--ease-out);
transition-timing-function:var(--ease-out)}

.outline-none {
  --tw-outline-style:none;
outline-style:none}

.duration-75 {
animation-duration:75ms}

.duration-200 {
animation-duration:.2s}

.duration-300 {
animation-duration:.3s}

.ease-out {
animation-timing-function:cubic-bezier(0,0,.2,1)}

@media (hover:hover) {
.group-hover\:cursor-pointer:is(:where(.group):hover *) {
cursor:pointer}

.group-hover\:opacity-100:is(:where(.group):hover *) {
opacity:1}

}

.group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:block:is(:where(.group\/drawer-content)[data-vaul-drawer-direction=bottom] *) {
display:block}

.marker\:text-foreground ::marker {
color:var(--foreground)}

.marker\:text-foreground::marker {
color:var(--foreground)}

.selection\:bg-neutral-900 ::selection {
background-color:var(--color-neutral-900)}

.selection\:bg-neutral-900::selection {
background-color:var(--color-neutral-900)}

.selection\:text-neutral-50 ::selection {
color:var(--color-neutral-50)}

.selection\:text-neutral-50::selection {
color:var(--color-neutral-50)}

.file\:inline-flex::file-selector-button {
display:inline-flex}

.file\:h-7::file-selector-button {
height:calc(var(--spacing)*7)}

.file\:border-0::file-selector-button {
  border-style:var(--tw-border-style);
border-width:0}

.file\:bg-transparent::file-selector-button {
background-color:#0000}

.file\:text-sm::file-selector-button {
  font-size:16px;
line-height:var(--tw-leading,var(--text-sm--line-height))}

.file\:font-medium::file-selector-button {
  --tw-font-weight:var(--font-weight-medium);
font-weight:var(--font-weight-medium)}

.file\:text-neutral-950::file-selector-button {
color:var(--color-neutral-950)}

.placeholder\:text-neutral-500::placeholder {
color:var(--color-neutral-500)}

.last\:border-0:last-child {
  border-style:var(--tw-border-style);
border-width:0}

@media (hover:hover) {
.hover\:cursor-pointer:hover {
cursor:pointer}

.hover\:bg-foreground\/10:hover {
background-color:color-mix(in oklab,var(--foreground)10%,transparent)}

.hover\:bg-neutral-100:hover {
background-color:var(--color-neutral-100)}

.hover\:bg-neutral-100\/80:hover {
background-color:color-mix(in oklab,var(--color-neutral-100)80%,transparent)}

.hover\:bg-neutral-700:hover {
background-color:var(--color-neutral-700)}

.hover\:bg-primary:hover {
background-color:var(--primary)}

.hover\:bg-red-500\/90:hover {
background-color:color-mix(in oklab,var(--color-red-500)90%,transparent)}

.hover\:bg-white:hover {
background-color:var(--color-white)}

.hover\:text-background:hover {
color:var(--background)}

.hover\:text-foreground:hover {
color:var(--foreground)}

.hover\:text-neutral-900:hover {
color:var(--color-neutral-900)}

.hover\:underline:hover {
text-decoration-line:underline}

.hover\:opacity-100:hover {
opacity:1}

}

.focus\:border-neutral-900:focus {
border-color:var(--color-neutral-900)}

.focus\:ring-2:focus {
  --tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);
box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}

.focus\:ring-neutral-900:focus {
--tw-ring-color:var(--color-neutral-900)}

.focus\:ring-neutral-950:focus {
--tw-ring-color:var(--color-neutral-950)}

.focus\:ring-primary:focus {
--tw-ring-color:var(--primary)}

.focus\:ring-offset-2:focus {
  --tw-ring-offset-width:2px;
--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}

.focus\:outline-hidden:focus {
outline-style:none}

@media (forced-colors:active) {
.focus\:outline-hidden:focus {
  outline-offset:2px;
outline:2px solid #0000}

}

.focus-visible\:border-neutral-300:focus-visible {
border-color:var(--color-neutral-300)}

.focus-visible\:border-neutral-950:focus-visible {
border-color:var(--color-neutral-950)}

.focus-visible\:ring-\[3px\]:focus-visible {
  --tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(3px + var(--tw-ring-offset-width))var(--tw-ring-color,currentColor);
box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}

.focus-visible\:ring-neutral-300\/50:focus-visible {
--tw-ring-color:color-mix(in oklab,var(--color-neutral-300)50%,transparent)}

.focus-visible\:ring-neutral-950\/50:focus-visible {
--tw-ring-color:color-mix(in oklab,var(--color-neutral-950)50%,transparent)}

.focus-visible\:ring-red-500\/20:focus-visible {
--tw-ring-color:color-mix(in oklab,var(--color-red-500)20%,transparent)}

.disabled\:pointer-events-none:disabled {
pointer-events:none}

.disabled\:cursor-not-allowed:disabled {
cursor:not-allowed}

.disabled\:opacity-50:disabled {
opacity:.5}

.has-\[\>svg\]\:px-2\.5:has(>svg) {
padding-inline:calc(var(--spacing)*2.5)}

.has-\[\>svg\]\:px-3:has(>svg) {
padding-inline:calc(var(--spacing)*3)}

.has-\[\>svg\]\:px-4:has(>svg) {
padding-inline:calc(var(--spacing)*4)}

.aria-invalid\:border-red-500[aria-invalid=true] {
border-color:var(--color-red-500)}

.aria-invalid\:border-red-900[aria-invalid=true] {
border-color:var(--color-red-900)}

.aria-invalid\:ring-red-500\/20[aria-invalid=true] {
--tw-ring-color:color-mix(in oklab,var(--color-red-500)20%,transparent)}

.aria-invalid\:ring-red-900\/20[aria-invalid=true] {
--tw-ring-color:color-mix(in oklab,var(--color-red-900)20%,transparent)}

.data-\[state\=closed\]\:animate-out[data-state=closed] {
  --tw-exit-opacity:initial;
  --tw-exit-scale:initial;
  --tw-exit-rotate:initial;
  --tw-exit-translate-x:initial;
  --tw-exit-translate-y:initial;
  animation-name:exit;
animation-duration:.15s}

.data-\[state\=closed\]\:fade-out-0[data-state=closed] {
--tw-exit-opacity:0}

.data-\[state\=closed\]\:zoom-out-95[data-state=closed] {
--tw-exit-scale:.95}

.data-\[state\=open\]\:bg-neutral-100[data-state=open] {
background-color:var(--color-neutral-100)}

.data-\[state\=open\]\:text-foreground[data-state=open] {
color:var(--foreground)}

.data-\[state\=open\]\:animate-in[data-state=open] {
  --tw-enter-opacity:initial;
  --tw-enter-scale:initial;
  --tw-enter-rotate:initial;
  --tw-enter-translate-x:initial;
  --tw-enter-translate-y:initial;
  animation-name:enter;
animation-duration:.15s}

.data-\[state\=open\]\:fade-in-0[data-state=open] {
--tw-enter-opacity:0}

.data-\[state\=open\]\:zoom-in-95[data-state=open] {
--tw-enter-scale:.95}

.data-\[vaul-drawer-direction\=bottom\]\:inset-x-0[data-vaul-drawer-direction=bottom] {
inset-inline:calc(var(--spacing)*0)}

.data-\[vaul-drawer-direction\=bottom\]\:bottom-0[data-vaul-drawer-direction=bottom] {
bottom:calc(var(--spacing)*0)}

.data-\[vaul-drawer-direction\=bottom\]\:mt-24[data-vaul-drawer-direction=bottom] {
margin-top:calc(var(--spacing)*24)}

.data-\[vaul-drawer-direction\=bottom\]\:min-h-\[80vh\][data-vaul-drawer-direction=bottom] {
min-height:80vh}

.data-\[vaul-drawer-direction\=bottom\]\:rounded-t-sm[data-vaul-drawer-direction=bottom] {
  border-top-left-radius:calc(var(--radius) - 4px);
border-top-right-radius:calc(var(--radius) - 4px)}

.data-\[vaul-drawer-direction\=left\]\:inset-y-0[data-vaul-drawer-direction=left] {
inset-block:calc(var(--spacing)*0)}

.data-\[vaul-drawer-direction\=left\]\:left-0[data-vaul-drawer-direction=left] {
left:calc(var(--spacing)*0)}

.data-\[vaul-drawer-direction\=left\]\:w-3\/4[data-vaul-drawer-direction=left] {
width:75%}

.data-\[vaul-drawer-direction\=right\]\:inset-y-0[data-vaul-drawer-direction=right] {
inset-block:calc(var(--spacing)*0)}

.data-\[vaul-drawer-direction\=right\]\:right-0[data-vaul-drawer-direction=right] {
right:calc(var(--spacing)*0)}

.data-\[vaul-drawer-direction\=right\]\:w-3\/4[data-vaul-drawer-direction=right] {
width:75%}

.data-\[vaul-drawer-direction\=top\]\:inset-x-0[data-vaul-drawer-direction=top] {
inset-inline:calc(var(--spacing)*0)}

.data-\[vaul-drawer-direction\=top\]\:top-0[data-vaul-drawer-direction=top] {
top:calc(var(--spacing)*0)}

.data-\[vaul-drawer-direction\=top\]\:mb-24[data-vaul-drawer-direction=top] {
margin-bottom:calc(var(--spacing)*24)}

.data-\[vaul-drawer-direction\=top\]\:min-h-\[80vh\][data-vaul-drawer-direction=top] {
min-height:80vh}

.data-\[vaul-drawer-direction\=top\]\:rounded-b-sm[data-vaul-drawer-direction=top] {
  border-bottom-right-radius:calc(var(--radius) - 4px);
border-bottom-left-radius:calc(var(--radius) - 4px)}

@media (width>=40rem) {
.sm\:col-span-6 {
grid-column:span 6/span 6}

.sm\:max-w-\[600px\] {
max-width:600px}

.sm\:max-w-lg {
max-width:var(--container-lg)}

.sm\:gap-0 {
gap:calc(var(--spacing)*0)}

.sm\:gap-6 {
gap:calc(var(--spacing)*6)}

.sm\:gap-x-6 {
column-gap:calc(var(--spacing)*6)}

.sm\:px-6 {
padding-inline:calc(var(--spacing)*6)}

.data-\[vaul-drawer-direction\=left\]\:sm\:max-w-sm[data-vaul-drawer-direction=left],.data-\[vaul-drawer-direction\=right\]\:sm\:max-w-sm[data-vaul-drawer-direction=right] {
max-width:var(--container-sm)}

}

@media (width>=48rem) {
.md\:col-span-6 {
grid-column:span 6/span 6}

.md\:my-20 {
margin-block:calc(var(--spacing)*20)}

.md\:mt-20 {
margin-top:calc(var(--spacing)*20)}

.md\:hidden {
display:none}

.md\:basis-auto {
flex-basis:auto}

.md\:flex-row {
flex-direction:row}

.md\:items-center {
align-items:center}

.md\:justify-end {
justify-content:flex-end}

.md\:gap-10 {
gap:calc(var(--spacing)*10)}

:where(.md\:space-y-2\.5>:not(:last-child)) {
  --tw-space-y-reverse:0;
  margin-block-start:calc(calc(var(--spacing)*2.5)*var(--tw-space-y-reverse));
margin-block-end:calc(calc(var(--spacing)*2.5)*calc(1 - var(--tw-space-y-reverse)))}

.md\:gap-x-10 {
column-gap:calc(var(--spacing)*10)}

.md\:gap-y-28 {
row-gap:calc(var(--spacing)*28)}

.md\:p-2 {
padding:calc(var(--spacing)*2)}

.md\:px-8 {
padding-inline:calc(var(--spacing)*8)}

.md\:px-10 {
padding-inline:calc(var(--spacing)*10)}

.md\:text-right {
text-align:right}

.md\:text-2xl {
  font-size:30px;
line-height:var(--tw-leading,var(--text-2xl--line-height))}

.md\:text-base {
  font-size:18px;
line-height:var(--tw-leading,var(--text-base--line-height))}

.md\:text-lg {
  font-size:21px;
line-height:var(--tw-leading,var(--text-lg--line-height))}

.md\:text-sm {
  font-size:16px;
line-height:var(--tw-leading,var(--text-sm--line-height))}

.md\:text-xl {
  font-size:26px;
line-height:var(--tw-leading,var(--text-xl--line-height))}

}

@media (width>=64rem) {
.lg\:sticky {
position:sticky}

.lg\:top-20 {
top:calc(var(--spacing)*20)}

.lg\:col-span-3 {
grid-column:span 3/span 3}

.lg\:col-span-4 {
grid-column:span 4/span 4}

.lg\:col-span-5 {
grid-column:span 5/span 5}

.lg\:col-span-6 {
grid-column:span 6/span 6}

.lg\:col-span-7 {
grid-column:span 7/span 7}

.lg\:col-span-9 {
grid-column:span 9/span 9}

.lg\:col-start-4 {
grid-column-start:4}

.lg\:col-start-7 {
grid-column-start:7}

.lg\:col-start-9 {
grid-column-start:9}

.lg\:mb-20 {
margin-bottom:calc(var(--spacing)*20)}

.lg\:block {
display:block}

.lg\:flex {
display:flex}

.lg\:hidden {
display:none}

.lg\:max-w-44 {
max-width:calc(var(--spacing)*44)}

.lg\:items-end {
align-items:flex-end}

.lg\:justify-end {
justify-content:flex-end}

.lg\:py-2 {
padding-block:calc(var(--spacing)*2)}

.lg\:pt-2\.5 {
padding-top:calc(var(--spacing)*2.5)}

.lg\:pt-3 {
padding-top:calc(var(--spacing)*3)}

.lg\:text-2xl {
  font-size:30px;
line-height:var(--tw-leading,var(--text-2xl--line-height))}

.lg\:text-base {
  font-size:18px;
line-height:var(--tw-leading,var(--text-base--line-height))}

}

@media (width>=80rem) {
.xl\:col-span-2 {
grid-column:span 2/span 2}

.xl\:col-span-3 {
grid-column:span 3/span 3}

.xl\:col-span-4 {
grid-column:span 4/span 4}

.xl\:col-span-8 {
grid-column:span 8/span 8}

.xl\:col-start-5 {
grid-column-start:5}

.xl\:col-start-8 {
grid-column-start:8}

.xl\:col-start-10 {
grid-column-start:10}

}

@media (prefers-color-scheme:dark) {
.dark\:border-neutral-800 {
border-color:var(--color-neutral-800)}

.dark\:bg-neutral-200\/30 {
background-color:color-mix(in oklab,var(--color-neutral-200)30%,transparent)}

.dark\:dark\:bg-neutral-800\/30 {
background-color:color-mix(in oklab,var(--color-neutral-800)30%,transparent)}

.dark\:selection\:bg-neutral-50 ::selection {
background-color:var(--color-neutral-50)}

.dark\:selection\:bg-neutral-50::selection {
background-color:var(--color-neutral-50)}

.dark\:selection\:text-neutral-900 ::selection {
color:var(--color-neutral-900)}

.dark\:selection\:text-neutral-900::selection {
color:var(--color-neutral-900)}

.dark\:file\:text-neutral-50::file-selector-button {
color:var(--color-neutral-50)}

.dark\:placeholder\:text-neutral-400::placeholder {
color:var(--color-neutral-400)}

.dark\:focus-visible\:border-neutral-300:focus-visible {
border-color:var(--color-neutral-300)}

.dark\:focus-visible\:ring-neutral-300\/50:focus-visible {
--tw-ring-color:color-mix(in oklab,var(--color-neutral-300)50%,transparent)}

.dark\:aria-invalid\:border-red-900[aria-invalid=true] {
border-color:var(--color-red-900)}

.dark\:aria-invalid\:ring-red-500\/40[aria-invalid=true] {
--tw-ring-color:color-mix(in oklab,var(--color-red-500)40%,transparent)}

.dark\:aria-invalid\:ring-red-900\/20[aria-invalid=true] {
--tw-ring-color:color-mix(in oklab,var(--color-red-900)20%,transparent)}

.dark\:dark\:aria-invalid\:ring-red-900\/40[aria-invalid=true] {
--tw-ring-color:color-mix(in oklab,var(--color-red-900)40%,transparent)}

}

.prose-headings\:font-serif :where(h1,h2,h3,h4,h5,h6,th):not(:where([class~=not-prose],[class~=not-prose] *)) {
font-family:untitled-serif,sans-serif}

.prose-headings\:font-bold :where(h1,h2,h3,h4,h5,h6,th):not(:where([class~=not-prose],[class~=not-prose] *)) {
  --tw-font-weight:var(--font-weight-bold);
font-weight:var(--font-weight-bold)}

.prose-strong\:font-medium :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)) {
  --tw-font-weight:var(--font-weight-medium);
font-weight:var(--font-weight-medium)}

.\[\&_p\]\:text-pretty p {
text-wrap:pretty}

.\[\&_svg\]\:pointer-events-none svg {
pointer-events:none}

.\[\&_svg\]\:shrink-0 svg {
flex-shrink:0}

.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 svg:not([class*=size-]) {
  width:calc(var(--spacing)*4);
height:calc(var(--spacing)*4)}

}

@font-face {
  font-family:pitch;
  src:url(../fonts/Pitch-sans-medium.woff)format("woff");
  font-weight:500;
  font-style:normal;
font-display:"swap"}

@font-face {
  font-family:pitch;
  src:url(../fonts/Pitch-sans-bold.woff)format("woff");
  font-weight:700;
  font-style:normal;
font-display:"swap"}

@font-face {
  font-family:untitled-serif;
  src:url(../fonts/untitled-serif-regular.woff)format("woff");
  font-weight:400;
  font-style:normal;
font-display:"swap"}

@font-face {
  font-family:untitled-serif;
  src:url(../fonts/untitled-serif-regular-italic.woff2)format("woff2");
  font-weight:400;
  font-style:italic;
font-display:"swap"}

@font-face {
  font-family:untitled-serif;
  src:url(../fonts/untitled-serif-medium.woff)format("woff");
  font-weight:500;
  font-style:normal;
font-display:"swap"}

@font-face {
  font-family:untitled-serif;
  src:url(../fonts/untitled-serif-medium-italic.woff2)format("woff2");
  font-weight:500;
  font-style:italic;
font-display:"swap"}

:root {
  --background:oklch(85.58% .0218 51.48);
  --foreground:oklch(35.01% .0127 17.78);
  --card:oklch(85.58% .0218 51.48);
  --card-foreground:oklch(35.01% .0127 17.78);
  --popover:oklch(85.58% .0218 51.48);
  --popover-foreground:oklch(35.01% .0127 17.78);
  --primary:oklch(96.31% .0152 17.42);
  --primary-foreground:oklch(96.31% .0152 17.42);
  --secondary:oklch(.97 0 0);
  --secondary-foreground:oklch(.205 0 0);
  --muted:oklch(.97 0 0);
  --muted-foreground:oklch(.556 0 0);
  --accent:oklch(.97 0 0);
  --accent-foreground:oklch(.205 0 0);
  --destructive:oklch(.577 .245 27.325);
  --destructive-foreground:oklch(.577 .245 27.325);
  --border:oklch(.922 0 0);
  --input:oklch(.922 0 0);
  --ring:oklch(.708 0 0);
  --radius:.625rem;
  --sidebar:oklch(.985 0 0);
  --sidebar-foreground:oklch(35.01% .0127 17.78);
  --sidebar-primary:oklch(.205 0 0);
  --sidebar-primary-foreground:oklch(.985 0 0);
  --sidebar-accent:oklch(.97 0 0);
  --sidebar-accent-foreground:oklch(.205 0 0);
  --sidebar-border:oklch(.922 0 0);
--sidebar-ring:oklch(.708 0 0)}

@keyframes enter {
0% {
  opacity:var(--tw-enter-opacity,1);
transform:translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0)scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0))}

}

@keyframes exit {
to {
  opacity:var(--tw-exit-opacity,1);
transform:translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0)scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0))}

}

@property --tw-translate-x {
  syntax:"*";
  inherits:false;
initial-value:0}

@property --tw-translate-y {
  syntax:"*";
  inherits:false;
initial-value:0}

@property --tw-translate-z {
  syntax:"*";
  inherits:false;
initial-value:0}

@property --tw-rotate-x {
  syntax:"*";
  inherits:false;
initial-value:rotateX(0)}

@property --tw-rotate-y {
  syntax:"*";
  inherits:false;
initial-value:rotateY(0)}

@property --tw-rotate-z {
  syntax:"*";
  inherits:false;
initial-value:rotateZ(0)}

@property --tw-skew-x {
  syntax:"*";
  inherits:false;
initial-value:skewX(0)}

@property --tw-skew-y {
  syntax:"*";
  inherits:false;
initial-value:skewY(0)}

@property --tw-space-y-reverse {
  syntax:"*";
  inherits:false;
initial-value:0}

@property --tw-space-x-reverse {
  syntax:"*";
  inherits:false;
initial-value:0}

@property --tw-border-style {
  syntax:"*";
  inherits:false;
initial-value:solid}

@property --tw-leading {
  syntax:"*";
inherits:false}

@property --tw-font-weight {
  syntax:"*";
inherits:false}

@property --tw-shadow {
  syntax:"*";
  inherits:false;
initial-value:0 0 #0000}

@property --tw-shadow-color {
  syntax:"*";
inherits:false}

@property --tw-inset-shadow {
  syntax:"*";
  inherits:false;
initial-value:0 0 #0000}

@property --tw-inset-shadow-color {
  syntax:"*";
inherits:false}

@property --tw-ring-color {
  syntax:"*";
inherits:false}

@property --tw-ring-shadow {
  syntax:"*";
  inherits:false;
initial-value:0 0 #0000}

@property --tw-inset-ring-color {
  syntax:"*";
inherits:false}

@property --tw-inset-ring-shadow {
  syntax:"*";
  inherits:false;
initial-value:0 0 #0000}

@property --tw-ring-inset {
  syntax:"*";
inherits:false}

@property --tw-ring-offset-width {
  syntax:"<length>";
  inherits:false;
initial-value:0}

@property --tw-ring-offset-color {
  syntax:"*";
  inherits:false;
initial-value:#fff}

@property --tw-ring-offset-shadow {
  syntax:"*";
  inherits:false;
initial-value:0 0 #0000}

@property --tw-outline-style {
  syntax:"*";
  inherits:false;
initial-value:solid}

@property --tw-blur {
  syntax:"*";
inherits:false}

@property --tw-brightness {
  syntax:"*";
inherits:false}

@property --tw-contrast {
  syntax:"*";
inherits:false}

@property --tw-grayscale {
  syntax:"*";
inherits:false}

@property --tw-hue-rotate {
  syntax:"*";
inherits:false}

@property --tw-invert {
  syntax:"*";
inherits:false}

@property --tw-opacity {
  syntax:"*";
inherits:false}

@property --tw-saturate {
  syntax:"*";
inherits:false}

@property --tw-sepia {
  syntax:"*";
inherits:false}

@property --tw-drop-shadow {
  syntax:"*";
inherits:false}

@property --tw-duration {
  syntax:"*";
inherits:false}

@property --tw-ease {
  syntax:"*";
inherits:false}

@keyframes pulse {
50% {
opacity:.5}

}

@keyframes astroFadeInOut {
0% {
opacity:1}

to {
opacity:0}

}

@keyframes astroFadeIn {
0% {
  opacity:0;
mix-blend-mode:plus-lighter}

to {
  opacity:1;
mix-blend-mode:plus-lighter}

}

@keyframes astroFadeOut {
0% {
  opacity:1;
mix-blend-mode:plus-lighter}

to {
  opacity:0;
mix-blend-mode:plus-lighter}

}

@keyframes astroSlideFromRight {
0% {
transform:translate(100%)}

}

@keyframes astroSlideFromLeft {
0% {
transform:translate(-100%)}

}

@keyframes astroSlideToRight {
to {
transform:translate(100%)}

}

@keyframes astroSlideToLeft {
to {
transform:translate(-100%)}

}

@media (prefers-reduced-motion) {
::view-transition-group(*),::view-transition-old(*),::view-transition-new(*) {
animation:none!important}

[data-astro-transition-scope] {
animation:none!important}

}



.font-serif.text-sm {
    font-size: 18px;
	color:oklch(0.3 0.01 0);
}