/* VFC Frontend Fixes */

/* Contact info - the CoBlocks column is 39% wide which is fine,
   but word-break:break-word from WP core was splitting words.
   Fix by overriding on the vfc-contact-info div directly. */
.vfc-contact-info {
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
}

.vfc-contact-info p {
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    white-space: normal !important;
    line-height: 1.7;
    margin-bottom: 1.2em;
}

.vfc-contact-info strong {
    display: block;
    margin-bottom: 0.2em;
}
