/* hero-subtitle-color-fix.css
   Fix: Admin-set inline colors (via rich text editor) were not
   visible because .hero-subtitle applies text-shadow that washes
   out colored spans, and color inheritance blocked child colors.
*/

/* Allow inline color styles from CMS rich text to show through */
.hero-subtitle span[style*="color"] {
  text-shadow: none !important;
  -webkit-text-fill-color: initial !important;
}

/* Ensure strong tags inside colored spans also inherit the color */
.hero-subtitle span[style*="color"] strong,
.hero-subtitle span[style*="color"] b,
.hero-subtitle span[style*="color"] em,
.hero-subtitle span[style*="color"] i {
  color: inherit !important;
  text-shadow: none !important;
  -webkit-text-fill-color: initial !important;
}

/* Ensure p tags don't block child span color inheritance */
.hero-subtitle p {
  color: inherit;
}
