.user-reviews-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.user-reviews-header {
  margin-bottom: 1rem;
}

.user-reviews-header h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  span {
    color: var(--blue);
  }
}
.user-reviews-carousel-layout {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
}
.user-reviews-card {
  border-radius: 1rem;
  box-shadow: 0 3px 18px rgba(100, 70, 255, 0.12);
  padding: 1.5rem;
  min-width: 19rem;
  background: linear-gradient(#fff, #fff) padding-box,
    radial-gradient(
        50% 108.33% at 50% 50%,
        #4332ff 40.38%,
        rgba(67, 50, 255, 0.3) 80%
      )
      border-box;
  border: 1px solid transparent;
  gap: 3rem;
}
.user-reviews-card-content {
  font-size: 1.12rem;
  color: var(--black);
  font-weight: 400;
}

.user-reviews-name-age {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 0.75rem;
  font-weight: 500;
  h3 {
    font-size: 1.12rem;
    color: var(--blue);
    font-weight: 600;
  }
  span {
    background-color: var(--black);
    width: 2.34px;
    height: 2.34px;
    border-radius: 50%;
  }
  p {
    font-size: 0.87rem;
  }
}

.reviews-carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.reviews-carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.reviews-carousel-dot {
  width: 12px;
  height: 6px;
  border: none;
  border-radius: 3px;
  background-color: #e5e5e5;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.reviews-carousel-dot.active {
  background-color: var(--blue);
  width: 86px;
  height: 6px;
}

.reviews-carousel-arrows {
  display: flex;
  gap: 0.5rem;
}

.reviews-carousel-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.reviews-carousel-arrow:hover,
.reviews-carousel-arrow:focus {
  transform: scale(1.1);
  outline: none;
}

.reviews-carousel-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.reviews-carousel-arrow .arrow-icon {
  width: 31px;
  height: 32px;
  display: block;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .user-reviews-container {
    padding: 3rem 1.37rem;
  }

  .user-reviews-header h3 {
    font-size: 2.5rem;
  }

  .reviews-carousel-dot.active {
    width: 48px;
  }
} 