.study-step-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-indicator-horizontal {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.step-number {
  width: 32px;
  height: 32px;
  background-color: #e0f9f8;
  color: #26a69a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 2;
  position: relative;
}

.step-line-horizontal {
  position: absolute;
  top: 50%;
  left: 55%;
  width: 100%;
  height: 0;
  border-top: 2px dotted #d1d1d1;
  z-index: 1;
  transform: translateY(-50%);
}

.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-content picture {
  width: 100%;
}

.step-content img {
  width: auto;
  height: 220px;
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  margin-bottom: 16px;
}

.step-content .btn {
  margin-top: auto;
}

@media (min-width: 992px) {
  .step-content img {
    width: auto;
    height: 150px;
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  }
}

.other-method {
  border: 1px solid var(--bs-gray-400);
  padding: 20px;
}

.anecdote-box h6,
.other-method h6,
.other-method p {
  margin-bottom: 0;
  margin-left: 8px;
}