/* ===== BLOCK 9 — 1xGames (cards-grid mosaic 4-col) ===== */
.home_block_9 {
  background: var(--bg-surface);
}

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

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

.home_block_9_img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-line);
}

.home_block_9_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.home_block_9_tile {
  padding: 1.8rem 1.6rem;
  background: var(--bg-elevated);
  border: 1px solid var(--bg-line);
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}

.home_block_9_tile::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.home_block_9_tile:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: var(--bg-line);
}

.home_block_9_tile:hover::after {
  width: 100%;
}

.home_block_9_tile--wide {
  grid-column: span 2;
}

.home_block_9_tile > h3 {
  color: var(--accent);
  margin-bottom: 0.4rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
}

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

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

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

  .home_block_9_tile--wide {
    grid-column: 1 / -1;
  }

  .home_block_9_tile {
    padding: 2.4rem 2rem;
  }
}
