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

/* Restores legacy red-btn styling for older stories */

 .red-btn {
	border-radius: 50px;
	padding: 12px;
	font-size: 18px;
	position: relative;
	border: none;
	padding-left: 24px;
}
 .red-btn span:after {
	 content: "";
	 background-size: contain;
	 display: inline-block;
	 height: 18px;
	 width: 22px;
	 margin-left: 8px;
	 margin-right: 5px;
	 margin-bottom: -3px;
	 transition: all 300ms ease;
}
 .red-btn.btn-primary span:after {
	 background: url(https://www.uh.edu/news-events/_images/arrow-right-solid.svg) center center no-repeat;
}
 .red-btn.btn-success span:after {
	 background: url(https://www.uh.edu/news-events/_images/arrow-right-solid.svg) center center no-repeat;
}
 .red-btn.btn-danger span:after {
	 background: url(https://www.uh.edu/news-events/_images/arrow-right-solid.svg) center center no-repeat;
}
 .red-btn.btn-default span:after {
	 background: url(https://www.uh.edu/news-events/_images/arrow-right-solid-black.svg) center center no-repeat;
}
 .red-btn.btn-warning span:after {
	 background: url(https://www.uh.edu/news-events/_images/arrow-right-solid-black.svg) center center no-repeat;
}
 .red-btn.btn-info span:after {
	 background: url(https://www.uh.edu/news-events/_images/arrow-right-solid-chocolate.svg) center center no-repeat;
}
 .red-btn:hover span:after {
	 margin-left: 13px;
	 margin-right: 0;
}

 .red-btn.btn-download span:after {
     transform: rotate(90deg);
}

 .red-btn.btn-download:hover span:after {
	 margin-top: 8px;
	 margin-bottom: -8px;
     margin-left: 8px;
	 margin-right: 5px;
}