@charset "UTF-8";

/* ===========================
   PRÓXIMO EVENTO DESTACADO
   =========================== */

.evento-destacado {
  display: flex;
  gap: var(--space-xl);
  align-items: center;         
  justify-content: center;       
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.flyer {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.evento-info {
  text-align: left; 
  max-width: 450px;              
}

.evento-fecha {
  margin: 8px 0 18px 0;
  color: var(--gray-mid);
}

.evento-lineup {
  margin-top: 10px;
  margin-bottom: 20px;
}

.evento-lineup li {
  margin-bottom: 6px;
  font-size: 1rem;
}

.evento-buttons {
  display: flex;
  gap: var(--space-md);
  margin-top: 20px;
}

/* CONTENEDOR DE PLAYERS */
.evento-players {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 320px;                 /* ancho del rectángulo */
}

/* RECTÁNGULOS DE CADA PLAYER */
.player-box {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;                /* alto compacto */
  box-shadow: var(--shadow-soft);
}

.player-box iframe {
  width: 100%;
  height: 300px;
}
/* ===========================
   EVENTOS PASADOS
   =========================== */

.grid-cards .card img {
  height: 260px;
  object-fit: cover;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.card p {
  color: var(--gray-mid);
  margin-bottom: 4px;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 900px) {
  .evento-destacado {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; /* centramos todo en mobile */
  }

  .evento-info {
    text-align: center; /* el texto va centrado en mobile */
  }

  .evento-buttons {
    justify-content: center;
  }
}
