.wce-destaque-item {
  position: relative;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  transition: all ease 0.5s;
  overflow: hidden;

  .cat_label {
    background: #000;
    color: #fff;
    font-size: 13px;
    padding: 3px 6px;
  }

  &:hover {
    background-size: 110%;

    .info {
      background-image: linear-gradient(to bottom,transparent 0,rgba(0,0,0,.90) 100%);
    }
  }

  img {
    // position: absolute;
    width: 100%;
    height: 100%;
  }

  > a {
    position: absolute;
    height: 100%;
    width: 100%;
    transition: background ease .2s;
    display: block;
    z-index: 100;
    top: 0;
  }

  .info {
    position: absolute;
    background-image: linear-gradient(to bottom,transparent 0,rgba(0,0,0,.85) 100%);
    color: #fff;
    background-repeat: repeat-x;
    width: 100%;
    bottom: 0;
    z-index: 2;
    padding: 15px;

    h3 {
      font-weight: 400;
      font-size: 26px;
      margin-top: 10px;
      text-shadow: 1px 1px 1px rgba(0,0,0,.9);
    }
  }
}
.wce-posts-destaque .col-sm-6:first-child + div {
  padding-left: 5px;
}

.col-md-7 {
  padding: 0px;
  .wce-destaque-item {
    height: 420px;
  }
}

.col-md-5 {
  padding: 5px;
  .wce-destaque-item {
    height: 205px;
    margin-bottom: 5px;
  }
}

