.vguide-callout {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.vguide-callout::before {
    content: "";
    background-image: url(/includes/public/assets/shared/vg-callout-brush.svg);
    background-size: cover;
    width: 165px;
    height: 82px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.vguide-callout img {
    position: relative;
    transform: rotate(16deg);
}

.vguide-callout .title-cont {
    position: relative;
    display: flex;
    align-items: center;
}

.vguide-callout .title-cont h4 {
    color: #FFF;
    text-align: center;
    font-family: var(--font-display-alt);
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1em;
    max-width: 125px;
    padding-top: 4px;
}

.vguide-callout .title-cont h4 span {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    line-height: 1;
    text-transform: none;
    font-weight: 600;
}

@media (min-width: 64em) {
    .vguide-callout::before {
        width: 312px;
        height: 155px;
    }

    .vguide-callout img {
        width: 100%;
    }

    .vguide-callout .title-cont {
        max-width: 185px;
        justify-content: center;
    }

    .vguide-callout .title-cont h4 {
        font-size: 28px;
        max-width: 175px;
    }
    
    .vguide-callout .title-cont h4 span {
        font-size: 24px;
    }
}