/* Componente How We Work */
.siasca-how-work {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.siasca-how-work .how-work__grid {
  display: grid;
  gap: 3.5rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

@media (max-width: 992px) {
  .siasca-how-work .how-work__grid {
    grid-template-columns: 1fr;
  }
}

.how-work__left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.how-work__header {
  max-width: 760px;
}

.how-work__title {
  margin: 0 0 .75rem;
  line-height: 1.1;
}

.how-work__intro {
  margin: 0;
  line-height: 1.5;
}

/* Lista de pasos */
.how-work__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.how-work__step {
  border-radius: 12px;
  transition: .35s;
}

.how-work__step.is-active {
  background: var(--color-primary-600);
  /* verde lima */
  padding: 1.25rem 1.5rem;
}

.how-work__step:not(.is-active) {
  padding: .5rem .25rem;
}

.how-work__step-btn {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
}

.how-work__step-num {
  font-weight: 600;
  font-size: 1.85rem;
  line-height: 1;
  color: #4a4a4a;
  font-variant-numeric: tabular-nums;
}

.how-work__step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
}

.how-work__panel {
  margin: .75rem 0 0 4.1rem;
  max-width: 680px;
}

.how-work__desc {
  margin: 0;
  font-size: .95rem;
  line-height: 1.5;
  color: white;
}

.how-work__step.is-active .how-work__step-num {
  color: white;
}

.how-work__step.is-active .how-work__step-title {
  color: white;
}

/* Imagen derecha */
.how-work__right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-work__figure {
  margin: 0;
  width: 100%;
  max-width: 640px;
}

.how-work__image {
  width: 100%;
  max-height: 500px;
  border-radius: 14px;
  display: block;
  object-fit: cover;
}

.how-work__image {
  transition: opacity .35s;
}

.how-work__image.is-fading {
  opacity: 0;
}

/* Accesibilidad: foco */
.how-work__step-btn:focus-visible {
  outline: 3px solid var(--color-primary-600, #0059ff);
  outline-offset: 4px;
  border-radius: 6px;
}

@media (max-width: 576px) {
  .how-work__step.is-active {
    padding: 1rem 1rem 1.05rem;
  }

  .how-work__panel {
    margin: .65rem 0 0 3.3rem;
  }

  .how-work__step-num {
    font-size: 1.5rem;
  }

  .how-work__step-title {
    font-size: 1rem;
  }
}