.hero-section-creators {
  text-align: center;
  margin-top: 3rem;
  font-size: 4rem;
  position: relative; 
}

.hero-section-creators h2 {
  position: relative;
  z-index: 1; 
}

.hero-section-creators h2::before {
  content: "Creative"; 
  position: absolute;
  width: 100vw; 
  overflow: hidden; 
  top: 30%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  font-size: 7.5rem; 
  color: white;
  opacity: 0.15; 
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.7); 
  z-index: -10; 
  white-space: nowrap;
}

@media (max-width: 800px) {
  .hero-section-creators h2::before {
    top: 40%;
    font-size: 6rem;
  }
  .hero-section-creators {
    font-size: 3rem;
  }
}
@media (max-width: 425px) {
  .hero-section-creators {
    font-size: 2rem;
  }
}

.searchbar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px; 
  margin: 2rem auto;
  border-radius: 30px; 
  background-color: #fff;
  border: solid 2px #00000008; 
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); 
  padding: 5px 15px; 
}

.creator-search-bar {
  width: 100%;
  font-size: 1rem;
  padding: 10px 15px 10px 25px; 
  border: none; 
  border-radius: 30px; 
  outline: none; 
  background-color: transparent; 
  box-sizing: border-box;
}

.searchbar svg {
  width: 20px;
  height: 20px;
  margin-right: 20px;
}
.filtersection {
  display: flex;
  justify-content: flex-end; 
  width: 100%; 
  padding: 1rem; 
}

.filter-button {
  display: flex;
  align-items: center; 
  justify-content: center;
  padding: 0.5rem 1.5rem; 
  border-radius: 100px; 
  background-color: transparent; 
  border: solid 2px hsla(0, 0%, 0%, 0.03); 
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); 
  cursor: pointer; 
}

.button-text {
  font-size: 1.2rem;
  color: #000;
  margin-right: 10px;
  margin-top: 0;
}

.filter-button svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: white; 
}

/* Basic Layout */
/* Grid Layout */
/* Video Section */
/* Layout for the creative video section */
/* Layout for the creative video section */
/* Layout for the creative video section */
.our-creative-video-section {
  display: flex;
  gap: 20px; 
  padding: 2rem;
}

/* Video Section */
.video-section {
  flex-grow: 1; 
}

/* Individual Video Card */
/* Video Grid Layout */
.video-grid {
  display: grid;
  grid-auto-flow: row; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 20px; 
  justify-content: center; 
}

/* Individual Video Card */
.video {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  width: 280px; 
  height: calc(280px * 16 / 9); 
  margin: 0 auto;
  transition: transform 0.3s ease;
  will-change: transform;
}

/* Video Aspect Ratio */
.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Client Info with Frosted Glass Effect */
/* Client Info with Semi-Transparent Background */
.client-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
  align-items: center; 
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.85); 
  border-top: 1px solid rgba(200, 200, 200, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  height: 300px; 
  transform: translateY(60%);
  transition: transform 0.6s ease;
  z-index: 2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

/* Hover Effect */
.video:hover .client-info {
  transform: translateY(0); 
}

/* Client Header */
.client-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0.5rem;
}

/* Client Name */
.client-name {
  font-size: 1rem;
  font-weight: bold;
  color: #8a1552;
  margin: 0;
}

/* Client Account Link */
.client-account-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #8a1552;
  color: #8a1552;
  background-color: transparent;
  padding: 0.3rem;
  border-radius: 0.2rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.client-account-link:hover {
  color: #fff;
  transform: scale(1.1);
}

.client-account-link svg {
  width: 16px;
  height: 16px;
}

/* Description */
.description-creative {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
  margin-top: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

.video:hover .description-creative {
  -webkit-line-clamp: unset; 
}
