.mobile-screenshots {
  max-height: 300px;
  max-width: 80%;
  display: block;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .mobile-screenshots {
    max-width: 100%;
  }
}

/* Zoom when hover the mouse on the image */

.mobile-screenshots.zoom {
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 4px;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: zoom-in;
}

.mobile-screenshots.zoom:hover {
  transform: scale(1.5);
  position: relative;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  cursor: zoom-out;
}
