@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(10px)
  }

  to {
    opacity: 1;
    transform: translate(0)
  }
}

@keyframes astroFadeInOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

@keyframes astroFadeIn {
  0% {
    opacity: 0;
    mix-blend-mode: plus-lighter
  }

  to {
    opacity: 1;
    mix-blend-mode: plus-lighter
  }
}

@keyframes astroFadeOut {
  0% {
    opacity: 1;
    mix-blend-mode: plus-lighter
  }

  to {
    opacity: 0;
    mix-blend-mode: plus-lighter
  }
}

@keyframes astroSlideFromRight {
  0% {
    transform: translate(100%)
  }
}

@keyframes astroSlideFromLeft {
  0% {
    transform: translate(-100%)
  }
}

@keyframes astroSlideToRight {
  to {
    transform: translate(100%)
  }
}

@keyframes astroSlideToLeft {
  to {
    transform: translate(-100%)
  }
}

@media (max-width:1400px) {
  .floating-toc[data-astro-cid-2rh22e3j] {
    display: none
  }
}

.floating-toc[data-astro-cid-2rh22e3j] {
  position: fixed;
  top: 100px;
  right: 2rem;
  width: 260px;
  max-height: calc(100vh - 160px);
  z-index: 10;
  animation: fadeIn .3s ease-out
}

.floating-toc__inner[data-astro-cid-2rh22e3j] {
  padding: 1rem;
  overflow-y: auto;
  max-height: calc(100vh - 200px);
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) transparent;
  background-color: #ffffffbf;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f
}

html.dark-mode .floating-toc__inner[data-astro-cid-2rh22e3j] {
  background-color: #282828bf;
  border: 1px solid rgba(255, 255, 255, .1)
}

.floating-toc__inner[data-astro-cid-2rh22e3j]::-webkit-scrollbar {
  width: 4px
}

.floating-toc__inner[data-astro-cid-2rh22e3j]::-webkit-scrollbar-track {
  background: 0 0
}

.floating-toc__inner[data-astro-cid-2rh22e3j]::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
  border-radius: 2px
}

.floating-toc__header[data-astro-cid-2rh22e3j] {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--main-color);
  margin-bottom: .75rem;
  padding: 0 .5rem .5rem;
  border-bottom: 1px solid var(--border-color)
}

.floating-toc__nav[data-astro-cid-2rh22e3j] {
  position: relative
}

.toc-link[data-astro-cid-2rh22e3j] {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem;
  min-height: 2.25rem;
  border-radius: .75rem;
  color: var(--text-color);
  text-decoration: none;
  transition: all .2s ease;
  position: relative;
  z-index: 1
}

.toc-link[data-astro-cid-2rh22e3j]:hover {
  color: var(--main-color);
  background-color: #0000000a
}

html.dark-mode .toc-link[data-astro-cid-2rh22e3j]:hover {
  background-color: #ffffff0d
}

.toc-link[data-astro-cid-2rh22e3j].visible {
  color: #3b82f6
}

.toc-link--h3[data-astro-cid-2rh22e3j] {
  padding-left: 1rem
}

.toc-badge[data-astro-cid-2rh22e3j] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s ease
}

.toc-badge--numbered[data-astro-cid-2rh22e3j] {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: .5rem;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  box-shadow: 0 2px 4px #3b82f64d
}

.toc-badge--dot[data-astro-cid-2rh22e3j] {
  width: 1.25rem;
  height: 1.25rem
}

.toc-dot[data-astro-cid-2rh22e3j] {
  width: .5rem;
  height: .5rem;
  border-radius: .1875rem;
  background-color: #3b82f6;
  opacity: .6;
  transition: all .2s ease
}

.toc-link[data-astro-cid-2rh22e3j].visible .toc-dot[data-astro-cid-2rh22e3j] {
  opacity: 1
}

.toc-text[data-astro-cid-2rh22e3j] {
  font-size: .875rem;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical
}

.toc-link--h3[data-astro-cid-2rh22e3j] .toc-text[data-astro-cid-2rh22e3j] {
  font-size: .8125rem;
  color: var(--text-color)
}

.toc-link--h3[data-astro-cid-2rh22e3j].visible .toc-text[data-astro-cid-2rh22e3j] {
  color: #3b82f6
}

.toc-active-indicator[data-astro-cid-2rh22e3j] {
  position: absolute;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #3b82f626, #2563eb1a);
  border-radius: .75rem;
  z-index: 0;
  opacity: 0;
  transition: top .3s ease, height .3s ease, opacity .2s ease;
  pointer-events: none;
  border: 1px solid rgba(59, 130, 246, .3);
  box-shadow: 0 0 10px #3b82f61a
}

html.dark-mode .toc-active-indicator[data-astro-cid-2rh22e3j] {
  background: linear-gradient(135deg, #3b82f633, #2563eb26);
  border: 1px solid rgba(59, 130, 246, .4)
}

.floating-toc__nav[data-astro-cid-2rh22e3j]:hover .toc-active-indicator[data-astro-cid-2rh22e3j] {
  opacity: .3
}

@media (min-width:1600px) {
  .floating-toc[data-astro-cid-2rh22e3j] {
    right: max(2rem, calc((100vw - 1200px)/2 - 320px));
    width: 300px
  }
}

@media (min-width:1920px) {
  .floating-toc[data-astro-cid-2rh22e3j] {
    right: calc((100vw - 1200px)/2 - 360px);
    width: 320px
  }
}

.article-info-box[data-astro-cid-gvpn4u4b] {
  background-color: var(--secondary-bg);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 3rem 0;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden
}

.article-info-box[data-astro-cid-gvpn4u4b]:after {
  content: "CC";
  position: absolute;
  right: .1em;
  top: 50%;
  transform: translateY(-50%);
  font-size: 6rem;
  font-weight: 700;
  color: var(--main-color);
  opacity: .05;
  pointer-events: none;
  font-family: sans-serif;
  line-height: 1
}

.info-title[data-astro-cid-gvpn4u4b] {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--main-color)
}

.info-url[data-astro-cid-gvpn4u4b] {
  display: block;
  font-size: .9rem;
  color: var(--highlight-color);
  margin-bottom: 1.5rem;
  word-break: break-all;
  text-decoration: none
}

.info-link[data-astro-cid-gvpn4u4b]:hover,
.info-url[data-astro-cid-gvpn4u4b]:hover {
  text-decoration: underline
}

.info-meta[data-astro-cid-gvpn4u4b] {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap
}

.meta-item[data-astro-cid-gvpn4u4b] {
  display: flex;
  flex-direction: column;
  gap: .25rem
}

.meta-label[data-astro-cid-gvpn4u4b] {
  font-size: .85rem;
  color: var(--text-color);
  font-weight: 500
}

.meta-value[data-astro-cid-gvpn4u4b] {
  font-size: 1rem;
  font-weight: 500;
  color: var(--main-color)
}

.info-link[data-astro-cid-gvpn4u4b] {
  color: var(--highlight-color);
  text-decoration: none
}

@media (max-width:600px) {
  .info-meta[data-astro-cid-gvpn4u4b] {
    gap: 1.5rem
  }

  .article-info-box[data-astro-cid-gvpn4u4b]:after {
    font-size: 4rem
  }
}

@media (prefers-reduced-motion) {

  ::view-transition-group(*),
  ::view-transition-new(*),
  ::view-transition-old(*) {
    animation: none !important
  }
}
