/* Editorial-style buttons */
a.button:not(header a):not(nav a),
button:not(header button):not(nav button),
input[type="submit"] {
  background: transparent;
  border: none;
  border-top: 1px solid #2B2A28;
  border-bottom: 1px solid #2B2A28;
  border-radius: 0;
  color: #2B2A28;

  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 400;
  font-size: 14px;

  padding: 20px 40px;
  text-align: center;
  text-decoration: none;

  transition: all 0.2s ease;
}

/* Hover state */
a.button:not(header a):not(nav a):hover,
button:not(header button):not(nav button):hover,
input[type="submit"]:hover {
  background: #6B635C;
  border-top-color: transparent;
  border-bottom-color: transparent;
  color: #FFFFFF;
  border-radius: 0;
}