Given that :host has very low base specificity but a normal page stylesheet targets the same custom element by its tag name, which declaration wins for an unconfigured property, and what is the underlying reason?
/* page stylesheet */
my-box { color: red; }
/* inside my-box's shadow root */
:host { color: green; }