/* Start custom CSS for html, class: .elementor-element-5cd82a0 */.lineup-container {
  max-width: 1200px;
  margin: auto;
}

.filters {
  text-align: center;
  margin-bottom: 30px;
}

.filters button {
  background: none;
  color: white;
  border: 1px solid white;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
}

.filters .active {
  background: #771D59;
  color: white;
  border: 1px;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.artist {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.artist img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.artist:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  color: white;
  width: 100%;
  padding: 15px;
  transform: translateY(100%);
  transition: 0.3s;
}

.artist:hover .overlay {
  transform: translateY(0);
}/* End custom CSS */