/* CSS for single-post-featured-articles on single post page */
.single-post-featured-articles-wrapper > h2 {
  padding: 2% 0 0 4%;
  margin: 0;
  font-size: 220%;
  text-transform: uppercase;
  color: #fff;
  font-family: Roboto, sans-serif;
}
.single-post-featured-articles {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  padding: 2% 0 4% 0;
  font-family: Roboto, sans-serif;
}
.single-post-featured-articles a, .single-post-featured-articles a:hover, .single-post-featured-articles a:visited {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  display: flex;
  height: 100%;
  flex-wrap: wrap;
}
.single-post-featured-articles .card {
  flex-basis: 20%;
}
.single-post-featured-articles .card-img {
  height: 200px;
  background-position: center;
  background-size: cover;
  width: 100%;
  border-radius: 4px 4px 0 0;
}
.single-post-featured-articles .card-title {
  text-transform: uppercase;
  font-size: 150%;
  padding: 5% 10% 5% 10%;
  font-weight: bold;
}
.single-post-featured-articles .card-excerpt {
  padding: 7% 10% 10% 10%;
  font-size: 90%;
}
.single-post-featured-articles .read-more-link {
  padding: 3% 10% 9% 10%;
  text-transform: uppercase;
  font-weight: 600;
  align-self: flex-end;
}
@media (max-width: 600px) {
  .single-post-featured-articles {
    flex-wrap: wrap;
  }
  .single-post-featured-articles .card {
    flex-basis: 90%;
    margin: 5% 0;
  }
  .single-post-featured-articles-wrapper > h2 {
    font-size: 150%;
    color: #000 !important;
    padding: 8% 0 0 5%;
  }
  .single-post-featured-articles-wrapper { background-color: #eee !important; }
}
@media (min-width: 601px) and (max-width: 1000px) {
  .single-post-featured-articles-wrapper {
    background-color: #eee;
    padding-top: 5%;
  }
  .single-post-featured-articles {
    flex-wrap: wrap;
  }
  .single-post-featured-articles .card {
    flex-basis: 40%;
    margin-bottom: 5%;
  }
  .single-post-featured-articles-wrapper > h2 {
    color: #222;
    font-size: 195%;
    padding-left: 6%;
  }
}
@media (min-width: 601px) and (max-width: 1200px) {
  .single-post-featured-articles .card-title {
    font-size: 110%;
  }
}
