.testimonials {
    margin: 25vh 0;
}

.testimonials > .title {
    justify-self: center;
    align-self: center;
    font-size: var(--font-size-xlarge);
    font-family: var(--font-family-global), serif;
    color: var(--text-color-body);
    text-align: center;
    margin-bottom: 12.5vh;
}

.swiper {
    width: 80vw;
    padding-top: 50px;
    padding-bottom: 50px;
    min-width: 0;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 350px;
    height: 350px;

    position: relative;

    background-color: rgba(var(--body-color-darker-rgb), .25);
    border-radius: 1rem;
    /*box-shadow: var(--box-shadow-global);*/
}

.swiper-slide .person {
    display: grid;
    justify-items: center;
}

.swiper-slide .person img {
    display: block;
    width: 96px;
    height: 96px;
    /*inset: 0;*/

    margin: .5rem;
    padding: .5rem;

    /*position: absolute;*/
    /*z-index: -1;*/
}

.swiper-slide .person .title {
    color: var(--text-color-body);
}

.swiper-slide .person .subtitle {
    border: 2px solid var(--text-color-body);
    width: min-content;
    border-radius: .5rem;
    padding: .5rem;
    margin: .5rem 0 0 0;
    color: var(--text-color-body);
}

.swiper-slide p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    /*quotes: "„" "“" "‚" "‘";*/
    margin: 1rem;
    color: rgba(var(--text-color-body-rgb), .5);
}