.hero-callout {
    position: relative;
    overflow: hidden;
    padding: var(--space-3) 0;
    color: var(--gray-600);
    margin-top: -4px;
}
.hero-callout::before {
    content: '';
    background: var(--gray-500) url("/includes/public/assets/bg-texture.png") bottom left repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
}

.hero-callout::after {
    content: '';
    background: url("/includes/public/assets/logo-tilt.png") bottom right no-repeat;
    position: absolute;
    right: -35px;
    bottom: -25px;
    width: 141px;
    height: 142px;
}

.hero-callout > div {
    padding: var(--space-4) var(--space-5);
    position: relative;
}

.hero-callout .title-section::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: url("/includes/public/assets/dots-mobile.png") 0 0 repeat-x;
    width: 100%;
    height: 4px;
}

.hero-callout .widget-title {
    font-size: var(--text-5xl);
    font-family: var(--font-body);
    line-height: var(--leading-x-tight);
    font-weight: 900;
}

.hero-callout .widget-title.subtitle {
    font-size: 20px;
    font-family: var(--font-contrast);
    font-weight: 400;
}

.hero-callout .content-section p {
    font-size: 17px;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-1);
}

.hero-callout .content-section a {
    text-decoration: underline;
    color: var(--gray-900);
    font-weight: 900;
}
.hero-callout .content-section a .fas {
    color: var(--primary-color-900);
    vertical-align: middle;
}

@media (min-width: 64em) {
    .hero-callout {
        position: absolute;
        width: calc(50vw);
        height: 107px;
        right: 0;
        bottom: var(--space-2);
        border-radius: var(--rounded-2xl) 0 0 0;
        display: grid;
        grid-template-columns: 40% 60%;
        grid-template-rows: 1fr;
        gap: var(--space-2);
        padding: 0 var(--space-8);
        align-items: center;
        min-width: 691px;
    }

    .hero-callout::before { opacity: 1;}

    .hero-callout > div {
        padding: var(--space-4) var(--space-2);
    }

    .hero-callout > .title-section {
        padding-top: var(--space-6);
        height: 100%;
    }

    .hero-callout .title-section::after {
        background: url("/includes/public/assets/dots.png") 0 0 repeat-y;
        width: 4px;
        height: 100%;
        left: auto;
        right: 0;
    }
}
