There are multiple businesses listed on a home page and some business names may have the same name. I have to click on the link 'Apply for Business Credit' and it would navigate to a different screen. I have tried multiple solutions but not able to click on desired link. Please have a look on the home screen

I have also added html for your reference.

Solutions I have tried -
cy.get('div.MuiGrid-root.MuiGrid-item').contains('Shemaroo Equities').eq(0)
.nextUntil('div')
.contains('p','Apply for Business Credit')
.click({force:true})
cy.get('div.MuiGrid-root.MuiGrid-item').contains('Shemaroo Equities').eq(0).nextUntil('div button span.MuiTouchRipple-root').click()
I am relatively new to cypress. I request the community to help me resolve this issue.
