/* horizontal line style */
#main-content hr {
    clear: both;
    border: 1px solid #cccccc;
    margin-top: 1.5625rem;
    margin-bottom: 1.5625rem;
}

/* buttons in insets */
.editorial .inset .button {
  white-space: normal;
  display: inline-flex;
}
.editorial .inset .button:after {
	  padding-top: 0;
	  padding-left: 6px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

/* non-nav pages were showing h2s too large in content bottom list items */
.paragraphs-item-list-items .paragraphs-item-grid-item a > h2 {
    font-size: 1.3125rem;
    line-height: 1.25;	
} 


/* Event inset styling */
.inset--trumba_inset .event-collection .event-teaser {
	border-bottom-width: 0.0625rem;
    border-color: #cfd2aa;
    padding-bottom: 1.25rem;
    margin-bottom: 0.625rem;
}
.inset--trumba_inset .event-collection .event-teaser:last-child {
	border: none;
}
.inset--trumba_inset .event-collection .event-teaser > a {
	font-size: 1.125rem;
}
.inset--trumba_inset .event-collection .event-teaser > .date,
.inset--trumba_inset .event-collection .event-teaser > .time {
	font-size: 1rem;
    color: #7a7751;
}
.inset--trumba_inset .event-collection .event-teaser > .date {
	 padding-top: 0.625rem;
}

/* contact us block - word breaking fixes  */
.contact-us-name,
.contact-us-location,
.contact-us-email,
.contact-us-phone {
	margin-bottom: 5px;
}
.contact-us-name a,
.contact-us-location a,
.contact-us-location a > span,
.contact-us-email a,
.contact-us-phone a {
	word-break: break-all;
 display: inline;
}

/* indents */
.rteindent1 {
    margin-left: 40px;
    margin-bottom: 1.5625rem;
}
.rteindent2 {
    margin-left: 80px;
    margin-bottom: 1.5625rem;
}
.rteindent3 {
    margin-left: 120px;
    margin-bottom: 1.5625rem;
}
.rteindent4 {
    margin-left: 160px;
    margin-bottom: 1.5625rem;
}

.article .article__content blockquote p:first-of-type::first-letter {
    float: none;
    padding-right: 0;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit;
}

/* original css only handles "youtube" but not "youtu.be" */
a[data-fancybox][href*="youtu.be"]::after {
    left: 41.5%;
    top: 38%;
    background: url(/sites/default/files/video-play-button-512x512.png) no-repeat 0 0 transparent;
    width: 80px;
    height: 80px;
    background-size: contain;
    content: "";
    position: absolute;
    opacity: .8;
}

a[data-fancybox][href*="youtu.be"]:hover::after {
    opacity: 1;
}

@media (min-width: 768px) {
  a[data-fancybox][href*="youtu.be"]::after {
    left: 39%;
    top: 35%;
  }
}

@media (min-width: 460px) {
  a[data-fancybox][href*="youtu.be"]::after {
    left: 41.5%;
    top: 38%;
  }
}

/** Ordered List Styling **/
ol.upper-roman > li::before,ol[type=upper-roman] > li::before {
    content: counter(item,upper-roman) "." !important;
}
ol.lower-roman > li::before,ol[type=lower-roman] > li::before {
    content: counter(item,lower-roman) "." !important;
}
ol.upper-alpha > li::before,ol[type=upper-alpha] > li::before {
    content: counter(item,upper-alpha) "." !important;
}
ol.lower-alpha > li::before,ol[type=lower-alpha] > li::before {
    content: counter(item,lower-alpha) "." !important;
}
ol.decimal > li::before,ol[type="1"] > li::before {
    content: counter(item,decimal) "." !important;
}
ol li > ol > li::before {
    content: counter(item,upper-alpha) ". " !important;
    color: #976499 !important;
}
ol li > ol li > ol > li::before {
    content: counter(item,lower-alpha) ". " !important;
    color: #60a7d5 !important;
}

/** footnote - smaller font size **/
.footnote {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
}

/** tables - margin and mobile line separator **/
table.rt-responsive-table {
    margin: 1.5625rem 0;
}

table.rt-responsive-table.rt-vertical-table td {
    border-bottom: 2px solid #DCD3B2;
}

table.rt-responsive-table.rt-vertical-table td:before {
    font-weight:  bold;
}

table.rt-vertical-table :last-child tr:last-child td:first-child,
table.rt-vertical-table :last-child tr:last-child th:first-child {
    border-bottom-left-radius: 0;
}

table.rt-vertical-table :last-child tr:last-child td:last-child,
table.rt-vertical-table :last-child tr:last-child th:last-child {
    border-bottom-right-radius: 0;
}

table.rt-vertical-table {
    border-radius: 0;
}

table.rt-vertical-table tbody tr:last-child td:last-child {
    border-bottom: none;
}

