/* ── Unordered List — LeadPlanet Design System ── */
/* Targets WordPress block editor output: ul.wp-block-list */

ul.wp-block-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

ul.wp-block-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--wp--preset--spacing--space-400);
    padding: var(--wp--preset--spacing--space-400) var(--wp--preset--spacing--space-600);
    font-size: var(--wp--preset--font-size--type-400);
    color: var(--wp--preset--color--neutral-dark-tint);
    line-height: 1.6;
    border-radius: 8px;
    transition: background var(--wp--custom--transition);
}

ul.wp-block-list li:hover {
    background: var(--wp--preset--color--neutral-light-tint);
}

/* Teal checkmark bullet via ::before pseudo-element */
ul.wp-block-list li::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 3px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--wp--preset--color--tertiary) 20%, transparent);
    /* The SVG checkmark stroke below uses %232C7F6C, which maps directly to var(--wp--preset--color--tertiary-shade) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='%232C7F6C' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
    flex-shrink: 0;
}