/**
 * 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 {
  margin-bottom: -2px;
}

@media screen and (min-width: 768px) {
  .featured-article__image {
    -webkit-box-flex: 0;
    flex: 0 1 64.3%;
  }
}

@media screen and (min-width: 768px) {
  .no-flexbox .featured-article__image {
    float: left;
    width: 64.3%;
  }
}

.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;
  overflow: hidden;
}

.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;
}

#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;
  }
}

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

.article-categories__item {
  border: none;
  cursor: pointer;
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1rem;
  padding: 1.2rem 2rem 1.1rem;
  margin: 1rem 0;
  line-height: 1;
  transition: background-color .2s ease;
  margin : 0 .5em;
}

@media (min-width: 48em) {
  .article-categories__item {
    border: none;
    width: auto;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1rem;
    padding: 1.2rem 2rem 1.1rem;
    line-height: 1;
    transition: background-color .2s ease;
  }
}

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

.dropdown-mode .article-categories {
  display: none; 
}
.dropdown-mode .article-select {
  display: block;
}

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

.article-list > h2 {
  margin-bottom: 2rem;
  margin-top: 2rem;
  text-transform: uppercase;
}

.article-list__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) {
  .article-list__grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
}

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

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

.article-list__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;
  width: 100%;
  box-sizing: border-box;
}

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

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

.article-list__item:hover img {
  -webkit-transform: scale(1.1) translateY(0);
  transform: scale(1.1) translateY(0);
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
}

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

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

.article-list__item--padding {
  display: none;
}

@media screen and (min-width: 768px) {
  .article-list__item--padding {
    display: -webkit-box;
    display: flex;
  }
}

.article-list__image {
  overflow: hidden;
  position: relative;
}

.article-list__image img {
  position: relative;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
  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%);
}

.article-list__title {
  margin-bottom: .25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .25s ease-in-out;
  -moz-transition: color .25s ease-in-out;
  -webkit-transition: color .25s ease-in-out;
  text-align: center;
}

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

.article-list__media {
  bottom: 100%;
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}

.article-list__media > span {
  font-size: 1.35rem;
  padding: .25rem .25rem .5rem;
  transition: .2s opacity ease-in-out;
}

.article-list__media > span:hover {
  font-size: 1.35rem;
  padding: .25rem .25rem .5rem;
  opacity: .6;
}

.article-list__media .article-icon-book {
  font-size: 1.4rem;
}

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

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

.article-list__item--has-image .article-list__media {
  bottom: 100%;
  bottom: calc(100% + 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;
}

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

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

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

@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 {
  width: 100%;
  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;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

.article-nav__search-input {
  float: left;
  display: block;
  width: 80%;
  padding: 0 2.5%;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 48px;
  height: 48px;
  outline: none;
  outline: none !important;
  border-radius: 0;
  background: none !important;
}

.article-nav__search-submit {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20%;
  font-size: 20px;
  vertical-align: middle;
  text-align: center;
  outline: none;
  border: 0;
  padding: 2px 0;
  cursor: pointer;
  transition: .3s;
}

/*******************************
 * 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;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

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

.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: justify;
  justify-content: space-between;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .recommended-articles__item {
    -webkit-box-flex: 0;
    flex: 0 0 31.2%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
}

.no-flexbox .recommended-articles__item {
  float: left;
  width: 100%;
}

.recommended-articles__info .recommended-articles__title {
  text-align: center;
  margin: 1em auto;
}

@media screen and (min-width: 768px) {
  .no-flexbox .recommended-articles__item {
    margin-right: 3.15%;
    width: 31.2%;
  }
  .no-flexbox .recommended-articles__item:nth-child(3n) {
    margin-right: 0;
  }
  .recommended-articles__info .recommended-articles__title {
    text-align: left;
    margin: 0;
  }
}

.recommended-articles__image,
.recommended-articles__info {
  -webkit-box-flex: 0;
  flex: 0 0 48%;
}

.no-flexbox .recommended-articles__image, .no-flexbox
.recommended-articles__info {
  width: 48%;
}

.no-flexbox .recommended-articles__image {
  float: left;
}

.no-flexbox .recommended-articles__info {
  float: right;
}

/*******************************
 * 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 {
  margin: 0 auto;
  width: 95%;
  max-width: 840px;
}

.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: 39.25rem;
  width: 100%;
}

.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%;
}

@media screen and (min-width: 768px) {
  .article-body__audio {
    width: 50%;
  }
}

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

.article-body__button {
  -webkit-box-align: center;
  align-items: center;
  border-radius: 0;
  display: -webkit-box;
  display: flex;
  font-size: .85rem;
  -webkit-box-pack: center;
  justify-content: center;
  margin-top: 1rem;
  padding: .65rem 1.25rem .5rem;
  text-align: center;
  transition: background-color .2s ease;
  width: calc(100% - 3rem);
}

.article-body__button > span {
  margin-left: 1rem;
  font-size: 1rem;
}

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

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

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

@media screen and (min-width: 768px) {
  .no-flexbox .article-body__button {
    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;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-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;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

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

.article-author__image {
  border: 0;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 18%;
  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;
  -ms-flex: 0 1 78.38%;
  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__title {
}

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

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

.article-author__social-button span {
	display: inline-block;
  line-height: 28px;
  padding: 0;
  margin: 0;
  font-size: 16px;
}


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

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

/*update icons*/
.icon-arrow-right:before {
  font-family: 'icons' !important;
  content: "\ede8";
}
.icon-arrow-left:before {
  font-family: 'icons' !important;
  content: "\edea";
}