﻿.carousel-section {
  max-width: 1000px;
  margin: 60px auto;
  text-align: center;
}
.carousel-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0077ff;
}

.swiper {
  padding: 20px;
}

.swiper-slide {
  background: linear-gradient(to bottom right, #ffffff, #f0f8ff);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}
.swiper-slide:hover {
  transform: scale(1.03);
}

.creator-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  margin-bottom: 12px;
  object-fit: cover;
}
.creator-name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.creator-bio {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
}
.creator-tags {
  margin-top: 10px;
  font-size: 13px;
  color: #0077ff;
}

/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #0077ff;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #0055aa;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .swiper-slide {
    padding: 15px;
  }
}
