﻿/* === Headings === */
.heading-h1 {
    color: #4a4f54;
    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: #4a4f54;
    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: #4a4f54;
    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: #4a4f54;
    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 {
    color: #4a4f54;
    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 {
    color: #4a4f54;
    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: #4A4F54;
}

/* === 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;
}

/* === Colors === */
.text-sage-green {
    color: #598138;
}

.text-dark-green {
    color: #435F2B;
}

.text-teal {
    color: #709688;
}

.text-river-blue {
    color: #0086BE;
}

.text-dark-blue {
    color: #00567A;
}

.text-purple {
    color: #7A2770;
}

.text-orange {
    color: #B44A1F;
}

.text-yellow {
    color: #ECAD01;
}

.text-dark-grey {
    color: #4a4f54;
}

.text-tan {
    color: #CAC7BB;
}

.text-brown {
    color: #4B302B;
}

/* === Links === */
.link-with-arrow {
    display: block;
    color: #007b4a;
    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-with-arrow:hover {
    color: #598138;
}

.link-with-arrow a {
    color: #598138 !important;
    text-decoration: none !important;
}

.link-button {
    display: inline-block;
    color: #fff;
    padding: 8px 26px;
    border-radius: 6px;
    background-color: #598138;
    white-space: nowrap;
    font-size: 14px;
    cursor: pointer;
    margin-top: 12px;
    margin-bottom: 16px;
}

.link-button:hover {
    color: #fff;
    background-color: #435F2B;
    border-color: #435F2B;
}

.link-button a {
    color: #fff !important;
    text-decoration: none !important;
}