.testimonials {
    column-count: 2;
    column-gap: 1rem;
    text-align: center;
}

.testimonials * {
    text-align: left;
}

@media (max-width: 900px) {
    .testimonials {
        column-count: 1;
    }
}

.testimonial {
    position: relative;
    background-color: var(--background);
    padding: 2em;
    display: inline-block;
    margin-bottom: 1em;
    border-radius: 5px;
    line-height: 1.25em;
    max-width: min(40ch, 100%);
    box-sizing: border-box;
}

.fullTestimonial {
    padding: 2em 0;
}

.testimonialText {
    max-width: 40ch;
    margin: 0 auto;
    line-height: 1.5em;
}

.testimonial::before{
    position: absolute;
    content: " ";
    display: block;
    top: 0.25em;
    left: 0.25em;
    right: 0.25em;
    bottom: 0.25em;
    box-shadow: 0 0 1em 0 var(--font-color);
    opacity: 0.25;
    border-radius: 5px;
    z-index: -1;
}

.testimonialHeader {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-bottom: 1em;
    max-width: 100%;
}

.testimonialHeader h1,.testimonialHeader h2 {
    margin: 0;
}

.testimonialHeader h1 {
    font-size: 1.5rem;
}

.testimonialHeader h2 {
    font-size: 1.1rem;
    font-weight: normal;
    margin-top: 0.5rem;
}

.profileCircle {
    width: 100%;
    height: 100%;
    background-size: cover;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.profileCircle::after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    background-image: var(--profile-img);
    background-size: cover;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.profileCircle::before {
    content: ' ';
    display: block;
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 50%;
    box-shadow: 0 0 0.5em 0 black;
    z-index: -11;
    filter: brightness(1);
}

.testimonial .profileCircle {
    transition: all 0.2s ease-out;
}

.testimonial:hover .profileCircle {
    filter: saturate(1) brightness(1.04) saturate(1.5);
}

.testimonial {
    transition: all 0.2s ease-out;
}
.testimonial:hover {
    transform: scale(1) translateY(-5px);
}