.site-footer__column .availability {
  width: fit-content;
  min-height: 36px;
  gap: 10px;
  margin-top: 12px;
  padding: 0 12px 0 11px;
  border: 1px solid var(--ink);
  background: var(--ink);
  box-shadow: 3px 3px 0 var(--signal-ink);
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition:
    background 180ms var(--ease),
    box-shadow 180ms var(--ease),
    color 180ms var(--ease),
    transform 180ms var(--ease);
}

.site-footer__column .availability::after {
  content: "↗";
  margin-left: 2px;
  font-size: 0.82rem;
  line-height: 1;
}

.site-footer__column .availability:hover {
  background: var(--signal);
  box-shadow: 1px 1px 0 var(--signal-ink);
  color: var(--ink);
  transform: translate(2px, 2px);
}

.availability i {
  position: relative;
  display: block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--signal);
}

.availability i::after {
  position: absolute;
  inset: -4px;
  border: 1px solid var(--signal);
  border-radius: inherit;
  content: "";
  animation: availability-pulse 2.2s ease-out infinite;
}

@keyframes availability-pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.5);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.15);
  }
}
@media (hover: hover) and (pointer: fine) {
  html.has-site-cursor,
  html.has-site-cursor * {
    cursor: none !important;
  }

  .site-cursor {
    position: fixed;
    z-index: 2147483646;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-48px, -48px, 0);
    transition: opacity 120ms ease;
    will-change: transform;
  }

  .site-cursor::before {
    position: absolute;
    inset: 0;
    border: 0;
    border-radius: 50%;
    background: var(--signal);
    box-shadow: 0 0 0 1px rgba(17, 21, 24, 0.72);
    content: "";
    transform: translate(-50%, -50%);
    transform-origin: center;
    transition:
      background-color 140ms ease,
      box-shadow 180ms var(--ease),
      transform 180ms var(--ease);
  }

  .site-cursor::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    border: 1px solid var(--signal);
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.55);
    transform-origin: center;
    transition:
      opacity 160ms ease,
      transform 180ms var(--ease);
  }

  .site-cursor.is-visible:not(.is-over-embedded-content) {
    opacity: 1;
  }

  .site-cursor.is-interactive::before {
    background: var(--signal);
    box-shadow: 0 0 0 1px rgba(17, 21, 24, 0.82);
  }

  .site-cursor.is-interactive::after {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }

}

@media (prefers-reduced-motion: reduce) {
  .site-cursor,
  .site-cursor::before,
  .site-cursor::after {
    transition: none;
  }
}
