/* Slider Container */
.bvs-testimonial-slider {
    width: 100%;
    overflow: hidden;
    padding: 10px 0; /* Prevents box-shadow clipping */
}

/* Equal Height Flex Core */
.bvs-testimonial-slider .swiper-wrapper {
    display: flex !important;
    align-items: stretch !important;
    height: auto !important;
}

.bvs-testimonial-slide {
    height: auto !important; /* Stretch slide to match highest sibling */
    display: flex;
    flex-direction: column;
}

/* Card Outer Shell */
.bvs-testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%; /* Fills the stretched parent slide */
    background-color: #f6f6f6;
    border-radius: 12px;
    padding: 32px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Company Logo */
.bvs-testimonial-logo {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
}

.bvs-testimonial-logo img {
    max-height: 28px;
    width: auto;
    object-fit: contain;
    object-position: left center;
}

/* Quote Text */
.bvs-testimonial-quote {
    font-family: inherit;
    font-size: 15px;
    line-height: 1.55;
    color: #121212;
    margin-bottom: 40px;
    flex-grow: 1; /* Pushes author footer down to align bottoms seamlessly */
}

/* Author Details */
.bvs-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.bvs-testimonial-avatar {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
    overflow: hidden;
}

.bvs-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bvs-testimonial-info {
    display: flex;
    flex-direction: column;
}

.bvs-author-name {
    font-size: 14px;
    font-weight: 600;
    color: #121212;
    line-height: 1.3;
}

.bvs-author-title {
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    line-height: 1.3;
    margin-top: 2px;
}