.indy-steps-widget {
  padding: 56px 16px;
  padding: 56px 16px;
  border-radius: 24px;
  border: 1px solid #f3f6f9;
  background-color: #fff;
  box-shadow: 0px 2px 16px 0px rgba(237, 207, 166, 0.18);
}

.indy-steps-widget .steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 24px 0;
}
.indy-steps-widget .steps-wrapper .step-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  flex-grow: 1;
}
.indy-steps-widget .steps-wrapper .step-card img {
  width: 56px;
  height: 56px;
}
.indy-steps-widget .steps-wrapper .step-card .step-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.32px;
  margin-top: 32px;
}
.indy-steps-widget .steps-wrapper .step-card .step-text {
  margin-top: 8px;
  margin-bottom: 0;
}

.indy-steps-widget .buttons-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: column;
  margin-top: 40px;
}
.indy-steps-widget .buttons-wrapper .btn {
  min-width: 205px;
}

@media (min-width: 768px) {
  .indy-steps-widget {
    padding: 56px;
  }
  .indy-steps-widget .steps-wrapper {
    flex-direction: row;
    padding: 24px 0;
  }
  .indy-steps-widget .steps-wrapper .step-card .step-text {
    max-width: 315px;
  }
  .indy-steps-widget .buttons-wrapper {
    margin-top: 24px;
    flex-direction: row;
    justify-content: center;
  }
}
