From a pure accessibility perspective (WCAG), you are ok. Your text is accessible. Your question is really more about "user experience", which is a fantastic thing to ask when combined with accessibility. That means you're looking at more than just "checking off a box" on the accessibility list and want to make the experience delightful for everyone.
One thing to keep in mind for your "view more" link, make sure there's an aria-describedby
attribute on the link so that if a screen reader user just tabs through all the links, or brings up the dialog displaying all the links, they don't just hear "view more" and not know its context. I can give more tips on how to implement that if needed.
I would also spell out "continued" instead of "con't", but you might have just shortened that in describing your problem because the full word appears on your screenshot.
Another possibility might be to have two links to the continued description. One is as you have it now in the screenshot. I'm guessing the "view more" link moves your focus to the "continued summary" section (which, grammatically isn't quite correct - the summary isn't "continuing" because you are repeating the first part again - it's really the "full" summary).
You could have a second visually-hidden link (for screen reader users) that moves the focus to the full summary and positions the focus in the middle of the paragraph where the previous short summary ended. The drawback with that is that there will be a visually hidden tab stop that some keyboard users might notice. That is, they'll tab to "view more", see an outline or some visible focus indicator around the link, then tab again and the focus seems to disappear from the screen (because it's on the hidden link), and then tab again and the focus appears on the next focusable object (the "info" link under your first call to action).
If you try this "hidden" link, you may want to do some quick usability tests to see if it makes sense.
Your visible link could be "read full summary" and the hidden link could be "continue reading the full summary". It's a subtle difference that you might have to tweak with a content or design expert. Or maybe having both links visible might be good for everyone.
Or your "view more" could expand the current summary rather than taking you to another place on the page. That's kind of what I expect with a "view more" link.