/* Default styling (desktop/tablet) */
.mobile-left {
  display: block;
  margin: 0 auto; /* centers the image */
}

/* Mobile-specific styling */
@media (max-width: 768px) {
  .mobile-left {
    margin-left: 0;
    margin-right: auto;
  }
}