/******* Do not edit this file *******
Code Snippets Manager
Saved: Aug 12 2026 | 19:24:50 */
a, a:focus, a:active {
  outline: none;
  box-shadow: none;
  /* Removes the blue shadow ring in some frameworks */
}
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.75em;
}
ol {
  list-style-type: decimal;
  /* 1, 2, 3... */
}
ol ol {
  list-style-type: lower-alpha;
  /* a, b, c... */
}
.bold-markers li::marker {
  font-weight: bold;
}
/* Text Highlights */
.text-highlight {
  --highlight-color: #000;
}
.char {
  color: inherit;
  transition: color 0.15s linear;
}
.char.is-highlighted {
  color: var(--highlight-color);
}
.text-highlight a {
  color: inherit;
  text-decoration-color: currentColor;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.text-highlight a.is-highlighted {
  color: var(--highlight-color);
}
.text-highlight a:hover {
  color: currentColor;
  text-decoration-color: var(--color-pink);
}
.text-highlight a.is-highlighted:hover {
  color: #000;
  text-decoration-color: var(--color-pink);
}
/* Carousel Cursor Hovers */
.cursor-carousel:hover {
  cursor: none;
}
.carousel-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 65px;
  height: 65px;
  pointer-events: none;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
  border-radius: 50%;
  background-color: var(--color-pink);
}
.carousel-cursor.active {
  opacity: 1;
}
.carousel-cursor svg {
  width: 65px;
  height: 65px;
}
