/* ============================================
   BLOCK 7 — APUESTAS EN VIVO Y STREAMING (hero-overlay)
   ============================================ */

.home_block_7 {
  background: var(--bg-dark);
  padding-block: 10rem;
}

.home_block_7_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.home_block_7::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    var(--bg-dark) 0%,
    rgba(18, 19, 23, 0.94) 42%,
    rgba(18, 19, 23, 0.6) 100%
  );
}

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

.home_block_7_content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-width: 760px;
}

.home_block_7_para {
  color: var(--text-muted);
}

.home_block_7_table {
  margin: 0.6rem 0;
}

@media (max-width: 1024px) {
  .home_block_7 {
    padding-block: 12rem;
  }

  .home_block_7_content {
    gap: 3rem;
    max-width: 100%;
  }
}
