/**
* Home Featured
*/
ul.home-featured {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

ul.home-featured li {
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  margin: 15px;
  padding: 30px 0 0 0;
  width: calc(100% - 30px);
}

@media screen and (min-width: 48em) {
  ul.home-featured li {
    margin: 15px;
    width: calc(50% - 30px);
  }
}

@media screen and (min-width: 62em) {
  ul.home-featured li {
    float:left;
    width: calc(33% - 30px);
    margin: 15px;
  }
}

ul.home-featured li > a > img {
  width: 100%;
  height: auto;
}

ul.home-featured li > a {
  order: 0;
}

ul.home-featured li h2 {
  order: -1;
  background: #ececec;
  display: block;
  font-size: 0.9rem;
  margin: 0;
  padding: 4px 8px;
  width: 100%;
  top: 0;
  left: auto;
  right: auto;
}

ul.home-featured li h2 a {
  padding: 0;
}

/**
* Home featured video link
*/
.home-featured .link-type-video .image-wrapper .play-arrow {
  position: absolute;
  top: calc(52% - 45px);
  left: calc(50% - 45px);
  z-index: 1;
  width: 90px;
  height: 90px;
  opacity: 0.75;
}
.home-featured .link-type-video .image-wrapper .play-arrow:hover {
  opacity: 0.85;
}
