Why doesn't appending to a list change the original list?
In SASS, append creates a new list and does not modify the original list variable. You must use the new list variable to see changes.
💡 Always assign append result to a new variable and use that for styles.
Why can't I use nth() with an index larger than the list length?
nth() requires a valid index within the list length; otherwise, it returns null and no style is applied.
💡 Check list length before using nth() to avoid missing styles.
Why does join() not add spaces or commas visually?
join() combines lists in SASS memory; it affects how you select values but does not add visual separators in CSS output.
💡 Use join() to manage values, not for visual spacing.