@media (hover: hover) and (pointer: fine) and (min-width: 769px) and (prefers-reduced-motion: no-preference) {
  body:not(.home),
  body:not(.home) * {
    cursor: none;
  }
}

.c-cursor {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  width: 8px;
  height: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--muted-blue);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    width 300ms ease,
    height 300ms ease,
    background-color 300ms ease,
    opacity 180ms ease;
}

.c-cursor__bg {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: rgba(73, 111, 140, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    width 400ms ease,
    height 400ms ease,
    opacity 400ms ease;
}

body.is-cursor-on-footer .c-cursor {
  background: var(--off-white);
}

body.is-cursor-on-footer .c-cursor__bg {
  background: rgba(241, 241, 243, 0.18);
}

.c-cursor__inner {
  display: grid;
  place-items: center;
}

.c-cursor__text {
  display: none;
  padding: 0 18px;
  color: var(--white);
  font-family: var(--latin);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.c-cursor--hover .c-cursor__bg {
  width: 75px;
  height: 75px;
  opacity: 1;
}

.c-cursor--text {
  width: 82px;
  height: 82px;
  background: var(--off-white);
}

.c-cursor--text .c-cursor__bg {
  opacity: 0;
}

.c-cursor--text .c-cursor__text {
  display: block;
  color: var(--muted-blue);
}

@media (hover: none), (pointer: coarse), (max-width: 768px) {
  .c-cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .c-cursor {
    display: none;
  }
}
