/* ======= tiny "thumb ready" badge + pulse ======= */
.sa-thumb-wrap{position:relative;display:inline-block}
.sa-thumb-badge{
  position:absolute;right:-6px;bottom:-6px;width:18px;height:18px;line-height:18px;
  border-radius:999px;background:#16a34a;color:#fff;font-size:12px;text-align:center;
  box-shadow:0 0 0 2px #fff;transform:scale(0);opacity:0;animation:sa-pop .25s ease-out forwards
}
@keyframes sa-pop{to{transform:scale(1);opacity:1}}
.sa-thumb-pulse{animation:sa-pulse .9s ease-out 1}
@keyframes sa-pulse{0%{box-shadow:0 0 0 0 rgba(22,163,74,.4)}100%{box-shadow:0 0 0 12px rgba(22,163,74,0)}}
