.testimonial-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: var(--spacing-lg);
}

.testimonial-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: var(--spacing-sm);
    min-height: 220px;
    box-sizing: border-box;
    overflow: hidden;
}

.testimonial-card__text {
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xs);
    max-height: 140px;
    overflow-y: auto;
    overflow-wrap: break-word;
    word-break: break-word;
}

.testimonial-card__author {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--color-accent-dark);
}

.testimonial-swiper__pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
}

.testimonial-swiper__prev,
.testimonial-swiper__next {
    position: absolute;
    top: 40%;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--color-accent);
    user-select: none;
    z-index: 2;
}

.testimonial-swiper__prev {
    left: -8px;
}

.testimonial-swiper__next {
    right: -8px;
}

@media (max-width: 600px) {
    .testimonial-swiper__prev,
    .testimonial-swiper__next {
        display: none;
    }
}