.steps-grid {
  max-width: 1312px;
  margin: 0 auto;
  font-family: 'Helvetica Neue', sans-serif;
}

.steps-grid__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #424242;
}

.steps-grid__wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: nowrap; 
}

.steps-grid__left {
  width: 50%;
}

.steps-grid__right {
  width: 50%;
}

.steps-grid__image {
  width: 100%;
  height: auto;
  border-radius: 30px;
  object-fit: cover;
}

.steps-grid__row {
  display: flex;
  align-items: center; 
  flex-direction: row;
  gap: 30px;
  margin-bottom: 30px;
}

.steps-grid__row.has-divider {
  border-bottom: 1px solid #AEAEAE;
  padding-bottom: 30px;
}

.steps-grid__icon-wrapper {
  background-color: #AEAEAE14;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; 
}

.steps-grid__icon {
  width: 25.33px;
  height: 25.33px;
}

.steps-grid__row-title {
  font-size: 24px;
  font-weight: 700;
  color: #424242;
  margin-bottom: 10px;
}

.steps-grid__row-description {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #424242;
}

.steps-grid__row-description ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.steps-grid__row-description ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.steps-grid__row-description li {
  margin-bottom: 0.25rem;
}

.steps-grid__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Añadir esto al final de tu archivo CSS */
@media (max-width: 768px) {
  .steps-grid__wrapper {
    flex-direction: column;
  }

  .steps-grid__left,
  .steps-grid__right {
    width: 100%;
  }
}