.grid-item.creator {
    position: relative;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.grid-item.creator.no-transition {
    transition: none;
}

.grid-item.creator .avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
  flex-shrink: 0;
}

.live-indicator {
  position: absolute;
  top: 2px;
  right: 2px;

  padding-left: 4px;
  padding-right: 4px;
  padding-top: 2px;
  padding-bottom: 3px;
  border-radius: 3px;
  background-color: #EB0400;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.25px;
  text-transform: uppercase;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  text-decoration: none;
  transition: opacity 0.2s ease-in-out;

  animation: subtle-pulse 4s infinite ease-in-out;
}

.live-indicator:hover {
    transform: scale(1.07);
}


@keyframes subtle-pulse {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}