/* [project]/node_modules/.pnpm/highlight.js@11.11.1/node_modules/highlight.js/styles/github-dark.css [app-client] (css) */
pre code.hljs {
  padding: 1em;
  display: block;
  overflow-x: auto;
}

code.hljs {
  padding: 3px 5px;
}

.hljs {
  color: #c9d1d9;
  background: #0d1117;
}

.hljs-doctag, .hljs-keyword, .hljs-meta .hljs-keyword, .hljs-template-tag, .hljs-template-variable, .hljs-type, .hljs-variable.language_ {
  color: #ff7b72;
}

.hljs-title, .hljs-title.class_, .hljs-title.class_.inherited__, .hljs-title.function_ {
  color: #d2a8ff;
}

.hljs-attr, .hljs-attribute, .hljs-literal, .hljs-meta, .hljs-number, .hljs-operator, .hljs-variable, .hljs-selector-attr, .hljs-selector-class, .hljs-selector-id {
  color: #79c0ff;
}

.hljs-regexp, .hljs-string, .hljs-meta .hljs-string {
  color: #a5d6ff;
}

.hljs-built_in, .hljs-symbol {
  color: #ffa657;
}

.hljs-comment, .hljs-code, .hljs-formula {
  color: #8b949e;
}

.hljs-name, .hljs-quote, .hljs-selector-tag, .hljs-selector-pseudo {
  color: #7ee787;
}

.hljs-subst {
  color: #c9d1d9;
}

.hljs-section {
  color: #1f6feb;
  font-weight: bold;
}

.hljs-bullet {
  color: #f2cc60;
}

.hljs-emphasis {
  color: #c9d1d9;
  font-style: italic;
}

.hljs-strong {
  color: #c9d1d9;
  font-weight: bold;
}

.hljs-addition {
  color: #aff5b4;
  background-color: #033a16;
}

.hljs-deletion {
  color: #ffdcd7;
  background-color: #67060c;
}

/* [project]/src/app/blogs/[slug]/blog-content.css [app-client] (css) */
.blog-content {
  max-width: 100%;
  overflow-x: hidden;
}

.blog-content h2 {
  color: #fff;
  letter-spacing: -.02em;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  scroll-margin-top: 100px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .blog-content h2 {
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    scroll-margin-top: 80px;
    font-size: 2rem;
  }
}

.blog-content h3 {
  color: #e5e7eb;
  letter-spacing: -.01em;
  margin-top: 2rem;
  margin-bottom: .75rem;
  scroll-margin-top: 100px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .blog-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    scroll-margin-top: 80px;
    font-size: 1.5rem;
  }
}

.blog-content p {
  color: #c9d1d9;
  line-height: 1.85;
  font-size: var(--blog-text-size, 1.125rem);
  margin-bottom: 1.625rem;
  transition: font-size .2s;
}

.blog-content ul, .blog-content ol {
  color: #c9d1d9;
  font-size: var(--blog-text-size, 1.125rem);
  margin-bottom: 1.625rem;
  padding-left: 0;
  list-style: none;
  transition: font-size .2s;
}

.blog-content ul li, .blog-content ol li {
  margin-bottom: .75rem;
  padding-left: 1.75rem;
  line-height: 1.8;
  position: relative;
}

.blog-content ul li:before {
  content: "";
  background: linear-gradient(135deg, #a855f7, #ec4899);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: .7em;
  left: 0;
}

.blog-content ol {
  counter-reset: list-counter;
}

.blog-content ol li {
  counter-increment: list-counter;
}

.blog-content ol li:before {
  content: counter(list-counter);
  color: #a855f7;
  width: 1.25rem;
  font-size: .875em;
  font-weight: 600;
  line-height: 1.7;
  position: absolute;
  top: .15em;
  left: 0;
}

.blog-content strong {
  color: #fff;
  font-weight: 600;
}

.blog-content .font-code {
  font-family: Fira Code, Cascadia Code, Consolas, monospace;
}

.blog-content code {
  color: #e879f9;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: .25rem;
  padding: .2rem .4rem;
  font-family: Fira Code, Cascadia Code, Consolas, monospace;
  font-size: .875em;
  font-weight: 500;
}

.blog-content pre {
  box-shadow: none;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 1rem;
  overflow-x: auto;
  background: none !important;
}

@media (min-width: 640px) {
  .blog-content pre {
    margin: 0;
    padding: 1.5rem;
  }
}

.blog-content pre code {
  color: #e5e7eb;
  box-shadow: none;
  white-space: pre-wrap;
  word-break: break-word;
  background-color: #0000;
  border: none;
  border-radius: 0;
  padding: 0;
  font-family: Fira Code, Cascadia Code, Consolas, monospace;
  font-size: .8rem;
  line-height: 1.5;
  display: block;
}

.blog-content.font-mono code, .blog-content.font-mono pre code, .blog-content.font-mono .font-code {
  font-family: inherit;
}

@media (min-width: 640px) {
  .blog-content pre code {
    font-size: .875rem;
    line-height: 1.5;
  }
}

.blog-content pre code .hljs-comment {
  color: #6b7280;
  font-style: italic;
}

.blog-content pre code .hljs-keyword, .blog-content pre code .hljs-selector-tag, .blog-content pre code .hljs-literal {
  color: #ff79c6;
}

.blog-content pre code .hljs-string {
  color: #a6e22e;
}

.blog-content pre code .hljs-attr {
  color: #f8f8f2;
}

.blog-content pre code .hljs-number, .blog-content pre code .hljs-built_in, .blog-content pre code .hljs-function, .blog-content pre code .hljs-title {
  color: #bd93f9;
}

.blog-content pre code .hljs-variable, .blog-content pre code .hljs-params, .blog-content pre code .hljs-name, .blog-content pre code .hljs-property {
  color: #f8f8f2;
}

.blog-content blockquote {
  color: #d1d5db;
  background: none;
  border-left: 3px solid #a855f7;
  margin: 2rem 0;
  padding: .25rem 0 .25rem 1.25rem;
  font-style: normal;
}

.blog-content blockquote p {
  color: #d1d5db;
  margin-bottom: 0;
}

.blog-content a {
  color: #60a5fa;
  border-bottom: 1px solid #0000;
  text-decoration: none;
  transition: all .2s;
}

.blog-content a:hover {
  color: #93c5fd;
  border-bottom-color: #93c5fd;
}

.blog-content img {
  border: 1px solid #4b55634d;
  border-radius: .75rem;
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
}

.blog-content hr {
  border-color: #4b55634d;
  margin: 3rem 0;
}

.blog-content table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #ffffff14;
  border-radius: .75rem;
  width: 100%;
  min-width: 100%;
  margin: 2rem 0;
  display: table;
  overflow: hidden;
}

.blog-content table thead {
  background: linear-gradient(135deg, #a855f71f, #ec489914);
}

.blog-content table th, .blog-content table td {
  text-align: left;
  border-bottom: 1px solid #ffffff0f;
  padding: .875rem 1rem;
}

.blog-content table th {
  color: #e5e7eb;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .8rem;
  font-weight: 600;
}

.blog-content table td {
  color: #9ca3af;
  font-size: .95rem;
}

.blog-content table tbody tr:last-child td {
  border-bottom: none;
}

.blog-content table tbody tr {
  transition: background .15s;
}

.blog-content table tbody tr:hover {
  background: #ffffff05;
}

@media (max-width: 640px) {
  .blog-content table {
    -webkit-overflow-scrolling: touch;
    display: block;
    overflow-x: auto;
  }

  .blog-content table th, .blog-content table td {
    white-space: nowrap;
    padding: .75rem;
    font-size: .875rem;
  }

  .blog-content table th {
    font-size: .75rem;
  }
}

[data-theme="light"] .blog-content h2 {
  color: #1f2937;
}

[data-theme="light"] .blog-content h3, [data-theme="light"] .blog-content p, [data-theme="light"] .blog-content ul, [data-theme="light"] .blog-content ol {
  color: #374151;
}

[data-theme="light"] .blog-content ul li:before {
  background: linear-gradient(135deg, #7c3aed, #db2777);
}

[data-theme="light"] .blog-content ol li:before {
  color: #7c3aed;
}

[data-theme="light"] .blog-content strong {
  color: #1f2937;
}

[data-theme="light"] .blog-content code {
  color: #9333ea;
  background: #0000000d;
  border: 1px solid #0000001a;
}

[data-theme="light"] .blog-content pre {
  background: #1e293b !important;
  border: none !important;
}

[data-theme="light"] .blog-content pre code {
  color: #e2e8f0;
  background: none !important;
  border: none !important;
}

[data-theme="light"] .blog-content blockquote {
  color: #4b5563;
  background: #7c3aed0d;
  border-left-color: #7c3aed;
}

[data-theme="light"] .blog-content blockquote p {
  color: #4b5563;
}

[data-theme="light"] .blog-content a {
  color: #2563eb;
}

[data-theme="light"] .blog-content a:hover {
  color: #1d4ed8;
  border-bottom-color: #1d4ed8;
}

[data-theme="light"] .blog-content img {
  border: 1px solid #0000001a;
}

[data-theme="light"] .blog-content hr {
  border-color: #0000001a;
}

[data-theme="light"] .blog-content table {
  border: 1px solid #0000001a;
}

[data-theme="light"] .blog-content table thead {
  background: linear-gradient(135deg, #7c3aed1a, #db27770d);
}

[data-theme="light"] .blog-content table th, [data-theme="light"] .blog-content table td {
  border-bottom: 1px solid #0000000f;
}

[data-theme="light"] .blog-content table th {
  color: #374151;
}

[data-theme="light"] .blog-content table td {
  color: #4b5563;
}

[data-theme="light"] .blog-content table tbody tr:hover {
  background: #00000005;
}

/*# sourceMappingURL=_9dd0eb91._.css.map*/