/* Article List */

.c-article-list {
  display: flex;
  flex-wrap: wrap;
  flex-basis: calc(100% / 2);
  padding: 1rem;
}
@media only screen and (min-width: 64.06em) {
  .c-article-list {
    padding: 0;
  }
}
.c-article-list .c-featured-article {
  flex-basis: 100%;
}
@media only screen and (min-width: 46.8em) {
  .c-article-list .c-featured-article {
    flex-basis: calc((100% / 2) - 32px);
  }
}
@media only screen and (min-width: 64.06em) {
  .c-article-list .c-featured-article {
    flex-basis: calc((100% / 4) - 32px);
  }
}
.c-featured-article {
  position: relative;
  padding: 0;
  transition: all .3s ease-in-out;
  /* Remove for Desktop */
  margin-bottom: 2rem;
}
@media only screen and (min-width: 46.8em) {
  .c-featured-article {
    margin: 1rem;
    background-color: #fff;
    box-shadow: 1px 1px 8px 0px rgba(19, 37, 98, 0.25);
  }
}
.c-featured-article__link {
  font-family: "Open Sans", "Arial", sans-serif;
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  transition: all .2s ease;
}
.c-featured-article__link:visited {
  text-decoration: underline;
}
.c-featured-article__link:hover, .c-featured-article__link:active {
  color: #1b4695;
  text-decoration: none;
}
.c-featured-article__link:hover .c-featured-article__title,
.c-featured-article__link:active .c-featured-article__title {
  color: #1b4695;
}
.c-featured-article__link:hover .c-featured-article__topic,
.c-featured-article__link:hover .c-featured-article__read,
.c-featured-article__link:active .c-featured-article__topic,
.c-featured-article__link:active .c-featured-article__read {
  text-decoration: none !important;
}
.c-featured-article__link:focus {
  text-decoration: none;
}
.c-featured-article__link:focus .c-featured-article__title,
.c-featured-article__link:focus .c-featured-article__topic,
.c-featured-article__link:focus .c-featured-article__read {
  text-decoration: none;
}
.c-featured-article__link:focus .c-featured-article__title {
  color: #1b4695;
}
.c-featured-article__img-cont {
  margin: 0;
}
.c-featured-article__img {
  width: auto;
}
@media only screen and (min-width: 46.8em) {
  .c-featured-article__img {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.c-featured-article__eyebrow {
  font-size: 0.75em;
  font-weight: 700;
  background-color: #a9aaac;
  color: white;
  margin-bottom: 1rem;
  display: inline-block;
  transition: background-color .3s ease-in-out;
  margin-left: 1.5rem;
}
.c-featured-article__eyebrow > .c-featured-article__link {
  padding: 8px 16px;
}
.c-featured-article__eyebrow--personal {
  background-color: #057f4c;
}
.c-featured-article__eyebrow--personal:hover {
  background-color: #08aa66;
}
.c-featured-article__eyebrow--business {
  background-color: #1b4695;
}
.c-featured-article__eyebrow--business:hover {
  background-color: #5d78d3;
}
.c-featured-article__title {
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
  color: #3e4043;
  margin-bottom: 1rem;
  padding: 0 1.5rem;
  font-weight: 300;
}
@media only screen and (min-width: 46.8em) {
  .c-featured-article__title {
    margin-bottom: 2rem;
  }
}
@media only screen and (min-width: 64.06em) {
  .c-featured-article__title {
    min-height: 4rem;
    margin-bottom: 2rem;
  }
}
.c-featured-article__meta {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1c2758;
  padding: 0 0 2rem 1.5rem;
}
.c-featured-article__topic {
  padding: 0 0 .25rem 0;
}
.c-eyebrow {
  padding: .75rem 1rem;
  background-color: #f4f4f4;
  display: inline-block;
  margin: 0 0 1rem 1.5rem;
  font-size: .75em;
  font-weight: 600;
  color: #fff;
  letter-spacing: .5px;
}
.c-eyebrow--personal {
  background-color: #057F4C;
}
.c-eyebrow--business {
  background-color: #1D3893;
}
.l-article-list .c-section-header-alt {
  padding-bottom: 0;
  padding-left: 1rem;
  font-size: 1.375em;
  font-weight: 300;
}