/* Adora agent thinking indicator — brand component pulled in from the Adora
   design system. Sized to its original 40x40 spec; scale via data-scale. */
.agent-thinking-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.8);
}

.agent-thinking-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-16);
}

.agent-thinking {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.agent-thinking--queued {
  filter: grayscale(100%);
}

.agent-thinking__row {
  display: flex;
  align-items: center;
  gap: 1px;
}

.agent-thinking__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #FED9F3;
  opacity: 0.2;
  transition: opacity 300ms ease, background-color 150ms ease;
}
