height: min(483px, 100vw * 0.82)
Error: px and vw are not comoatible units
How to get the min between the 2 values above ? Or transform the vw to px ?
Wrapping with calc solved the problem:
calc
height: calc(min(483px, 100vw * 0.82));