.social-cta {
    margin-top: 32px;
    background: var(--primary-color);
    border-radius: 18px;
    padding: 24px 25px;
    text-align: center;
}

.social-cta__title h3 {
    color: var(--white);
    font-size: 25px;
    line-height: 1.2em;
    margin-bottom: 20px;
    font-weight: 400;
}

.social-cta__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.social-cta__links a {
    text-decoration: none;
    color: var(--white);
    font-size: 50px;
    line-height: 1em;
    font-weight: 400;
    background: transparent;
}

@media (max-width: 767px) {
	/* Shrink-wrapped row(s) centered via parent .social-cta { text-align: center } */
	.social-cta__links {
		display: inline-flex;
		flex-wrap: wrap;
		justify-content: center;
		align-content: center;
		align-items: center;
		row-gap: 20px;
		column-gap: 0;
		width: 100%;
		vertical-align: top;
	}

	.social-cta__links a {
		flex: 1 1;
		box-sizing: border-box;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

@media (min-width: 768px) {
    .social-cta {
        margin-top: 42px;
        border-radius: 24px;
        padding: 27px 32px;
    }

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

    .social-cta__title h3 {
        font-size: 36px;
        line-height: 1em;
        margin-bottom: 0;
    }

    .social-cta__links {
        gap: 20px;
    }

}

@media (min-width: 1200px) {
    .social-cta {
        margin-top: 75px;
        border-radius: 28px;
        padding: 27px 50px;
    }

    .social-cta__title h3 {
        font-size: 41px;
    }

    .social-cta__links {
        gap: 32px;
    }

    .social-cta__links a:hover {
        color: var(--light-teal);
    }

}