.div-instructions-clean > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}

.div-instructions-clean .step-text {
  width: 90%;
  max-width: 800px;
  border: 2px solid #ED096F;
  border-radius: 10px;
  padding: 0.5em;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  text-align: left;
  margin-top:5px;
}

/*  IMMAGINE FLOTTA A SINISTRA + TESTO CHE LA CIRCONDA */
.div-instructions-clean .step-text img {
  float: left;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  display: block;
  margin: 0 1.2em 1em 0 !important;
  width: 150px;
  height: 225px;
  object-fit: cover;

}

/* TABLET */
@media (min-width: 600px) {
  .div-instructions-clean .step-text img {
    width: 200px;
    height: 100%;
  }
}

/* DESKTOP */
@media (min-width: 1025px) {
  .div-instructions-clean .step-text img {
    width: 240px;
    height: 100%;
  }
}

/*  BADGE NUMERATO */
.div-instructions-clean .step-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 18px;
  z-index: 2;
}

/*  MOBILE: forza testo a girare attorno per il primo paragrafo */
@media (max-width: 599px) {
  .div-instructions-clean .step-text p:first-of-type {
    display: inline;
  }
}


