/* iPad Pro 12.9" frame (CSS-only) */
.device-ipad {
  position: relative;
  display: inline-block;
  background: #1a1a1a;
  border-radius: 28px;
  padding: 18px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 24px 64px rgba(0,0,0,.5),
    0 8px 16px rgba(0,0,0,.3);
}
.device-ipad__screen {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #080808;
  aspect-ratio: 1024 / 1366;
  width: 480px;
  max-width: 100%;
}
.device-ipad__screen > img,
.device-ipad__screen > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* iPhone 14 Pro frame */
.device-iphone {
  position: relative;
  display: inline-block;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 24px 64px rgba(0,0,0,.5);
}
.device-iphone__notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 28px;
  background: #000;
  border-radius: 14px;
  z-index: 2;
}
.device-iphone__screen {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #080808;
  aspect-ratio: 9 / 19.5;
  width: 280px;
}
