.callout {
    width: 100%;
    max-width: 430px;
    padding: 0 20px 40px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

.callout .img-cont {
    position: relative;
    margin-bottom: 22px;
    box-shadow: 0 0 38px rgba(0, 0, 0, 0.35);
}

.callout .img-cont img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.callout .title {
    padding-right: 20px;
}

.callout .title h4 {
    font-size: 30px;
    line-height: 32px;
    font-weight: 800;
    color: var(--off-white);
}

.callout .link a {
    color: var(--off-white);
    text-transform: uppercase;
    font-size: 15px;
    line-height: 18px;
    font-family: var(--font-body);
    font-weight: 500;
}

.callout .link a .icon {
    margin-left: 10px;
}

@media only screen and (min-width: 768px) {
    .callout {
        position: relative;
        max-width: 434px;
        padding: 0 22px;
        margin-bottom: 0;
        margin-top: -65px;
    }

    .callout .img-cont {
        margin-bottom: 32px;
    }

    .callout .content {
        padding: 0 20px 40px;
    }

    .callout .title h4 {
        font-size: 43px;
        line-height: 43px;
        margin-bottom: 12px;
        color: var(--dark-grey);
    }

    .callout .link a {
        color: var(--dark-grey);
        font-size: 18px;
    }

    .callout .link a .icon {
        color: var(--red);
    }

    .callout::after {
        position: absolute;
        z-index: -1;
        content: "";
        width: 100%;
        left: 0;
        top: 120px;
        bottom: 0;
        background-color: #fff;
    }
}