.blog-cover {
  max-width: 100%;
  margin-top: 0;
  position: relative;
  max-height: 460px;
  overflow: hidden;
  background: #eee; }
  .blog-cover > div {
    max-height: 480px;
    line-height: 0; }
  .blog-cover .image {
    width: 100%;
    top: 0;
    position: relative; }

.blog-cover:before {
    content: "";
    left: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 220px;

    display: block;
    background-image:url(/images/cover.jpg);
    background-size: 30%;

    -webkit-filter: blur(1px);
    -moz-filter: blur(1px);
    -o-filter: blur(1px);
    -ms-filter: blur(1px);
    filter: blur(1px);
}

.blog-cover {
  height: 220px;
  background-color: #111;

  background-position: center center;
  z-index: 1; }
  .blog-cover section {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    background-image: linear-gradient(bottom, rgba(0, 0, 0, 0.15) 0%, transparent 100%);
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.15) 0%, transparent 100%);
    background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.15) 0%, transparent 100%);
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.15) 0%, transparent 100%);
    background-image: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0.15) 0%, transparent 100%);
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(0, 0, 0, 0.15)), color-stop(1, transparent));
    padding: 40px 60px 0 0;
    z-index: 10; }
  .blog-cover h1 {
    font-size: 2.7em;
    line-height: 1.4em; }
  .blog-cover h3 {
    font-size: 1.3em; }
  .blog-cover h1, .blog-cover h3 {
    color: #fff;
    margin: 0;
    font-weight: 600; }

@media only screen and (max-width: 767px) {
  .blog-cover h1 {
    font-size: 1.5em;}
  .blog-cover h3 {
    font-size: 1.0em; }
  .blog-cover:before {
    background-size: cover;
 }