/* Body */
a.button {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 2px;
  color: #fff;
  background: #c01f34;
  -webkit-box-shadow: inset 4px 0 0 0 rgba(50, 50, 50, 0.25);
  box-shadow: inset 4px 0 0 0 rgba(50, 50, 50, 0.25);
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

a.button:hover {
  box-shadow: inset 200px 0 0 0 rgba(50, 50, 50, 0.25);
}


/* Front Page */
#news .news-posted-on {
  display: none; /* Hides post author and comment count on front page */
}

/* Single Post */
.disclaimer {
  color: #888;
  font-size: 12px;
  margin-top: 10px;
}

/* Hide unwanted metadata */
.entry-meta .byline {
  display: none;
}