/* ============================================
   BLOCK 10 — BONO (2 big modality cards + visual)
   ============================================ */
.home_block_10_inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.home_block_10_head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 64rem;
}
.home_block_10_cards {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 1.6rem;
  align-items: stretch;
}
.home_block_10_card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--bg-surface);
  border: 1px solid var(--bg-line);
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: var(--shadow-card);
}
.home_block_10_card > h3 {
  color: var(--accent);
}
.home_block_10_card .home_block_10_cta {
  align-self: stretch;
  margin-top: auto;
}
.home_block_10_visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--bg-line);
  background: var(--bg-elevated);
  display: flex;
}
.home_block_10_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_block_10_note {
  max-width: 72rem;
}
@media (max-width: 1024px) {
  .home_block_10_cards { grid-template-columns: 1fr; }
  .home_block_10_head,
  .home_block_10_note { max-width: 100%; }
  .home_block_10_card .home_block_10_cta { width: 100%; }
  .home_block_10_visual { min-height: 40rem; }
}
