dl {
  margin: 0;
  padding: 0;
}

dl dt {
  margin-top: 1rem;
  font-weight: bold;
}

dl dt:first-child {
  margin-top: 0;
}

dl dd {
  display: inline;
  margin: 0;
}

dl dd + dd:before {
  content: ", ";
}

dl dd:last-child:after {
  content: "";
}

.design-container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

img.product {
  max-width: 25%;
  height: auto;
}

@media (max-width: 768px) {
  /* For mobile screens */
  .design-container {
    flex-direction: column; /* Stack items vertically */
  }
  img.product {
    max-width: 100%; /* Image takes full width on mobile */
  }
}
