.result-image-stage {
  height: 220px;
  margin: 18px 20px 0;
  padding: 10px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #e4d1bd;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 42%, #fffdf8 0 28%, transparent 64%),
    linear-gradient(145deg, #f6ede1, #eadbc9);
  box-shadow: inset 0 0 0 5px #fff9f1aa;
}

.result-image {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  background: #eee4d9;
  box-shadow: 0 8px 22px #4f2c1d26, 0 0 0 1px #72513d20;
}

.related-row {
  grid-template-columns: 48px minmax(70px, 1fr) 72px 72px 10px;
}

.related-image {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: contain;
  padding: 3px;
  background: linear-gradient(145deg, #f8efe4, #eadac8);
}

.result-image,
.related-image {
  box-shadow: inset 0 0 0 1px #ffffff55;
}

@media (max-width: 440px) {
  .result-image-stage {
    height: 196px;
    margin: 14px 14px 0;
    padding: 8px;
  }

  .related-row {
    grid-template-columns: 42px minmax(60px, 1fr) 58px 58px 8px;
  }

  .related-image {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
}
