/* Image Wrapper - Hidden Initially */
.image-wrapper {
  display: none; /* Hide the image initially */
}

/* When the image is loaded, show the image wrapper */
.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
