.node-blog--banner {
  position: relative;
}

.node-blog--banner .field--name-field-image:before {
  content: "";
  position: absolute;
  background-color: rgba(0,0,0,.5);
  width: 100%;
  height: 100%;
}

.node-blog--banner .field--name-field-image img {
  height: 300px;
  object-fit: cover;
  width: 100%;
}

.node-blog--banner > span {
  position: absolute;
  z-index: 8;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  display: flex;
  width: 100%;
  justify-content: center;
  top: 35%;
  padding: 0 30px;
}

.node-blog--banner > span:before {
  content: "";
  display: block;
  height: 3px;
  margin: 1em 0;
  z-index: 99;
  position: absolute;
  top: 50%;
  background-color: hsla(0,0%,100%,.3);
  width: 50px;
}

.node-blog--body {
  width: 950px;
  margin: 30px auto;
  border-left: 1px solid #ccc;
  padding: 25px;
  border-right: 1px solid #ccc;
  box-shadow: 0 1px 3px -2px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
}

.node-blog-share {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  position: relative;
}

.node-blog-share > div a {
  width: 33px;
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #999;
  border-radius: 50%;
  margin: 0 2px;
}

.node-blog-share > div i {
  color: #999;
}

.node-blog-share:before {
  content: "";
  width: 30px;
  height: 3px;
  background: #999;
  position: absolute;
  top: -20px;
}

.share-fb:hover a {
  background: #3a589d !important;
  border-color: #3a589d;
}

.share-tw:hover a {
  background: #2478ba !important;
  border-color: #2478ba;
}

.share-mail:hover a {
  background: #111 !important;
  border-color: #111;
}

.share-pinterest:hover a {
  background: #cb2320 !important;
  border-color: #cb2320;
}

.share-linkedin:hover a {
  background: #0072b7 !important;
  border-color: #0072b7;
}

.node-blog-share > div:hover a i {
  color: #fff;
}

@media (max-width: 769px) {
  .node-blog--banner > span:before {
    display: none;
  }

  .node-blog--banner > span {
    font-size: 25px;
  }

  .node-blog--body {
    width: calc(100% - 40px);
  }

  .node-blog--body h1, 
  .node-blog--body h2 {
    font-size: 20px;
  }

  .node-blog--body h3 {
    font-size: 18px;
  }
}

@media (max-width: 769px) {
  .node-blog--body {
    padding: 15px;
  }

  .node-blog--body {
    width: calc(100% - 30px);
  }
}