﻿/* === Headings === */
.heading-h1 {
    color: var(--site-colors-h1);
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 1.8em;
    line-height: 1.2;
    margin-bottom: 6px;
}

.heading-h2 {
    color: var(--site-colors-h2);
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 1.8em;
    line-height: 1.2;
    margin-top: 12px;
    margin-bottom: 16px;
}

.heading-h3 {
    color: var(--site-colors-h3);
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.6em;
    line-height: 1.2;
    margin-top: 12px;
    margin-bottom: 16px;
}

.heading-h4 {
    color: var(--site-colors-h4);
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 1.4em;
    line-height: 1.2;
    margin-top: 12px;
    margin-bottom: 16px;
}

.heading-h5 {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 1.1em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.heading-h6 {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 1em;
    line-height: 1.2;
    margin-top: 6px;
    margin-bottom: 10px;
}

/* === Inline Styles === */
.text-bold {
    font-weight: bold;
}

.text-italic {
    font-style: italic;
}

.text-underline {
    text-decoration: underline;
}

.text-strikethrough {
    text-decoration: line-through;
}

/* === Text Styles === */
.text-standout {
    font-size: 1.125rem;
    font-weight: 400;
}

.red-highlight {
    color: #fff;
    padding: 0.85rem;
    background-color: #D73F37;
}

.dark-highlight {
    color: #fff;
    padding: 0.85rem;
    background-color: var(--dark-grey);
}

.umb-rte [data-mce-selected=inline-boundary] {
    color: var(--site-colors-links);
}

a {
    color: var(--site-colors-links);
}

/* === Images === */
.img-left {
    float: left;
    margin: 0 1rem 1rem 0;
    display: inline-block;
}

.img-right {
    float: right;
    margin: 0 1rem 1rem 0;
    display: inline-block;
}

/* === Links === */
.link-with-arrow {
    display: block;
    color: var(--site-colors-links);
    font-size: 0.9125rem;
    font-weight: 600;
    letter-spacing: 0.075rem;
    text-decoration: none;
    text-transform: uppercase;
}

    .link-with-arrow::after {
        background: url(/images/icon__chevron--right--green.svg) no-repeat;
        content: "";
        display: inline-block;
        height: 13px;
        margin-left: 0.5rem;
        position: relative;
        top: 2px;
        -webkit-transition: 0.05s;
        -moz-transition: 0.05s;
        transition: 0.05s;
        width: 8px;
    }

.link-button {
    display: inline-block;
    text-align: center;
    color: var(--site-colors-btns-text);
    padding: 8px 26px !important;
    border-radius: 6px;
    background-color: var(--site-colors-btns);
    white-space: nowrap;
    font-size: 14px;
    cursor: pointer;
    margin-top: 12px;
    margin-bottom: 16px;
}

    .link-button > a {
        color: var(--site-colors-btns-text) !important;
        text-decoration: none !important;
    }
