/* FIX: remove the pink rectangle layer + force real black shadow */
.single-hero .about-pill span{
  position: relative !important;
  isolation: isolate !important;       /* keeps blends from bleeding */
  background-clip: padding-box !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.70) !important;  /* black shadow */
}

/* Kill the usual culprit: a pseudo-element creating a rectangle behind it */
.single-hero .about-pill span::before,
.single-hero .about-pill span::after{
  content: none !important;
  display: none !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

/* Also kill any “glow” shadow that might be applied to the icon/text */
.single-hero .about-pill span *,
.single-hero .about-pill span i{
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
}