  /* NICK ADDITIONS BELOW */

/* Overrides default red to UH's red. This is for user ease when someone just selects red from the GUI editor. */
[style*="color: red;"],
[style*="color: #ff0000;"] {
    color: #c8102e !important;
}

/* Smaller h2 font size to accomodate MR staff's preference — they won't otherwise use the proper header class */
#article-content h2 {
    font-size: 48px;
}

/* Addition of well class for "key takeaways" or summary sections */
.well {
    max-width: 1082px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
}

/* Custom bulleted list stylization to match Cascade's newsroom design */
#article-content ul:not(#article-footer ul) {
    list-style: none;
    padding-left: 0px;
}

#article-content ul:not(#article-footer ul) li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

#article-content ul:not(#article-footer ul) li::before {
    content: "▸";
    color: #c8102e;
    margin-right: 8px;
    font-size: 1.2em;
    position: absolute;
    left: 0;
}
