
/* Phone */

.phone-wrapper {
  position: relative;
  /* control overall size: change width as needed, or use max-width:100% */
  max-width: 250px;
  /* optional: maintain aspect ratio if you know it */
  aspect-ratio: 9 / 16;
}

.phone-video {
  position: absolute;
  top: 23%;        /* tweak these % to match your PNG’s screen inset */
  left: 9%;
  width: 82%;     /* must match (100% – left% – right%) */
  height: 68%;    /* must match (100% – top% – bottom%) */
  object-fit: cover;
  /* ensure it’s behind the frame */
  z-index: 1;
  border-radius: 20px; /* if your phone screen corners are rounded */
}

.phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  pointer-events: none; /* clicks “pass through” to the video if needed */
  display: block;
  scale: 1.3;
}


/*TV*/

@media (max-width: 991px) {
  .screenshot{
    margin-top:40px;

    width: 400px;
  }
}
