Hi. For my app, I need control over popups such that some open and close on hover and others on click. Therefore, I have disabled default popup for the view and am creating new popup components like below. Note that I'm intentionally using the component as my understanding is that widgets will be retired soon:
//Create separate popup components
const hoverPopup = document.createElement("arcgis-popup");
hoverPopup.view = view;
view.ui.add(hoverPopup);This works nicely. The content is coming from the configured popup in my webmap. But there is one issue: For some reason, the popup title font is very small. This seems like a bug, but I was confident I could override the style and increase the font size for title portion. I'm finding that it's very difficult to do, however due to the style being defined in the shadow dom. Here's how it looks in my app:

Any advice on how to target that title font via css, or another approach?
On a side note, I'm seeing this with other components I have added as well, like panels, layer list, etc. Often the font sizes are very small.
Thanks