Adding bulleted list to link block

I have an event schedule that is made up of link blocks that includes details about each presentation. For one of them, I’m trying to add a bulleted list, but this doesn’t work, I believe, because of the fear a rich text block could contain other links. In the read-only link attached, look at the second event:

https://preview.webflow.com/preview/sawtooth-software-events?utm_medium=preview_link&utm_source=designer&utm_content=sawtooth-software-events&preview=9a38070f05e7b57be2b2243a207a5153&pageId=649f82ff3a0a0152e863cac1&workflow=preview

Is there any clever ways to allow a bulleted list inside a link?

Rich text blocks are restricted, but you could just add a bullet list element inside of your link bock. Afaik that’s unrestricted.

Another option is to use a relative-positioned container and an absolute-positioned linkblock over top of it with z-index: 1. Essentially clickjacking the underlying rich text block.

Another is to use JS and put a click event handler on your container.

I wasn’t able to do a normal bulleted list since I was pulling from a collection. After rearranging some elements, I was able to use the positioning solution. Thank you so much for your help!