SASS handles CSS inheritance primarily through the `@extend` directive, which allows one selector to inherit styles from another without duplicating the CSS code. For example,if you have `.base { color: red; }` and `.extended { @extend .base; font-size: 14px; }`,`.extended` will inherit the color red from`.base` and also apply the additional styles.