Description: When embedding a Gamma (doc or presentation) in an iframe, there’s currently no way for the embedded content to communicate its height back to the parent page. This makes it hard to keep the iframe container tightly sized to the content, especially when the content changes (e.g., expanding sections). A postMessage-based resize API would let the embedded Gamma send a message like { type: "resize", height: 1234 } so the parent can adjust the iframe height dynamically. Today the workaround is making the iframe responsive with percentage-based styling, but that doesn’t solve “tight” sizing.