/**
 * Gutenberg styles
 **/
 
.wp-block a {
  color: #14375c;
  transition:150ms linear;
  -webkit-transition:150ms linear;
  -moz-transition:150ms linear;
}
.wp-block a:hover {
  color:#8a6f43;
}
.wp-block a:focus {
  color: #8a6f43;
}
.wp-block p, 
.wp-block li {
  color:#292b2c;
  font-size: 1.2rem;
  line-height: 1.6;
}
.wp-block h1,
.wp-block h2,
.wp-block h3 {
  font-family:'trajan-pro-3', serif;
  color:#292b2c;
  text-transform:uppercase;
}
.wp-block .h1, 
.wp-block h1 {
  font-size: 3rem;
}
.wp-block .h2, 
.wp-block h2 {
  line-height: 1.2;
}
.wp-block h4, 
.wp-block h5 {
  font-family:'Lato', sans-serif;
  margin-bottom: 1rem;
  color:#292b2c;
}

.wp-block-button__link {
  font-family:'Lato', sans-serif;
  background-color: #14375c;
  font-weight: bold;
  padding: 0.75rem 2.5rem;
  color: white;
  display: inline-block;
  font-size: 1.4rem;
  border-radius: 0;
  line-height: 1.2;
  max-width: 400px;
  border: 0;
  margin-top: 1.5rem;
}
.wp-block-button {
  margin:2rem 0;
}

/*
 * Featured paragraph block
 */

.wp-block .featured-paragraph p,
.featured-paragraph p {
  font-size:1.4rem;
  color:#14375c;
  line-height:1.6;
  text-align:center;
  margin: 2.5rem 0 4rem;
  position:relative;
}
.wp-block .featured-paragraph p:after,
.featured-paragraph p:after {
  content: '';
  position: absolute;
  bottom: -2rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 30%;
  border-bottom:1px solid #14375c;
}