.layout .main .article .checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;

    margin: 16px 0;
    padding: 0;

    list-style: none;
}

.layout .main .article .checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--text-secondary);

    font-size: 11px;
}

.layout .main .article .checklist-box {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 16px;
    height: 16px;

    border: 1px solid var(--border-default);
    border-radius: 3px;

    color: var(--neon-green);

    font-size: 9px;
    font-weight: 700;

    transition:
        border-color 150ms ease,
        background 150ms ease,
        box-shadow 150ms ease;
}

.layout .main .article .checklist-item.completed .checklist-box {
    border-color: rgba(0, 255, 136, 0.35);
    background: rgba(0, 255, 136, 0.06);

    box-shadow: 0 0 8px rgba(0, 255, 136, 0.08);
}

.layout .main .article .checklist-item.completed {
    color: var(--text-primary);
}