/* Fix for testimonial card border corners */
.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #C5D5E6;
    border-radius: 12px;
    pointer-events: none;
}

.testimonial-card:hover::before {
    border-color: #6b88a7;
}

/* Fix for quote icon position */
.quote-icon {
    z-index: 1;
}

/* Fix for stars alignment */
.stars {
    position: relative;
    z-index: 1;
}

/* Fix for author info */
.testimonial-author {
    position: relative;
    z-index: 1;
}