/* ============================================
   home_block_2 — CÓMO DESCARGAR
   Journal layout: centered head → full-width image → 2-col (table + text)
   ============================================ */

.home_block_2 {
  background: var(--bg-surface);
  position: relative;
}

.home_block_2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-line-mid) 50%, transparent 100%);
}

.home_block_2_inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  position: relative;
  z-index: 1;
}

.home_block_2_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.home_block_2_title {
  margin-top: 0.3rem;
}

.home_block_2_title > .text-accent {
  color: var(--accent);
}

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

.home_block_2_image_wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--accent-line-mid);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 40px var(--accent-glow);
}

.home_block_2_image_wrap > img {
  width: 100%;
  height: auto;
  display: block;
}

.home_block_2_image_wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 20, 16, 0.6) 100%);
  pointer-events: none;
}

.home_block_2_grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.home_block_2_table_wrap {
  position: sticky;
  top: 8rem;
}

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

.home_block_2_text > p {
  color: var(--text-muted);
}

.home_block_2_note {
  padding: 1.6rem 1.8rem;
  border-left: 2px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text) !important;
  font-style: italic;
}

.home_block_2_cta {
  justify-content: center;
  margin-top: 0;
}

/* ============================================
   Mobile — ≤1024px
   ============================================ */
@media (max-width: 1024px) {
  .home_block_2_inner {
    gap: 6rem;
  }

  .home_block_2_head {
    text-align: left;
    align-items: flex-start;
  }

  .home_block_2_image_wrap {
    border-radius: var(--radius);
  }

  .home_block_2_grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .home_block_2_table_wrap {
    position: static;
  }

  .home_block_2_text {
    gap: 2.5rem;
  }

  .home_block_2_note {
    padding: 2.4rem 2.6rem;
    font-size: 2.4rem;
    line-height: 1.55;
  }
}
