body {
    background-color: var(--white);

    font-family: "League Spartan", sans-serif;
}

main {
    padding: 5rem 1.5rem;

    position: relative;
    overflow: hidden;
}

.social-proof__bg-img {
    position: absolute;
    z-index: -1;
}

.social-proof__bg-img--top {
    top: 0;
    left: 0;
}

.social-proof__bg-img--bottom {
    width: 1085px;
    height: 673px;

    right: -355px;
    bottom: -32px;
}

.social-proof__title {
    margin: 0 1rem;

    font-size: 2.5rem;
    font-weight: 700;
    line-height: 3rem;
    letter-spacing: -0.0125rem;
    text-align: center;
    color: var(--purple-900);
}

.social-proof__description {
    margin-top: 1rem;

    font-size: 1.1875rem;
    font-weight: 500;
    line-height: 1.625rem;
    letter-spacing: -0.0375rem;
    color: var(--purple-300);
    text-align: center;
}

.social-proof__ratings {
    margin-top: 2rem;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-proof__testimonials {
    margin-top: 3rem;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    main {
        padding: 7.375rem 5rem;
    }

    .social-proof__bg-img--bottom {
        width: 768px;
        height: 477px;

        right: 0;
        bottom: 0;
    }
    
    .social-proof__description {
        margin: 1rem 4.84375rem 0 4.84375rem;
    }

    .social-proof__ratings {
        margin: 2.5rem 4.84375rem 0 4.84375rem;
    }

    .social-proof__testimonials {
        margin: 3rem 4.84375rem 0 4.84375rem;
    }

    .social-proof__title {
        margin: 0;
        font-size: 3.5rem;
    }
}

@media (min-width: 1440px) {
    main {
        padding: 116px 165px;
        height: 100vh;
    }

    .social-proof__bg-img--top {
        width: 482px;
        height: 362px;
    }

    .social-proof__bg-img--bottom {
        width: 1085px;
        height: 673px;
    }

    .social-proof__intro {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .social-proof__intro-text {
        flex-basis: 445px;
    }

    .social-proof__title {
        text-align: left;
    }

    .social-proof__description {
        text-align: left;
        margin: 16px 0 0;
    }

    .social-proof__ratings {
        margin: 0;
        flex-basis: 542px;
    }

    .social-proof__testimonials {
        margin: 4rem 0 0;
        height: 256px;

        flex-direction: row;
        gap: 1.875rem;
    }
}