Does anyone know why my map export does not look like my map layout in Pro? I would like the look & feel of my exported PDFs to match what I can see in the layout view. I use masking in my map to prevent some layers from drawing outside of my study area boundaries, weights to ensure that my labels draw as needed, and circle map frames for my inset maps. See screen captures below.
layout view in ArcGIS Pro:

PDF export using notebook script:
import arcpy,os
aprx = arcpy.mp.ArcGISProject("CURRENT")
for lyt in aprx.listLayouts():
lyt.exportToPDF(os.path.join(r"\\xyz", f"{lyt.name}"))
PDF export from the ribbon (share -> export layout):
