/* Process page */

.ajn-process-page {
  padding-bottom: 16px;
}

/* Avoid sticky stack leftover on dedicated process page */
.ajn-process-page #process.wpr-working-process .working-process-left {
  position: relative;
  top: auto;
  gap: 28px;
}

.ajn-process-page #process.wpr-working-process .working-process-wrapper {
  position: relative;
  top: auto;
  margin-bottom: 24px;
  padding: 16px 16px 32px;
}

.ajn-process-page #process.wpr-working-process .working-process-wrapper:last-child {
  margin-bottom: 0;
}

.ajn-process-page #process.wpr-working-process .working-process-wrapper .image-area,
.ajn-process-page #process.wpr-working-process .working-process-wrapper .image-area img {
  max-height: none;
  height: auto;
  width: 100%;
}

.ajn-process-detail .section-inner {
  padding: 56px 40px;
}

.ajn-process-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ajn-process-detail__card {
  margin: 0;
  padding: 28px 24px;
  border-radius: 16px;
  background: linear-gradient(137.66deg, #f5f5f5 21.13%, #f2f2f2 80.53%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -5px 0 #e4e4e4, inset 0 -6px 0 1px #fafafa;
}

.ajn-process-detail__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 36px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: #000;
  color: var(--color-primary, #4fbce6);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ajn-process-detail__card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ajn-process-detail__card > p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.62);
}

.ajn-process-detail__card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ajn-process-detail__card li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #000;
}

.ajn-process-detail__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary, #4fbce6);
}

@media (max-width: 991px) {
  .ajn-process-detail .section-inner {
    padding: 40px 24px;
  }

  .ajn-process-detail__grid {
    grid-template-columns: 1fr;
  }
}
