.random-artists-widget.artist-list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
}

@media (max-width: 767px) {
  .random-artists-widget.artist-list {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  
  .random-artists-widget .artist-item {
    padding: 8px !important;
  }
  
  .random-artists-widget .artist-item img {
    width: 60px !important;
    height: 60px !important;
  }
  
  .random-artists-widget .artist-item p {
    font-size: 12px !important;
  }
}

.random-artists-widget .artist-item {
  text-align: center;
  border-radius: 10px;
  padding: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  background-color: var(--adv-bg-default, #fff) !important;
  color: var(--adv-txt, #111) !important;
  border: 1px solid var(--adv-border-color, #ddd);
}

.random-artists-widget .artist-item:hover {
  background-color: var(--adv-bg-hover, #f8f8f8) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
}

.random-artists-widget .artist-item img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 8px;
  border: 2px solid var(--adv-border-color, #ddd);
}

.random-artists-widget .artist-item a {
  text-decoration: none !important;
  color: inherit !important;
  transition: color 0.2s ease;
  display: block;
}

.random-artists-widget .artist-item a:hover {
  color: var(--adv-primary, #f3bafd) !important;
}

.random-artists-widget .artist-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

html[data-theme="dark"] .random-artists-widget .artist-item {
  background-color: #1b1b1b !important;
  border-color: #333 !important;
}

html[data-theme="dark"] .random-artists-widget .artist-item img {
  border-color: #555 !important;
}

html[data-theme="dark"] .random-artists-widget .artist-item:hover {
  background-color: #222 !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
}