@charset "UTF-8";

.artist-list-section {
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 40px 20px;
  background-color: #000;
  color: #f0e6c8;
  font-family: 'Montserrat', sans-serif;
  user-select: none;
}

.section-title {
  font-weight: 700;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.05em;
  color: #f0e6c8;
  text-transform: uppercase;
  text-shadow: 0 0 10px #f0e6c8aa;
}

.artist-round {
  margin-bottom: 60px;
}

.round-title {
  font-weight: 700;
  font-size: 1.6rem;
  color: #d4af37;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 8px;
  margin-bottom: 30px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.artist-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  min-height: 260px;
}

.artist-card {
  background-color: #111;
  border-radius: 16px;

  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 16px;
}

.artist-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow:
    0 8px 16px rgba(212, 175, 55, 0.4),
    inset 0 0 10px rgba(212, 175, 55, 0.2);
}

.artist-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  margin-bottom: 16px;
  transition: filter 0.3s ease;
}

.artist-card:hover img {
  filter: brightness(1.1);
}

.artist-card h4 {
  font-weight: 600;
  font-size: 1.15rem;
  color: #f0e6c8;
  margin: 0;
  user-select: text;
}

.artist-card.empty {
  background: transparent;
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}
  
@media (max-width: 820px) {
  .artist-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .artist-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
