/**
 * Journey Steps Widget Styles
 * Spine Addons Plugin
 */

.journey-steps {
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative;
}

.journey-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Connector line between icons */
.journey-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 0;
  border-top: 1.5px dashed rgba(196,136,74,0.45);
  z-index: 1;
}

.journey-step.last .journey-connector {
  display: none;
}

.journey-step-content {
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

.journey-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(196,136,74,0.09);
  border: 1.5px solid rgba(196,136,74,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  position: relative;
  z-index: 2;
}

.journey-icon svg {
  width: 28px;
  height: 28px;
}

.journey-step-content h3 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  margin-top: 0;
}

.journey-step-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 12px;
}

.journey-tag {
    display: inline-block;
    background: rgba(196,136,74,0.1);
    color: #C4884A;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid rgba(196,136,74,0.25);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .journey-steps {
    flex-direction: column;
    gap: 30px;
  }

  .journey-step {
    width: 100%;
  }

  .journey-connector {
    display: none;
  }

  .journey-step-content {
    padding: 0 10px;
  }
}
