/* ============================================
   BLOCK 2 — PRE-CONTENT (stacked single-col long lead)
   ============================================ */

.home_block_2 {
  background: var(--bg-dark);
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.home_block_2_inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1100px;
  text-align: left;
  position: relative;
  padding-top: 2rem;
}

.home_block_2_inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 3px;
  background: var(--gradient-blue-yellow);
}

.home_block_2_lead {
  margin-top: 0.5rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.35;
}

.home_block_2_body {
  max-width: 92%;
}

.home_block_2_cta {
  align-self: flex-start;
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .home_block_2_body {
    max-width: 100%;
  }

  .home_block_2_cta {
    align-self: stretch;
  }
}
