.related {
  background-color: var(--wdg-gray);
  padding-top: calc(var(--wdg-gutter) * 3);
  padding-bottom: calc(var(--wdg-gutter) * 3);
  max-width: none;
}
.main__wrap > .related:last-child {
  margin-bottom: 0;
}
.related__wrap {
  position: relative;
  max-width: var(--wdg-content-width) -wide;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--wdg-gutter);
  box-sizing: content-box;
}
.related__heading {
  position: relative;
}
.related__items {
  display: flex;
  position: relative;
  flex-wrap: wrap;
}
.related__item {
  flex: none;
  background-color: var(--wdg-white);
  padding: calc(var(--wdg-gutter) * 2);
  color: var(--wdg-black);
  font-weight: normal;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: var(--wdg-gutter);
}
.related__item p:first-child {
  margin-top: 0;
}
.related__item p:last-child {
  margin-bottom: 0;
}
.related__item:hover, .related__item:focus {
  color: var(--wdg-black);
  text-decoration: none;
}
.related__item:hover h3, .related__item:focus h3 {
  text-decoration: underline;
}
.related__cta {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.related__item-kicker {
  font-size: 16px;
  line-height: 1.25;
}
.related__item-lock {
  display: block;
  position: absolute;
  top: var(--wdg-gutter);
  right: var(--wdg-gutter);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media (min-width: 48em) {
  .related .related__item {
    width: calc(50% - var(--wdg-gutter));
    margin-bottom: calc(var(--wdg-gutter) * 2);
  }
  .related .related__item:nth-child(even) {
    margin-left: calc(var(--wdg-gutter) * 2);
  }
  .related .related__wrap::before {
    content: "";
    background-image: url(../../../../assets/svg/related-arrow.svg);
    background-size: cover;
    top: calc(var(--wdg-gutter) * -7);
    right: 0;
    height: 804px;
    pointer-events: none;
    position: absolute;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    width: 804px;
  }
  .related.is-style-three-up {
    overflow: hidden;
  }
  .related.is-style-three-up .related__items {
    flex-wrap: nowrap;
  }
  .related.is-style-three-up .related__item {
    flex: 1 1 100%;
  }
  .related.is-style-three-up .related__item:not(:first-child) {
    margin-left: calc(var(--wdg-gutter) * 2);
  }
  .related.is-style-three-up .related__wrap::before {
    bottom: 0;
    left: 0;
    transform: translate(-50%, calc(50% - 100px));
    height: 568px;
    width: 568px;
  }
}

/*# sourceMappingURL=style.css.map */