/* Step By Step Guide */
.steps-guide {
  margin: 10px 22px;
}
.archive .steps-guide,
.category .steps-guide {
  margin: 0;
}
.sg-item {
  position: relative;
  border: 1px solid #e8e8e1;
  border-radius: 10px;
  margin-bottom: 15px;
  margin-left: 60px;
  background-color: #fff;
}
.sg-item::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: transparent;
  left: -35px;
  top: 20px;
  border-left: 1px #e8e8e1 dashed;
}
.sg-item:last-child:before {
  display: none;
}
.sg-item__number {
  width: 40px;
  height: 40px;
  background-color: #fdd71c;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: -55px;
}
.sg-item__number::before {
  content: "";
  width: 15px;
  height: 1px;
  position: absolute;
  right: -15px;
  top: 21px;
  border-top: 1px #e8e8e1 dashed;
}
.sg-item__title {
  font-size: 14px;
  margin-bottom: 5px;
}
p.sg-item__text {
  margin: 0;
  margin-bottom: 15px;
}
p.sg-item__text,
.sg-item__title {
  padding: 0 22px;
}

@media screen and (max-width: 650px) {
  .steps-guide {
    margin: 0;
    padding: 0 15px;
    padding-top: 15px;
    margin-bottom: 10px;
  }
  .archive .steps-guide,
  .category .steps-guide {
    padding: 0;
  }
  p.sg-item__text,
  .sg-item__title {
    padding: 0 15px;
  }
}
