/* ============================================
   BLOCK 7 — Casino en vivo (full-bleed image top + list)
   ============================================ */

.home_block_7 {
  background: var(--bg-surface);
  padding-top: 0;
  position: relative;
}

.home_block_7_image {
  width: 100%;
  height: 50vh;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--accent-line-mid);
}

.home_block_7_image > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.45) saturate(0.95) brightness(0.75) contrast(1.08);
}

.home_block_7_image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, var(--bg-surface) 100%);
  pointer-events: none;
}

.home_block_7_inner {
  padding: 6rem var(--main-padding) 0;
  margin-top: -8rem;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  position: relative;
  z-index: 2;
}

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

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

.home_block_7_offer {
  font-style: italic;
  color: var(--accent);
  margin-top: 0.6rem;
}

.home_block_7_list > li > strong {
  color: var(--text);
  font-weight: 700;
}

.home_block_7_close {
  margin-top: 0.6rem;
  padding-left: 1.4rem;
  border-left: 1px solid var(--accent-line-mid);
  font-style: italic;
}

@media (max-width: 1024px) {
  .home_block_7_image {
    height: 35vh;
    max-height: 380px;
  }

  .home_block_7_inner {
    padding: 8rem var(--main-padding) 0;
    margin-top: -6rem;
    gap: 3rem;
  }

  .home_block_7_close {
    padding-left: 2.4rem;
    border-left-width: 2px;
  }
}
