.social-callout {
    padding: 40px 0 0 0;
    position: relative;
    background-image: linear-gradient(
            to bottom,
            var(--white),
            var(--uw-page-bg)
    );
}

.social-callout-poly {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.4;
    background-image: url(../images/pattern-poly-light.svg);
    background-position: center;
    background-size: cover;
}

.social-callout-wrapper {
    display: flex;
    position: relative;
    z-index: 200;
    flex-direction: column;
}

.social-callout-image {
    order: 1;
    line-height: 0;
    font-size: 0;
    text-align: center;
}

.social-callout-content {
    order: 0;
    text-align: left;
}

.social-callout-content .social-title {
    font-size: 27px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    color: var(--scarlet);
    margin: 0 0 15px 0;
}

.social-callout-content .social-callout-description {
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: var(--greyish-brown);
    margin: 0 0 25px 0;
}

.social-callout-content .follow-text {
    font-size: 15px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--charcoal-grey);
    text-transform: uppercase;
    margin: 0 0 15px 0;
}

.social-links {
    display: flex;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    margin: 0 0 40px;
}

.social-callout-link {
    width: 32px;
    margin: 0 16px;
    line-height: 0;
    font-size: 0;
}

.social-callout-link img {
    width: 100%;
    height: auto;
}

@media screen and (min-width: 768px) {
    .social-callout {
        padding: 45px 0 0 0;
    }

    .social-callout-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .social-callout-image {
        order: 0;
        flex-shrink: 0;
        width: 300px;
    }

    .social-callout-content {
        text-align: center;
        order: 1;
        flex-grow: 1;
        flex-shrink: 1;
        margin: 0 0 0 40px;
    }

    .social-callout-content .social-title {
        font-size: 32px;
    }

    .social-callout-content .social-callout-description {
        font-size: 20px;
    }

    .social-callout-content .follow-text {
        font-size: 18px;
    }

    .social-links {
        -webkit-box-pack: center;
        justify-content: center;
        margin: 0;
    }
}

@media screen and (min-width: 1024px) {
    .social-callout {
        padding: 45px 0 0 0;
    }

    .social-callout-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .social-callout-image {
        width: 400px;
    }

    .social-callout-content .social-title {
        font-size: 46px;
    }
}
