/* check-list — a checklist with token-tinted circular check marks. One column on
   mobile, two from the 600px breakpoint. CSS-only; items are `<li>` children.
   Token-only (space + brand-pale fill + accent-text check); brand-agnostic. */
.hzo-check-list {
    list-style: none;
    margin: var(--space-lg) 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm) var(--space-lg);
}
@media (min-width: 600px) {
    .hzo-check-list { grid-template-columns: 1fr 1fr; }
}
.hzo-check-list li {
    position: relative;
    padding-left: 1.9em;
    color: var(--text-body);
    font-weight: var(--fw-medium, 500);
    line-height: 1.4;
}
.hzo-check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: -0.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35em;
    height: 1.35em;
    background: var(--brand-pale);
    color: var(--accent-text);
    border-radius: 50%;
    font-size: 0.8em;
    font-weight: 700;
}
