/*-- media query breakpoints --*/
.whats-new-grid {
  list-style: none;
  margin: 0 -10px;
}
.whats-new-grid:after {
  content: "";
  display: table;
  clear: both;
}
.whats-new-grid li {
  width: 100%;
  float: left;
  padding: 10px;
  box-sizing: border-box;
}
.whats-new-grid li a {
  display: block;
  background: #F5F5F6;
  width: 100%;
  height: 245px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.whats-new-grid li a div {
  font-size: 1.2em;
  position: absolute;
  top: 20px;
  left: 20px;
  font-weight: 600;
  z-index: 2;
  text-decoration: none;
}
.whats-new-grid li a img {
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.whats-new-grid li.has-thumb a {
  background: #000;
}
.whats-new-grid li.has-thumb a div {
  color: #fff;
  text-shadow: 0px 0px 3px #000;
}
.whats-new-grid li.has-thumb a:hover img {
  opacity: 0.8;
}
@media screen and (min-width: 720px) {
  .whats-new-grid li {
    width: 33.3%;
  }
}
