
/* v3.7.245: Adds .active class as another active state trigger for
   .wtpp-btn--subtle. The main wtpp-btn-system block defines active
   state via [aria-pressed="true"] and .is-active only. Existing
   filter-pill JS (and potentially other legacy JS) toggles .active
   class. This block lets the design system honor that without
   requiring JS refactor. */
/* v3.7.397: routed through theme-stable var(--red-bg) token — same
   value in light and dark (var(--red-bg)), eliminating the need for a
   dark-mode override and the cascade-conflict bug that the v3.7.395
   --red shift introduced. */
.wtpp-btn--subtle.active {
  background: var(--red-bg, var(--red-bg));
  color: var(--pure-white);
  border-color: var(--red-bg, var(--red-bg));
}
