/* ============================================
   BLOCK 7 — Apuestas en vivo (split, image left)
   ============================================ */
.home_block_7_inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.home_block_7_visual {
  position: relative;
  width: 100%;
}

.home_block_7_visual::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 65%);
  filter: blur(22px);
  z-index: 0;
}

.home_block_7_visual > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 55%, transparent 82%);
  mask-image: radial-gradient(ellipse at center, #000 55%, transparent 82%);
}

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

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

  .home_block_7_visual {
    order: 2;
  }

  .home_block_7_text {
    order: 1;
    gap: 3rem;
  }
}
