/*
 * Email Box Fit
 * Safe email wrapping for contact cards, buttons and content boxes.
 */

a[href^="mailto:"],
.email-box-fit,
.email-box-fit a {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    white-space: normal !important;
    hyphens: none !important;
}

/* Useful when a page builder puts the email inside a flex/grid child. */
.email-box-fit {
    flex: 1 1 auto !important;
    box-sizing: border-box !important;
}

/* Prevent common containers from clipping wrapped email text. */
.email-box-fit,
.email-box-fit * {
    box-sizing: border-box;
}
