/* ============================================
   BLOCK 6 — Apuestas deportivas (6 deportes)
   Bento grid: fútbol hero (2x2 with image) + 4 standard cells + UFC wide-strip
   ============================================ */

.home_block_6 {
  background: var(--bg-dark);
  position: relative;
}

.home_block_6_inner {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

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

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

.home_block_6_title > span {
  color: var(--accent);
  font-style: italic;
  font-weight: 800;
  text-shadow: 0 0 24px rgba(43, 255, 124, 0.35);
}

.home_block_6_lead {
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== Bento grid 4 col × 3 rows ===== */
.home_block_6_bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 18rem;
  gap: 1.6rem;
}

/* ===== Standard sport card ===== */
.sport_card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
  position: relative;
  overflow: hidden;
}

.sport_card:hover {
  border-color: rgba(43, 255, 124, 0.4);
  transform: translateY(-3px);
}

.sport_card_icon {
  width: 5rem;
  height: 5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(43, 255, 124, 0.25);
  border-radius: var(--radius-sm);
}

.sport_card_icon > svg {
  width: 60%;
  height: 60%;
}

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

/* ===== Hero card — fútbol (2 col × 2 rows + image bg) ===== */
.sport_card_hero {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  position: relative;
  background: var(--bg-elevated);
}

.sport_card_hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  position: absolute;
  inset: 0;
}

.sport_card_hero_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 21, 10, 0.15) 0%,
    rgba(6, 21, 10, 0.55) 55%,
    rgba(6, 21, 10, 0.92) 100%
  );
}

.sport_card_hero_content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.sport_card_hero_tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--bg-dark);
  background: var(--accent);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 0 12px rgba(43, 255, 124, 0.4);
}

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

.sport_card_hero_desc {
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 38ch;
}

/* ===== Wide card — UFC (full row 4 col) ===== */
.sport_card_wide {
  grid-column: span 4;
  flex-direction: row;
  align-items: center;
  gap: 2.4rem;
  padding: 2rem 2.4rem;
}

.sport_card_icon_lg {
  width: 7rem;
  height: 7rem;
  flex-shrink: 0;
}

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

.sport_card_wide_desc {
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 56ch;
}

.sport_card_wide_cta {
  flex-shrink: 0;
}

/* ============================================
   Mobile — ≤1024px
   ============================================ */
@media (max-width: 1024px) {
  .home_block_6_inner {
    gap: 6rem;
  }

  .home_block_6_header {
    max-width: 100%;
    gap: 2rem;
  }

  .home_block_6_bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 2rem;
  }

  .sport_card {
    padding: 3rem 2.5rem;
    gap: 2.5rem;
    min-height: 22rem;
  }

  .sport_card_icon {
    width: 9rem;
    height: 9rem;
  }

  .sport_card_hero {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 45rem;
  }

  .sport_card_hero_content {
    padding: 3rem 2.5rem;
    gap: 1.4rem;
  }

  .sport_card_hero_tag {
    font-size: 1.85rem;
    padding: 0.8rem 1.6rem;
  }

  .sport_card_hero_desc {
    max-width: 100%;
  }

  .sport_card_wide {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem 2.5rem;
  }

  .sport_card_icon_lg {
    width: 11rem;
    height: 11rem;
  }

  .sport_card_wide_content {
    gap: 1rem;
  }

  .sport_card_wide_desc {
    max-width: 100%;
  }

  .sport_card_wide_cta {
    align-self: stretch;
    width: 100%;
    height: 16rem;
  }
}
