/* Testimonials Carousel - 3 Column Slider */
.genzhbs-testimonials-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 70px;
}

.genzhbs-testimonials-carousel-track-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.genzhbs-testimonials-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    align-items: stretch;
}

/* Testimonial Slide */
.genzhbs-testimonial-slide {
    width: calc((100% - 60px) / 3);
    min-width: calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    background: #ffffff;
    border: 1px solid #230871;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* Hover effect not needed right now 
.genzhbs-testimonial-slide:hover {
    box-shadow: 0 4px 16px rgba(35, 8, 113, 0.15);
    transform: translateY(-4px);
}
*/

/* Quote Text */
.genzhbs-testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    font-weight: 400;
    margin: 0 0 20px 0;
    font-style: italic;
    border: none;
    padding: 0;
    flex-grow: 0; /* CHANGED: Was 1, now 0 - prevents expanding */
}

.genzhbs-testimonial-quote::before,
.genzhbs-testimonial-quote::after {
    content: none !important;
    display: none !important;
}

.genzhbs-testimonial-quote {
    quotes: none !important;
}

/* Author */
.genzhbs-testimonial-author {
    display: block;
    font-style: normal;
    color: #230871;
    font-size: 18px;
    font-weight: 700;
    margin-top: auto; /* CHANGED: Back to auto to push to bottom */
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    flex-shrink: 0;
}

.genzhbs-testimonial-author strong {
    font-weight: 700;
    color: #230871;
    display: block;
    margin-bottom: 0;
}

.genzhbs-testimonial-title {
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 1.4;
    margin-top: 4px;
    display: block;
}

/* Navigation Arrows - MATCHING PODCAST STYLE */
.genzhbs-carousel-arrow {
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 10;
    color: #230871;
    font-family: 'Omnes', Arial, sans-serif;
    font-size: 70px;
    line-height: 1;
    padding: 0;
}

.genzhbs-carousel-arrow:hover {
	color: #230871;
    opacity: 0.4;
    transform: translateY(-50%);
	background: none;
}

.genzhbs-carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.genzhbs-carousel-arrow:disabled:hover {
    opacity: 0.3;
    transform: translateY(-50%);
}

.genzhbs-carousel-arrow-left {
    left: 10px;
}

.genzhbs-carousel-arrow-left::before {
    content: '<';
}

.genzhbs-carousel-arrow-right {
    right: 10px;
}

.genzhbs-carousel-arrow-right::before {
    content: '>';
}

/* Hide SVG - using text characters instead */
.genzhbs-carousel-arrow svg {
    display: none;
}

/* Responsive - 2 columns on tablet */
@media (max-width: 1024px) {
    .genzhbs-testimonial-slide {
        width: calc((100% - 30px) / 2);
        min-width: calc((100% - 30px) / 2);
        max-width: calc((100% - 30px) / 2);
    }
    
    .genzhbs-testimonials-carousel-wrapper {
        padding: 40px 60px;
    }
}

/* Responsive - 1 column on mobile */
@media (max-width: 768px) {
    .genzhbs-testimonial-slide {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .genzhbs-testimonials-carousel-track {
        gap: 20px;
    }
    
    .genzhbs-testimonials-carousel-wrapper {
        padding: 30px 20px 80px 20px;
    }
    
    /* Move arrows below content on mobile */
    .genzhbs-carousel-arrow {
        top: auto;
        bottom: 20px;
        transform: translateY(0);
        font-size: 50px;
    }
    
    .genzhbs-carousel-arrow:hover {
        transform: translateY(0);
    }
    
    .genzhbs-carousel-arrow:disabled:hover {
        transform: translateY(0);
    }
    
    .genzhbs-carousel-arrow-left {
        left: calc(50% - 40px);
    }
    
    .genzhbs-carousel-arrow-right {
        right: calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .genzhbs-testimonials-carousel-wrapper {
        padding: 20px 20px 70px 20px;
    }
    
    .genzhbs-testimonial-slide {
        padding: 20px;
    }
    
    .genzhbs-testimonial-quote {
        font-size: 16px;
    }
    
    .genzhbs-carousel-arrow {
        font-size: 40px;
    }
    
    .genzhbs-carousel-arrow-left {
        left: calc(50% - 35px);
    }
    
    .genzhbs-carousel-arrow-right {
        right: calc(50% - 35px);
    }
}

blockquote {
	background: none;
}

