/* Encaje de la pantalla real dentro de Fondo 1. */
.brand-stage {
  aspect-ratio: 1.133;
  height: auto;
  min-height: 440px;
}

.brand-stage > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.brand-stage .brand-stage-screen {
  position: absolute;
  left: 50%;
  top: 6.7%;
  width: 52.7%;
  height: 37.3%;
  transform: translateX(-50%);
  object-fit: fill;
  box-shadow: 0 0 0 clamp(3px, .45vw, 8px) rgba(63, 63, 62, .92);
}

@media (max-width: 800px) {
  .brand-stage {
    aspect-ratio: 1.133;
    min-height: 390px;
  }

  .brand-stage > img:first-child {
    object-position: center top;
  }

  .brand-stage .brand-stage-screen {
    top: 6.7%;
    width: 52.7%;
    height: 37.3%;
  }
}
