/* ===== BLOCK 7 — Apuestas deportivas (cards-3-col) ===== */
.home_block_7 {
  background: var(--bg-surface);
}

.home_block_7_inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

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

.home_block_7_card {
  position: relative;
  padding: 2.4rem 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--bg-line);
  border-bottom: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, border-bottom-color 0.25s ease, box-shadow 0.2s ease;
}

.home_block_7_card:hover {
  transform: translateY(-3px);
  border-bottom-color: var(--accent-bright);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.home_block_7_card > h3 {
  color: var(--accent);
  margin-bottom: 0.6rem;
  font-family: "Roboto Slab", serif;
  font-weight: 700;
}

.home_block_7_card > p {
  color: var(--text-muted);
  line-height: 1.5;
}

.home_block_7_img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-line);
  margin-top: 2rem;
}

.home_block_7_outro {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 1.2rem;
  max-width: 80ch;
}

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

  .home_block_7_card {
    padding: 3rem 2.6rem;
  }
}
