in style.css:
for the widgets in general:
#main .container .sidebar .widget {
margin-bottom:20px;
}
(add some desired font-size: 20px; or so to this)
and
#main .container .sidebar .widget h3 {
padding:0 10px 10px;
padding-top:0;
margin-bottom:15px;
font-size:24px;
color:#747474;
border-bottom:1px solid #e3e3e3;
}
(edit the font-size in there)
—————
if this has to be specific to textwidgets, add some new styles;
example:
#main .container .sidebar .widget.widget_text { ... }
and
#main .container .sidebar .widget.widget_text h3 { ... }
Awesome! Thanks, that did the trick.