Applying styling to elements inside the shadow-root

In a simple entity card, I’m trying to add the following styling to .info

card_mod:
  style: |
    .info {
      margin-top: -35px !important;
    }

The DOM:

But it doesn’t work. I assume because .info is nested in shadow-root.
Does anyone know a solution for that?