.comedians-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  box-sizing: border-box;
}

.comedians-grid .comedian-card {
  width: 100%;
}

.comedian-card {
  padding: 0;
  overflow: hidden;
  max-width: 100%;
}

.comedian-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.comedian-image-wrapper {
  width: 100%;
  margin-bottom: 0;
  background: white;
  justify-content: center;
  display: flex;
}

.comedian-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  align-items: center;
}

.comedian-image img {
  align-items: center;
  width: 100%;
  height: auto;
  display: block;
}

.comedian-social {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  justify-content: center;
  width: 100%;
  padding: 0 1rem 1rem 1rem;
  flex-wrap: wrap;
}

.comedian-social a {
  text-decoration: none;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comedian-social a i {
  font-size: 20px;
  color: #333;
}

.comedian-social a:hover i {
  color: #007cba;
  transform: scale(1.2);
}

.comedian-social a:hover {
  transform: scale(1.2);
}
