.managerProfiles {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    line-height: 24px;
}


.managerProfilesEntry {
    max-width: var(--content-max-width);
    border-bottom: 2px solid var(--light-grey);
    padding: 40px 0;
}

.managerProfilesEntry:last-child {
    border-bottom: none;
    padding-bottom: 20px;
}

.managerProfilesEntryContent {
    display: flex;
    justify-content: center;
}

.managerProfilesEntryContentImage {
    max-width: 219px;
    border: 2px solid var(--blue);

}

.managerProfilesEntryContentCopy {
    padding: 0 50px;
    line-height: inherit;
}

.managerProfilesEntryContentCopyName {
    color: var(--blue);
    font-size: 21px;
    font-weight: 600;
    margin: 20px 0 10px 0;
    line-height: inherit;
}

.managerProfilesEntryContentCopyDescription {
    font-size: 16px;
    margin: 0 0 10px 0;
    line-height: inherit;
}

.statistics {
    background-color: rgb(232, 235, 238);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 30px 40px 30px;
}

.statisticsContent {
    text-align: center;
    max-width: var(--content-max-width);
    line-height: inherit;
}

.statisticsContentTitle {
    font-size: 30px;
    font-weight: 600;
    color: var(--blue);
    margin: 20px 0 10px 0;
    line-height: 33px;

}

.statisticsContentBody {
    font-size: 16px;
    margin-bottom: 10px;
}

.statisticsContentBodyLink {
    color: var(--blue);
}

.statisticsContentBodyLink:hover {
    color: var(--blue-hover);
}

.advocate {
}

.advocateContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.advocateContentMedia {
    position: relative;
}

.advocateContentMediaImage {
    min-height: 500px;
    object-fit: cover;
}

.advocateContentMediaOverlay {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 1) 90%);
    background-position-x: 50%;
    background-position-y: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.advocateContentCopy {
    padding: 20px 35px;
    line-height: inherit;
    max-width: calc(var(--content-max-width) / 2);
}

.advocateContentCopyTitle {
    font-size: 21px;
    font-weight: 600;
    color: var(--blue);
    margin: 20px 0 10px 0;
    max-width: 375px;
}

.advocateContentCopyBody {
    font-size: 16px;
    line-height: inherit;
    margin: 0 0 10px 0;
}

.testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 15px 60px 15px;
}

.testimonialsContent {
    max-width: var(--content-max-width);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonialsContentIntro {
    text-align: center;
    padding: 0 0 20px 0;
}

.testimonialsContentIntroTitle {
    font-size: 30px;
    font-weight: 600;
    color: var(--blue);
    margin: 20px 0 10px 0;
}

.testimonialsContentIntroBody {
    font-size: 16px;
    line-height: inherit;
    margin: 0 0 10px 0;
}

.testimonialsContentQuotes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px
}

.testimonialsContentQuotesEntry {
}

.testimonialsContentQuotesEntryBody {
    font-size: 16px;
    margin-bottom: 10px;

}

.testimonialsContentQuotesEntryAuthor {
    font-size: 14px;

}

.testimonialsContentQuotesButton {
    margin-top: 50px;
}

.testimonialsContentQuotesButton:hover {
    background-color: var(--blue-hover);
}


@media screen and (max-width: 800px) {
    .managerProfilesEntry:first-child {
        padding: 40px 0 20px 0;
    }

    .managerProfilesEntryContent {
        flex-direction: column;
        align-items: center;
    }

    .managerProfilesEntryContentCopy {
        padding: 0;
    }

    .advocateContent {
        display: grid;
        grid-template-columns: 1fr;
    }

    .advocateContentMedia {
        order: 2;
    }

    .advocateContentMediaImage {
        min-height: 300px;
    }

    .advocateContentMediaOverlay {
        background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 1) 90%), url(/assets/images/case-managers/social-security-disability-claim-illustration.jpg);
        background-position-x: 50%, 50%;
        background-position-y: 50%, 50%;
        background-size: cover, cover;
        background-repeat: no-repeat, no-repeat;
    }

    .testimonialsContentQuotes {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px
    }
}