:root {
    color-scheme: light dark;
}

html {
    text-rendering: optimizeLegibility;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.vh-site-body {
    background:
        linear-gradient(rgba(39, 39, 42, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(39, 39, 42, 0.035) 1px, transparent 1px),
        #f7f7f2;
    background-size: 28px 28px, 28px 28px, auto;
}

.dark .vh-site-body {
    background:
        linear-gradient(rgba(244, 244, 245, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 244, 245, 0.035) 1px, transparent 1px),
        #09090b;
    background-size: 28px 28px, 28px 28px, auto;
}

.vh-site-header {
    border-bottom: 1px solid rgba(39, 39, 42, 0.08);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 45px rgba(39, 39, 42, 0.06);
}

.vh-footer {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
}

.dark .vh-footer {
    background: rgba(9, 9, 11, 0.86);
}

.dark .vh-site-header {
    border-bottom-color: rgba(244, 244, 245, 0.08);
    background: rgba(9, 9, 11, 0.86);
    box-shadow: none;
}

.vh-brand-mark {
    border: 1px solid rgba(37, 99, 235, 0.24);
    border-radius: 8px;
    background: #2563eb;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2);
}

.vh-nav-link {
    border-radius: 8px;
    color: #52525b;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.vh-nav-link:hover {
    background: rgba(37, 99, 235, 0.08);
    color: #18181b;
    transform: translateY(-1px);
}

.dark .vh-nav-link {
    color: #d4d4d8;
}

.dark .vh-nav-link:hover {
    background: rgba(59, 130, 246, 0.14);
    color: #ffffff;
}

.vh-nav-group {
    position: relative;
}

.vh-nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.vh-nav-trigger svg {
    transition: transform 180ms ease;
}

.vh-nav-group:hover .vh-nav-trigger svg,
.vh-nav-group:focus-within .vh-nav-trigger svg {
    transform: rotate(180deg);
}

.vh-nav-dropdown {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    z-index: 50;
    display: grid;
    width: 24rem;
    gap: 0.55rem;
    visibility: hidden;
    border: 1px solid rgba(39, 39, 42, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    padding: 0.85rem;
    box-shadow: 0 24px 60px rgba(39, 39, 42, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.vh-nav-dropdown::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 0.65rem;
    content: "";
}

.vh-nav-dropdown-compact {
    width: 18rem;
}

.vh-nav-group:hover .vh-nav-dropdown,
.vh-nav-group:focus-within .vh-nav-dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.vh-nav-menu-label,
.vh-mobile-submenu-label {
    color: #71717a;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0;
}

.vh-nav-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
}

.vh-nav-dropdown-item {
    display: flex;
    min-height: 2.25rem;
    align-items: center;
    border-radius: 8px;
    padding: 0.55rem 0.65rem;
    color: #3f3f46;
    font-size: 0.86rem;
    font-weight: 750;
    transition: background-color 180ms ease, color 180ms ease;
}

.vh-nav-dropdown-item:hover,
.vh-nav-dropdown-item:focus-visible {
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    outline: none;
}

.vh-nav-dropdown-primary {
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
}

.vh-mobile-submenu {
    display: grid;
    gap: 0.55rem;
    border: 1px solid rgba(39, 39, 42, 0.08);
    border-radius: 8px;
    background: rgba(244, 244, 245, 0.72);
    padding: 0.75rem;
}

.vh-mobile-submenu-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.vh-mobile-submenu-grid a {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    padding: 0.42rem 0.6rem;
    color: #3f3f46;
    font-size: 0.82rem;
    font-weight: 800;
    transition: background-color 180ms ease, color 180ms ease;
}

.vh-mobile-submenu-grid a:hover,
.vh-mobile-submenu-grid a:focus-visible {
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    outline: none;
}

.dark .vh-nav-dropdown {
    border-color: rgba(244, 244, 245, 0.1);
    background: rgba(24, 24, 27, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.dark .vh-nav-menu-label,
.dark .vh-mobile-submenu-label {
    color: #a1a1aa;
}

.dark .vh-nav-dropdown-item {
    color: #e4e4e7;
}

.dark .vh-nav-dropdown-item:hover,
.dark .vh-nav-dropdown-item:focus-visible {
    background: rgba(59, 130, 246, 0.16);
    color: #bfdbfe;
}

.dark .vh-nav-dropdown-primary {
    background: rgba(59, 130, 246, 0.16);
    color: #bfdbfe;
}

.dark .vh-mobile-submenu {
    border-color: rgba(244, 244, 245, 0.1);
    background: rgba(24, 24, 27, 0.84);
}

.dark .vh-mobile-submenu-grid a {
    background: rgba(9, 9, 11, 0.86);
    color: #e4e4e7;
}

.dark .vh-mobile-submenu-grid a:hover,
.dark .vh-mobile-submenu-grid a:focus-visible {
    background: rgba(59, 130, 246, 0.16);
    color: #bfdbfe;
}

.vh-section {
    background: rgba(255, 255, 255, 0.72);
}

.dark .vh-section {
    background: rgba(9, 9, 11, 0.72);
}

.vh-section-muted {
    border-block: 1px solid rgba(39, 39, 42, 0.08);
    background: rgba(244, 244, 245, 0.78);
}

.dark .vh-section-muted {
    border-block-color: rgba(244, 244, 245, 0.08);
    background: rgba(24, 24, 27, 0.72);
}

.vh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.07);
    padding: 0.35rem 0.7rem;
    color: #1d4ed8;
    font-size: 0.78rem;
    font-weight: 800;
}

.dark .vh-eyebrow {
    border-color: rgba(96, 165, 250, 0.24);
    background: rgba(59, 130, 246, 0.14);
    color: #bfdbfe;
}

.vh-title {
    letter-spacing: 0;
    color: #18181b;
}

.dark .vh-title {
    color: #ffffff;
}

.vh-lead {
    color: #52525b;
}

.dark .vh-lead {
    color: #d4d4d8;
}

.vh-button {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 8px;
    padding: 0.72rem 1rem;
    font-weight: 800;
    line-height: 1;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.vh-button:hover {
    transform: translateY(-1px);
}

.vh-button-primary {
    border: 1px solid #1d4ed8;
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
}

.vh-button-primary:hover {
    background: #1d4ed8;
}

.vh-button-secondary {
    border: 1px solid rgba(39, 39, 42, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: #27272a;
}

.vh-button-secondary:hover {
    border-color: rgba(37, 99, 235, 0.28);
    color: #1d4ed8;
}

.dark .vh-button-secondary {
    border-color: rgba(244, 244, 245, 0.12);
    background: rgba(24, 24, 27, 0.9);
    color: #f4f4f5;
}

.dark .vh-button-secondary:hover {
    border-color: rgba(96, 165, 250, 0.36);
    color: #bfdbfe;
}

.vh-panel,
.vh-card,
.vh-form {
    border: 1px solid rgba(39, 39, 42, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 42px rgba(39, 39, 42, 0.08);
}

.vh-form-flat {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.dark .vh-form-flat {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.dark .vh-panel,
.dark .vh-card,
.dark .vh-form {
    border-color: rgba(244, 244, 245, 0.1);
    background: rgba(24, 24, 27, 0.9);
    box-shadow: none;
}

.dark .vh-form.vh-form-flat {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.vh-card {
    overflow: hidden;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.vh-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 22px 50px rgba(37, 99, 235, 0.12);
    transform: translateY(-3px);
}

.vh-work-gallery-shell {
    width: 100%;
    max-width: 100rem;
}

.vh-work-masonry {
    column-count: 1;
    column-gap: 1rem;
}

.vh-work-masonry > .vh-card {
    display: inline-block;
    width: 100%;
    margin-bottom: 1rem;
    break-inside: avoid;
}

.vh-infinite-loader {
    display: flex;
    min-height: 5rem;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #71717a;
    font-size: 0.875rem;
}

.dark .vh-infinite-loader {
    color: #a1a1aa;
}

@media (min-width: 40rem) {
    .vh-work-masonry {
        column-count: 2;
    }
}

@media (min-width: 48rem) {
    .vh-work-masonry {
        column-count: 3;
    }
}

@media (min-width: 64rem) {
    .vh-work-masonry {
        column-count: 5;
    }
}

@media (min-width: 96rem) {
    .vh-work-masonry {
        column-count: 6;
        column-gap: 1.25rem;
    }

    .vh-work-masonry > .vh-card {
        margin-bottom: 1.25rem;
    }
}

.vh-panel.shadow-none {
    box-shadow: none;
}

.dark .vh-card:hover {
    border-color: rgba(96, 165, 250, 0.35);
    box-shadow: none;
}

.vh-image {
    border-radius: 8px;
    border: 1px solid rgba(39, 39, 42, 0.1);
}

.dark .vh-image {
    border-color: rgba(244, 244, 245, 0.1);
}

.vh-stat {
    border: 1px solid rgba(39, 39, 42, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    padding: 1rem;
}

.dark .vh-stat {
    border-color: rgba(244, 244, 245, 0.1);
    background: rgba(24, 24, 27, 0.82);
}

.vh-filter {
    border-radius: 8px;
    padding: 1rem;
}

.vh-filter-groups {
    align-items: start;
}

.vh-filter-group {
    display: grid;
    gap: 0.75rem;
}

.vh-filter-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    color: #52525b;
    font-size: 0.86rem;
    font-weight: 900;
}

.vh-filter-heading span:last-child:not(:first-child) {
    color: #1d4ed8;
    font-size: 0.78rem;
}

.vh-filter-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.vh-filter-chip {
    display: inline-flex;
    min-height: 2.15rem;
    align-items: center;
    border: 1px solid rgba(39, 39, 42, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    padding: 0.48rem 0.72rem;
    color: #3f3f46;
    font-size: 0.86rem;
    font-weight: 800;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.vh-filter-chip:hover,
.vh-filter-chip:focus-visible,
.vh-filter-chip.is-active {
    border-color: rgba(37, 99, 235, 0.28);
    background: rgba(37, 99, 235, 0.09);
    color: #1d4ed8;
    outline: none;
}

.vh-filter-chip:hover {
    transform: translateY(-1px);
}

.vh-form input:not([type="checkbox"]):not([type="radio"]),
.vh-form select,
.vh-form textarea,
.vh-filter input,
.vh-filter select {
    border: 1px solid rgba(39, 39, 42, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    color: #18181b;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.vh-form input:not([type="checkbox"]):not([type="radio"]):focus,
.vh-form select:focus,
.vh-form textarea:focus,
.vh-filter input:focus,
.vh-filter select:focus {
    border-color: rgba(37, 99, 235, 0.65);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.dark .vh-form input:not([type="checkbox"]):not([type="radio"]),
.dark .vh-form select,
.dark .vh-form textarea,
.dark .vh-filter input,
.dark .vh-filter select {
    border-color: rgba(244, 244, 245, 0.12);
    background: rgba(9, 9, 11, 0.86);
    color: #f4f4f5;
}

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

.vh-rich-editor {
    overflow: hidden;
    border: 1px solid rgba(39, 39, 42, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    font-weight: 400;
}

.vh-rich-editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    border-bottom: 1px solid rgba(39, 39, 42, 0.1);
    background: rgba(244, 244, 245, 0.72);
    padding: 0.5rem;
}

.vh-rich-editor-button {
    display: inline-flex;
    width: 2.25rem;
    height: 2.25rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(39, 39, 42, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: #3f3f46;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.vh-rich-editor-button:hover,
.vh-rich-editor-button:focus-visible {
    border-color: rgba(37, 99, 235, 0.35);
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    outline: none;
    transform: translateY(-1px);
}

.vh-rich-editor-button:disabled {
    cursor: wait;
    opacity: 0.58;
    transform: none;
}

.vh-rich-editor-area {
    min-height: 17rem;
    padding: 1rem;
    color: #18181b;
    font-size: 1rem;
    line-height: 1.8;
    outline: none;
}

.vh-rich-editor-area:focus {
    box-shadow: inset 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.vh-rich-editor-area img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border: 1px solid rgba(39, 39, 42, 0.1);
    border-radius: 8px;
}

.vh-rich-editor-area p,
.vh-rich-editor-area div,
.vh-rich-editor-area ul,
.vh-rich-editor-area ol,
.vh-rich-editor-area blockquote,
.vh-rich-editor-area pre {
    margin: 0.85rem 0;
}

.vh-rich-editor-area ul,
.vh-rich-editor-area ol {
    padding-left: 1.35rem;
}

.vh-rich-editor-area ul {
    list-style: disc;
}

.vh-rich-editor-area ol {
    list-style: decimal;
}

.vh-rich-editor-area blockquote {
    border-left: 3px solid rgba(37, 99, 235, 0.45);
    padding-left: 1rem;
    color: #52525b;
}

.vh-rich-editor-area a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.vh-rich-editor-area h2 {
    margin: 1.2rem 0 0.75rem;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.35;
}

.vh-rich-editor-status {
    display: block;
    min-height: 1.9rem;
    border-top: 1px solid rgba(39, 39, 42, 0.08);
    padding: 0.45rem 0.75rem;
    color: #71717a;
    font-size: 0.78rem;
    font-weight: 700;
}

.dark .vh-rich-editor {
    border-color: rgba(244, 244, 245, 0.12);
    background: rgba(9, 9, 11, 0.86);
}

.dark .vh-rich-editor-toolbar {
    border-bottom-color: rgba(244, 244, 245, 0.1);
    background: rgba(24, 24, 27, 0.86);
}

.dark .vh-rich-editor-button {
    border-color: rgba(244, 244, 245, 0.12);
    background: rgba(9, 9, 11, 0.72);
    color: #e4e4e7;
}

.dark .vh-rich-editor-button:hover,
.dark .vh-rich-editor-button:focus-visible {
    border-color: rgba(96, 165, 250, 0.36);
    background: rgba(59, 130, 246, 0.16);
    color: #bfdbfe;
}

.dark .vh-rich-editor-area {
    color: #f4f4f5;
}

.dark .vh-rich-editor-area img {
    border-color: rgba(244, 244, 245, 0.12);
}

.dark .vh-rich-editor-area blockquote {
    border-left-color: rgba(96, 165, 250, 0.55);
    color: #d4d4d8;
}

.dark .vh-rich-editor-area a {
    color: #93c5fd;
}

.dark .vh-rich-editor-status {
    border-top-color: rgba(244, 244, 245, 0.1);
    color: #a1a1aa;
}

.dark .vh-filter-heading {
    color: #d4d4d8;
}

.dark .vh-filter-heading span:last-child:not(:first-child) {
    color: #bfdbfe;
}

.dark .vh-filter-chip {
    border-color: rgba(244, 244, 245, 0.12);
    background: rgba(24, 24, 27, 0.84);
    color: #e4e4e7;
}

.dark .vh-filter-chip:hover,
.dark .vh-filter-chip:focus-visible,
.dark .vh-filter-chip.is-active {
    border-color: rgba(96, 165, 250, 0.36);
    background: rgba(59, 130, 246, 0.16);
    color: #bfdbfe;
}

.vh-work-action-button {
    display: grid;
    min-height: 5.75rem;
    align-content: center;
    justify-items: center;
    gap: 0.35rem;
    border: 1px solid rgba(39, 39, 42, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    padding: 0.85rem 0.5rem;
    color: #27272a;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.vh-work-action-button:hover,
.vh-work-action-button:focus-visible {
    border-color: rgba(37, 99, 235, 0.32);
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    outline: none;
    transform: translateY(-1px);
}

.vh-work-action-button:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.dark .vh-work-action-button {
    border-color: rgba(244, 244, 245, 0.12);
    background: rgba(9, 9, 11, 0.72);
    color: #f4f4f5;
}

.dark .vh-work-action-button:hover,
.dark .vh-work-action-button:focus-visible {
    border-color: rgba(96, 165, 250, 0.36);
    background: rgba(59, 130, 246, 0.16);
    color: #bfdbfe;
}

.vh-back-to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 45;
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(37, 99, 235, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    color: #1d4ed8;
    box-shadow: 0 18px 42px rgba(39, 39, 42, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.6rem);
    transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.vh-back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.vh-back-to-top:hover,
.vh-back-to-top:focus-visible {
    border-color: rgba(37, 99, 235, 0.45);
    background: #2563eb;
    color: #ffffff;
    outline: none;
}

.dark .vh-back-to-top {
    border-color: rgba(96, 165, 250, 0.28);
    background: rgba(24, 24, 27, 0.94);
    color: #bfdbfe;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.dark .vh-back-to-top:hover,
.dark .vh-back-to-top:focus-visible {
    border-color: rgba(96, 165, 250, 0.5);
    background: #2563eb;
    color: #ffffff;
}

.vh-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(39, 39, 42, 0.08);
    background: #f4f4f5;
    padding: 0.25rem 0.65rem;
    color: #52525b;
    font-size: 0.75rem;
    font-weight: 800;
}

.dark .vh-tag {
    border-color: rgba(244, 244, 245, 0.1);
    background: #27272a;
    color: #e4e4e7;
}

.vh-site-body .rounded-xl,
.vh-site-body .rounded-2xl,
.vh-site-body .rounded-3xl {
    border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}

.line-clamp-2,
.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
}

.prose-lite {
    line-height: 1.8;
}

.prose-lite p {
    margin: 1rem 0;
}

.prose-lite div,
.prose-lite figure,
.prose-lite blockquote,
.prose-lite ul,
.prose-lite ol {
    margin: 1rem 0;
}

.prose-lite h2,
.prose-lite h3,
.prose-lite h4 {
    margin: 1.5rem 0 0.75rem;
    color: #18181b;
    font-weight: 900;
    line-height: 1.3;
}

.dark .prose-lite h2,
.dark .prose-lite h3,
.dark .prose-lite h4 {
    color: #ffffff;
}

.prose-lite h2 {
    font-size: 1.65rem;
}

.prose-lite h3 {
    font-size: 1.35rem;
}

.prose-lite h4 {
    font-size: 1.12rem;
}

.prose-lite ul,
.prose-lite ol {
    padding-left: 1.35rem;
}

.prose-lite ul {
    list-style: disc;
}

.prose-lite ol {
    list-style: decimal;
}

.prose-lite blockquote {
    border-left: 3px solid rgba(37, 99, 235, 0.45);
    padding-left: 1rem;
    color: #52525b;
}

.dark .prose-lite blockquote {
    border-left-color: rgba(96, 165, 250, 0.55);
    color: #d4d4d8;
}

.prose-lite a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.dark .prose-lite a {
    color: #93c5fd;
}

.prose-lite img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1.25rem 0;
    border: 1px solid rgba(39, 39, 42, 0.1);
    border-radius: 8px;
}

.dark .prose-lite img {
    border-color: rgba(244, 244, 245, 0.12);
}

.prose-lite figcaption {
    margin-top: -0.6rem;
    color: #71717a;
    font-size: 0.88rem;
}

.prose-lite pre,
.prose-lite code {
    border-radius: 0.75rem;
    background: rgb(24 24 27);
    color: rgb(244 244 245);
}

.prose-lite code {
    padding: 0.15rem 0.35rem;
    font-size: 0.9em;
}

.prose-lite pre {
    overflow-x: auto;
    padding: 1rem;
}
