/* ============================================
   Component: Steps (How to Order)
   ============================================ */
.steps {
  padding: var(--spacing-section) 0;
  background-color: var(--color-bg);
}

/* Row layout */
.steps__row {
  display: flex;
  align-items: stretch;
  margin-top: var(--spacing-5xl);
}

.steps__col {
  flex: 1;
  min-width: 0;
}

/* Colored box with content inside */
.steps__box {
  width: 100%;
  min-height: 220px;
  height: 100%;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-start;
  padding: 35px 23px 25px 28px;
}

.steps__box--1 { background-color: var(--color-bg-light); }
.steps__box--2 { background-color: var(--color-border-hover); }
.steps__box--3 { background-color: var(--color-secondary); }
.steps__box--4 { background-color: var(--color-primary); }
.steps__box--5 { background-color: var(--color-bg-light); }

/* Content inside box */
.steps__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.steps__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extra-bold);
  color: var(--color-text-heading);
  line-height: normal;
}

.steps__text {
  font-size: var(--font-size-lg);
  color: var(--color-text-heading);
  line-height: 22px;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Dark box — white text */
.steps__box--3 .steps__title,
.steps__box--3 .steps__text {
  color: var(--color-white);
}

/* Connector arrow between steps — overlaps adjacent boxes */
.steps__connector {
  width: 58px;
  flex-shrink: 0;
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.steps__connector img {
  width: 58px;
  height: 58px;
}
