/* ============================================
   BLOCK 7 — MERCADOS DE APUESTAS (table only, surface bg)
   ============================================ */

.home_block_7 {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.home_block_7_ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.home_block_7_ambient > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.10;
  filter: saturate(1.3);
}

.home_block_7_ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, transparent 0%, var(--bg-surface) 70%),
    linear-gradient(160deg, var(--bg-surface) 0%, transparent 30%, var(--bg-surface) 100%);
}

.home_block_7_inner {
  position: relative;
  z-index: 1;
}

.home_block_7_inner {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.home_block_7_head {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 100rem;
}

.home_block_7_title {
  color: var(--text);
}

.home_block_7_table {
  max-width: 110rem;
}

.home_block_7_outro {
  max-width: 100rem;
}

@media (max-width: 1024px) {
  .home_block_7_inner { gap: 4.5rem; }
}
