/* ============================================
   BLOCK 5 — APUESTAS DEPORTIVAS (table + image)
   ============================================ */

.home_block_5 {
  background: var(--bg-surface);
  border-block: 1px solid var(--bg-line);
}

.home_block_5_inner {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}

.home_block_5_head {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.home_block_5_grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: start;
}

.home_block_5_text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.home_block_5_visual {
  position: relative;
  align-self: stretch;
}

.home_block_5_image_frame {
  position: relative;
  height: 100%;
  min-height: 420px;
  border: 2px solid var(--accent-border);
  box-shadow: var(--shadow-card);
}

.home_block_5_image_frame::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: 2.4rem;
  height: 2.4rem;
  border: 3px solid var(--accent);
  border-right: none;
  border-top: none;
}

.home_block_5_image_frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home_block_5_note {
  color: var(--text);
  padding-left: 2.4rem;
  border-left: 3px solid var(--accent);
  max-width: 1100px;
}

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

  .home_block_5_head {
    gap: 2rem;
  }

  .home_block_5_grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .home_block_5_image_frame {
    min-height: 460px;
  }

  .home_block_5_image_frame::after {
    width: 5rem;
    height: 5rem;
  }

  .home_block_5_note {
    padding-left: 4rem;
    border-left-width: 5px;
  }
}
