/* ============================================
   BLOCK 5 — Apuestas deportivas (gallery + list)
   ============================================ */
.home_block_5_inner {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.home_block_5_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.4rem;
  max-width: 820px;
  margin: 0 auto;
}

.home_block_5_gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.home_block_5_pic {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(164, 53, 240, 0.18) 0%, var(--bg-surface) 70%);
  border: 1px solid var(--bg-line);
}

.home_block_5_pic > img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 60%, transparent 88%);
  mask-image: radial-gradient(ellipse at center, #000 60%, transparent 88%);
}

.home_block_5_sub {
  margin-top: 0.5rem;
}

.home_block_5_disc {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home_block_5_disc > li {
  background: var(--bg-surface);
  border: 1px solid var(--bg-line);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.8rem;
  color: var(--text-muted);
  font-size: 1.18rem;
  line-height: 1.55;
}

.home_block_5_cat {
  color: var(--accent-bright);
  font-weight: 700;
}

.home_block_5_inner > .section_cta {
  justify-content: center;
}

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

  .home_block_5_head {
    max-width: 100%;
  }

  .home_block_5_disc > li {
    font-size: 2.3rem;
    padding: 2.4rem;
  }
}
