
/* Section 1 */
.c-featured-post {
    background:var(--white);
    padding-block:var(--space-l-2xl) var(--space-m);
    text-align: center;
}
.c-featured-post__links {
    padding-block:var(--space-l) var(--space-xs);
}
.c-featured-post__list {
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  padding:0;
  justify-content:flex-start;
}
.c-featured-post__list-item {
  display:flex;
  padding:var(--space-3xs);
}
.c-featured-post__list-item a {
  padding:0;
  color:var(--fire);
  text-decoration:none;
}
.c-featured-post__list-item a:hover {
  color:var(--corporategreen);
}
.c-featured-post__list-item:before {
  content:"";
  display:block;
  height:80%;
  width:2px;
  margin:auto var(--space-3xs);
  background:var(--corporategreen);
}
.c-featured-post__list-item:first-child:before {
  display:none
}

.c-featured-post__list-item.selected {
  pointer-events: none;
}
.c-featured-post__list-item.selected a {
  color:var(--black);
}

/* Section 2 */
.c-recent-posts {
    background:#efefef;
    text-align: center;
    padding-block:var(--space-l-2xl);
}