/* Grid: 4 columnas desktop, 1 en móvil */
.staff-container {
  width: 70% !important;
  max-width: 70% !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  padding: 2rem 0 !important;
}


@media (max-width: 768px) {
  .staff-container {
    width: 90%;           /* un poco más ancho en móvil */
    grid-template-columns: 1fr;
  }
}

/* Tarjeta ampliada */
.staff-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1e1e1e;
  color: #ececec;
  padding: 1.2rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}

.staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* Info (izquierda) */
.staff-info {
  flex: 1;
  padding-right: 1rem;
}

.staff-info h4 {
  margin: 0;
  font-size: 1.3rem;
  color: #fff;
}

.staff-info .delivery {
  margin: 0.3rem 0 0.9rem;
  font-size: 0.9rem;
  color: #aaa;
}

/* Botón con anillo de progreso */
.btn-wrapper {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #444;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-play {
  width: 36px;
  height: 36px;
  background: #ff5722;
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s;
}

.btn-play:hover {
  transform: scale(1.1);
}

.icon-play::before {
  content: '▶';
  display: block;
  line-height: 36px;
  text-align: center;
}

.btn-play.playing .icon-play::before {
  content: '❚❚';
}

/* Canvas de espectro */
.audio-player {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.audio-spectrum {
  width: 180px;
  height: 50px;
  background: #222;
  border-radius: 4px;
}

/* Retrato ampliado (derecha) */
.staff-img img {
    width: 245px;
    height: 310px;
    object-fit: cover;
}

@media (max-width: 768px) {
  #staff-grid {
    grid-template-columns: 1fr !important;
  }

  .voice-filters {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}
