/* Scoped presentation for the three-step product journey. */
.step-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  margin: 24px 0 23px;
  overflow: hidden;
  border: 1px solid rgba(11, 29, 58, 0.09);
  border-radius: 21px;
  background: #eee8df;
  box-shadow: 0 16px 34px rgba(11, 29, 58, 0.08);
}

.step-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.steps-v2 article:hover .step-visual img {
  transform: scale(1.022);
}

@media (min-width: 721px) and (max-width: 980px) {
  .steps-v2 article:last-child .step-visual {
    width: min(100%, 520px);
    align-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .step-visual img {
    transition: none;
  }

  .steps-v2 article:hover .step-visual img {
    transform: none;
  }
}
