/** Articles Layout 4 @todo - Set site colors / override file @author Ben Brandt <ben@monkdevelopment.com> @copyright 2016 Monk Development */
#articles4 .article-list__item.article-list__item--padding { background-color: transparent; }

/******************************* ICONS */
.article-icon { display: inline-block; height: 1em; width: 1em; font-size: 1em; }

/******************************* ANIMATIONS */
@-webkit-keyframes slideDown { 0% { display: none;
    opacity: 0; }
  1% { display: block;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% { opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes slideDown { 0% { display: none;
    opacity: 0; }
  1% { display: block;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% { opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@-webkit-keyframes slideDownFlex { 0% { display: none;
    opacity: 0; }
  1% { display: -webkit-box;
    display: flex;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% { opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes slideDownFlex { 0% { display: none;
    opacity: 0; }
  1% { display: -webkit-box;
    display: flex;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% { opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@-webkit-keyframes slideUp { 0% { display: block;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  99% { display: block;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% { display: none;
    opacity: 0; } }

@keyframes slideUp { 0% { display: block;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  99% { display: block;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% { display: none;
    opacity: 0; } }

@-webkit-keyframes slideUpFlex { 0% { display: -webkit-box;
    display: flex;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  99% { display: -webkit-box;
    display: flex;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% { display: none;
    opacity: 0; } }

@keyframes slideUpFlex { 0% { display: -webkit-box;
    display: flex;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  99% { display: -webkit-box;
    display: flex;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% { display: none;
    opacity: 0; } }

@-webkit-keyframes spin-anim { 0% { -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin-anim { 0% { -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-webkit-keyframes fade-anim { 0% { opacity: .2; }
  50% { opacity: 1; }
  100% { opacity: .2; } }

@keyframes fade-anim { 0% { opacity: .2; }
  50% { opacity: 1; }
  100% { opacity: .2; } }

/******************************* FEATURED ARTICLES */
.featured-article { margin-bottom: 1rem; }

.no-flexbox .featured-article { overflow: hidden; }

.featured-article__item { -webkit-box-align: center; align-items: center; display: -webkit-box; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; background-color: black; }

@media screen and (min-width: 768px) { .featured-article__item { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } }

.featured-article__image { padding-top: 50%; position: relative; width: 100%; }

@media (min-width: 992px) { .featured-article__image { padding-top: 32.15%; } }

.featured-article__image .image-link-container { top: 0; left: 0; right: 0; bottom: 0; background-color: transparent; background-size: cover; background-position: center; background-repeat: no-repeat; display: block; position: absolute; }

@media screen and (min-width: 992px) { .featured-article__image { width: 65%; } }

.featured-article__info { padding: 3rem 5%; }

@media screen and (min-width: 768px) { .featured-article__info { -webkit-box-flex: 1; flex: 1 0 30.7%; padding: 1rem 2.5%; } }

@media screen and (min-width: 768px) { .no-flexbox .featured-article__info { float: right; padding: 1.5rem 2.5%; width: 30.7%; } }

.featured-article__title { line-height: 1.25em; }

.featured-article__description { margin-bottom: .25rem; }

.featured-article__copy p { font-size: 1rem; }

.featured-article__meta { font-size: .875rem; padding-top: 1px; }

.featured-article__nav { -webkit-box-align: stretch; align-items: stretch; display: -webkit-box; display: flex; -webkit-box-pack: justify; justify-content: space-between; }

.no-flexbox .featured-article__nav { clear: both; float: left; width: 100%; }

.featured-article__btn { -webkit-box-align: center; align-items: center; border: 0; display: -webkit-box; display: flex; padding: 1rem 1rem .8rem; transition: color .25s ease-in-out; font-size: 1rem; text-transform: uppercase; text-decoration: none; }

#articles4 button.article-categories__item:focus { outline: none; }

#articles4 button.article-categories__item--active:hover { cursor: default; }

.featured-article__btn .article-icon { font-size: 1rem; margin: 0 .5rem; }

.no-flexbox .featured-article__btn { max-width: 42.5%; }

.no-flexbox .featured-article__btn .article-icon { vertical-align: text-bottom; }

.no-flexbox .featured-article__btn--prev { float: left; }

.no-flexbox .featured-article__btn--next { float: right; }

.featured-article__slide { width: 100%; }

/******************************* CATEGORY FILTERS */
.article-categories { display: block; padding: 1rem 0 1rem; }

@media (min-width: 48em) { .article-categories { display: -webkit-box; display: flex; flex-wrap: wrap; -webkit-box-pack: center; justify-content: center; padding: 1rem 0 0; text-align: center; } }

.no-flexbox .article-categories { text-align: center; }

.article-categories__item { position: relative; display: block; font-weight: 400; line-height: 1.25; text-align: center; vertical-align: middle; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; padding: .65rem 1.5rem; margin: 0 .5rem; font-size: 0.8125rem; border-radius: none; transition: all 0.2s ease-in-out; background-color: transparent; border: 2px solid; cursor: pointer; text-decoration: none; text-transform: uppercase; box-sizing: border-box; text-transform: uppercase; }

@media (min-width: 48em) { .article-categories__item { width: auto; cursor: pointer; margin-bottom: 1rem; } }

.no-flexbox .article-categories__item { display: inline-block; margin-left: .2rem; margin-right: .2rem; }

.article-categories.use-select .article-categories__item { display: none !important; }

/******************************* ARTICLE LIST */
.article-list { text-align: center; }

.article-list h2 { margin-bottom: 2rem; margin-top: 2rem; }

.article-list__item { margin-bottom: 2rem; border-left-width: 15px; border-right-width: 15px; border-style: solid; }

@media (min-width: 992px) { .article-list__item { margin-bottom: 3rem; } }

.article-list__item:not(.article-list__item--has-image) { padding-top: 66.1546667%; }

@media (min-width: 768px) { .article-list__item:not(.article-list__item--has-image) { padding-top: 33.2819444%; } }

@media (min-width: 992px) { .article-list__item:not(.article-list__item--has-image) { padding-top: 21.5636364%; } }

.article-list__item a { background: none; }

.article-list__image { position: relative; }

.article-list__image:after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 100%; z-index: 40; transition: .2s ease-in-out; box-sizing: border-box; }

.article-list__image img { position: relative; display: block; z-index: 0; }

/* .article-list__item--with-media .article-list__image::before { background-color: rgba(0, 0, 0, 0.4); bottom: 2px; content: ''; left: 0; position: absolute; right: 0; top: 0; z-index: 1; } */
.article-list__info { padding: 1.25rem 1rem; }

.article-list__item:not(.article-list__item--has-image) .article-list__info { position: absolute; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); width: calc(100% - 30px); padding: 1.25rem 10px; }

.article-list__title { margin-bottom: .25rem; overflow: hidden; transition: color .25s ease-in-out; -moz-transition: color .25s ease-in-out; -webkit-transition: color .25s ease-in-out; }

.article-list__copy { font-size: .8rem; margin: .5rem 0 0; }

.article-list__media { bottom: 110%; width: 90%; left: 5%; position: absolute; z-index: 10; text-align: center; line-height: 1; }

.article-list__item:not(.article-list__item--has-image) .article-list__media { position: relative; margin-top: 1em; bottom: auto; }

.article-list__media > span { font-size: 1.15rem; padding: .25rem .25rem 0; line-height: 1; }

.article-list__item--has-image { -webkit-box-pack: start; background-color: transparent !important; border: none !important; }

.article-list__item--has-image .article-list__info { padding: .5rem 1rem 0; position: relative; }

.article-list__item--has-image .article-list__media { bottom: calc(100% + 1rem + 10px); }

/******************************* SERIES LIST */
.article-list__item--series { -webkit-box-align: center; align-items: center; display: -webkit-box; display: flex; flex-basis: 100%; -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; flex-wrap: wrap; -webkit-box-pack: start; justify-content: flex-start; text-align: left; }

@media screen and (min-width: 768px) { .article-list__item--series { flex-wrap: nowrap; } }

.no-flexbox .article-list__item--series { clear: both; float: left; margin-left: 0; margin-right: 0; width: 100%; }

.article-list__copy--series p { margin-bottom: 0; }

.article-list__image--series { -webkit-box-flex: 1; flex: 1 0 100%; }

@media screen and (min-width: 768px) { .article-list__image--series { -webkit-box-flex: 0; flex: 0 1 31.2%; } }

@media screen and (min-width: 768px) { .no-flexbox .article-list__image--series { float: left; width: 31.2%; } }

.article-list__info--series { -webkit-box-flex: 1; flex: 1 0 80%; overflow: hidden; padding: 3rem 5%; }

@media screen and (min-width: 768px) { .article-list__info--series { -webkit-box-flex: 1; flex: 1 0 63.8%; padding: 1rem 2.5%; } }

.no-flexbox .article-list__info--series { float: left; width: 80%; }

@media screen and (min-width: 768px) { .no-flexbox .article-list__info--series { width: 58.8%; } }

.article-list__grid--series { -webkit-animation: slideUpFlex .3s ease; animation: slideUpFlex .3s ease; display: none; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; opacity: 0; -webkit-transform: scale(0); transform: scale(0); transition: opacity .3s ease, -webkit-transform .3s ease; transition: transform .3s ease, opacity .3s ease; transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease; }

@media screen and (min-width: 512px) { .article-list__grid--series { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } }

.no-flexbox .article-list__grid--series { -webkit-animation: slideUp .3s ease; animation: slideUp .3s ease; clear: both; display: none; float: left; }

.article-list__series-status { -webkit-box-flex: 0; flex: 1 0 10%; text-align: center; padding: 1rem; }

.article-list__series-status h5 span { vertical-align: middle; }

@media screen and (min-width: 768px) { .article-list__series-status { text-align: left; } }

.no-flexbox .article-list__series-status { bottom: 15%; position: absolute; right: 1rem; -webkit-transform: translateY(-50%); transform: translateY(-50%); }

@media screen and (min-width: 768px) { .no-flexbox .article-list__series-status { bottom: auto; top: 50%; } }

.article-list__series-status .icon { font-size: 1rem; }

.article-list__series-status .article-icon-close { display: none; }

.article-list__series--open .article-list__grid--series { -webkit-animation: slideDownFlex .3s ease; animation: slideDownFlex .3s ease; display: -webkit-box; display: flex; opacity: 1; -webkit-transform: scale(1); transform: scale(1); }

.no-flexbox .article-list__series--open .article-list__grid--series { -webkit-animation: slideDown .3s ease; animation: slideDown .3s ease; display: block; }

.article-list__series--open .article-list__series-status .article-icon-plus { display: none; }

.article-list__series--open .article-list__series-status .article-icon-close { display: inline-block; }

.article-list__item.article-list__item--series:hover { cursor: pointer; }

.article-list__close--series { -webkit-box-align: center; align-items: center; display: -webkit-box; display: flex; flex-basis: 100%; font-size: .875rem; -webkit-box-pack: center; justify-content: center; margin: -1rem 0 2rem; padding: .75rem; text-align: center; }

.article-list__close--series .icon { font-size: .5rem; margin-right: .5rem; }

.no-flexbox .article-list__close--series { clear: both; }

/******************************* LOADING ICON */
.article-list__loading { display: none; width: 40px; height: auto; margin: auto; }

.article-list__loading .article-icon { font-size: 2rem; }

.article-list__loading--spin { display: block; text-align: center; }

.article-list__loading--spin .article-icon { -webkit-animation: spin-anim 1s linear infinite, fade-anim 3s ease-in-out infinite; animation: spin-anim 1s linear infinite, fade-anim 3s ease-in-out infinite; }

.article-list__loading--spin .no-flexbox { clear: both; }

/******************************* ARTICLE NAV */
.article-nav { -webkit-box-align: center; align-items: center; display: -webkit-box; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; -webkit-box-pack: justify; justify-content: space-between; margin: 1rem 0; padding: .75rem; }

@media screen and (min-width: 512px) { .article-nav { -webkit-box-align: stretch; align-items: stretch; -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; padding: .5rem 1rem; } }

.no-flexbox .article-nav { clear: both; overflow: hidden; }

.article-nav--detail { -webkit-box-align: stretch; align-items: stretch; -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; padding: 0; }

.article-nav__btn { -webkit-box-align: center; align-items: center; border: 0; display: -webkit-box; display: flex; padding: 1rem .5rem; transition: background-color .2s ease; }

.article-nav__btn .article-icon { font-size: 1rem; margin: 0 .5rem; }

.no-flexbox .article-nav__btn { max-width: 42.5%; }

.no-flexbox .article-nav__btn .article-icon { vertical-align: text-bottom; }

.no-flexbox .article-nav__btn--prev { float: left; }

.no-flexbox .article-nav__btn--next { float: right; }

.article-nav__more { background-color: transparent; border: 0; cursor: pointer; font-size: 1rem; padding: .75rem .75rem .5rem; transition: .2s ease-in-out; }

.article-nav__more > div { -webkit-box-align: center; align-items: center; display: -webkit-box; display: flex; }

.article-nav__more:disabled { cursor: no-drop; opacity: .3; }

.article-nav__more .article-icon { font-size: .875rem; margin-right: .5rem; margin-top: 1px; }

@media screen and (min-width: 512px) { .no-flexbox .article-nav__more { float: left; margin-top: .75rem; max-width: 42.5%; } }

.no-flexbox .article-nav__more .article-icon { vertical-align: text-bottom; }

.article-nav__search { padding: .75rem; position: relative; }

@media screen and (min-width: 512px) { .article-nav__search { -webkit-box-flex: 0; flex: 0 1 16rem; } }

@media screen and (min-width: 512px) { .no-flexbox .article-nav__search { float: right; max-width: 16rem; } }

.article-nav__search fieldset { position: relative; display: block; padding: 0 8px; margin: 0; line-height: 1; background-color: #f3f1f1; border-radius: none; overflow: hidden; }

.article-nav__search-input { float: left; display: block; width: 85%; padding: 0 2.5%; border: 0; font-size: 1rem; font-weight: 300 !important; line-height: 40px; height: 40px; outline: none; color: #666666; outline: none !important; background-color: transparent; border-radius: 0; }

.article-nav__search-submit { display: block; position: absolute; top: 50%; right: 0; bottom: 0; transform: translateY(-50%); width: 15%; font-size: 16px; font-weight: 400 !important; vertical-align: middle; text-align: center; background: none; outline: none; border: 0; padding: 2px 0; cursor: pointer; transition: .3s; background-color: transparent; color: #bf0d3e; }

.article-nav__search-submit:hover { color: #f1b434; }

/******************************* RECOMMENDED ARTICLES */
.recommended-articles { padding: 2rem 0; }

.recommended-articles__heading { margin-bottom: 1.5rem; text-align: center; text-transform: uppercase; }

.recommended-articles__grid { display: -webkit-box; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; flex-wrap: wrap; justify-content: space-around; }

@media screen and (min-width: 512px) { .recommended-articles__grid { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } }

@media screen and (min-width: 768px) { .recommended-articles__grid { -webkit-box-pack: justify; justify-content: space-between; } }

.no-flexbox .recommended-articles__grid { overflow: hidden; }

.recommended-articles__item { display: -webkit-box; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; -webkit-box-pack: center; justify-content: flex-start; margin-bottom: 2rem; overflow: hidden; position: relative; }

@media screen and (min-width: 512px) { .recommended-articles__item { flex-basis: 48%; } }

@media screen and (min-width: 768px) { .recommended-articles__item { flex-basis: 31.2%; } }

@media screen and (min-width: 512px) { .no-flexbox .recommended-articles__item { float: left; margin-left: 1%; margin-right: 1%; width: 48%; }
  .no-flexbox .recommended-articles__item:nth-child(2n+1) { clear: both; } }

@media screen and (min-width: 768px) { .no-flexbox .recommended-articles__item { float: left; margin-left: 0; margin-right: 3.15%; width: 31.2%; }
  .no-flexbox .recommended-articles__item:nth-child(3n) { margin-right: 0; }
  .no-flexbox .recommended-articles__item:nth-child(2n+1) { clear: none; }
  .no-flexbox .recommended-articles__item:nth-child(3n+1) { clear: both; } }

.recommended-articles__item a { display: block; }

.recommended-articles__info .recommended-articles__title { text-align: center; margin: 1em auto; transition: .2s all ease-in-out; }

.recommended-articles__image { position: relative; display: block; overflow: hidden; }

.recommended-articles__image:after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 100%; z-index: 40; transition: .2s ease-in-out; box-sizing: border-box; }

/******************************* DETAIL VIEW */
.article-header { position: relative; }

.article-header__image { max-width: none; width: 100%; }

.article-header__info--image { margin-top: -3.125rem; }

.article-header__info--image > .container { width: 90%; }

@media screen and (min-width: 512px) { .article-header__info--image { bottom: -1px; left: 0; margin-top: 0; position: absolute; right: 0; } }

.article-header__title { font-size: 3.125rem; margin-bottom: 0; padding-top: 3rem; text-align: center; }

@media (min-width: 512px) { .article-header__title { padding: 3rem 1.5rem 0; } }

.no-flexbox .article-header__title { float: left; width: 100%; }

.article-header__btn { -webkit-box-align: center; align-items: center; border: 0; display: -webkit-box; display: flex; opacity: .8; padding: 1rem 0; transition: opacity .2s ease; }

.article-header__btn:hover { opacity: 1; }

.article-header__btn .article-icon { font-size: 1rem; margin: -6px .5rem 0; }

.no-flexbox .article-header__btn { float: left; }

.no-flexbox .article-header__btn .article-icon { vertical-align: text-bottom; }

.article-body__meta { margin-bottom: 2rem; margin-top: 2rem; text-align: center; }

.article-body__summary { font-size: 1.25rem; }

.article-body__author { margin-bottom: 0; }

.article-body__media { margin: 0 auto 2rem; max-width: 768px; width: 100%; line-height: 1; }

.article-body__video { height: 0; margin-bottom: 1rem; overflow: hidden; padding-bottom: 56.25%; position: relative; width: 100%; }

.article-body__video iframe, .article-body__video object, .article-body__video embed, .article-body__video video { height: 100%; left: 0; position: absolute; top: 0; width: 100%; }

.article-body__media-row { -webkit-box-align: center; align-items: center; display: -webkit-box; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; justify-content: space-around; }

@media screen and (min-width: 768px) { .article-body__media-row { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } }

.no-flexbox .article-body__media-row { overflow: hidden; }

.article-body__media-row--all { -webkit-box-pack: justify; justify-content: space-between; }

.article-body__audio { width: 100%; margin-bottom: 1rem; }

@media screen and (min-width: 768px) { .article-body__audio { width: 40%; margin-bottom: 0; } }

.no-flexbox .article-body__audio { float: left; }

.article-body__button.btn { -webkit-box-align: center; align-items: center; display: -webkit-box; display: flex; -webkit-box-pack: center; justify-content: center; text-align: center; width: calc(100% - 3rem); margin: 0 0 1rem 0; padding-top: .6rem; padding-bottom: .6rem; }

.article-body__button.btn > span { margin: 0 0 0 1rem; }

@media screen and (min-width: 768px) { .article-body__button.btn { margin: 0 !important; width: auto; } }

.article-body__button.btn .article-icon { margin-left: .5rem; }

.no-flexbox .article-body__button.btn { float: left; }

@media screen and (min-width: 768px) { .no-flexbox .article-body__button.btn { margin-left: .25rem; margin-right: .25rem; } }

.article-body__content { margin-bottom: 2rem; }

.no-flexbox .article-body__content { clear: both; }

.article-author { -webkit-box-align: start; align-items: flex-start; display: -webkit-box; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; -webkit-box-pack: justify; justify-content: space-between; margin-bottom: 1.5rem; }

@media screen and (min-width: 512px) { .article-author { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row; } }

.no-flexbox .article-author { clear: both; overflow: hidden; }

.article-author__image { border: 0; -webkit-box-flex: 0; flex: 0 0 18%; max-width: 18%; min-width: 18%; margin-bottom: 1rem; }

.no-flexbox .article-author__image { float: left; }

@media screen and (min-width: 512px) { .no-flexbox .article-author__image { width: 18%; } }

.article-author__info { -webkit-box-flex: 0; flex: 0 1 78.38%; max-width: 78.38%; min-width: 78.38%; }

.no-flexbox .article-author__info { float: right; }

@media screen and (min-width: 512px) { .no-flexbox .article-author__info { width: 78.38%; } }

.article-author__heading { margin-bottom: 0; }

.article-author__social { margin-bottom: 1rem; }

.article-author__social-button { display: inline-block; border-radius: 50%; margin-right: .5rem; padding: 0; width: 32px; height: 32px; line-height: 32px; transition: background-color .2s ease; text-align: center; border-radius: 100%; }

.article-author__social-button span { display: inline-block; line-height: 32px; padding: 0; margin: 0; }

@media screen and (max-width: 899px) { .article-categories { display: none; } }

@media screen and (min-width: 900px) { .article-select { display: none; } }

.article-select.use-select { display: block !important; }

#articles4 .article-list__item, #articles4 .article-list__item.article-list__item--has-image a { background-color: #f3f1f1; }

#articles4 .article-list__item { border-color: #ffffff; border-right-color: #ffffff; }

#articles4 .article-nav__more, #articles4 .article-list__item a { color: #666666; }

#articles4 .article-list__item .article-list__media > span { color: #006bb7; }

#articles4 .article-list__item a:hover, #articles4 .article-list__item a:hover .article-list__title, #articles4 .article-list__series-status span.icon:hover, #articles4 .article-nav__more:hover { color: #f1b434; }

#articles4 .article-list__title, #articles4 .recommended-articles__info .recommended-articles__title { color: #666666; }

#articles4 .featured-article__btn, #articles4 .featured-article__nav, #articles4 .article-list__item .article-list__media > span:hover, #articles4 .article-list__item.article-list__item--has-image .article-list__media > span:hover, #articles4 .recommended-articles__item a:hover .recommended-articles__info .recommended-articles__title { color: #f1b434; }

.article-nav { background-color: #ffffff; }

#articles4 .featured-article, #articles4 .featured-slides, #articles4 .featured-article__item { background-color: #333333; }

#articles4 .featured-article__btn:hover { background-color: #f1b434; }

#articles4 .featured-article__btn, #articles4 .featured-article__btn:hover, #articles4 .article-list__item.article-list__item--has-image .article-list__media > span { color: #ffffff; }

.article-categories__item { background-color: transparent; color: #bf0d3e; border-color: #bf0d3e; }

.article-categories__item:hover, .article-categories__item.article-categories__item--active { background-color: #f1b434; color: #ffffff; border-color: #f1b434; }

#articles4 .article-author__social-button { color: #ffffff; background-color: #006bb7; }

#articles4 .article-author__social-button:hover { color: #ffffff; background-color: #f1b434; }

.article-list__item:hover .article-list__image:after, #articles4 .article-list__item:hover .article-list__image:after, #articles4 .recommended-articles__item a:hover .recommended-articles__image:after { background-color: rgba(0, 107, 183, 0.5); }
