Sometimes, when you embed custom footer,  it will occupy full page width, and you might just want to have the width as same as that of the page width.


/* set footer embed width as notion page width */
.footer-embed {
    width: var(--notion-max-width);
    margin: 0 auto;
}