/* Live Indicator */

.live-indicator {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  font-size: 14px;
  color: #666;
}

.ripple-container {
  position: relative;
  width: 12px;
  height: 12px;
}

.ripple-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid #ef4444;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 3s infinite ease-out;
}

.ripple:nth-child(2) {
  animation-delay: 1.5s;
}

@keyframes ripple {
  0% {
    width: 8px;
    height: 8px;
    opacity: 1;
  }
  100% {
    width: 40px;
    height: 40px;
    opacity: 0;
  }
}


/* Live Posts Layout */

.live {
  margin-bottom: 4rem;

  /* Each paragraph as a little post */
  
  & main > p:not(:first-of-type) {
    border: 1px solid var(--color-border-dark);
    margin: 0;
    margin-bottom: 1rem;
    padding: 1rem;
  }

}
