Another alternative to clamp:
font-size: max(min(calc(100vw / 60), 28px), 10px);
This sets the font size to depend on the view width, with min and max limits.