1
HTML/CSSIntermediate#css#bem
Besides position + non-auto z-index, a new stacking context is created by: opacity less than 1, transform/filter/perspective other than none, will-change, position: fixed/sticky, and flex/grid items with z-index set.
.card {
opacity: 0.99; /* creates a new stacking context */
transform: translateZ(0); /* also creates one */
}