/* ── components/feature-list.css ────────────────────────
   Component: nf--feature-list
   Vertical list of items with circular icon, bold label,
   and small sublabel. Light-bg friendly (use consequence-list
   for dark bg).
   ──────────────────────────────────────────────────────── */

.nf--feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nf--feature-list__item {
    display: flex;
    gap: var(--spacing3);
    align-items: flex-start;
    padding: var(--spacing3) 0;
    border-bottom: 1px solid var(--fog);
}

.nf--feature-list__item:first-child {
    border-top: 1px solid var(--fog);
}

.nf--feature-list__icon {
    flex: 0 0 3.2rem;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background: #fff3ec;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}

.nf--feature-list__label {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.nf--feature-list__sublabel {
    display: block;
    font-size: 1.3rem;
    color: var(--black);
    line-height: 1.4;
    font-weight: 400;
}

/* Beat global ul/li specificity */
.node--nf .nf--feature-list {
    list-style: none !important;
    padding-left: 0;
}

.node--nf .nf--feature-list__item {
    padding-left: 0;
    margin-bottom: 0;
}
