.social-proof-section {
    padding-block: 48px;
    @media screen and (min-width: 767.8px) {
        padding-block: 100px;
    }
}

.social-proof-section__text-wrapper {
    width: 860px;
    max-width: 100%;
    margin-inline: auto;
}

.social-proof-section-columns {
    margin-block: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.social-proof-section-columns .social-proof-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1 1 100%; /* grow, shrink, min width */
    min-width: 100%; /* ensures child doesn't get smaller than this */
    @media (min-width: 575.8px) {
        flex: 1 1 calc(50% - 40px); /* grow, shrink, min width */
        min-width: calc(50% - 40px); /* ensures child doesn't get smaller than this */
    }

    @media screen and (min-width: 991.8px) {
        flex: 1 1 calc(20% - 40px); /* grow, shrink, min width */
        min-width: calc(20% - 40px); /* ensures child doesn't get smaller than this */
    }
}

.social-proof-column .social-proof-column__inner {
    justify-content: center;
    align-items: flex-start;
    @media screen and (min-width: 575.8px) {
        max-width: 200px;
    }
}

.social-proof-column .social-proof-column__inner .proof-title-wrapper {
    padding: 8px 24px;
    background-color: var(--white);
    border-radius: 100px;
    position: relative;
    width: fit-content;
    margin-inline: auto;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    z-index: 8;
}

.social-proof-column__inner .proof-title-wrapper::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--green-500);
    border-radius: 100px;
    z-index: 9;

}

.social-proof-column .social-proof-column__inner .proof-title-wrapper .proof-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--green-500);
    color: var(--white);
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: absolute;
    left: -24px;
    top: -12px;
}

.social-proof-column .social-proof-column__inner .proof-title-wrapper .proof-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: var(--black);
}

.social-proof-column__inner .proof-image-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: -20px;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    flex-basis: 100%;
    max-height: 200px;
}

.social-proof-column__inner .proof-image-wrapper img {
    width: auto;
    max-height: 200px;
}

.social-proof-section__button-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.social-proof-section__button-wrapper a {
    width: 100%;
    @media screen and (min-width: 575.8px) {
        width: auto;
    }
}

.social-proof-column__inner .proof-support-title {
    width: 180px;
    flex-basis: 180px;
    margin-inline: auto;
    background-color: var(--white);
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    padding: 10px 6px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 100px;
    margin-top: -5px;
    position: relative;
    z-index: 8;
}

.social-proof-column__inner .proof-support-title .sub-title {
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    display: block;
    width: 100%;
    text-align: center;
}

.social-proof-column__inner .proof-support-title .title {
    font-size: 14px;
    color: var(--black);
    line-height: 1;
    font-weight: 500;
    display: block;
    width: 100%;
    text-align: center;
}

.social-proof-column__inner .proof-expect {
    width: 100%;
    flex-basis: 100%;
    margin-top: 24px;
    padding: 20px 4px 4px 4px;
    border-radius: 20px;
    background-color: var(--green-600);
}

.social-proof-column__inner .proof-expect p {
    font-size: 12px;
    font-weight: 600;
    line-height: 100%;
    color: var(--white);
    padding-inline: 16px;
}

.social-proof-column__inner .proof-expect ul {
    padding-inline: 16px 0;
    margin: 8px 16px 16px 16px;
    list-style-type: none;
}

.social-proof-column__inner .proof-expect ul li {
    font-size: 12px;
    font-weight: 600;
    line-height: 130%;
    color: rgba(255, 255, 255, .8);
    margin: 0 0 4px 0;
    position: relative;
    padding-left: 5px;
}

.social-proof-column__inner .proof-expect ul li:before {
    content: "";
    display: block;
    position: absolute;
    left: -5px;
    top: 8px;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .8);
}

.social-proof-column__button {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    flex-basis: 100%;
}

.social-proof-column__button a {
    width: 100%;
}