.author-avatar-ring[data-astro-cid-srfo6exf] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.author-avatar-ring[data-astro-cid-srfo6exf]:before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 9999px;
  background: conic-gradient(#3b82f6, #818cf8, #a78bfa, #3b82f6);
  opacity: .4;
  animation: 8s linear infinite avatar-ring-spin;
}

.author-avatar-ring[data-astro-cid-srfo6exf]:after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 9999px;
  background: var(--background);
}

.author-avatar-ring[data-astro-cid-srfo6exf] > [data-astro-cid-srfo6exf]:first-child {
  position: relative;
  z-index: 1;
}

@keyframes avatar-ring-spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .author-avatar-ring[data-astro-cid-srfo6exf]:before {
    animation: none;
  }
}
