/* One Process widget */
.oe-process-wrap {
  width: 100%;
}

.oe-process-header {
  margin-bottom: 40px;
}

.oe-process-subtitle {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.oe-process-title {
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}

/* Horizontal steps */
.oe-process-steps.oe-process-horizontal {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}

.oe-process-steps.oe-process-horizontal .oe-process-step {
  flex: 1 1 0;
  min-width: 160px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.oe-process-step-top {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
}

.oe-process-steps.oe-process-horizontal .oe-process-step-top {
  justify-content: center;
}

.oe-process-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oe-process-icon-wrap.oe-shape-diamond {
  transform: rotate(45deg);
}

.oe-process-icon-wrap.oe-shape-diamond i,
.oe-process-icon-wrap.oe-shape-diamond svg {
  transform: rotate(-45deg);
}

.oe-process-icon-wrap.oe-shape-circle {
  border-radius: 50%;
}

.oe-process-icon-wrap.oe-shape-square {
  border-radius: 0;
}

.oe-process-connector {
  flex: 1;
  min-width: 20px;
  height: 0;
  border-top: 2px solid #e0e0e0;
  margin-top: calc(0.5em + 17px);
  align-self: flex-start;
}

.oe-process-step-num {
  margin: 0 0 8px 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.oe-process-step-title {
  margin: 0 0 10px 0;
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}

.oe-process-step-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Vertical layout */
.oe-process-steps.oe-process-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.oe-process-steps.oe-process-vertical .oe-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.oe-process-steps.oe-process-vertical .oe-process-step-top {
  justify-content: center;
}

.oe-process-steps.oe-process-vertical .oe-process-connector {
  width: 0;
  min-width: 0;
  height: 30px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #e0e0e0;
  margin: 0 0 15px 0;
}

@media (max-width: 1024px) {
  .oe-process-steps.oe-process-horizontal .oe-process-step {
    min-width: 140px;
    max-width: 200px;
  }
}

@media (max-width: 767px) {
  .oe-process-steps.oe-process-horizontal {
    flex-direction: column;
    align-items: center;
  }

  .oe-process-steps.oe-process-horizontal .oe-process-step {
    max-width: 100%;
  }

  .oe-process-steps.oe-process-horizontal .oe-process-connector {
    width: 0;
    min-width: 0;
    height: 20px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #e0e0e0;
    margin: 0 auto 15px;
  }

  .oe-process-step-top {
    flex-direction: column;
  }
}
