/*
 * Plain, hand-authored CSS. No build step, no compiler — edit this file directly
 * and refresh the page. Utility classes are named after their old Tailwind
 * equivalents (kept for consistency with the markup), but every rule below is
 * static, human-written CSS.
 */

/* ================= Reset ================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border-default); }
html { -webkit-text-size-adjust: 100%; tab-size: 4; }
body { line-height: 1.5; }
img, svg, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; text-align: inherit; }
a { color: inherit; text-decoration: inherit; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }
ul, ol { list-style: none; }
table { border-collapse: collapse; }

/* ================= Design tokens ================= */
:root {
    --border-default: #e5e5e5;
    --font-sans: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.dark { --border-default: #404040; }

body {
    font-family: var(--font-sans);
}

/* ================= md-content (blog post body) ================= */
.md-content { color: #262626; }
.dark .md-content { color: #d4d4d4; }
.md-content > * + * { margin-top: 1.25rem; }
.md-content h1, .md-content h2, .md-content h3, .md-content h4 {
    margin-top: 2.5rem; font-weight: 600; letter-spacing: -0.025em; color: #171717;
}
.dark .md-content h1, .dark .md-content h2, .dark .md-content h3, .dark .md-content h4 { color: #f5f5f5; }
.md-content h1 { font-size: 1.5rem; }
.md-content h2 { font-size: 1.25rem; }
.md-content h3 { font-size: 1.125rem; }
.md-content a { color: #171717; text-decoration: underline; text-underline-offset: 2px; }
.dark .md-content a { color: #f5f5f5; }
.md-content ul, .md-content ol { margin-inline-start: 1.25rem; list-style-position: outside; }
.md-content ul > * + *, .md-content ol > * + * { margin-top: 0.25rem; }
.md-content ul { list-style-type: disc; }
.md-content ol { list-style-type: decimal; }
.md-content blockquote:not(.twitter-tweet) {
    border-inline-start: 2px solid #d4d4d4; padding-inline-start: 1rem; color: #525252; font-style: italic;
}
.dark .md-content blockquote:not(.twitter-tweet) { border-color: #404040; color: #a3a3a3; }
.md-content code { border-radius: 0.25rem; background: #f5f5f5; padding: 0.125rem 0.375rem; font-family: ui-monospace, monospace; font-size: 0.875rem; }
.dark .md-content code { background: #171717; }
.md-content pre { overflow-x: auto; border-radius: 0.5rem; background: #f5f5f5; padding: 1rem; }
.dark .md-content pre { background: #171717; }
.md-content pre code { background: transparent; padding: 0; }
.md-content img { border-radius: 0.5rem; }
.md-content hr { margin: 2rem 0; border: none; border-top: 1px solid #e5e5e5; }
.dark .md-content hr { border-color: #262626; }

/* ================= Buttons ================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.375rem;
    border-radius: 0.5rem; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500;
    line-height: 1.25rem; transition: background-color 150ms, color 150ms; white-space: nowrap;
    border: 1px solid transparent;
}
.btn-sm { padding: 0.375rem 0.75rem; font-size: 0.8125rem; }
.btn-primary { background: #171717; color: #ffffff; }
.btn-primary:hover { background: #404040; }
.dark .btn-primary { background: #f5f5f5; color: #171717; }
.dark .btn-primary:hover { background: #e5e5e5; }
.btn-ghost { background: transparent; color: #404040; border-color: #d4d4d4; }
.btn-ghost:hover { background: #f5f5f5; }
.dark .btn-ghost { color: #d4d4d4; border-color: #525252; }
.dark .btn-ghost:hover { background: #262626; }
.btn-danger { background: transparent; color: #dc2626; border-color: #fca5a5; }
.btn-danger:hover { background: #fef2f2; }
.dark .btn-danger { color: #f87171; border-color: #7f1d1d; }
.dark .btn-danger:hover { background: #1c1917; }
.btn-icon { padding: 0.5rem; }
.btn[disabled], .btn.is-loading { opacity: 0.6; pointer-events: none; }

/* ================= Forms ================= */
.field { display: grid; gap: 0.375rem; }
.field-inline { display: flex; align-items: center; gap: 0.75rem; }
.label { font-size: 0.875rem; font-weight: 500; color: #171717; }
.dark .label { color: #f5f5f5; }
.help-text { font-size: 0.8125rem; color: #737373; }
.dark .help-text { color: #a3a3a3; }
.error-text { font-size: 0.8125rem; color: #dc2626; }
.dark .error-text { color: #f87171; }

.input, .textarea, .select {
    width: 100%; border-radius: 0.5rem; border: 1px solid #d4d4d4; background: #ffffff;
    padding: 0.5rem 0.75rem; font-size: 0.875rem; color: #171717;
}
.dark .input, .dark .textarea, .dark .select { border-color: #404040; background: #171717; color: #f5f5f5; }
.input::placeholder, .textarea::placeholder { color: #a3a3a3; }
.input:focus, .textarea:focus, .select:focus { outline: 2px solid #a3a3a3; outline-offset: 1px; border-color: #737373; }
.textarea { resize: vertical; min-height: 6rem; font-family: ui-monospace, monospace; }

.switch { position: relative; display: inline-flex; align-items: center; width: 2.5rem; height: 1.5rem; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch-track {
    width: 100%; height: 100%; border-radius: 9999px; background: #d4d4d4; transition: background-color 150ms;
}
.dark .switch-track { background: #404040; }
.switch input:checked ~ .switch-track { background: #171717; }
.dark .switch input:checked ~ .switch-track { background: #f5f5f5; }
.switch-thumb {
    position: absolute; top: 0.125rem; left: 0.125rem; width: 1.25rem; height: 1.25rem;
    border-radius: 9999px; background: #ffffff; transition: transform 150ms; box-shadow: 0 1px 2px rgb(0 0 0 / 0.15);
}
.switch input:checked ~ .switch-thumb { transform: translateX(1rem); }
.dark .switch input:checked ~ .switch-thumb { background: #171717; }

.file-input {
    display: block; width: 100%; font-size: 0.875rem; color: #525252;
}
.dark .file-input { color: #a3a3a3; }
.file-input::file-selector-button {
    margin-right: 0.75rem; border-radius: 0.5rem; border: none; background: #f5f5f5;
    padding: 0.375rem 0.75rem; font-size: 0.875rem; font-weight: 500; color: #404040; cursor: pointer;
}
.file-input::file-selector-button:hover { background: #e5e5e5; }
.dark .file-input::file-selector-button { background: #262626; color: #d4d4d4; }
.dark .file-input::file-selector-button:hover { background: #404040; }

/* ================= Badge / Callout ================= */
.badge {
    display: inline-flex; align-items: center; border-radius: 9999px; padding: 0.125rem 0.5rem;
    font-size: 0.75rem; font-weight: 500;
}
.badge-zinc { background: #f5f5f5; color: #404040; }
.dark .badge-zinc { background: #262626; color: #d4d4d4; }
.badge-lime { background: #ecfccb; color: #3f6212; }
.dark .badge-lime { background: #1a2e05; color: #bef264; }

.callout {
    display: flex; gap: 0.75rem; align-items: flex-start; border-radius: 0.75rem;
    border: 1px solid #e5e5e5; background: #ffffff; padding: 1rem;
}
.dark .callout { border-color: #262626; background: #171717; }
.callout-danger { border-color: #fecaca; background: #fef2f2; }
.dark .callout-danger { border-color: #7f1d1d; background: #1c1917; }
.callout-icon { flex-shrink: 0; width: 1.25rem; height: 1.25rem; color: #a3a3a3; margin-top: 0.125rem; }
.callout-heading { font-weight: 600; color: #171717; }
.dark .callout-heading { color: #f5f5f5; }
.callout-text { font-size: 0.875rem; color: #737373; }
.dark .callout-text { color: #a3a3a3; }

/* ================= Table ================= */
.table-wrap { overflow-x: auto; }
.table { width: 100%; font-size: 0.875rem; }
.table th {
    text-align: left; padding: 0.5rem 0.75rem; font-weight: 500; color: #737373;
    border-bottom: 1px solid #e5e5e5;
}
.dark .table th { color: #a3a3a3; border-color: #262626; }
.table td { padding: 0.75rem; border-bottom: 1px solid #f5f5f5; }
.dark .table td { border-color: #262626; }
.table tr:last-child td { border-bottom: none; }

/* ================= Avatar ================= */
.avatar {
    display: inline-flex; align-items: center; justify-content: center; border-radius: 9999px;
    background: #e5e5e5; color: #404040; font-size: 0.75rem; font-weight: 600; width: 2rem; height: 2rem;
    overflow: hidden; flex-shrink: 0;
}
.dark .avatar { background: #404040; color: #f5f5f5; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ================= Dropdown / Menu ================= */
.dropdown { position: relative; display: inline-block; }
.menu {
    position: absolute; z-index: 50; min-width: 14rem; border-radius: 0.75rem; border: 1px solid #e5e5e5;
    background: #ffffff; padding: 0.375rem; box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.1);
    display: none;
}
.dark .menu { border-color: #404040; background: #262626; }
.menu.is-open { display: block; }
.menu-bottom-start { top: calc(100% + 0.5rem); left: 0; }
.menu-top-start { bottom: calc(100% + 0.5rem); left: 0; }
.menu-item {
    display: flex; align-items: center; gap: 0.5rem; width: 100%; border-radius: 0.5rem;
    padding: 0.5rem 0.625rem; font-size: 0.875rem; color: #262626; text-align: left;
}
.menu-item:hover { background: #f5f5f5; }
.dark .menu-item { color: #e5e5e5; }
.dark .menu-item:hover { background: #404040; }
.menu-separator { margin: 0.375rem 0; border-top: 1px solid #e5e5e5; }
.dark .menu-separator { border-color: #404040; }

/* ================= Modal ================= */
.modal { position: fixed; inset: 0; z-index: 50; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgb(0 0 0 / 0.5); }
.modal-panel {
    position: relative; width: 100%; max-width: 32rem; border-radius: 0.75rem; border: 1px solid #e5e5e5;
    background: #ffffff; padding: 1.5rem; box-shadow: 0 20px 40px -10px rgb(0 0 0 / 0.25);
}
.dark .modal-panel { border-color: #262626; background: #171717; }

/* ================= Appearance toggle ================= */
[data-appearance] { color: #737373; }
.dark [data-appearance] { color: #a3a3a3; }
[data-appearance].is-active { background: #171717; color: #ffffff; }
.dark [data-appearance].is-active { background: #f5f5f5; color: #171717; }

/* ================= Toast ================= */
.toast-group {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; display: flex; flex-direction: column;
    gap: 0.5rem; max-width: 20rem;
}
.toast {
    border-radius: 0.75rem; border: 1px solid #e5e5e5; background: #ffffff; padding: 0.75rem 1rem;
    font-size: 0.875rem; color: #171717; box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.15);
}
.dark .toast { border-color: #404040; background: #262626; color: #f5f5f5; }
.toast-success { border-color: #bbf7d0; }
.dark .toast-success { border-color: #14532d; }

/* ================= Sidebar / admin shell ================= */
.app-shell { display: flex; min-height: 100vh; }
.app-sidebar {
    width: 16rem; flex-shrink: 0; display: flex; flex-direction: column; border-inline-end: 1px solid #e5e5e5;
    background: #fafafa; padding: 1rem;
}
.dark .app-sidebar { border-color: #404040; background: #171717; }
.app-sidebar-brand { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem; font-weight: 600; }
.app-sidebar-group { margin-top: 1.5rem; }
.app-sidebar-heading { padding: 0 0.5rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #a3a3a3; }
.app-sidebar-nav { display: grid; gap: 0.125rem; margin-top: 0.5rem; }
.app-sidebar-item {
    display: flex; align-items: center; gap: 0.625rem; border-radius: 0.5rem; padding: 0.5rem 0.625rem;
    font-size: 0.875rem; color: #404040;
}
.app-sidebar-item:hover { background: #f0f0f0; }
.dark .app-sidebar-item { color: #d4d4d4; }
.dark .app-sidebar-item:hover { background: #262626; }
.app-sidebar-item.is-current { background: #e5e5e5; color: #171717; font-weight: 500; }
.dark .app-sidebar-item.is-current { background: #262626; color: #f5f5f5; }
.app-sidebar-item svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }
.app-main { flex: 1; min-width: 0; padding: 2rem; }

.app-mobile-header {
    display: none; align-items: center; justify-content: space-between; border-bottom: 1px solid #e5e5e5;
    padding: 0.75rem 1rem; background: #fafafa;
}
.dark .app-mobile-header { border-color: #404040; background: #171717; }

@media (max-width: 63.99rem) {
    .app-sidebar { display: none; }
    .app-mobile-header { display: flex; }
    .app-sidebar.is-open {
        display: flex; position: fixed; inset: 0 30% 0 0; z-index: 40; width: auto;
    }
}

/* ================= Card (auth pages) ================= */
.auth-card {
    width: 100%; max-width: 24rem; border-radius: 0.75rem; border: 1px solid #e5e5e5; background: #ffffff;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); padding: 2rem 2.5rem;
}
.dark .auth-card { border-color: #262626; background: #0c0a09; }
.auth-shell {
    min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1.5rem; padding: 1.5rem; background: #f5f5f5;
}
.dark .auth-shell { background: #0a0a0a; }

/* ================= Utility layer (generated) ================= */
/* ================= Spacing ================= */
.m-0 { margin: 0px; }
.mt-0 { margin-top: 0px; }
.mb-0 { margin-bottom: 0px; }
.ms-0 { margin-inline-start: 0px; }
.me-0 { margin-inline-end: 0px; }
.mx-0 { margin-left: 0px; margin-right: 0px; }
.my-0 { margin-top: 0px; margin-bottom: 0px; }
.p-0 { padding: 0px; }
.pt-0 { padding-top: 0px; }
.pb-0 { padding-bottom: 0px; }
.ps-0 { padding-inline-start: 0px; }
.pe-0 { padding-inline-end: 0px; }
.px-0 { padding-left: 0px; padding-right: 0px; }
.py-0 { padding-top: 0px; padding-bottom: 0px; }
.gap-0 { gap: 0px; }
.gap-x-0 { column-gap: 0px; }
.gap-y-0 { row-gap: 0px; }
.space-x-0 > * + * { margin-left: 0px; }
.space-y-0 > * + * { margin-top: 0px; }
.m-px { margin: 1px; }
.mt-px { margin-top: 1px; }
.mb-px { margin-bottom: 1px; }
.ms-px { margin-inline-start: 1px; }
.me-px { margin-inline-end: 1px; }
.mx-px { margin-left: 1px; margin-right: 1px; }
.my-px { margin-top: 1px; margin-bottom: 1px; }
.p-px { padding: 1px; }
.pt-px { padding-top: 1px; }
.pb-px { padding-bottom: 1px; }
.ps-px { padding-inline-start: 1px; }
.pe-px { padding-inline-end: 1px; }
.px-px { padding-left: 1px; padding-right: 1px; }
.py-px { padding-top: 1px; padding-bottom: 1px; }
.gap-px { gap: 1px; }
.gap-x-px { column-gap: 1px; }
.gap-y-px { row-gap: 1px; }
.space-x-px > * + * { margin-left: 1px; }
.space-y-px > * + * { margin-top: 1px; }
.m-0\.5 { margin: 0.125rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mb-0\.5 { margin-bottom: 0.125rem; }
.ms-0\.5 { margin-inline-start: 0.125rem; }
.me-0\.5 { margin-inline-end: 0.125rem; }
.mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; }
.my-0\.5 { margin-top: 0.125rem; margin-bottom: 0.125rem; }
.p-0\.5 { padding: 0.125rem; }
.pt-0\.5 { padding-top: 0.125rem; }
.pb-0\.5 { padding-bottom: 0.125rem; }
.ps-0\.5 { padding-inline-start: 0.125rem; }
.pe-0\.5 { padding-inline-end: 0.125rem; }
.px-0\.5 { padding-left: 0.125rem; padding-right: 0.125rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.gap-0\.5 { gap: 0.125rem; }
.gap-x-0\.5 { column-gap: 0.125rem; }
.gap-y-0\.5 { row-gap: 0.125rem; }
.space-x-0\.5 > * + * { margin-left: 0.125rem; }
.space-y-0\.5 > * + * { margin-top: 0.125rem; }
.m-1 { margin: 0.25rem; }
.mt-1 { margin-top: 0.25rem; }
.mb-1 { margin-bottom: 0.25rem; }
.ms-1 { margin-inline-start: 0.25rem; }
.me-1 { margin-inline-end: 0.25rem; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.p-1 { padding: 0.25rem; }
.pt-1 { padding-top: 0.25rem; }
.pb-1 { padding-bottom: 0.25rem; }
.ps-1 { padding-inline-start: 0.25rem; }
.pe-1 { padding-inline-end: 0.25rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.gap-1 { gap: 0.25rem; }
.gap-x-1 { column-gap: 0.25rem; }
.gap-y-1 { row-gap: 0.25rem; }
.space-x-1 > * + * { margin-left: 0.25rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.m-1\.5 { margin: 0.375rem; }
.mt-1\.5 { margin-top: 0.375rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.ms-1\.5 { margin-inline-start: 0.375rem; }
.me-1\.5 { margin-inline-end: 0.375rem; }
.mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; }
.my-1\.5 { margin-top: 0.375rem; margin-bottom: 0.375rem; }
.p-1\.5 { padding: 0.375rem; }
.pt-1\.5 { padding-top: 0.375rem; }
.pb-1\.5 { padding-bottom: 0.375rem; }
.ps-1\.5 { padding-inline-start: 0.375rem; }
.pe-1\.5 { padding-inline-end: 0.375rem; }
.px-1\.5 { padding-left: 0.375rem; padding-right: 0.375rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-x-1\.5 { column-gap: 0.375rem; }
.gap-y-1\.5 { row-gap: 0.375rem; }
.space-x-1\.5 > * + * { margin-left: 0.375rem; }
.space-y-1\.5 > * + * { margin-top: 0.375rem; }
.m-2 { margin: 0.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.ms-2 { margin-inline-start: 0.5rem; }
.me-2 { margin-inline-end: 0.5rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.p-2 { padding: 0.5rem; }
.pt-2 { padding-top: 0.5rem; }
.pb-2 { padding-bottom: 0.5rem; }
.ps-2 { padding-inline-start: 0.5rem; }
.pe-2 { padding-inline-end: 0.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.gap-2 { gap: 0.5rem; }
.gap-x-2 { column-gap: 0.5rem; }
.gap-y-2 { row-gap: 0.5rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.m-3 { margin: 0.75rem; }
.mt-3 { margin-top: 0.75rem; }
.mb-3 { margin-bottom: 0.75rem; }
.ms-3 { margin-inline-start: 0.75rem; }
.me-3 { margin-inline-end: 0.75rem; }
.mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.p-3 { padding: 0.75rem; }
.pt-3 { padding-top: 0.75rem; }
.pb-3 { padding-bottom: 0.75rem; }
.ps-3 { padding-inline-start: 0.75rem; }
.pe-3 { padding-inline-end: 0.75rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.gap-3 { gap: 0.75rem; }
.gap-x-3 { column-gap: 0.75rem; }
.gap-y-3 { row-gap: 0.75rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.m-4 { margin: 1rem; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.ms-4 { margin-inline-start: 1rem; }
.me-4 { margin-inline-end: 1rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.p-4 { padding: 1rem; }
.pt-4 { padding-top: 1rem; }
.pb-4 { padding-bottom: 1rem; }
.ps-4 { padding-inline-start: 1rem; }
.pe-4 { padding-inline-end: 1rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.gap-4 { gap: 1rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-y-4 { row-gap: 1rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.m-5 { margin: 1.25rem; }
.mt-5 { margin-top: 1.25rem; }
.mb-5 { margin-bottom: 1.25rem; }
.ms-5 { margin-inline-start: 1.25rem; }
.me-5 { margin-inline-end: 1.25rem; }
.mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; }
.my-5 { margin-top: 1.25rem; margin-bottom: 1.25rem; }
.p-5 { padding: 1.25rem; }
.pt-5 { padding-top: 1.25rem; }
.pb-5 { padding-bottom: 1.25rem; }
.ps-5 { padding-inline-start: 1.25rem; }
.pe-5 { padding-inline-end: 1.25rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.gap-5 { gap: 1.25rem; }
.gap-x-5 { column-gap: 1.25rem; }
.gap-y-5 { row-gap: 1.25rem; }
.space-x-5 > * + * { margin-left: 1.25rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.m-6 { margin: 1.5rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.ms-6 { margin-inline-start: 1.5rem; }
.me-6 { margin-inline-end: 1.5rem; }
.mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.p-6 { padding: 1.5rem; }
.pt-6 { padding-top: 1.5rem; }
.pb-6 { padding-bottom: 1.5rem; }
.ps-6 { padding-inline-start: 1.5rem; }
.pe-6 { padding-inline-end: 1.5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.gap-6 { gap: 1.5rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-y-6 { row-gap: 1.5rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.m-8 { margin: 2rem; }
.mt-8 { margin-top: 2rem; }
.mb-8 { margin-bottom: 2rem; }
.ms-8 { margin-inline-start: 2rem; }
.me-8 { margin-inline-end: 2rem; }
.mx-8 { margin-left: 2rem; margin-right: 2rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.p-8 { padding: 2rem; }
.pt-8 { padding-top: 2rem; }
.pb-8 { padding-bottom: 2rem; }
.ps-8 { padding-inline-start: 2rem; }
.pe-8 { padding-inline-end: 2rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.gap-8 { gap: 2rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-y-8 { row-gap: 2rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.m-9 { margin: 2.25rem; }
.mt-9 { margin-top: 2.25rem; }
.mb-9 { margin-bottom: 2.25rem; }
.ms-9 { margin-inline-start: 2.25rem; }
.me-9 { margin-inline-end: 2.25rem; }
.mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; }
.my-9 { margin-top: 2.25rem; margin-bottom: 2.25rem; }
.p-9 { padding: 2.25rem; }
.pt-9 { padding-top: 2.25rem; }
.pb-9 { padding-bottom: 2.25rem; }
.ps-9 { padding-inline-start: 2.25rem; }
.pe-9 { padding-inline-end: 2.25rem; }
.px-9 { padding-left: 2.25rem; padding-right: 2.25rem; }
.py-9 { padding-top: 2.25rem; padding-bottom: 2.25rem; }
.gap-9 { gap: 2.25rem; }
.gap-x-9 { column-gap: 2.25rem; }
.gap-y-9 { row-gap: 2.25rem; }
.space-x-9 > * + * { margin-left: 2.25rem; }
.space-y-9 > * + * { margin-top: 2.25rem; }
.m-10 { margin: 2.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.ms-10 { margin-inline-start: 2.5rem; }
.me-10 { margin-inline-end: 2.5rem; }
.mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; }
.my-10 { margin-top: 2.5rem; margin-bottom: 2.5rem; }
.p-10 { padding: 2.5rem; }
.pt-10 { padding-top: 2.5rem; }
.pb-10 { padding-bottom: 2.5rem; }
.ps-10 { padding-inline-start: 2.5rem; }
.pe-10 { padding-inline-end: 2.5rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.gap-10 { gap: 2.5rem; }
.gap-x-10 { column-gap: 2.5rem; }
.gap-y-10 { row-gap: 2.5rem; }
.space-x-10 > * + * { margin-left: 2.5rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.m-12 { margin: 3rem; }
.mt-12 { margin-top: 3rem; }
.mb-12 { margin-bottom: 3rem; }
.ms-12 { margin-inline-start: 3rem; }
.me-12 { margin-inline-end: 3rem; }
.mx-12 { margin-left: 3rem; margin-right: 3rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }
.p-12 { padding: 3rem; }
.pt-12 { padding-top: 3rem; }
.pb-12 { padding-bottom: 3rem; }
.ps-12 { padding-inline-start: 3rem; }
.pe-12 { padding-inline-end: 3rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.gap-12 { gap: 3rem; }
.gap-x-12 { column-gap: 3rem; }
.gap-y-12 { row-gap: 3rem; }
.space-x-12 > * + * { margin-left: 3rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.m-16 { margin: 4rem; }
.mt-16 { margin-top: 4rem; }
.mb-16 { margin-bottom: 4rem; }
.ms-16 { margin-inline-start: 4rem; }
.me-16 { margin-inline-end: 4rem; }
.mx-16 { margin-left: 4rem; margin-right: 4rem; }
.my-16 { margin-top: 4rem; margin-bottom: 4rem; }
.p-16 { padding: 4rem; }
.pt-16 { padding-top: 4rem; }
.pb-16 { padding-bottom: 4rem; }
.ps-16 { padding-inline-start: 4rem; }
.pe-16 { padding-inline-end: 4rem; }
.px-16 { padding-left: 4rem; padding-right: 4rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.gap-16 { gap: 4rem; }
.gap-x-16 { column-gap: 4rem; }
.gap-y-16 { row-gap: 4rem; }
.space-x-16 > * + * { margin-left: 4rem; }
.space-y-16 > * + * { margin-top: 4rem; }
.m-20 { margin: 5rem; }
.mt-20 { margin-top: 5rem; }
.mb-20 { margin-bottom: 5rem; }
.ms-20 { margin-inline-start: 5rem; }
.me-20 { margin-inline-end: 5rem; }
.mx-20 { margin-left: 5rem; margin-right: 5rem; }
.my-20 { margin-top: 5rem; margin-bottom: 5rem; }
.p-20 { padding: 5rem; }
.pt-20 { padding-top: 5rem; }
.pb-20 { padding-bottom: 5rem; }
.ps-20 { padding-inline-start: 5rem; }
.pe-20 { padding-inline-end: 5rem; }
.px-20 { padding-left: 5rem; padding-right: 5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.gap-20 { gap: 5rem; }
.gap-x-20 { column-gap: 5rem; }
.gap-y-20 { row-gap: 5rem; }
.space-x-20 > * + * { margin-left: 5rem; }
.space-y-20 > * + * { margin-top: 5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-auto { margin-top: auto; }
.-mb-px { margin-bottom: -1px; }
/* ================= Sizing ================= */
.size-3 { width: 0.75rem; height: 0.75rem; }
.w-3 { width: 0.75rem; }
@media (min-width: 40rem) { .sm\:w-3 { width: 0.75rem; } }
.h-3 { height: 0.75rem; }
.size-4 { width: 1rem; height: 1rem; }
.w-4 { width: 1rem; }
@media (min-width: 40rem) { .sm\:w-4 { width: 1rem; } }
.h-4 { height: 1rem; }
.size-5 { width: 1.25rem; height: 1.25rem; }
.w-5 { width: 1.25rem; }
@media (min-width: 40rem) { .sm\:w-5 { width: 1.25rem; } }
.h-5 { height: 1.25rem; }
.size-6 { width: 1.5rem; height: 1.5rem; }
.w-6 { width: 1.5rem; }
@media (min-width: 40rem) { .sm\:w-6 { width: 1.5rem; } }
.h-6 { height: 1.5rem; }
.size-7 { width: 1.75rem; height: 1.75rem; }
.w-7 { width: 1.75rem; }
@media (min-width: 40rem) { .sm\:w-7 { width: 1.75rem; } }
.h-7 { height: 1.75rem; }
.size-8 { width: 2rem; height: 2rem; }
.w-8 { width: 2rem; }
@media (min-width: 40rem) { .sm\:w-8 { width: 2rem; } }
.h-8 { height: 2rem; }
.size-9 { width: 2.25rem; height: 2.25rem; }
.w-9 { width: 2.25rem; }
@media (min-width: 40rem) { .sm\:w-9 { width: 2.25rem; } }
.h-9 { height: 2.25rem; }
.size-10 { width: 2.5rem; height: 2.5rem; }
.w-10 { width: 2.5rem; }
@media (min-width: 40rem) { .sm\:w-10 { width: 2.5rem; } }
.h-10 { height: 2.5rem; }
.size-12 { width: 3rem; height: 3rem; }
.w-12 { width: 3rem; }
@media (min-width: 40rem) { .sm\:w-12 { width: 3rem; } }
.h-12 { height: 3rem; }
.size-16 { width: 4rem; height: 4rem; }
.w-16 { width: 4rem; }
@media (min-width: 40rem) { .sm\:w-16 { width: 4rem; } }
.h-16 { height: 4rem; }
.size-20 { width: 5rem; height: 5rem; }
.w-20 { width: 5rem; }
@media (min-width: 40rem) { .sm\:w-20 { width: 5rem; } }
.h-20 { height: 5rem; }
.size-24 { width: 6rem; height: 6rem; }
.w-24 { width: 6rem; }
@media (min-width: 40rem) { .sm\:w-24 { width: 6rem; } }
.h-24 { height: 6rem; }
.size-full { width: 100%; height: 100%; }
.w-full { width: 100%; }
@media (min-width: 40rem) { .sm\:w-full { width: 100%; } }
.h-full { height: 100%; }
.w-px { width: 1px; }
.min-w-0 { min-width: 0px; }
.min-h-screen { min-height: 100vh; }
.min-h-svh { min-height: 100svh; }
.h-dvh { height: 100dvh; }
.h-full { height: 100%; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-5xl { max-width: 64rem; }
.w-full { width: 100%; }
/* ================= Display / Flexbox / Grid ================= */
.block { display: block; }
@media (min-width: 40rem) { .sm\:block { display: block; } }
@media (min-width: 48rem) { .md\:block { display: block; } }
@media (min-width: 64rem) { .lg\:block { display: block; } }
.inline-block { display: inline-block; }
@media (min-width: 40rem) { .sm\:inline-block { display: inline-block; } }
@media (min-width: 48rem) { .md\:inline-block { display: inline-block; } }
@media (min-width: 64rem) { .lg\:inline-block { display: inline-block; } }
.inline { display: inline; }
@media (min-width: 40rem) { .sm\:inline { display: inline; } }
@media (min-width: 48rem) { .md\:inline { display: inline; } }
@media (min-width: 64rem) { .lg\:inline { display: inline; } }
.flex { display: flex; }
@media (min-width: 40rem) { .sm\:flex { display: flex; } }
@media (min-width: 48rem) { .md\:flex { display: flex; } }
@media (min-width: 64rem) { .lg\:flex { display: flex; } }
.inline-flex { display: inline-flex; }
@media (min-width: 40rem) { .sm\:inline-flex { display: inline-flex; } }
@media (min-width: 48rem) { .md\:inline-flex { display: inline-flex; } }
@media (min-width: 64rem) { .lg\:inline-flex { display: inline-flex; } }
.grid { display: grid; }
@media (min-width: 40rem) { .sm\:grid { display: grid; } }
@media (min-width: 48rem) { .md\:grid { display: grid; } }
@media (min-width: 64rem) { .lg\:grid { display: grid; } }
.hidden { display: none; }
@media (min-width: 40rem) { .sm\:hidden { display: none; } }
@media (min-width: 48rem) { .md\:hidden { display: none; } }
@media (min-width: 64rem) { .lg\:hidden { display: none; } }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }
.grow { flex-grow: 1; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.self-stretch { align-self: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.auto-rows-min { grid-auto-rows: min-content; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 48rem) { .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64rem) { .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (min-width: 48rem) { .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 64rem) { .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.flex-row { flex-direction: row; }
@media (min-width: 40rem) { .sm\:flex-row { flex-direction: row; } }
.flex-col { flex-direction: column; }
@media (max-width: 47.99rem) { .max-md\:flex-col { flex-direction: column; } }
/* ================= Typography ================= */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Liberation Mono', monospace; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.text-center { text-align: center; }
.text-start { text-align: start; }
.uppercase { text-transform: uppercase; }
.underline { text-decoration-line: underline; }
.underline-offset-2 { text-underline-offset: 2px; }
.decoration-dotted { text-decoration-style: dotted; }
.italic { font-style: italic; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.list-disc { list-style-type: disc; }
.list-decimal { list-style-type: decimal; }
.list-outside { list-style-position: outside; }
.list-none { list-style-type: none; }
/* ================= Colors ================= */
.text-zinc-50 { color: #fafafa; }
.hover\:text-zinc-50:hover { color: #fafafa; }
.dark .dark\:text-zinc-50 { color: #fafafa; }
@media (min-width: 40rem) { .sm\:text-zinc-50 { color: #fafafa; } }
@media (min-width: 64rem) { .lg\:text-zinc-50 { color: #fafafa; } }
@media (min-width: 48rem) { .md\:text-zinc-50 { color: #fafafa; } }
.bg-zinc-50 { background-color: #fafafa; }
.hover\:bg-zinc-50:hover { background-color: #fafafa; }
.dark .dark\:bg-zinc-50 { background-color: #fafafa; }
@media (min-width: 40rem) { .sm\:bg-zinc-50 { background-color: #fafafa; } }
@media (min-width: 64rem) { .lg\:bg-zinc-50 { background-color: #fafafa; } }
@media (min-width: 48rem) { .md\:bg-zinc-50 { background-color: #fafafa; } }
.border-zinc-50 { border-color: #fafafa; }
.hover\:border-zinc-50:hover { border-color: #fafafa; }
.dark .dark\:border-zinc-50 { border-color: #fafafa; }
@media (min-width: 40rem) { .sm\:border-zinc-50 { border-color: #fafafa; } }
@media (min-width: 64rem) { .lg\:border-zinc-50 { border-color: #fafafa; } }
@media (min-width: 48rem) { .md\:border-zinc-50 { border-color: #fafafa; } }
.divide-zinc-50 {  }
.divide-zinc-50 > * + * { border-color: #fafafa; }
.dark .dark\:divide-zinc-50 > * + * { border-color: #fafafa; }
.text-zinc-100 { color: #f5f5f5; }
.hover\:text-zinc-100:hover { color: #f5f5f5; }
.dark .dark\:text-zinc-100 { color: #f5f5f5; }
@media (min-width: 40rem) { .sm\:text-zinc-100 { color: #f5f5f5; } }
@media (min-width: 64rem) { .lg\:text-zinc-100 { color: #f5f5f5; } }
@media (min-width: 48rem) { .md\:text-zinc-100 { color: #f5f5f5; } }
.bg-zinc-100 { background-color: #f5f5f5; }
.hover\:bg-zinc-100:hover { background-color: #f5f5f5; }
.dark .dark\:bg-zinc-100 { background-color: #f5f5f5; }
@media (min-width: 40rem) { .sm\:bg-zinc-100 { background-color: #f5f5f5; } }
@media (min-width: 64rem) { .lg\:bg-zinc-100 { background-color: #f5f5f5; } }
@media (min-width: 48rem) { .md\:bg-zinc-100 { background-color: #f5f5f5; } }
.border-zinc-100 { border-color: #f5f5f5; }
.hover\:border-zinc-100:hover { border-color: #f5f5f5; }
.dark .dark\:border-zinc-100 { border-color: #f5f5f5; }
@media (min-width: 40rem) { .sm\:border-zinc-100 { border-color: #f5f5f5; } }
@media (min-width: 64rem) { .lg\:border-zinc-100 { border-color: #f5f5f5; } }
@media (min-width: 48rem) { .md\:border-zinc-100 { border-color: #f5f5f5; } }
.divide-zinc-100 {  }
.divide-zinc-100 > * + * { border-color: #f5f5f5; }
.dark .dark\:divide-zinc-100 > * + * { border-color: #f5f5f5; }
.text-zinc-200 { color: #e5e5e5; }
.hover\:text-zinc-200:hover { color: #e5e5e5; }
.dark .dark\:text-zinc-200 { color: #e5e5e5; }
@media (min-width: 40rem) { .sm\:text-zinc-200 { color: #e5e5e5; } }
@media (min-width: 64rem) { .lg\:text-zinc-200 { color: #e5e5e5; } }
@media (min-width: 48rem) { .md\:text-zinc-200 { color: #e5e5e5; } }
.bg-zinc-200 { background-color: #e5e5e5; }
.hover\:bg-zinc-200:hover { background-color: #e5e5e5; }
.dark .dark\:bg-zinc-200 { background-color: #e5e5e5; }
@media (min-width: 40rem) { .sm\:bg-zinc-200 { background-color: #e5e5e5; } }
@media (min-width: 64rem) { .lg\:bg-zinc-200 { background-color: #e5e5e5; } }
@media (min-width: 48rem) { .md\:bg-zinc-200 { background-color: #e5e5e5; } }
.border-zinc-200 { border-color: #e5e5e5; }
.hover\:border-zinc-200:hover { border-color: #e5e5e5; }
.dark .dark\:border-zinc-200 { border-color: #e5e5e5; }
@media (min-width: 40rem) { .sm\:border-zinc-200 { border-color: #e5e5e5; } }
@media (min-width: 64rem) { .lg\:border-zinc-200 { border-color: #e5e5e5; } }
@media (min-width: 48rem) { .md\:border-zinc-200 { border-color: #e5e5e5; } }
.divide-zinc-200 {  }
.divide-zinc-200 > * + * { border-color: #e5e5e5; }
.dark .dark\:divide-zinc-200 > * + * { border-color: #e5e5e5; }
.text-zinc-300 { color: #d4d4d4; }
.hover\:text-zinc-300:hover { color: #d4d4d4; }
.dark .dark\:text-zinc-300 { color: #d4d4d4; }
@media (min-width: 40rem) { .sm\:text-zinc-300 { color: #d4d4d4; } }
@media (min-width: 64rem) { .lg\:text-zinc-300 { color: #d4d4d4; } }
@media (min-width: 48rem) { .md\:text-zinc-300 { color: #d4d4d4; } }
.bg-zinc-300 { background-color: #d4d4d4; }
.hover\:bg-zinc-300:hover { background-color: #d4d4d4; }
.dark .dark\:bg-zinc-300 { background-color: #d4d4d4; }
@media (min-width: 40rem) { .sm\:bg-zinc-300 { background-color: #d4d4d4; } }
@media (min-width: 64rem) { .lg\:bg-zinc-300 { background-color: #d4d4d4; } }
@media (min-width: 48rem) { .md\:bg-zinc-300 { background-color: #d4d4d4; } }
.border-zinc-300 { border-color: #d4d4d4; }
.hover\:border-zinc-300:hover { border-color: #d4d4d4; }
.dark .dark\:border-zinc-300 { border-color: #d4d4d4; }
@media (min-width: 40rem) { .sm\:border-zinc-300 { border-color: #d4d4d4; } }
@media (min-width: 64rem) { .lg\:border-zinc-300 { border-color: #d4d4d4; } }
@media (min-width: 48rem) { .md\:border-zinc-300 { border-color: #d4d4d4; } }
.divide-zinc-300 {  }
.divide-zinc-300 > * + * { border-color: #d4d4d4; }
.dark .dark\:divide-zinc-300 > * + * { border-color: #d4d4d4; }
.text-zinc-400 { color: #a3a3a3; }
.hover\:text-zinc-400:hover { color: #a3a3a3; }
.dark .dark\:text-zinc-400 { color: #a3a3a3; }
@media (min-width: 40rem) { .sm\:text-zinc-400 { color: #a3a3a3; } }
@media (min-width: 64rem) { .lg\:text-zinc-400 { color: #a3a3a3; } }
@media (min-width: 48rem) { .md\:text-zinc-400 { color: #a3a3a3; } }
.bg-zinc-400 { background-color: #a3a3a3; }
.hover\:bg-zinc-400:hover { background-color: #a3a3a3; }
.dark .dark\:bg-zinc-400 { background-color: #a3a3a3; }
@media (min-width: 40rem) { .sm\:bg-zinc-400 { background-color: #a3a3a3; } }
@media (min-width: 64rem) { .lg\:bg-zinc-400 { background-color: #a3a3a3; } }
@media (min-width: 48rem) { .md\:bg-zinc-400 { background-color: #a3a3a3; } }
.border-zinc-400 { border-color: #a3a3a3; }
.hover\:border-zinc-400:hover { border-color: #a3a3a3; }
.dark .dark\:border-zinc-400 { border-color: #a3a3a3; }
@media (min-width: 40rem) { .sm\:border-zinc-400 { border-color: #a3a3a3; } }
@media (min-width: 64rem) { .lg\:border-zinc-400 { border-color: #a3a3a3; } }
@media (min-width: 48rem) { .md\:border-zinc-400 { border-color: #a3a3a3; } }
.divide-zinc-400 {  }
.divide-zinc-400 > * + * { border-color: #a3a3a3; }
.dark .dark\:divide-zinc-400 > * + * { border-color: #a3a3a3; }
.text-zinc-500 { color: #737373; }
.hover\:text-zinc-500:hover { color: #737373; }
.dark .dark\:text-zinc-500 { color: #737373; }
@media (min-width: 40rem) { .sm\:text-zinc-500 { color: #737373; } }
@media (min-width: 64rem) { .lg\:text-zinc-500 { color: #737373; } }
@media (min-width: 48rem) { .md\:text-zinc-500 { color: #737373; } }
.bg-zinc-500 { background-color: #737373; }
.hover\:bg-zinc-500:hover { background-color: #737373; }
.dark .dark\:bg-zinc-500 { background-color: #737373; }
@media (min-width: 40rem) { .sm\:bg-zinc-500 { background-color: #737373; } }
@media (min-width: 64rem) { .lg\:bg-zinc-500 { background-color: #737373; } }
@media (min-width: 48rem) { .md\:bg-zinc-500 { background-color: #737373; } }
.border-zinc-500 { border-color: #737373; }
.hover\:border-zinc-500:hover { border-color: #737373; }
.dark .dark\:border-zinc-500 { border-color: #737373; }
@media (min-width: 40rem) { .sm\:border-zinc-500 { border-color: #737373; } }
@media (min-width: 64rem) { .lg\:border-zinc-500 { border-color: #737373; } }
@media (min-width: 48rem) { .md\:border-zinc-500 { border-color: #737373; } }
.divide-zinc-500 {  }
.divide-zinc-500 > * + * { border-color: #737373; }
.dark .dark\:divide-zinc-500 > * + * { border-color: #737373; }
.text-zinc-600 { color: #525252; }
.hover\:text-zinc-600:hover { color: #525252; }
.dark .dark\:text-zinc-600 { color: #525252; }
@media (min-width: 40rem) { .sm\:text-zinc-600 { color: #525252; } }
@media (min-width: 64rem) { .lg\:text-zinc-600 { color: #525252; } }
@media (min-width: 48rem) { .md\:text-zinc-600 { color: #525252; } }
.bg-zinc-600 { background-color: #525252; }
.hover\:bg-zinc-600:hover { background-color: #525252; }
.dark .dark\:bg-zinc-600 { background-color: #525252; }
@media (min-width: 40rem) { .sm\:bg-zinc-600 { background-color: #525252; } }
@media (min-width: 64rem) { .lg\:bg-zinc-600 { background-color: #525252; } }
@media (min-width: 48rem) { .md\:bg-zinc-600 { background-color: #525252; } }
.border-zinc-600 { border-color: #525252; }
.hover\:border-zinc-600:hover { border-color: #525252; }
.dark .dark\:border-zinc-600 { border-color: #525252; }
@media (min-width: 40rem) { .sm\:border-zinc-600 { border-color: #525252; } }
@media (min-width: 64rem) { .lg\:border-zinc-600 { border-color: #525252; } }
@media (min-width: 48rem) { .md\:border-zinc-600 { border-color: #525252; } }
.divide-zinc-600 {  }
.divide-zinc-600 > * + * { border-color: #525252; }
.dark .dark\:divide-zinc-600 > * + * { border-color: #525252; }
.text-zinc-700 { color: #404040; }
.hover\:text-zinc-700:hover { color: #404040; }
.dark .dark\:text-zinc-700 { color: #404040; }
@media (min-width: 40rem) { .sm\:text-zinc-700 { color: #404040; } }
@media (min-width: 64rem) { .lg\:text-zinc-700 { color: #404040; } }
@media (min-width: 48rem) { .md\:text-zinc-700 { color: #404040; } }
.bg-zinc-700 { background-color: #404040; }
.hover\:bg-zinc-700:hover { background-color: #404040; }
.dark .dark\:bg-zinc-700 { background-color: #404040; }
@media (min-width: 40rem) { .sm\:bg-zinc-700 { background-color: #404040; } }
@media (min-width: 64rem) { .lg\:bg-zinc-700 { background-color: #404040; } }
@media (min-width: 48rem) { .md\:bg-zinc-700 { background-color: #404040; } }
.border-zinc-700 { border-color: #404040; }
.hover\:border-zinc-700:hover { border-color: #404040; }
.dark .dark\:border-zinc-700 { border-color: #404040; }
@media (min-width: 40rem) { .sm\:border-zinc-700 { border-color: #404040; } }
@media (min-width: 64rem) { .lg\:border-zinc-700 { border-color: #404040; } }
@media (min-width: 48rem) { .md\:border-zinc-700 { border-color: #404040; } }
.divide-zinc-700 {  }
.divide-zinc-700 > * + * { border-color: #404040; }
.dark .dark\:divide-zinc-700 > * + * { border-color: #404040; }
.text-zinc-800 { color: #262626; }
.hover\:text-zinc-800:hover { color: #262626; }
.dark .dark\:text-zinc-800 { color: #262626; }
@media (min-width: 40rem) { .sm\:text-zinc-800 { color: #262626; } }
@media (min-width: 64rem) { .lg\:text-zinc-800 { color: #262626; } }
@media (min-width: 48rem) { .md\:text-zinc-800 { color: #262626; } }
.bg-zinc-800 { background-color: #262626; }
.hover\:bg-zinc-800:hover { background-color: #262626; }
.dark .dark\:bg-zinc-800 { background-color: #262626; }
@media (min-width: 40rem) { .sm\:bg-zinc-800 { background-color: #262626; } }
@media (min-width: 64rem) { .lg\:bg-zinc-800 { background-color: #262626; } }
@media (min-width: 48rem) { .md\:bg-zinc-800 { background-color: #262626; } }
.border-zinc-800 { border-color: #262626; }
.hover\:border-zinc-800:hover { border-color: #262626; }
.dark .dark\:border-zinc-800 { border-color: #262626; }
@media (min-width: 40rem) { .sm\:border-zinc-800 { border-color: #262626; } }
@media (min-width: 64rem) { .lg\:border-zinc-800 { border-color: #262626; } }
@media (min-width: 48rem) { .md\:border-zinc-800 { border-color: #262626; } }
.divide-zinc-800 {  }
.divide-zinc-800 > * + * { border-color: #262626; }
.dark .dark\:divide-zinc-800 > * + * { border-color: #262626; }
.text-zinc-900 { color: #171717; }
.hover\:text-zinc-900:hover { color: #171717; }
.dark .dark\:text-zinc-900 { color: #171717; }
@media (min-width: 40rem) { .sm\:text-zinc-900 { color: #171717; } }
@media (min-width: 64rem) { .lg\:text-zinc-900 { color: #171717; } }
@media (min-width: 48rem) { .md\:text-zinc-900 { color: #171717; } }
.bg-zinc-900 { background-color: #171717; }
.hover\:bg-zinc-900:hover { background-color: #171717; }
.dark .dark\:bg-zinc-900 { background-color: #171717; }
@media (min-width: 40rem) { .sm\:bg-zinc-900 { background-color: #171717; } }
@media (min-width: 64rem) { .lg\:bg-zinc-900 { background-color: #171717; } }
@media (min-width: 48rem) { .md\:bg-zinc-900 { background-color: #171717; } }
.border-zinc-900 { border-color: #171717; }
.hover\:border-zinc-900:hover { border-color: #171717; }
.dark .dark\:border-zinc-900 { border-color: #171717; }
@media (min-width: 40rem) { .sm\:border-zinc-900 { border-color: #171717; } }
@media (min-width: 64rem) { .lg\:border-zinc-900 { border-color: #171717; } }
@media (min-width: 48rem) { .md\:border-zinc-900 { border-color: #171717; } }
.divide-zinc-900 {  }
.divide-zinc-900 > * + * { border-color: #171717; }
.dark .dark\:divide-zinc-900 > * + * { border-color: #171717; }
.text-zinc-950 { color: #0a0a0a; }
.hover\:text-zinc-950:hover { color: #0a0a0a; }
.dark .dark\:text-zinc-950 { color: #0a0a0a; }
@media (min-width: 40rem) { .sm\:text-zinc-950 { color: #0a0a0a; } }
@media (min-width: 64rem) { .lg\:text-zinc-950 { color: #0a0a0a; } }
@media (min-width: 48rem) { .md\:text-zinc-950 { color: #0a0a0a; } }
.bg-zinc-950 { background-color: #0a0a0a; }
.hover\:bg-zinc-950:hover { background-color: #0a0a0a; }
.dark .dark\:bg-zinc-950 { background-color: #0a0a0a; }
@media (min-width: 40rem) { .sm\:bg-zinc-950 { background-color: #0a0a0a; } }
@media (min-width: 64rem) { .lg\:bg-zinc-950 { background-color: #0a0a0a; } }
@media (min-width: 48rem) { .md\:bg-zinc-950 { background-color: #0a0a0a; } }
.border-zinc-950 { border-color: #0a0a0a; }
.hover\:border-zinc-950:hover { border-color: #0a0a0a; }
.dark .dark\:border-zinc-950 { border-color: #0a0a0a; }
@media (min-width: 40rem) { .sm\:border-zinc-950 { border-color: #0a0a0a; } }
@media (min-width: 64rem) { .lg\:border-zinc-950 { border-color: #0a0a0a; } }
@media (min-width: 48rem) { .md\:border-zinc-950 { border-color: #0a0a0a; } }
.divide-zinc-950 {  }
.divide-zinc-950 > * + * { border-color: #0a0a0a; }
.dark .dark\:divide-zinc-950 > * + * { border-color: #0a0a0a; }
.text-white { color: #ffffff; }
.hover\:text-white:hover { color: #ffffff; }
.dark .dark\:text-white { color: #ffffff; }
@media (min-width: 40rem) { .sm\:text-white { color: #ffffff; } }
@media (min-width: 64rem) { .lg\:text-white { color: #ffffff; } }
@media (min-width: 48rem) { .md\:text-white { color: #ffffff; } }
.bg-white { background-color: #ffffff; }
.hover\:bg-white:hover { background-color: #ffffff; }
.dark .dark\:bg-white { background-color: #ffffff; }
@media (min-width: 40rem) { .sm\:bg-white { background-color: #ffffff; } }
@media (min-width: 64rem) { .lg\:bg-white { background-color: #ffffff; } }
@media (min-width: 48rem) { .md\:bg-white { background-color: #ffffff; } }
.text-black { color: #000000; }
.hover\:text-black:hover { color: #000000; }
.dark .dark\:text-black { color: #000000; }
@media (min-width: 40rem) { .sm\:text-black { color: #000000; } }
@media (min-width: 64rem) { .lg\:text-black { color: #000000; } }
@media (min-width: 48rem) { .md\:text-black { color: #000000; } }
.bg-black { background-color: #000000; }
.hover\:bg-black:hover { background-color: #000000; }
.dark .dark\:bg-black { background-color: #000000; }
@media (min-width: 40rem) { .sm\:bg-black { background-color: #000000; } }
@media (min-width: 64rem) { .lg\:bg-black { background-color: #000000; } }
@media (min-width: 48rem) { .md\:bg-black { background-color: #000000; } }
.text-red-600 { color: #dc2626; }
.hover\:text-red-600:hover { color: #dc2626; }
.dark .dark\:text-red-600 { color: #dc2626; }
@media (min-width: 40rem) { .sm\:text-red-600 { color: #dc2626; } }
@media (min-width: 64rem) { .lg\:text-red-600 { color: #dc2626; } }
@media (min-width: 48rem) { .md\:text-red-600 { color: #dc2626; } }
.text-red-400 { color: #f87171; }
.hover\:text-red-400:hover { color: #f87171; }
.dark .dark\:text-red-400 { color: #f87171; }
@media (min-width: 40rem) { .sm\:text-red-400 { color: #f87171; } }
@media (min-width: 64rem) { .lg\:text-red-400 { color: #f87171; } }
@media (min-width: 48rem) { .md\:text-red-400 { color: #f87171; } }
.text-green-600 { color: #16a34a; }
.dark .dark\:text-green-400 { color: #4ade80; }
.fill-current { fill: currentColor; }
.placeholder\:text-zinc-400::placeholder { color: #a3a3a3; }
/* ================= Borders / Radius / Shadow ================= */
.border { border-width: 1px; border-style: solid; border-color: var(--border-default); }
.border-t { border-top-width: 1px; border-top-style: solid; border-color: var(--border-default); }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; border-color: var(--border-default); }
.border-e { border-inline-end-width: 1px; border-inline-end-style: solid; border-color: var(--border-default); }
.rounded-sm { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }
.shadow-xs { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
/* ================= Position / Layout ================= */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.fixed { position: fixed; }
.inset-0 { inset: 0px; }
.top-0 { top: 0px; }
.start-0 { inset-inline-start: 0px; }
.end-0 { inset-inline-end: 0px; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.object-cover { object-fit: cover; }
.cursor-pointer { cursor: pointer; }
.transition { transition-property: color, background-color, border-color, opacity, box-shadow, transform; transition-duration: 150ms; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }
/* ================= Focus / Hover misc ================= */
.focus\:border-zinc-500:focus { border-color: #737373; }
.focus\:outline-none:focus { outline: none; }
.hover\:underline:hover { text-decoration-line: underline; }
