/* ══════════════════════════════════════════
   QURTÈN — Process Section
   ══════════════════════════════════════════ */

.process-section {
  background: var(--clr-bg-3);
}

/* ── Step list ─────────────────────────── */
.process-steps {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .process-steps {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}

/* ── Individual Step ───────────────────── */
.process-step {
  display: flex;
  gap: 1.375rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(70, 86, 65, 0.12);
  position: relative;
}

@media (min-width: 1024px) {
  .process-step {
    flex: 1;
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem 0 0;
    border-bottom: none;
    border-right: 1px solid rgba(70, 86, 65, 0.12);
  }

  .process-step:last-child {
    border-right: none;
    padding-right: 0;
  }

  .process-step:not(:first-child) {
    padding-left: 2rem;
  }
}

/* Big number */
.process-step__num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: var(--fw-300);
  color: var(--clr-logo);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.25rem;
  transition: opacity var(--dur-slow) var(--ease-smooth);
}

.process-step:hover .process-step__num { opacity: 0.55; }

@media (min-width: 1024px) {
  .process-step__num {
    font-size: 4.5rem;
    min-width: unset;
  }
}

/* Step title */
.process-step__title {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: var(--fw-500);
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}

/* Step description */
.process-step__desc {
  font-size: 0.875rem;
  color: var(--clr-muted);
  line-height: 1.68;
}
