/* ============================================
   BLOCK 4 — DISEÑO Y NAVEGACIÓN (side-by-side)
   ============================================ */

.home_block_4 {
  background: var(--bg-dark);
}

.home_block_4_inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 5rem;
  align-items: center;
}

.home_block_4_image_frame {
  position: relative;
  border: 2px solid var(--accent-border);
  box-shadow: var(--shadow-card);
}

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

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

.home_block_4_text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

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

.home_block_4_list {
  margin: 0.4rem 0;
}

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

  .home_block_4_text {
    gap: 3rem;
  }

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