// ============================================================================
// :: Budget
// ============================================================================
/**
 * Scope defined especially for the visual representation of a budget
 */

// ============================================================================
// :: Root
// ============================================================================
.s-budget {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;

  .a-budget {
    margin-bottom: 5rem;

    &:last-child {
      margin-bottom: 0;
    }
  }
}
