.a2-process-wrapper {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 40px;
  position: relative;
  align-items: start;
}

/* dotted connector line */
.a2-process-wrapper::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #f69322 0px,
    #f69322 6px,
    transparent 6px,
    transparent 14px
  );
  z-index: 0;
}

.a2-process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.a2-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom:10px!important;
  font-size: 28px;
  color: #6f73ff;
  background: linear-gradient(180deg, #3a3a3a, #1c1c1c);
}

/* title */
.a2-process-step h3 {
  margin-top: 15px !important;
  font-size: 18px;
  color: #fff;
}

/* description */
.a2-process-step p {
  font-size: 16px;
  color: #cccccc;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .a2-process-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* card style */
  .a2-process-step {
    background: linear-gradient(#3b1c00, #0a0a0a);
    border: 1px solid #dbdbdb;
    border-radius: 16px;
    padding: 30px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    min-height: 220px;
  }

  /* hide connector line */
  .a2-process-wrapper::before {
    display: none;
  }
}
