/* ============================================
   BLOCK 5 — Tragamonedas: la categoría más amplia
   Side-by-side: mood-photo (image5) LEFT + table+content RIGHT
   ============================================ */

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

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

.home_block_5_image {
  width: 100%;
  height: 70vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--accent-line-soft);
  box-shadow: var(--shadow-card);
  position: relative;
}

.home_block_5_image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home_block_5_image_caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem 2rem;
  background: linear-gradient(180deg, transparent, rgba(26, 19, 14, 0.85));
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}

.home_block_5_right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

@media (max-width: 1024px) {
  .home_block_5_inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .home_block_5_image { height: 50vh; }
  .home_block_5_left { position: static; }
  .home_block_5_image_caption { font-size: 2.2rem; }
}
