/* ============================================
   home_block_3 — INTERFAZ (table left 60% + note right 40%)
   ============================================ */

.home_block_3 {
  background: var(--bg-surface);
  padding: 10rem var(--main-padding);
  position: relative;
}

.home_block_3_inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.home_block_3_heading {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 900px;
}

.home_block_3_lead {
  margin-top: 0.5rem;
}

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

.home_block_3_note {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  padding: 3rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--accent-line-soft);
  position: sticky;
  top: 8rem;
}

.home_block_3_note::before {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background: var(--accent);
  transform: rotate(45deg);
  border-radius: 4px;
  box-shadow: 0 0 16px var(--accent-glow);
}

@media (max-width: 1024px) {
  .home_block_3 {
    padding: 14rem var(--main-padding);
  }

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

  .home_block_3_note {
    position: static;
  }

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