/* Простое исправление высоты карточек отзывов */

/* Контейнер слайдера отзывов - все слайды одинаковой высоты */
.testimonial__two .swiper-wrapper {
    align-items: stretch;
    display: flex;
}

/* Слайды отзывов - растягиваются на всю высоту */
.testimonial__two .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

/* Основные стили для карточек отзывов */
.testimonial__two .testimonial__one-item {
    height: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Контейнер для клиентской информации */
.testimonial__two .testimonial__one-item-client {
    flex-shrink: 0;
    margin-bottom: 20px;
}

/* Текст отзыва */
.testimonial__two .testimonial__one-item p {
    flex: 1;
    margin: 0 0 20px 0;
    line-height: 1.4;
    font-size: 20px;
}

/* Контейнер для рейтинга */
.testimonial__two .testimonial__one-item-reviews {
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 20px;
}

/* Красивые эффекты */
.testimonial__two .testimonial__one-item {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: var(--bg-white);
    transition: all 0.3s ease;
}

/* Улучшения для изображений */
.testimonial__two .testimonial__one-item-client-image img {
    border: 3px solid var(--primary-color-1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Звезды рейтинга */
.testimonial__two .testimonial__one-item-reviews i {
    font-size: 18px;
    margin-right: 2px;
    transition: all 0.3s ease;
}

/* Стили для навигационных кнопок */
.testimonial__two .swiper-button-next,
.testimonial__two .swiper-button-prev {
    color: var(--primary-color-1, #007bff);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial__two .swiper-button-next:hover,
.testimonial__two .swiper-button-prev:hover {
    background: var(--primary-color-1, #007bff);
    color: white;
    transform: scale(1.1);
}

.testimonial__two .swiper-button-next::after,
.testimonial__two .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}
