@font-face {
  font-family: ArcaMajora;
  font-weight: 800;
  src: url(/assets/fonts/ArcaMajora3-Bold.woff);
}
@font-face {
  font-family: ArcaMajora;
  font-weight: 900;
  src: url(/assets/fonts/ArcaMajora3-Heavy.woff);
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  src: url(/assets/fonts/inter.woff2);
}
:host, html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: inherit;
  background: var(--gx-bg);
  color: var(--gx-default-fg);
}

input {
  color: var(--gx-default-fg);
}

*, :after, :before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

menu, ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
menu a, ol a, ul a {
  color: var(--gx-nav-fg);
}
menu a:hover, ol a:hover, ul a:hover {
  color: var(--gx-nav-fg-hover);
}

button:hover {
  cursor: pointer;
}

input:focus,
input:focus-visible,
input:active {
  border-color: transparent;
  outline: none;
}

kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}

.list-inline {
  list-style: none;
}
.list-inline .list-inline-item {
  display: inline-block;
  padding-left: 0.5rem;
}
.list-inline .list-inline-item:first-child {
  padding-left: 0;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.flex-column {
  flex-direction: column;
}

/* Text and Alignment */
.align-center {
  align-items: center;
}

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

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

.align-baseline {
  align-items: baseline;
}

.align-stretch {
  align-items: stretch;
}

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

.justify-center {
  justify-content: center;
}

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

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

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.decoration-none {
  text-decoration: none;
}

.decoration-line-through {
  text-decoration: line-through;
}

/* Borders */
.border {
  border: 1px solid var(--gx-border-fg);
}

.border-bottom {
  border-bottom: 1px solid var(--gx-border-fg);
}

.border-left {
  border-left: 1px solid var(--gx-border-fg);
}

.border-right {
  border-right: 1px solid var(--gx-border-fg);
}

.border-top {
  border-top: 1px solid var(--gx-border-fg);
}

.border-0 {
  border: none;
}

.border-top-0 {
  border-top: 0px solid var(--gx-border-fg);
}

.border.hover:hover,
.border-bottom.hover:hover,
.border-left.hover:hover,
.border-right.hover:hover,
.border-top.hover:hover {
  border-color: var(--gx-border-fg-hover);
}

.border-collapse {
  border-collapse: collapse;
}

.b-radius-md {
  border-radius: 0.375rem;
}

.b-radius-1 {
  border-radius: 0.25rem;
}

.b-radius-2 {
  border-radius: 0.5rem;
}

.b-radius-3 {
  border-radius: 0.75rem;
}

.b-radius-4 {
  border-radius: 1rem;
}

.b-radius-5 {
  border-radius: 1.5rem;
}

.b-radius-8 {
  border-radius: 2rem;
}

/* Backgrounds */
.bg-primary {
  background: var(--gx-bg);
}

.bg-secondary {
  background: var(--gx-secondary-bg);
}

.bg-border {
  background: var(--gx-border-fg);
}

.bg-hover:hover {
  background: var(--gx-bg-hover);
}

.transparent {
  background: transparent;
}

/* Colors */
.color-tertiary {
  color: var(--gx-tertiary-fg);
}

.color-secondary {
  color: var(--gx-secondary-fg);
}

.color-primary {
  color: var(--gx-default-fg);
}

.color-nav {
  color: var(--gx-nav-fg);
}

.color-link {
  color: var(--gx-link-fg);
}

.color-link:hover {
  color: var(--gx-link-fg-hover);
}

/* Fonts */
.ff-sans {
  font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.ff-arcamajora {
  font-family: "ArcaMajora", "Inter", ui-sans-serif, system-ui, sans-serif;
}

.lh-normal {
  line-height: normal;
}

.lh-sm, .lh-xs {
  line-height: 1.5rem;
}

/* Font Sizes */
.fs-2 {
  font-size: 0.5rem;
}

.fs-3 {
  font-size: 0.75rem;
}

.fs-xs, .fs-3-4 {
  font-size: 0.875rem;
}

.fs-4 {
  font-size: 1rem;
}

.fs-5 {
  font-size: 1.25rem;
}

.fs-6 {
  font-size: 1.5rem;
}

/* Font Weight */
.fw-semibold {
  font-weight: 600;
}

/* Sizes and Fill */
.fit-content {
  width: fit-content;
}

.fill-available {
  width: -moz-available;
  width: -webkit-fill-available;
  width: fill-available;
}

.h-0 {
  height: 0;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-7 {
  height: 1.75rem;
}

.h-8 {
  height: 2rem;
}

.h-12 {
  height: 3rem;
}

.h-13 {
  height: 3.25rem;
}

.h-14 {
  height: 3.5rem;
}

.h-40 {
  height: 10rem;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.h-full-vh {
  height: 100vh;
}

.h-px {
  height: 1px;
}

.h-min-12 {
  min-height: 3rem;
}

.w-0 {
  width: 0;
}

.w-6 {
  width: 1.5rem;
}

.w-7 {
  width: 1.75rem;
}

.w-8 {
  width: 2rem;
}

.w-40 {
  width: 10rem;
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.w-px {
  width: 1px;
}

.w-min-16 {
  min-width: 4rem;
}

/* Gap */
.gap-0 {
  gap: 0;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-7 {
  gap: 1.75rem;
}

.gap-8 {
  gap: 2rem;
}

/* Visibility */
.flex {
  display: flex;
}

.hidden {
  display: none;
}

.block, .visible {
  display: block;
}

.hidden.flex.visible {
  display: flex;
}

/* Position */
.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.right-4 {
  right: 1rem;
}

.inset-0 {
  inset: 0;
}

/* Margin */
.m-0 {
  margin: 0;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 0.75rem;
}

.m-4 {
  margin: 1rem;
}

.m-5 {
  margin: 1.25rem;
}

.m-6 {
  margin: 1.5rem;
}

.m-7 {
  margin: 1.75rem;
}

.m-8 {
  margin: 2rem;
}

.m-auto {
  margin: auto;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mr-0 {
  margin-right: 0;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mr-7 {
  margin-right: 1.75rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-7 {
  margin-bottom: 1.75rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.ml-0 {
  margin-left: 0;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.ml-4 {
  margin-left: 1rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.ml-7 {
  margin-left: 1.75rem;
}

.ml-8 {
  margin-left: 2rem;
}

.ml-auto {
  margin-left: auto;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mx-7 {
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-7 {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

/* Padding */
.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-7 {
  padding: 1.75rem;
}

.p-8 {
  padding: 2rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-7 {
  padding-top: 1.75rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pt-22 {
  padding-top: 5.5rem;
}

.pr-0 {
  padding-right: 0;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.pr-6 {
  padding-right: 1.5rem;
}

.pr-7 {
  padding-right: 1.75rem;
}

.pr-8 {
  padding-right: 2rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-7 {
  padding-bottom: 1.75rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pl-0 {
  padding-left: 0;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pl-7 {
  padding-left: 1.75rem;
}

.pl-8 {
  padding-left: 2rem;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

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

.px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-7 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.py-8 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

/* Overflow */
.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

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

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

.overflow-y-hidden {
  overflow-y: hidden;
}

/* Misc */
.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-100 {
  opacity: 1;
}

.opacity-100-hover:hover {
  opacity: 1 !important;
}

.pointer {
  cursor: pointer;
}

.index-25 {
  z-index: 25;
}

.index-50 {
  z-index: 50;
}

.index-100 {
  z-index: 100;
}

.truncate, .whitespace-nowrap {
  white-space: nowrap;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
}

.backdrop-blur {
  backdrop-filter: blur(4px);
}

.box-shadow {
  box-shadow: 0px 1px 16px 0px rgba(0, 0, 0, 0.2117647059);
}

/* s >= 576px */
@media (min-width: 576px) {
  .w-s-auto {
    width: auto;
  }
  .px-s-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .gap-s-3 {
    gap: 0.75rem;
  }
  .hidden-s {
    display: none;
  }
  .block-s {
    display: block;
  }
}
/* md - Medium */
@media (max-width: 767px) {
  .w-40-md {
    width: 10rem;
  }
  .w-60-md {
    width: 15rem;
  }
  #left-sidebar {
    position: fixed;
    height: -webkit-fill-available;
    left: -20rem;
  }
  #left-sidebar.show {
    left: 0;
    width: calc(100% - 4rem);
  }
}
@media (min-width: 768px) {
  .w-40-md {
    width: 10rem;
  }
  .w-60-md {
    width: 15rem;
  }
  .block-md {
    display: block;
  }
  .hidden-md {
    display: none;
  }
}
/* l - Large */
@media (max-width: 991px) {
  .w-40-l {
    width: 10rem;
  }
  .w-60-l {
    width: 15rem;
  }
  #left-sidebar {
    position: fixed;
    height: -webkit-fill-available;
    left: -20rem;
  }
  #left-sidebar.show {
    left: 0;
    width: calc(100% - 4rem);
  }
  .grid-layout {
    display: block;
    min-height: 100vh;
  }
  .content {
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .grid-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    min-height: 100vh;
  }
  .w-40-l {
    width: 10rem;
  }
  .w-60-l {
    width: 15rem;
  }
  .block-l {
    display: block;
  }
  .hidden-l {
    display: none;
  }
  .px-l-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .px-l-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .max-w-lg {
    max-width: 28rem;
  }
  main.max-w,
  footer.max-w {
    max-width: 50rem;
  }
  .p-lg-8 {
    padding: 2rem;
  }
  .px-lg-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
/* xl - Extra large */
@media (min-width: 1280px) {
  main.max-w,
  footer.max-w {
    max-width: 62.5rem;
  }
  .w-60-xl {
    width: 15rem;
  }
  .w-80-xl {
    width: 20rem;
  }
}
/* xs < 576px */
@media (max-width: 576px) {
  .px-xs-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .w-xs-8 {
    width: 2rem;
  }
  .w-xs-full {
    width: 100%;
  }
  .p-1 {
    padding: 0.25rem;
  }
  .px-xs-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .mb-xs-4 {
    margin-bottom: 1rem;
  }
  .m-xs-l-auto {
    margin-left: auto;
    margin-right: 0;
  }
  .border-xs-top {
    border-top: 1px solid var(--gx-border-fg);
  }
  .border-xs-transparent {
    border-color: transparent;
  }
  .border-xs-transparent.hover:hover {
    border-color: transparent !important;
  }
  .flex-column-xs {
    flex-direction: column;
  }
  .hidden-xs {
    display: none;
  }
  .block-xs {
    display: block;
  }
  .overflow-xs-hidden {
    overflow: hidden;
  }
}
#left-sidebar {
  background: var(--gx-secondary-bg);
  border-right: 1px solid var(--gx-border-fg);
}
#left-sidebar .site-title {
  font: 800 1.5rem "ArcaMajora";
  color: var(--gx-header-fg);
}

.site-title {
  font: 800 1.2rem "ArcaMajora";
  color: var(--gx-header-fg);
}

.content {
  background: var(--gx-bg);
}

.pagination {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
}
.pagination .page-item {
  margin: 0 4px;
  border: 1px solid var(--gx-border-fg);
  padding: 0.25rem 0.75rem;
}
.pagination .page-item .page-link {
  border-radius: 4px !important;
  font-size: 14px;
  text-decoration: none !important;
}
.pagination .page-item .page-link:hover {
  cursor: pointer;
}
.pagination .page-item.active .page-link {
  cursor: context-menu !important;
}
.pagination .page-item.disabled {
  cursor: default;
  opacity: 0.6;
  pointer-events: none;
}
.pagination .page-item:first-child {
  margin-left: 0;
}
.pagination .page-item:last-child {
  margin-right: 0;
}
.pagination .page-item.hidden {
  display: none;
}

.post-list article > *:last-child {
  border-bottom: 0;
}

.highlight ~ button {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  font-size: 0.75rem;
  color: var(--gx-default-fg);
  padding: 2px 4px;
  border-radius: 0.25rem;
  background: transparent;
  opacity: 0.4;
  transition: all 0.25s;
}

.highlight:hover ~ button, .highlight ~ button:hover {
  opacity: 1;
}

.highlight ~ button:hover {
  background: var(--gx-bg-hover);
}

.post .post-content #markdown-toc {
  position: relative;
  max-width: fit-content;
  list-style: none;
  padding: 2.5rem 1.5rem 0.75rem;
  border: 1px solid var(--gx-border-fg);
  background: var(--gx-secondary-bg);
}
.post .post-content #markdown-toc::before {
  content: "Indice de contenidos";
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5rem;
}
.post .post-content #markdown-toc ul {
  list-style: none;
  margin-bottom: 0.25rem;
}
.post .post-content #markdown-toc li {
  margin-bottom: 0.25rem;
}
.post .post-content #markdown-toc li:last-child {
  margin-bottom: 0;
}
.post .post-content #markdown-toc a {
  text-decoration: none !important;
}
.post .post-content h2, .post .post-content h3, .post .post-content h4, .post .post-content h5, .post .post-content h6, .post .post-content p, .post .post-content a {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}
.post .post-content h2, .post .post-content h3, .post .post-content h4, .post .post-content h5, .post .post-content h6 {
  border-bottom: 1px solid var(--gx-border-fg);
  padding-top: 0.75rem;
  padding-bottom: 0.25rem;
  margin-bottom: 1.5rem;
}
.post .post-content blockquote {
  border-left: 2px solid var(--gx-border-fg);
  padding-left: 1rem;
}
.post .post-content ul, .post .post-content p {
  color: var(--gx-default-fg);
  margin-bottom: 1rem;
}
.post .post-content div.highlight {
  border: 1px solid var(--gx-border-fg);
  margin-bottom: 1rem;
}
.post .post-content pre.highlight {
  display: block;
  margin: 0;
  padding: 0.5rem;
  overflow: auto;
  font-size: 0.875rem;
}
.post .post-content code.language-plaintext.highlighter-rouge {
  color: var(--gx-header-fg);
  background: var(--gx-secondary-bg);
  padding: 0.1rem 0.25rem;
  border: 1px solid var(--gx-border-fg);
}
.post .post-content strong {
  font-weight: 600;
  color: var(--gx-header-fg);
}
.post .post-content img {
  border: 1px solid var(--gx-border-fg);
  width: 100%;
}
.post .post-content img:hover {
  cursor: zoom-in;
}
.post .post-content a {
  color: var(--gx-link-fg);
}
.post .post-content a:hover {
  color: var(--gx-link-fg-hover);
}
.post .post-content ul {
  list-style: disc;
  margin: 0;
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.post .post-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.post .post-content table th {
  background: var(--gx-secondary-bg);
}
.post .post-content table td, .post .post-content table tr, .post .post-content table th {
  text-align: left;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--gx-border-fg);
}
.post .post-content hr {
  border-top: 1px solid var(--gx-border-fg);
  margin-bottom: 1rem;
}
.post .post-content .task {
  background: var(--gx-component-bg);
  border: 1px solid var(--gx-border-fg);
  margin-bottom: 1rem;
  padding: 0;
}
.post .post-content .task p {
  padding: 0.5rem;
  font-size: 0.875rem;
  margin: 0;
}
.post .post-content .task strong {
  font-size: 1rem;
}
.post .post-content .task pre {
  padding: 0.5rem;
  background: var(--gx-bg);
}
.post .post-content .task hr {
  margin: 0.1rem;
}
.post .post-content .task :last-child {
  margin-bottom: 0;
}

body[data-theme=light] .highlight table td {
  padding: 5px;
}
body[data-theme=light] .highlight table pre {
  margin: 0;
}
body[data-theme=light] .highlight .cm {
  color: #999988;
  font-style: italic;
}
body[data-theme=light] .highlight .cp {
  color: #999999;
  font-weight: bold;
}
body[data-theme=light] .highlight .c1 {
  color: #999988;
  font-style: italic;
}
body[data-theme=light] .highlight .cs {
  color: #999999;
  font-weight: bold;
  font-style: italic;
}
body[data-theme=light] .highlight .c, body[data-theme=light] .highlight .ch, body[data-theme=light] .highlight .cd, body[data-theme=light] .highlight .cpf {
  color: #999988;
  font-style: italic;
}
body[data-theme=light] .highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
body[data-theme=light] .highlight .gd {
  color: #000000;
  background-color: #ffdddd;
}
body[data-theme=light] .highlight .ge {
  color: #000000;
  font-style: italic;
}
body[data-theme=light] .highlight .gr {
  color: #aa0000;
}
body[data-theme=light] .highlight .gh {
  color: #999999;
}
body[data-theme=light] .highlight .gi {
  color: #000000;
  background-color: #ddffdd;
}
body[data-theme=light] .highlight .go {
  color: #888888;
}
body[data-theme=light] .highlight .gp {
  color: #555555;
}
body[data-theme=light] .highlight .gs {
  font-weight: bold;
}
body[data-theme=light] .highlight .gu {
  color: #aaaaaa;
}
body[data-theme=light] .highlight .gt {
  color: #aa0000;
}
body[data-theme=light] .highlight .kc {
  color: #000000;
  font-weight: bold;
}
body[data-theme=light] .highlight .kd {
  color: #000000;
  font-weight: bold;
}
body[data-theme=light] .highlight .kn {
  color: #000000;
  font-weight: bold;
}
body[data-theme=light] .highlight .kp {
  color: #000000;
  font-weight: bold;
}
body[data-theme=light] .highlight .kr {
  color: #000000;
  font-weight: bold;
}
body[data-theme=light] .highlight .kt {
  color: #445588;
  font-weight: bold;
}
body[data-theme=light] .highlight .k, body[data-theme=light] .highlight .kv {
  color: #000000;
  font-weight: bold;
}
body[data-theme=light] .highlight .mf {
  color: #009999;
}
body[data-theme=light] .highlight .mh {
  color: #009999;
}
body[data-theme=light] .highlight .il {
  color: #009999;
}
body[data-theme=light] .highlight .mi {
  color: #009999;
}
body[data-theme=light] .highlight .mo {
  color: #009999;
}
body[data-theme=light] .highlight .m, body[data-theme=light] .highlight .mb, body[data-theme=light] .highlight .mx {
  color: #009999;
}
body[data-theme=light] .highlight .sb {
  color: #d14;
}
body[data-theme=light] .highlight .sc {
  color: #d14;
}
body[data-theme=light] .highlight .sd {
  color: #d14;
}
body[data-theme=light] .highlight .s2 {
  color: #d14;
}
body[data-theme=light] .highlight .se {
  color: #d14;
}
body[data-theme=light] .highlight .sh {
  color: #d14;
}
body[data-theme=light] .highlight .si {
  color: #d14;
}
body[data-theme=light] .highlight .sx {
  color: #d14;
}
body[data-theme=light] .highlight .sr {
  color: #009926;
}
body[data-theme=light] .highlight .s1 {
  color: #d14;
}
body[data-theme=light] .highlight .ss {
  color: #990073;
}
body[data-theme=light] .highlight .s, body[data-theme=light] .highlight .sa, body[data-theme=light] .highlight .dl {
  color: #d14;
}
body[data-theme=light] .highlight .na {
  color: #008080;
}
body[data-theme=light] .highlight .bp {
  color: #999999;
}
body[data-theme=light] .highlight .nb {
  color: #0086B3;
}
body[data-theme=light] .highlight .nc {
  color: #445588;
  font-weight: bold;
}
body[data-theme=light] .highlight .no {
  color: #008080;
}
body[data-theme=light] .highlight .nd {
  color: #3c5d5d;
  font-weight: bold;
}
body[data-theme=light] .highlight .ni {
  color: #800080;
}
body[data-theme=light] .highlight .ne {
  color: #990000;
  font-weight: bold;
}
body[data-theme=light] .highlight .nf, body[data-theme=light] .highlight .fm {
  color: #990000;
  font-weight: bold;
}
body[data-theme=light] .highlight .nl {
  color: #990000;
  font-weight: bold;
}
body[data-theme=light] .highlight .nn {
  color: #555555;
}
body[data-theme=light] .highlight .nt {
  color: #000080;
}
body[data-theme=light] .highlight .vc {
  color: #008080;
}
body[data-theme=light] .highlight .vg {
  color: #008080;
}
body[data-theme=light] .highlight .vi {
  color: #008080;
}
body[data-theme=light] .highlight .nv, body[data-theme=light] .highlight .vm {
  color: #008080;
}
body[data-theme=light] .highlight .ow {
  color: #000000;
  font-weight: bold;
}
body[data-theme=light] .highlight .o {
  color: #000000;
  font-weight: bold;
}
body[data-theme=light] .highlight .w {
  color: #bbbbbb;
}
body[data-theme=light] .highlight {
  background-color: #f8f8f8;
}

body[data-theme=dark] .highlight table td {
  padding: 5px;
}
body[data-theme=dark] .highlight table pre {
  margin: 0;
}
body[data-theme=dark] .highlight, body[data-theme=dark] .highlight .w {
  color: #d0d0d0;
  background-color: #151b23;
}
body[data-theme=dark] .highlight .err {
  color: #151515;
  background-color: #ac4142;
}
body[data-theme=dark] .highlight .c, body[data-theme=dark] .highlight .ch, body[data-theme=dark] .highlight .cd, body[data-theme=dark] .highlight .cm, body[data-theme=dark] .highlight .cpf, body[data-theme=dark] .highlight .c1, body[data-theme=dark] .highlight .cs {
  color: #505050;
}
body[data-theme=dark] .highlight .cp {
  color: #44a339;
}
body[data-theme=dark] .highlight .nt {
  color: #449dcf;
}
body[data-theme=dark] .highlight .o, body[data-theme=dark] .highlight .ow {
  color: #d0d0d0;
}
body[data-theme=dark] .highlight .p, body[data-theme=dark] .highlight .pi {
  color: #d0d0d0;
}
body[data-theme=dark] .highlight .gi {
  color: #90a959;
}
body[data-theme=dark] .highlight .gd {
  color: #ac4142;
}
body[data-theme=dark] .highlight .gh {
  color: #6a9fb5;
  background-color: #151b23;
  font-weight: bold;
}
body[data-theme=dark] .highlight .k, body[data-theme=dark] .highlight .kn, body[data-theme=dark] .highlight .kp, body[data-theme=dark] .highlight .kr, body[data-theme=dark] .highlight .kv {
  color: #aa759f;
}
body[data-theme=dark] .highlight .kc {
  color: #d28445;
}
body[data-theme=dark] .highlight .kt {
  color: #d28445;
}
body[data-theme=dark] .highlight .kd {
  color: #d28445;
}
body[data-theme=dark] .highlight .s, body[data-theme=dark] .highlight .sa, body[data-theme=dark] .highlight .sb, body[data-theme=dark] .highlight .sc, body[data-theme=dark] .highlight .dl, body[data-theme=dark] .highlight .sd, body[data-theme=dark] .highlight .s2, body[data-theme=dark] .highlight .sh, body[data-theme=dark] .highlight .sx, body[data-theme=dark] .highlight .s1 {
  color: #90a959;
}
body[data-theme=dark] .highlight .sr {
  color: #75b5aa;
}
body[data-theme=dark] .highlight .si {
  color: #8f5536;
}
body[data-theme=dark] .highlight .se {
  color: #8f5536;
}
body[data-theme=dark] .highlight .nn {
  color: #f4bf75;
}
body[data-theme=dark] .highlight .nc {
  color: #f4bf75;
}
body[data-theme=dark] .highlight .no {
  color: #f4bf75;
}
body[data-theme=dark] .highlight .na {
  color: #6a9fb5;
}
body[data-theme=dark] .highlight .m, body[data-theme=dark] .highlight .mb, body[data-theme=dark] .highlight .mf, body[data-theme=dark] .highlight .mh, body[data-theme=dark] .highlight .mi, body[data-theme=dark] .highlight .il, body[data-theme=dark] .highlight .mo, body[data-theme=dark] .highlight .mx {
  color: #90a959;
}
body[data-theme=dark] .highlight .ss {
  color: #90a959;
}

:root body[data-theme=light] {
  --gx-bg: #FFFFFF;
  --gx-bg-hover: #18181b0d;
  --gx-secondary-bg: #F8FAFC;
  --gx-tertiary-bg: #A1A1AA;
  --gx-component-bg: #f8f8f8;
  --gx-nav-fg: #52525b;
  --gx-nav-fg-hover: #18181b;
  --gx-border-fg: #E7E7E8;
  --gx-border-fg-hover: #18181b33;
  --gx-header-fg: #18181B;
  --gx-link-fg: #0969da;
  --gx-link-fg-hover: #0756b1;
  --gx-default-fg: #3F3F46;
  --gx-tertiary-fg: #71717A;
  --gx-secondary-fg: #A1A1AA;
}
:root body[data-theme=light] .icon-light {
  display: block !important;
}

:root body[data-theme=dark] {
  --gx-bg: #0F0F0F;
  --gx-bg-hover: #28282d;
  --gx-secondary-bg: #1A1A1F;
  --gx-tertiary-bg: #2E2E38;
  --gx-component-bg: #151b23;
  --gx-nav-fg: #D4D4D8;
  --gx-nav-fg-hover: #FFFFFF;
  --gx-border-fg: #2E2E38;
  --gx-border-fg-hover: #505050;
  --gx-header-fg: #FFFFFF;
  --gx-link-fg: #58A6FF;
  --gx-link-fg-hover: #4C91D7;
  --gx-default-fg: #E4E4E7;
  --gx-tertiary-fg: #A1A1AA;
  --gx-secondary-fg: #7D7D85;
}
:root body[data-theme=dark] .icon-dark {
  display: block !important;
}

.transparent {
  background: transparent;
}

/*# sourceMappingURL=style.css.map */