/* Keep the original heading's layout and accessible text; SVG is decorative. */
.view-head h1[data-stroke-text] { position: relative; }
[data-stroke-text] .stroke-text-label { display: inline; }
[data-stroke-text][data-stroke-ready] .stroke-text-label { opacity: 0; }
[data-stroke-text] .stroke-text-svg {
  position: absolute;
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
  max-width: calc(100% + 4px);
  overflow: visible;
  pointer-events: none;
}
[data-stroke-text] .stroke-text-outline {
  fill: none;
  stroke: #a78bfa;
  stroke-width: .7px;
  stroke-linejoin: round;
  stroke-linecap: round;
}
[data-stroke-text] .stroke-text-fill { fill: #f8fafc; stroke: none; }
