/* Module 15 — Why Permissioned Blockchains? */

/* ── Styled lists inside lesson cards ── */
.lesson-card ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}
.lesson-card ul li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}
.lesson-card.card-green ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent-ok, #34d399);
    font-weight: 700;
}
.lesson-card.card-red ul li::before {
    content: "\2717";
    position: absolute;
    left: 0;
    color: var(--accent-danger, #f87171);
    font-weight: 700;
}
