/* Custom Style Overrides */
body{
  font-weight:300;
  font-size:18px;
  line-height:150%;
}

/*
 *  Rework the header background to do multiples
 *  Other small tweaks to styles
*/
header.site-head{
  text-shadow:1px 1px 2px rgba(0,0,0,.5);
  background-image:
    url("/assets/imgs/honeycomb-smaller.png");
  background-size:auto,cover;
  background-attachment:fixed;
}
  .site-head .caption.divider{
    padding:30px 0;
  }

  .blog-logo img{
    padding-left:25px;
  }

  .site-head small{
    color:inherit;
    text-transform: none;
  }
  .site-head h1.tag-title small{
    font-size:50%;
    display:block;
  }

  /* old versions tags weren't clickable */
  .site-head .post-tags a{
    color:#fff;
    border-bottom:1px dotted;
  }
    .site-head .post-tags a:hover{
      text-decoration: none;
      border-bottom: 1px solid;
    }

/* hide the header-cover img in the post */
.post-content img[alt~="header-cover"],
.post-content img[alt="social-share"]{
  display:none;
}

#header-credit{
  margin:-50px 0 30px 0;
  background:#eee;
  font-size:12px;
  text-align:center;
  opacity:.5;
  transition:opacity .25s ease-in;
  line-height:1.2em;
  padding:5px 0;

}
  #header-credit:empty,
  .post-content .post-header-credit{
    display:none;
  }
  #header-credit:hover{
    opacity:1;
  }

#header-credit a.thumb{
  display:inline-block;
  margin-right:5px;
}
  #header-credit img{
    max-height:45px;
  }
  #header-credit a img{
    border:1px solid;
  }

  #header-credit p{
    display:inline-block;
    margin:0;
    vertical-align:middle;
  }

@media only screen and (max-width: 768px) {
  #header-credit{
    margin-top:-40px;
    margin-bottom:20px;
  }

  .post{
    font-size:.9em;
  }
}


/*
 *  I dislike mobile menus on desktops
*/
@media only screen and (min-width: 992px) {
  /* hide the open button */
  .site-head a#open-menu-item,
  #main-menu a#close-menu-item{
    display:none !important;
  }

  #main-menu{
    display:block !important;
    position:fixed;
    top:0; right:0; left:0;
    bottom:auto;
    width:100%;
    height:auto;
    padding:0;
    background-color:rgba(52,73,94,.5);
    border:none;
    line-height:0;
  }

    #main-menu ul.menu{
      padding:0;
    }

    #main-menu ul.menu li{
      display:inline-block;
      font-size:10px;
    }

    #main-menu ul.menu li a{
      padding:3px 5px;
      border:none !important;
    }

    #main-menu ul.menu li .fa{
      padding-right:5px;
    }

}


/*
 *  Add in figure and figcaption 
*/
figure{
  position:relative;
  margin:5px 0 25px 0;
}
  figure > img{
    border:2px solid #f7f7f7;
  }
  figure > figcaption{
    font-size:12px;
    text-align:right;
    color:#b7b7b7;
    line-height:1.1em;
    width:150px;
    position:absolute;
    display:block;
    top:0; 
    left:-155px;
  }
  figure > figcaption:before,
  figure > figcaption:after{
    content:'';
    display:block;
    width:25%;
    border-top:2px solid #f7f7f7;
    margin:15px 0 15px 75%;
  }

@media only screen and (max-width: 992px) {
  figure > figcaption{
    position:relative;
    width:100%;
    left:0;
  }

  figure > figcaption:before,
  figure > figcaption:after{
    right:0;
  }

  figure > blockquote + figcaption{
    margin-top:-40px;
  }

}




/* links to hard to differentiate from text */
a{
  color:#57799b;
}

/* tweak spacing for listings */
ul, ol{
  padding-left:25px;
}
  ul li,
  ol li{
    margin-bottom:.5em;
  }

/*
 *  Restructure Author Info for Posts
*/
footer.post-footer{
  padding:30px 0;
  border-bottom:1px solid #ddd;
  margin-bottom:30px;
}
footer.post-footer .author{
  display:flex;
  align-items:center;
}
  .post-footer .author .author-info{
    width:125px;
    margin-right:10px;
  }
    .author-info img{
      margin-bottom:5px;
      max-width:100%;
    }
    .author-info h4{
      margin:0;
      font-size:18px;
    }

  .post-footer .author .author-description{
    text-align:left;
  }


/*
 *  Blockquotes
*/
blockquote{
  font-size:1em;
  font-style:normal;
  padding:15px 0 25px 55px;
  
}
  blockquote:before,
  blockquote:after{
    left:20px;
  }


blockquote p{
  font-weight:300;
}
blockquote p:after{
  content:none;
  display:none;
}
  blockquote > :first-child:after{
    content:'“';
    display:block;
    font-weight:400;
    left:-40px;
  }

/*
 * References
*/
abbr.ref{
  position:relative;
  font-size:.6em;
  vertical-align:super;
  letter-spacing:.08em;
  line-height:1em;
  color:#57799b;
  cursor:help;
}
  abbr.ref:hover::before{
    content:attr(data-title);
    position:absolute;
    bottom:20px;
    width:350px;
    margin-left:-175px;
    color:#000;
    padding:10px;
    background:#fff;
    font-size:14px;
    line-height:1.4em;
    border-radius:2px;
    box-shadow:0 0 2px rgba(0,0,0,.7);
    z-index:999999;
  }




/*
 *  About Me
*/
ul.check-list li{
  position:relative;
  padding-left:50px;
  min-height:30px;
}
  .check-list li i.fa{
    position:absolute;
    left:0;
    margin-right:0;
  }
