.testimonials-slider .swiper, .testimonials-slider .swiper-wrapper {
    height: fit-content;
}

.testimonials-slider__item {
    height: unset !important;
}

.testimonials-slider__item > .testimonial-card {
    height: 100%;
}

.testimonial-card {
    padding: 40px 32px;
    background-color: #fff;
    border: 1px solid #DADDE7;
    transition: .3s;
}

.testimonial-card:hover {
    border-color: var(--orange-color);
}

.testimonial-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-card__head img {
    height: 64px;
    width: 64px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-card__name {
    font-size: 16px;
    line-height: 145%;
}

.testimonial-card__bio {
    color: var(--mild-grey-color);
    margin-top: 0;
}

.testimonial-card__date {
    color: var(--mild-grey-color);
    margin-top: 8px;
}

.testimonial-row__text {
    max-height: unset;
}

.testimonial-row__text[aria-expanded="false"] {
    max-height: 88px;
    overflow: hidden;
}

.testimonial-row__text p{
    line-height: 23px;
}
.testimonial-row__text p + p{
    margin-top: 16px;
}
.testimonial-row__text[aria-expanded="false"] p + p{
    margin-top: 23px;
}

.read-more {
    margin-top: 16px;
}

.read-more svg {
    transition: .3s;
}

.read-more__hide {
    display: none;
}

.read-more.show .read-more__hide {
    display: inline;
}

.read-more.show .read-more__show {
    display: none;
}

.read-more.show svg {
    transform: scale(-1);
}
