Set H6 (or other tag) as a pull quote
Add this quick line of CSS to your site.css file to add a pull quote left border to your H6 tag. Modify the tag name to use another tag. Don't use that tag unless you're adding a pull-quote in the text widget.
div.dmNewParagraph h6 { border-left: 2px rgba(25,41,69,1) solid; padding-left: 15px; }
Add box-shadow that scales up when you hover over a link (like this)
Add this to your site.css file to add a box-shadow on hover to your links. Choose a color that is more spot-on with your branding though of course ;). The rgba() value is what you'll need to replace.
div.dmNewParagraph p a, div.dmNewParagraph h3 a { transition-duration: .15s; box-shadow: inset 0 -8px 0 0 rgb(22 73 147 / 10%); color: rgba(16, 40, 75, 1); } div.dmNewParagraph p a:hover, div.dmNewParagraph h3 a:hover { box-shadow: inset 0 -1.15em 0 rgb(22 73 147 / 10%); }