/* ============================================
   BLOCK 6 — Mesas en vivo (cards grid 3x2, last cell media)
   ============================================ */
.home_block_6_inner {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}

.home_block_6_head {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 42em;
}

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

.home_block_6_card {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-line);
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.home_block_6_card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
}

.home_block_6_card > p {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.55;
}

.home_block_6_card_title {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
}

.home_block_6_card--media {
  padding: 0;
  overflow: hidden;
}

.home_block_6_card--media > img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
}

.home_block_6_note {
  max-width: 60em;
}

@media (max-width: 1024px) {
  .home_block_6_grid {
    grid-template-columns: 1fr;
  }

  .home_block_6_card > p {
    font-size: 2.4rem;
  }

  .home_block_6_card--media > img {
    min-height: 40rem;
  }
}
