blockquote {
    line-height:1.4;
}
blockquote > p{
    line-height:1.4;
    font-size:1.5em;
    font-family:var(--accentFont);
    /* font-style: italic; */
    font-weight:300;
    margin-bottom:0;
}

blockquote + .editor {
    line-height:150%;
    font-size:1em;
    font-style: normal;
    font-weight:300;
    margin-bottom:0;
    margin-top:2rem;
    text-align: right;
}

blockquote::before {
    /* content: open-quote; */
}

blockquote::after {
    /* content: close-quote; */
}

ul.icon-list {
    margin: 2rem 0;
    padding:0;
    display: flex;
    flex-direction: column;
    row-gap: 1em;
    list-style: none;
}

ul.icon-list li:before {
    font-family: 'custom' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display:block;
    content: "\e9b8";
    content: "\e9d5";
    line-height:0.75;
    font-size:1.8rem;
    position:absolute;
    left:0;
    top:0;
}

ul.icon-list li {
    margin:0;
    padding:0;
    padding-left:2.8rem;
    /* display: flex;
    flex-direction: row;
    align-items: flex-start;
    column-gap: 1em; */
    position:relative;
}


ul.checkmark-list{
    list-style:none;
    margin:0.5em 0;
    padding:0;
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap:1rem;
}
ul.checkmark-list > li {
    display:flex;
    flex-direction: row;
    align-items: flex-start;
    column-gap: 1rem;
}

ul.checkmark-list > li:before {
    font-family: 'custom' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content:"\e900";
    font-size:1.5em;
    flex-grow:0;
    flex-shrink:0;
    width:1em;
    height:1em;
    color: var(--madison-light);
}

ul.checkmark-list > li a{
    text-decoration: underline;
}

table.table-alternate {
    width:100%;
}
table.table-alternate thead th {
    font-weight:700;
    background-color:var(--white);
}
table.table-alternate td ,
table.table-alternate th {
    padding:0.5rem 0;
}

table.table-alternate tbody tr td:first-child {
}

table.table-alternate tbody tr:nth-child(odd) td {
    background-color:var(--neutral-darkest-5);
}
table.table-alternate tbody tr:nth-child(even) td {
    background-color:var(--white);
}

.content .table {
    color:inherit;
}


.table > :not(:first-child) {
    border-top: unset;
}

p + figure.table {
    padding-top:0.5em;
}
p + figure.table figure.table {
    padding-top:0em;
}




table.contact-table {
    width:auto;
    border:0;
}

table.contact-table tr,
table.contact-table td {
    border-width:0 !important;
}

table.contact-table > tbody > tr > td{
    padding-bottom:1.5em;
    vertical-align: top;
}

table.contact-table td i{
    margin-top:0.375em;
    display:block;
    color: var(--eminence);
}

table.contact-table td p{
    margin-bottom: 0;
}

table.contact-table td a{
    text-decoration: underline;
}

table.contact-table tr td:first-child{
    padding-right:1em;
}


table.contact-table > tbody > tr {
    display:flex;
    flex-direction: row;
    align-items: flex-start;
}
table.contact-table td .table tr > th {
    padding-right:0.5rem;
}




table.table-facts {
    width:100%;
}

table.table-facts tr td ul li{

}

table.table-facts tr td {
    padding:0.5em 1em;
    border:0px solid transparent;
}

table.table-facts tr td:first-child{
    text-align:right;
    font-weight: bold;
    width:45%;
}
table.table-facts tr td:nth-child(2){
    border-bottom:1px solid currentColor;
    width:55%;
}


table.table-facts tr td ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.25em;
}
table.table-facts tr td ul li {
    display: grid;
    grid-template-columns: 0 1fr;
    gap: 0.75em;
    align-items: start;
}
table.table-facts tr td ul li:before{
    content:"_";
}


a.button {
    display: inline-block;
    padding: 0.5em 1em;
    background-color: var(--primary);
    color: #fff;
    text-decoration: none;
    border: 1px solid var(--primary);
    transition: all 350ms ease-in-out;
    font-family: var(--accentFont);
    font-weight:200;
}

a.button:hover {
    display: inline-block;
    padding: 0.5em 1em;
    background:transparent;
    color: var(--primary);
    text-decoration: none;
}