/* ==========================================================================
   Component: checklist (.cm-checklist)
   A list of benefits, each with a tick icon; hairline seams between rows.
   ========================================================================== */

.cm-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cm-checklist__item {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--cm-hairline);
}

.cm-checklist__item:last-child {
  border-bottom: none;
}

.cm-checklist__tick {
  flex: none;
  margin-top: 2px;
}

.cm-checklist__item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--cm-muted);
}

/* Lead-in phrase stays ink; the rest is muted. */
.cm-checklist__item strong {
  color: var(--cm-ink);
  font-weight: 700;
}
