/* ============================================
   BLOCK 5 — Blackjack (image-left + text-right)
   ============================================ */

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

.home_block_5_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.home_block_5_image {
  position: relative;
  border: 1px solid var(--accent-line-mid);
  padding: 0.8rem;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-card);
}

.home_block_5_image::before {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border: 1px solid var(--accent-line-soft);
  pointer-events: none;
  z-index: 1;
}

.home_block_5_image > img {
  display: block;
  width: 100%;
  height: auto;
  filter: sepia(0.4) saturate(0.95) brightness(0.92) contrast(1.05);
}

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

.home_block_5_title {
  color: var(--text);
  font-style: italic;
}

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

  .home_block_5_image {
    padding: 1.4rem;
  }

  .home_block_5_image::before {
    inset: 1.4rem;
  }
}
