/* ============================================
   BLOCK 7 — La sección 1xGames
   Top mood-band photo (image3) + 3-col cards 10 games (rust accent-2)
   ============================================ */

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

.home_block_7_band {
  width: 100%;
  height: 28rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--accent-2-soft);
  box-shadow: var(--shadow-card);
}

.home_block_7_band > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home_block_7_band_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 19, 14, 0.78) 0%, transparent 50%, rgba(30, 100, 115, 0.42) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2.8rem 3.2rem;
}

.home_block_7_band_label {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--text);
  letter-spacing: 0.02em;
  max-width: 560px;
}

.home_block_7_header {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 900px;
}

.home_block_7_header > p {
  color: var(--text-muted);
}

.home_block_7_intro {
  color: var(--accent-2);
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

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

.home_block_7_card {
  padding: 2rem 2.2rem;
  background: var(--bg-surface);
  border: 1px solid var(--bg-line);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.home_block_7_card:hover {
  border-color: var(--accent-2);
  transform: translateY(-3px);
  background: var(--bg-elevated);
}

.home_block_7_card_title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--accent-2);
}

.home_block_7_card_desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.home_block_7_closer {
  color: var(--text-muted);
  padding: 2rem 2.4rem;
  border-left: 2px solid var(--accent-2);
  background: var(--bg-surface);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

@media (max-width: 1024px) {
  .home_block_7_band { height: 36rem; }
  .home_block_7_band_label { font-size: 3.4rem; }
  .home_block_7_grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .home_block_7_card { padding: 3rem 3rem; }
  .home_block_7_card_title { font-size: 3rem; }
  .home_block_7_card_desc { font-size: 2.2rem; }
  .home_block_7_intro { font-size: 2.4rem; }
}
