
.view-gallery .card-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
  width: 100%; /* Adjust as needed for your layout */
  max-width: 190px; /* Optional: Set a maximum width for the card */
}

.view-awardees .card-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
  width: 100%; /* Adjust as needed for your layout */
}

.view-gallery .card-item img {
  width: 100%; /* Makes the image fill the container's width */
  height: auto; /* Maintains aspect ratio */
  display: block; /* Removes any inline spacing below the image */
  object-fit: cover; /* Ensures the image covers the container without distortion */
}


.view-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 12%;
}



.view-gallery .card-content {
  padding: 15px;
}

.view-gallery .artist-title {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  margin-bottom: 8px;
}

.view-gallery .artist-title:hover {
  text-decoration: underline;
}

.view-gallery category {
  color: #666;
}

.view-gallery .card-item:hover {
  transform: scale(1.05);
}




