When i try to wrap text arround a figure that is wider than 200pt it breaks the margins of the page.
#import "@preview/wrap-it:0.1.1": *
#set page(
paper: "a4",
margin: (left: 3cm, right: 2cm, top: 2.5cm, bottom: 2.5cm),
)
#set par(justify: true, leading: 14pt)
#let test = rect(
fill: blue,
width: 250pt,
height: 200pt
)
#wrap-content(
test,
[
#lorem(90)
],
align: top + right,
)
When i align the figure to the left it overlapps with the text.

#wrap-content(
test,
[
#lorem(90)
],
align: top + right,
)
And when i add columns it also breaks the margins of the page.

#wrap-content(
test,
[
#lorem(90)
],
align: top + right,
columns: (50%, 50%)
)

When i try to wrap text arround a figure that is wider than 200pt it breaks the margins of the page.
When i align the figure to the left it overlapps with the text.
And when i add columns it also breaks the margins of the page.