/* ftm/list */
.ftm-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.ftm-list li {
  position: relative;
  padding: 9px 0 9px 28px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ftm-navy-soft);
  border-bottom: 1px solid var(--ftm-line);
}
.ftm-list li:last-child { border-bottom: none; }
.ftm-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 16px; height: 16px;
  background: var(--ftm-rainbow);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}
