.dm-wrapper {
  position: relative;
  display: grid;
  width: 100%;
}

.dm-device {
  position: relative;
  grid-area: 1 / 1;
}

.dm-device::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--dm-screen-url);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.dm-device::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--dm-mockup-url);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
