section.posts h2 {
  display: inline-block;
  text-transform: uppercase;
  padding-bottom: 10px !important;
}
section.posts h2.default {
  border-bottom: 1px solid var(--marine);
}
section.posts h2.white {
  border-bottom: 1px solid var(--white);
}
section.posts h2.purple {
  border-bottom: 1px solid var(--purple);
}
section.posts h2.marine {
  border-bottom: 1px solid var(--marine);
}
section.posts h2.blue {
  border-bottom: 1px solid var(--blue);
}
section.posts h2.green {
  border-bottom: 1px solid var(--green);
}
section.posts h2.orange {
  border-bottom: 1px solid var(--orange);
}
section.posts h2.salmon {
  border-bottom: 1px solid var(--salmon);
}
section.posts h2.peach {
  border-bottom: 1px solid var(--peach);
}
section.posts .lead {
  max-width: 800px;
}
section.posts .lead p {
  text-align: center;
  font: var(--lead-font);
}

li.post {
  border-radius: 10px;
  overflow: hidden;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
}
li.post a:not(.btn) {
  color: inherit;
  text-decoration: none;
  border: 0 !important;
}
li.post a:not(.btn):hover {
  text-decoration: underline;
}
li.post:hover .img-wrapper::after {
  left: 150%;
}
li.post .btn {
  font-size: 14px;
}
li.post .img-wrapper {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #eee;
}
li.post .img-wrapper img,
li.post .img-wrapper picture {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
li.post .img-wrapper::after {
  top: 0;
  position: absolute;
  content: "";
  display: block;
  height: 100%;
  width: 200%;
  left: -50%;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
  background: var(--white);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 0;
  opacity: 0.15;
}
li.post .content-wrapper {
  padding: var(--gutter);
}
li.post .content-wrapper.bg-default {
  background: var(--marine-light-light);
}
@media screen and (max-width: 48em) {
  li.post .content-wrapper {
    padding: calc(var(--gutter) / 1.5);
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
  }
}
li.post .content-wrapper h3 {
  font: var(--h4-font);
}
li.post .content-wrapper .btn {
  -webkit-box-shadow: inset 0px 0px 0px 2px rgba(17, 35, 52, 0.2705882353);
          box-shadow: inset 0px 0px 0px 2px rgba(17, 35, 52, 0.2705882353);
}section.posts .filter li {
  list-style: none;
  line-height: 1.3;
}
section.posts .filter li[data-taxon][data-taxon=featured_tag] {
  -ms-grid-row: 1;
  grid-row: 1;
}
section.posts .filter li[data-taxon] ul li {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid var(--marine-light);
  border-radius: 10px;
  padding: 5px 8px 2px;
}
section.posts .filter li[data-taxon] ul li:hover {
  text-decoration: underline;
}
section.posts .filter .active {
  background: var(--marine-light);
  color: var(--white);
}