.preview {
  display: grid;
  grid-template-columns: repeat(3, 112px);
  grid-template-rows: auto auto;
  gap: 14px;
  align-items: center;
}

.device-shot {
  margin: 0;
  border: 5px solid #122332;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 55px #17324d21;
}

.device-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.device-shot.primary {
  width: 210px;
  grid-column: 1 / 3;
  grid-row: 1;
  z-index: 2;
}

.device-shot.detail {
  width: 135px;
  grid-column: 1;
  grid-row: 1;
  transform: translate(-34px, 28px) rotate(-3deg);
}

.device-shot.stock {
  width: 135px;
  grid-column: 3;
  grid-row: 1;
  transform: translate(4px, 28px) rotate(3deg);
}

.preview .preview-note {
  grid-column: 1 / -1;
  max-width: none;
  margin: 6px 0 0;
}

@media (max-width: 780px) {
  .preview { grid-template-columns: repeat(3, 84px); }
  .device-shot.primary { width: 180px; }
  .device-shot.detail,
  .device-shot.stock { width: 104px; }
  .device-shot.detail { transform: translate(-15px, 22px) rotate(-3deg); }
  .device-shot.stock { transform: translate(0, 22px) rotate(3deg); }
}
