I've mostly moved from absolute positioning to grid stacking:
.wrapper { display: grid }
.stack-item { grid-area: 1/ 1 }
But there's still one case where absolute positioning stacking makes sense: a stacked item is a text node (not an element or pseudo, so there's no CSS selector to select it).