.aboutImpact{
    width: 90%;
    max-width: var(--max-sm-width); 
    margin:8rem auto 8rem;
}
.aboutImpact__headline{
    font-size: var(--fs-large);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    color: var(--white);
}
.aboutImpact__content{
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--fs-smaller);
    font-weight: 500;
    line-height: 1.7;
    width: 100%;
    margin-bottom: 3rem;
    margin-top: 3rem;
}
.aboutImpact__content p + p{
    margin-top: 1.5rem;
}
.aboutImpact__founder{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}
.aboutImpact__founder > *{
    width: 100%;
    max-width: 40rem;
}
.aboutImpactFounder__image{
    width: 100%;
}
.aboutImpactFounder__name,
.aboutImpactFounder__title{
    text-align: center;
    color: white;
}
.aboutImpactFounder__title{
    opacity: 0.7;
}
@media (min-width: 768px){
    .aboutImpact__founder{
        flex-direction: row;
        justify-content: center;
    }
    .aboutImpact__founder > *{
        width: 40%;
    }
}