:root {
  --stz-icon-muted: #7a8780;
  --stz-icon-accent: #55c22c;
}

[data-stz-icon] {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--stz-icon-muted);
  transition: color 180ms ease;
}

.stz-icon {
  display: block;
  width: 24px;
  height: 24px;
  color: inherit;
  overflow: visible;
}

.stz-icon--accent,
[data-stz-icon].is-accent,
[data-stz-icon]:hover,
button:hover [data-stz-icon],
a:hover [data-stz-icon],
.stz-icon-trigger:hover .stz-icon {
  color: var(--stz-icon-accent);
}

.faq-home__tabs button [data-stz-icon] {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

.faq-home__tabs button [data-stz-icon] .stz-icon {
  width: 18px;
  height: 18px;
}

@media (prefers-reduced-motion: reduce) {
  [data-stz-icon] { transition: none; }
}
