/* ============================================
   BLOCK 2 — Cómo descargar / Android (split + numbered stepper)
   ============================================ */
.home_block_2_inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 5rem;
  align-items: center;
}

.home_block_2_media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--bg-line);
  align-self: stretch;
}

.home_block_2_media > img {
  width: 100%;
  height: 100%;
  min-height: 38rem;
  object-fit: cover;
}

.home_block_2_content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: flex-start;
}

.home_block_2_sub {
  margin-top: 0.6rem;
}

.home_block_2_steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
}

.home_block_2_steps > li {
  position: relative;
  counter-increment: step;
  padding-left: 4rem;
  color: var(--text-muted);
  font-size: 1.18rem;
  line-height: 1.55;
  min-height: 2.6rem;
  display: flex;
  align-items: center;
}

.home_block_2_steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 30%;
  box-shadow: 0 0 14px var(--accent-glow);
}

@media (max-width: 1024px) {
  .home_block_2_inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .home_block_2_media {
    order: -1;
  }

  .home_block_2_media > img {
    min-height: 48rem;
  }

  .home_block_2_content {
    gap: 2.6rem;
  }

  .home_block_2_steps > li {
    padding-left: 7rem;
    font-size: 2.4rem;
    min-height: 5rem;
  }

  .home_block_2_steps > li::before {
    width: 5rem;
    height: 5rem;
    font-size: 2.2rem;
  }
}
