/*! tailwindcss v4.3.0 | MIT License | https://tailwindcss.com */
@layer properties;
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border-width: 0;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.relative {
  position: relative;
}
.static {
  position: static;
}
.container {
  width: 100%;
}
.block {
  display: block;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.table {
  display: table;
}
.text-center {
  text-align: center;
}
.lowercase {
  text-transform: lowercase;
}
.ring {
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + 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);
}
.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, display, content-visibility, overlay, pointer-events;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}
@layer base {
  :root {
    color-scheme: light;
    --bg: #fbfbfa;
    --surface: #ffffff;
    --text: #24211d;
    --muted: #706b64;
    --line: rgba(36, 33, 29, 0.12);
    --accent: #ff7a00;
    --accent-2: #d99a00;
    --shadow: 0 18px 60px rgba(15, 15, 15, 0.08);
  }
  :root.dark {
    color-scheme: dark;
    --bg: #202428;
    --surface: #2b3035;
    --text: #f4f1eb;
    --muted: #b8b1a8;
    --line: rgba(244, 241, 235, 0.13);
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  }
  * {
    box-sizing: border-box;
  }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  h1, h2, h3, p {
    margin-top: 0;
  }
  h1 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 5vw, 2.85rem);
    line-height: 1.12;
  }
  h2 {
    margin-bottom: 8px;
    font-size: 1.45rem;
    line-height: 1.2;
  }
}
@layer components {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 48px;
    padding: 10px 20px;
    background: var(--bg);
    @supports (color: color-mix(in lab, red, red)) {
      background: color-mix(in srgb, var(--bg) 82%, transparent);
    }
    backdrop-filter: saturate(180%) blur(16px);
  }
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
  }
  .brand-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
  }
  .nav {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 0.94rem;
  }
  .nav-link {
    color: var(--muted);
  }
  .nav-link:hover, .nav-link.active {
    color: var(--text);
  }
  .nav-link.active {
    font-weight: 600;
  }
  .icon-button, .theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    min-width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--text);
    cursor: pointer;
  }
  .icon-button {
    border-color: transparent;
  }
  .icon-button:hover, .icon-button.active {
    background: var(--text);
    @supports (color: color-mix(in lab, red, red)) {
      background: color-mix(in srgb, var(--text) 6%, transparent);
    }
    color: var(--text);
  }
  .icon-button:disabled {
    color: var(--muted);
    cursor: default;
    opacity: 0.82;
  }
  .icon-button svg {
    width: 18px;
    height: 18px;
  }
  .theme-toggle:hover {
    background: var(--text);
    @supports (color: color-mix(in lab, red, red)) {
      background: color-mix(in srgb, var(--text) 6%, transparent);
    }
  }
  .theme-icon {
    width: 18px;
    height: 18px;
  }
  .theme-icon svg {
    display: block;
    width: 18px;
    height: 18px;
  }
  .theme-icon-dark {
    display: none;
  }
  :root.dark .theme-icon-light {
    display: none;
  }
  :root.dark .theme-icon-dark {
    display: block;
  }
  .page-shell {
    width: min(100%, 900px);
    margin: 0 auto;
    padding: 48px 24px;
  }
  .home-profile {
    position: relative;
    left: 50%;
    width: min(1200px, calc(100vw - 104px));
    margin: -48px 0 52px;
    text-align: center;
    transform: translateX(-50%);
  }
  .home-cover {
    position: relative;
    width: 100%;
    height: 296px;
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #ddc7cf;
    box-shadow: 2px 2px 8px 4px rgba(15, 15, 15, 0.1);
  }
  .home-cover img {
    display: block;
    width: 118%;
    max-width: none;
    height: 100%;
    margin-left: -1%;
    object-fit: cover;
    object-position: center 66%;
  }
  .home-avatar {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 124px;
    height: 124px;
    padding: 13px;
    margin: -62px auto 28px;
    overflow: hidden;
    border: 8px solid #ffffff;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 20px 52px rgba(15, 15, 15, 0.18);
  }
  .home-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
  }
  .home-intro {
    text-align: center;
    margin: 0 auto;
  }
  .home-intro h1 {
    margin-bottom: 0;
    font-size: clamp(2.25rem, 4vw, 2.65rem);
    line-height: 1.12;
  }
  .hero, .post-header, .empty-state {
    text-align: center;
    margin: 0 auto 42px;
  }
  .post-header h1 {
    margin-top: 12px;
    font-size: clamp(2.05rem, 5vw, 2.85rem);
  }
  .post-header p {
    margin-bottom: 0;
    font-weight: 600;
  }
  .page-header {
    margin-bottom: 34px;
  }
  .eyebrow, time, .back-link {
    color: var(--muted);
    font-size: 0.9rem;
  }
  .post-meta-row {
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  .post-list {
    display: grid;
    gap: 22px;
  }
  .search-view {
    width: min(100%, 720px);
    margin: 0 auto;
  }
  .search-header {
    margin: 0 auto 30px;
    text-align: center;
  }
  .search-form {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 22px;
  }
  .search-form input {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font: inherit;
  }
  .search-form input:focus {
    border-color: var(--accent);
    @supports (color: color-mix(in lab, red, red)) {
      border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
    }
    outline: 2px solid var(--accent);
    @supports (color: color-mix(in lab, red, red)) {
      outline: 2px solid color-mix(in srgb, var(--accent) 18%, transparent);
    }
    outline-offset: 2px;
  }
  .search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 112px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--text);
    color: var(--bg);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
  }
  .search-submit:hover {
    background: var(--text);
    @supports (color: color-mix(in lab, red, red)) {
      background: color-mix(in srgb, var(--text) 92%, var(--bg));
    }
  }
  .search-submit svg {
    width: 17px;
    height: 17px;
  }
  .search-results-region {
    min-height: 84px;
    transition: opacity 160ms ease;
  }
  .search-results-region.is-loading {
    opacity: 0.55;
  }
  .search-empty, .search-count {
    color: var(--muted);
    text-align: center;
  }
  .search-results {
    display: grid;
    gap: 14px;
    margin-top: 22px;
  }
  .search-result {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
  }
  .search-result-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.84rem;
    text-transform: capitalize;
  }
  .search-result h2 {
    margin-bottom: 8px;
    font-size: 1.25rem;
  }
  .search-result h2 a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .search-result p {
    margin-bottom: 0;
    color: var(--muted);
  }
  .post-card {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .post-card-featured {
    border-color: var(--accent);
    @supports (color: color-mix(in lab, red, red)) {
      border-color: color-mix(in srgb, var(--accent) 28%, var(--line));
    }
  }
  .post-card-body {
    min-width: 0;
  }
  .post-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
  }
  .featured-pill {
    padding: 2px 7px;
    border: 1px solid var(--accent);
    @supports (color: color-mix(in lab, red, red)) {
      border: 1px solid color-mix(in srgb, var(--accent) 32%, var(--line));
    }
    border-radius: 999px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.3;
  }
  .post-card h2 a, .prose a {
    background-image: linear-gradient(90.68deg, var(--accent) 0.26%, var(--accent-2) 102.37%);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 0.1rem;
    border-bottom: 0.1rem solid var(--line);
    transition: background-size 180ms ease-out, border-color 180ms ease-out;
  }
  .post-card h2 a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .card-icon {
    display: inline-flex;
    line-height: 1;
  }
  .card-icon-image {
    width: 22px;
    height: 22px;
    object-fit: cover;
    border-radius: 4px;
  }
  .post-card-cover {
    align-self: stretch;
    width: 150px;
    min-height: 100px;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 8px;
  }
  .post-card h2 a:hover, .prose a:hover {
    background-size: 100% 0.1rem;
    border-color: transparent;
  }
  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 14px 0 0;
    list-style: none;
  }
  .tags li {
    border-radius: 999px;
    background: var(--accent);
    @supports (color: color-mix(in lab, red, red)) {
      background: color-mix(in srgb, var(--accent) 12%, var(--surface));
    }
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.3;
  }
  .tags a {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: inherit;
  }
  .tags a:hover {
    background: var(--accent);
    @supports (color: color-mix(in lab, red, red)) {
      background: color-mix(in srgb, var(--accent) 14%, transparent);
    }
    color: var(--text);
  }
  .tag-index, .tag-page {
    width: min(100%, 720px);
    margin: 0 auto;
  }
  .tag-header {
    margin: 0 auto 34px;
    text-align: center;
  }
  .tag-header p:last-child {
    margin-bottom: 0;
    color: var(--muted);
  }
  .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .tag-cloud a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
  }
  .tag-cloud a:hover {
    border-color: var(--accent);
    @supports (color: color-mix(in lab, red, red)) {
      border-color: color-mix(in srgb, var(--accent) 38%, var(--line));
    }
    color: var(--text);
  }
  .tag-cloud span:last-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: var(--text);
    @supports (color: color-mix(in lab, red, red)) {
      background: color-mix(in srgb, var(--text) 8%, transparent);
    }
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
  }
  .post-layout {
    position: relative;
    left: 50%;
    display: grid;
    grid-template-columns: minmax(0, 720px) 220px;
    gap: 46px;
    align-items: start;
    width: min(calc(100vw - 48px), 986px);
    margin: 0;
    transform: translateX(-50%);
  }
  .post {
    width: 100%;
    margin: 0 auto;
    min-width: 0;
  }
  .post-header .tags {
    justify-content: center;
  }
  .toc-panel {
    position: sticky;
    top: 76px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    padding-top: 6px;
  }
  .toc-inner {
    padding-left: 18px;
    border-left: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.86rem;
  }
  .toc-inner > p {
    margin-bottom: 10px;
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
  }
  .toc-inner nav {
    display: grid;
    gap: 6px;
  }
  .toc-link {
    display: block;
    border-radius: 6px;
    color: var(--muted);
    line-height: 1.35;
  }
  .toc-link:hover {
    color: var(--text);
  }
  .toc-level-2 {
    padding-left: 12px;
  }
  .toc-level-3 {
    padding-left: 24px;
    font-size: 0.82rem;
  }
  .toc-panel::-webkit-scrollbar {
    width: 4px;
  }
  .page-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--muted);
  }
  .page-icon-text {
    font-size: 3.45rem;
    line-height: 1;
    filter: grayscale(1);
    opacity: 0.72;
  }
  .page-icon-image {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
  }
  .post-cover {
    display: block;
    width: 100%;
    max-height: 320px;
    margin: -12px auto 36px;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 8px;
  }
  .prose {
    font-size: 1rem;
    line-height: 1.7;
  }
  .prose > * + * {
    margin-top: 1.1em;
  }
  .prose h1, .prose h2, .prose h3 {
    scroll-margin-top: 82px;
  }
  .prose h1 {
    margin-top: 2em;
    margin-bottom: 18px;
    color: #d99a00;
    font-size: clamp(1.75rem, 4vw, 2rem);
    line-height: 1.2;
  }
  .prose h2, .prose h3 {
    margin-top: 1.9em;
  }
  .prose h2 {
    font-size: 1.55rem;
  }
  .prose h3 {
    font-size: 1.25rem;
  }
  .prose ul, .prose ol {
    padding-left: 1.35rem;
  }
  .prose ul.contains-task-list {
    padding-left: 0;
    list-style: none;
  }
  .prose li + li {
    margin-top: 0.3rem;
  }
  .prose li > p {
    margin-bottom: 0.45rem;
  }
  .prose dl {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
  }
  .prose dt {
    font-weight: 800;
  }
  .prose dd {
    margin: 0 0 8px;
    color: var(--muted);
  }
  .prose hr {
    margin: 28px 0;
    border: 0;
    border-top: 1px solid var(--line);
  }
  .prose blockquote {
    margin: 28px 0;
    padding: 2px 18px;
    border-left: 4px solid #67bdfc;
    color: var(--muted);
    font-size: 1.02rem;
  }
  .prose blockquote.callout {
    position: relative;
    padding: 16px 18px 16px 20px;
    border: 1px solid var(--line);
    border-left: 4px solid #67bdfc;
    border-radius: 8px;
    background: #67bdfc;
    @supports (color: color-mix(in lab, red, red)) {
      background: color-mix(in srgb, #67bdfc 7%, var(--surface));
    }
    color: var(--text);
  }
  .prose blockquote.callout::before {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    content: attr(data-callout);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.3;
  }
  .prose blockquote.callout p:last-child {
    margin-bottom: 0;
  }
  .prose blockquote.callout-note {
    border-left-color: #67bdfc;
  }
  .prose blockquote.callout-tip {
    border-left-color: #4fb477;
    background: #4fb477;
    @supports (color: color-mix(in lab, red, red)) {
      background: color-mix(in srgb, #4fb477 7%, var(--surface));
    }
  }
  .prose blockquote.callout-important {
    border-left-color: #ff7a00;
    background: #ff7a00;
    @supports (color: color-mix(in lab, red, red)) {
      background: color-mix(in srgb, #ff7a00 8%, var(--surface));
    }
  }
  .prose blockquote.callout-warning, .prose blockquote.callout-caution {
    border-left-color: #d99a00;
    background: #d99a00;
    @supports (color: color-mix(in lab, red, red)) {
      background: color-mix(in srgb, #d99a00 9%, var(--surface));
    }
  }
  .prose code {
    padding: 0.18em 0.38em;
    border-radius: 6px;
    background: var(--text);
    @supports (color: color-mix(in lab, red, red)) {
      background: color-mix(in srgb, var(--text) 9%, transparent);
    }
    color: #ff7a00;
  }
  .prose pre {
    overflow-x: auto;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    font-size: 0.92rem;
    line-height: 1.65;
  }
  .prose pre code {
    padding: 0;
    background: transparent;
    color: inherit;
  }
  .prose pre, .prose table, .prose img {
    box-shadow: 0 8px 28px rgba(15, 15, 15, 0.05);
  }
  .prose table {
    display: block;
    width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
    font-size: 0.94rem;
  }
  .prose tbody tr:nth-child(2n) {
    background: var(--text);
    @supports (color: color-mix(in lab, red, red)) {
      background: color-mix(in srgb, var(--text) 3%, transparent);
    }
  }
  .prose th, .prose td {
    padding: 9px 12px;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
  }
  .prose th {
    background: var(--text);
    @supports (color: color-mix(in lab, red, red)) {
      background: color-mix(in srgb, var(--text) 5%, transparent);
    }
    font-weight: 700;
  }
  .prose img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 28px auto;
    border: 1px solid var(--line);
    border-radius: 8px;
  }
  .prose .media-block {
    margin: 30px 0;
  }
  .prose .media-block img {
    margin: 0 auto;
  }
  .prose input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    vertical-align: -0.13rem;
    accent-color: var(--accent);
  }
  .prose sup a {
    border-bottom: 0;
    color: var(--accent);
  }
  .prose .footnotes {
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
  }
  .button-link {
    display: inline-flex;
    margin-top: 12px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
  }
  .error-image {
    display: block;
    width: min(100%, 640px);
    margin: 28px auto 8px;
  }
  .site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    width: min(100%, 1100px);
    margin: 0 auto;
    padding: 28px 24px 40px;
    color: var(--muted);
    font-size: 0.92rem;
  }
  .site-footer > span {
    justify-self: start;
  }
  .footer-theme-toggle {
    justify-self: center;
    border-color: transparent;
  }
  .footer-socials {
    display: flex;
    justify-self: end;
    gap: 16px;
  }
  .social-link {
    display: inline-flex;
    color: var(--text);
  }
  .social-link svg {
    width: 28px;
    height: 28px;
  }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  @media (max-width: 1200px) {
    .home-profile {
      width: 100vw;
    }
    .home-cover {
      border-radius: 0;
    }
  }
  @media (max-width: 1080px) {
    .post-layout {
      left: auto;
      display: flex;
      flex-direction: column;
      width: min(100%, 720px);
      margin: 0 auto;
      transform: none;
    }
    .toc-panel {
      order: -1;
      position: relative;
      top: auto;
      width: 100%;
      max-height: none;
      margin-bottom: 28px;
      padding-top: 0;
      overflow: visible;
    }
    .toc-inner {
      padding: 16px 18px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--surface);
    }
    .toc-inner nav {
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 8px 14px;
    }
  }
  @media (max-width: 680px) {
    .post-card, .post-card-meta {
      flex-direction: column;
      align-items: flex-start;
    }
    .post-card-cover {
      width: 100%;
      max-height: 180px;
    }
    .site-header {
      align-items: center;
      gap: 12px;
      padding-inline: 14px;
    }
    .brand span {
      max-width: 44vw;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .nav {
      gap: 10px;
      font-size: 0.88rem;
    }
    .search-form {
      flex-direction: column;
    }
    .search-submit {
      width: 100%;
    }
    .page-shell {
      padding-top: 36px;
    }
    .home-profile {
      margin-top: -36px;
      margin-bottom: 40px;
    }
    .home-cover {
      height: 220px;
    }
    .home-avatar {
      width: 108px;
      height: 108px;
      padding: 12px;
      margin-top: -54px;
      margin-bottom: 24px;
      border-width: 7px;
    }
    .home-intro h1 {
      font-size: 2.15rem;
    }
    .site-footer {
      grid-template-columns: 1fr auto;
      row-gap: 18px;
    }
    .site-footer > span {
      grid-column: 1;
    }
    .footer-theme-toggle {
      grid-column: 1 / -1;
      grid-row: 2;
      justify-self: center;
    }
    .footer-socials {
      grid-column: 2;
      justify-self: end;
    }
  }
}
@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@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: 0px;
}
@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}
@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
    }
  }
}
