.module-form-embed {
    /* any general styling for the module */
    position: relative;
    display: flex;
    flex-wrap: wrap;
    background-color:var(--light-gray);
    background-image:var(--background-medium-tan-dots);
    background-position:top left;
    border-radius:14px;
}

.module-form-embed .intro-wrapper {
    text-align: center;
}

.module-form-embed .intro-wrapper .headline {
    display: inline-block;
    position: relative;
}

.module-form-embed .intro-wrapper .headline:before {    
    content: url(/images/cho-dot-arrow.svg);
    display: block;
    position: absolute;
    left: -2.5rem;
    top: 2px;
}

.module-form-embed .intro-wrapper p:last-child {
    margin-bottom:0;
}

.module-form-embed .intro-wrapper strong {
    color:var(--dark-orange);
}

.module-form-embed .form-wrapper {
    width:100%;
    margin-top:3rem;
    padding:0;
}

/* NOTE: the styling of embedded JotForms is controlled by the custom CSS at JotForm and by their own base CSS */

@media (min-width:1200px) {
    .module-form-embed .intro-wrapper .headline:before {    
        top: -2px;
    }

    .module-form-embed .form-wrapper {
        padding:0 5rem;
    }
}