I'd like to use Manipulate to show a dynamic control variable's name and value in a larger font size. The following code yields the name of the scoped variable for "a" rather than its value, for example "a = Dynamic[FE`a$$189]". How do I fix this code so that the value of the dynamic variable appears with font size 20?
Manipulate[
Grid[{{Style["a = " <> ToString[Dynamic[a]], 20]}, {ContourPlot3D[
x^2 + y^2 + a z^3 == 1, {x, -2, 2}, {y, -2, 2}, {z, -2, 2},
Mesh -> None, ImageSize -> Medium]}}], {a, -2, 2}]