.testimonial-quote-module {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

/* New inner card container */
.testimonial-quote-card {
    background-color: #FFFFFF;
    /* White card */
    border: 1px solid #D8D1C1;
    /* Jumpstart Cream 7 */
    border-radius: 12px;
    padding: 80px 20px 60px;
    /* Mobile internal padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1084px;
    /* Figma max width */
    margin: 0 auto;
    /* Center the card */
}

@media (min-width: 768px) {
    .testimonial-quote-card {
        padding: 80px 120px;
        /* Desktop padding */
    }
}

.testimonial-quote-image-wrapper {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: absolute;
    top: -60px;
}

.testimonial-quote-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-quote-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
    max-width: 915px;
    width: 100%;
    align-items: center;
}

.testimonial-quote-headline {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.15;
    color: #000005;
    margin: 0;
    padding: 0;

    @media (max-width: 768px) {
        font-size: 24px;
    }
}

.testimonial-quote-body {
    width: 100%;
}

.testimonial-quote-body p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.45;
    color: #000005;
    /* Don't Go Joe 13 */
    margin: 0;
    padding: 0;
}

.testimonial-quote-author-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    /* "Sits directly below the name with no extra gap", maybe slight line-height gap is intended */
}

.testimonial-quote-author-name {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    color: #07101F;
    /* Jumpstart Navy 10 */
    margin: 0;
}

.testimonial-quote-author-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.45;
    color: #8C8C8F;
    /* Don't Go Joe 7 */
    margin: 0;
}