section.article-hero {
  position: relative;
}
@media screen and (max-width: 48em) {
  section.article-hero .wrapper {
    row-gap: calc(var(--inner-padding) * 2);
  }
}
section.article-hero .btn {
  margin-top: 10px;
}
section.article-hero .img-wrapper {
  height: auto;
  width: 100%;
  max-height: 75vh;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (min-width: 62em) {
  section.article-hero .img-wrapper {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    grid-row: 1/5;
  }
}
section.article-hero .img-wrapper img,
section.article-hero .img-wrapper picture {
  display: -ms-grid;
  display: grid;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.article-hero .lead {
  font: var(--lead-font);
}
section.article-hero .content {
  background-color: var(--white);
  padding-bottom: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media screen and (min-width: 62em) {
  section.article-hero .content {
    -ms-grid-row: 3;
    -ms-grid-row-span: 2;
    grid-row: 3/5;
    padding: var(--inner-padding) var(--inner-padding) 0 var(--inner-padding);
  }
}
section.article-hero .content h1 {
  border-bottom: 1px solid var(--blue-light);
  padding-bottom: 7px !important;
}section.content h2 {
  font-weight: 500;
}
section.content h3,
section.content h2 {
  margin-bottom: -15px !important;
  margin-top: 10px !important;
}
@media screen and (max-width: 61.9375em) {
  section.content .wrapper > * {
    padding-left: 0;
    padding-right: 0;
  }
}
section.content .wrapper a {
  color: var(--green-dark);
  background-color: var(--green-light-light);
  display: inline-block;
  padding-left: 3px;
  padding-right: 3px;
}
section.content .wrapper a:hover {
  color: var(--white);
  background-color: var(--green);
}
section.content .wrapper ul {
  padding-left: 25px;
}
section.content .wrapper ul ul {
  padding-left: 25px;
}
section.content .wrapper img {
  width: 100%;
  height: auto;
}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);
}