/* W2WORDFIT_V1 — on-garment word fit:
   ROOT CAUSE: .sh-phrase had overflow:hidden and .sh-block line-height:1, so
   letter descenders (y, g, j, p) fell outside the line box and got clipped.
   FIX: give the line box room for descenders (line-height 1.2) so tails show;
   and pull the word up ~12% toward the logo for a compact, correct look.
   Logo stays put — only the word moves. Loaded AFTER w2skin.css. */

/* descenders visible for every on-garment word (classic / street / brand) */
.sh-block .sh-phrase{
  line-height: 1.2 !important;
}

/* pull the word up ~12% toward the logo (was margin-top:-14px in w2skin) */
.sh-block.center > .sh-phrase{
  margin-top: -18px !important;
}
