.soliton-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  cursor: pointer;
  border-radius: 0;       /* Critical: Fixes curved corners on laptops */
  overflow: visible;      /* Critical: Prevents clipping artifacts */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.soliton-image-wrapper:active {
  transform: scale(0.98);
}

.soliton-image-wrapper img.soliton-img {
  display: block;
  width: 100%;            /* Responsive */
  max-width: 600px;       /* Optional cap for large screens */
  height: auto;
  margin: 0;
  vertical-align: middle;
  border-radius: 0 !important; /* Double protection against rounding */
}

