/**
 * @file
/* Custom CSS for featured article */

.node-type-feature-article h2.title {
  text-align: center;
}
@media only screen and (max-width: 51rem) {
  .node-type-feature-article #page-title h2.title {
    margin-top: 1rem;
  }
}
body.node-type-feature-article .block .content.block-body {
  max-width: 54rem;
  margin-left: auto;
  margin-right: auto;
}

article {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}
.node-feature-article h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: "Roboto Slab", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.node-feature-article h3,
.node-feature-article h4,
.node-feature-article p,
.node-feature-article dl,
.node-feature-article ol,
.node-feature-article ul {
  max-width: 54rem;
  margin-left: auto;
  margin-right: auto;
}
.node-feature-article dl,
.node-feature-article ol,
.node-feature-article ul {
  max-width: 48rem;
  margin-left: 2rem;
  margin-bottom: 2rem;
}

h2.title, article .node-body {
  margin-left: 1rem;
  margin-right: 1rem;
}
@media only screen and (min-width: 76rem) { 
  h2.title, article .node-body {
    margin-left: auto;
    margin-right: auto;
  }
}

.node-feature-article h3 {
  text-align: center;
}
.node-feature-article p + h3, .node-feature-article p + h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: rgb(var(--gt-drk-gold));
}

/* Featured Article page styling */

/* styling for subtitle of featured article content type */
body.node-type-feature-article div.field.field-name-field-subtitle.field-type-text p {
  font-weight: 500 !important;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.node-feature-article blockquote {
  margin: 3rem 10%;
}
/* Note pullquote vs pull- due to font awesome class collision */
@media only screen and (min-width: 54rem) { 
  .node-feature-article blockquote {
    max-width: 30rem;
  }
  .node-feature-article blockquote.pullquote-left {
    float: left;
    margin-left: calc( (-50vw + 50%)/2);
  }
  .node-feature-article blockquote.pullquote-right {
    float: right;
    margin-right: calc( (-50vw + 50%)/2);
  }
}