Write maintainable CSS with variables, nesting, mixins, modules, maps, and compiled output.
Lessons
Store ordered values and read them by index.
Lists is easiest to learn by reading the example, changing it, and observing the result.
@use 'sass:list';
$sizes: 4px, 8px, 16px, 32px;
@debug list.length($sizes); // 4
@debug list.nth($sizes, 2); // 8px
$more: list.append($sizes, 64px);Practice the Lists example in a small scratch file, then explain what changed and why.