/* ============================================
   BLOCK 10 — APLICACIÓN MÓVIL (side-by-side, table + image)
   ============================================ */

.home_block_10 {
  background: var(--bg-surface);
  border-block: 1px solid var(--bg-line);
}

.home_block_10_inner {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 4.5rem;
  align-items: center;
}

.home_block_10_text {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.home_block_10_para {
  color: var(--text-muted);
}

.home_block_10_table {
  margin: 0.4rem 0;
}

.home_block_10_visual {
  position: relative;
  align-self: stretch;
}

.home_block_10_image_frame {
  position: relative;
  height: 100%;
  min-height: 460px;
  border: 2px solid var(--accent-border);
  box-shadow: var(--shadow-card);
}

.home_block_10_image_frame::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 2.4rem;
  height: 2.4rem;
  border: 3px solid var(--accent);
  border-right: none;
  border-bottom: none;
}

.home_block_10_image_frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

  .home_block_10_text {
    gap: 3rem;
  }

  .home_block_10_image_frame {
    min-height: 520px;
  }

  .home_block_10_image_frame::before {
    width: 5rem;
    height: 5rem;
  }
}
