/* Custom Scrollbar Hiding */
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Background Glow */
.testimonials-glow::before,
.testimonials-glow::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.testimonials-glow::before {
    background: radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.25), transparent 40%),
        radial-gradient(circle at 80% 40%, rgba(251, 146, 60, 0.18), transparent 35%);
    filter: blur(40px);
}

.testimonials-glow::after {
    background: radial-gradient(circle at 30% 70%, rgba(248, 180, 0, 0.12), transparent 45%),
        radial-gradient(circle at 75% 80%, rgba(249, 115, 22, 0.12), transparent 40%);
    filter: blur(48px);
}

/* Card Hover Effects */
.testimonials-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    flex: 0 0 auto; 
}

.testimonials-card:hover {
    transform: translateY(-4px);
    z-index: 10;
}

/* Text Clamp */
.testimonial-quote {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: 7.5rem;
}