/* ==========================================================================
   Componente: Steps (.steps)
   Lista de pasos numerados para explicar un proceso
   ========================================================================== */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-32);
}

.step {
  display: flex;
  gap: var(--space-16);
}

.step__number {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}

.step__title {
  margin-bottom: var(--space-8);
  font-size: 1.125rem;
  color: var(--text-color);
}

.step__text {
  color: var(--gray-700);
  line-height: 1.6;
}

@media (min-width: 992px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .step {
    flex-direction: column;
  }
}
