/*
 * Syndigo PowerPage — center the content on wide viewports.
 *
 * Syndigo hydrates <syndigo-powerpage> with shadow-DOM content whose
 * inner .syndi_powerpage has max-width:1440px and margin:0. The rest of
 * the Arenal PDP is full-width, so on viewports wider than 1440px the
 * Syndigo content sticks to the left with a gap on the right.
 *
 * The inner node lives inside Syndigo's shadow DOM and is unreachable
 * from theme CSS, so we cap and center the wrapper instead. A clamped
 * (but still auto) width keeps a *definite* width for the inner grid to
 * lay out against; auto inline margins then center it. flex / fit-content
 * do NOT work here: the grid has no intrinsic width and collapses to
 * min-content (~68px). max-width is what keeps it laid out at 1440px.
 *
 * At <=1440px the wrapper fills the available width and margins are 0,
 * so there is no visual change.
 */
.syndigo-container {
    max-width: 1440px;
    margin-inline: auto;
}
