.full-section-background {
  background: var(--gradient-background);
  background-color: var(--color-background);
}
.update-steps_info_container-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
  max-width: 900px;
  margin-inline: auto;

  .update-steps__heading {
    margin: unset;
  }
}

.update-steps-image-wrapper {
  border-radius: 2.4rem;
  overflow: hidden;
  height: 100%;
  
  @media (min-width: 750px) {
    border-radius: 5rem;
  }
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.update-steps-column_blocks_container {
  column-gap: 3rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 3rem;
  justify-content: space-between;
  line-height: 1;
  height: 100%;
  row-gap: 3rem;
  
  @media (min-width: 750px) {
    margin-top: 5rem;
  }

  .update-steps-media-block-container,
  .update-steps-info-block-container {
    width: calc(100%);
    @media (min-width: 750px) {
      width: calc(100% / 2 - 4rem);
    }
  }
}

.update-steps-media-block-right {
   @media (min-width: 750px){ flex-direction: row-reverse; }
}
.steps-wrapper {
  display: grid;
  align-items: center;
  column-gap: 1.5rem;
  grid-template-columns: 50px auto;
  
  @media (min-width: 750px) {
  column-gap: 3rem;
  grid-template-columns: 75px auto;    
  }

  .steps-counter {
    margin: unset;
    line-height: 1;
    border-radius: 50%;
    background: #262626;
    color: #ffffff;
    font-size: 2rem;
    width: 100%;
    padding: 1.5rem;
    text-align: center;  
    @media (min-width: 750px) {
      font-size: 3rem;
      padding: 2rem;    
    }
  }
  .step-title,
  .step-details-text {
    margin: unset;
  }
  .step-details-text {
    line-height: 1.5;
  }
}

.update-steps-info-block-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  @media (min-width: 750px) { gap: 3rem; }
  height: 100%;

  .step-details-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  }
}
