/* Ikony SVG używane np. w kartach */
.icon-svg {
  width: 48px;
  height: 48px;
  filter: invert(32%) sepia(82%) saturate(1234%) hue-rotate(190deg);
}

/* Lista z punktorami SVG */
.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .5rem;
  line-height: 1.5;
}

/* Punktor SVG */
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 1rem;
  height: 1rem;
  background: no-repeat center / contain
    url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path d='M20 6L9 17l-5-5' fill='none' stroke='%230d6efd' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/>\
</svg>");
}