.progress-bar {
  margin-bottom: var(--spacing-24);
  background-color: var(--background-base);
  border-radius: var(--corner-radius-md);
  border: var(--stroke-weight-1) solid var(--border-default);
  padding: var(--spacing-16);
}

.progress-bar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-8);
}

.progress-bar-today {
  font-size: var(--font-size-14);
  line-height: 1.25rem;
  font-weight: var(--font-weight-500);
  color: var(--text-primary);
}

.progress-bar-today-count { font-weight: var(--font-weight-700); }

.progress-bar-week {
  font-size: var(--font-size-12);
  line-height: 1rem;
  color: var(--text-tertiary);
}

.progress-bar-track,
.progress-bar-fill {
  height: 0.625rem; /* Note: bespoke value */
  border-radius: var(--corner-radius-full);
}
.progress-bar-track {
  width: 100%;
  background-color: var(--background-surface-2);
}
.progress-bar-fill {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  background-color: var(--background-surface-2);

  &.progress-bar-fill--complete { background-color: var(--background-surface-2); }
}
