/* 🧊 Spotify Glass Minimal Style */

/* CONTENEDOR */
.spotify-artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 28px;
  padding: 40px;
  background: radial-gradient(circle at top, #101010 0%, #000000 100%);
}

/* TARJETA */
.spotify-artist-card {
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  background: rgba(25, 25, 25, 0.65);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.spotify-artist-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
}

/* IMAGEN */
.spotify-artist-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom: 2px solid #1db954;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}
.spotify-artist-card:hover img {
  opacity: 1;
}

/* NOMBRE DEL ARTISTA */
.spotify-artist-card h3 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 14px 0 4px 0;
  letter-spacing: 0.4px;
}

/* SEGUIDORES */
.spotify-artist-card p {
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: #d0d0d0;
}
.spotify-artist-card p strong {
  color: #ffffff;
  font-size: 1.1rem;
}

/* BOTÓN */
.spotify-artist-card a {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #1db954, #1ed760);
  color: white;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.spotify-artist-card a:hover {
  background: linear-gradient(135deg, #1ed760, #1db954);
  transform: scale(1.05);
}
.prisna-social-counter {
    border-radius: 15px !important;
    overflow: hidden !important;
}

.prisna-social-counter-item {
    border-radius: 15px !important;
}

.prisna-social-counter-icon,
.prisna-social-counter-text {
    border-radius: 15px !important;
}
