.streak { margin-bottom: 1.5rem; } /* Tailwind mb-6 */

.streak__heading {
  text-align: center;
  margin-bottom: 0.5rem; /* Tailwind mb-2 */
}

.streak__chip {
  background: var(--color-card);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  margin: 0 auto;
  width: 6rem;
  /* Same flat card shadow as quest cards — matches figma5. */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.streak__icon {
  width: 2rem; /* Tailwind size-8 */
  height: 2rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-primary) 12%, transparent);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.streak__count {
  font-size: 1.25rem; /* Tailwind text-xl */
  color: var(--color-primary);
  line-height: 1;
}

.streak__label {
  font-size: 0.75rem; /* Tailwind text-xs */
  color: var(--color-muted-fg);
}
