/**
 * @file
 * Styles for pullquote module.
 */

.pullquote-container {
  position: relative;
}

.pullquote-quote {
  /*
  z-index:1;
  background: #E8E8E8;
  border: 1px solid #AAA;
  color: #333;
  float: right;
  font: italic 1.1em Georgia, "Times New Roman", Times, serif;
  line-height: 1.7em;
  margin: 1em 0 0.4em 1em;
  padding: 1em;
  width: 30%;
  */
  background-color: #f1f1f1;
  color: #212121;
  position: relative;
  z-index: 1;
  float: right;
  width: 50%;
  border: none;
  border-left: 1px dotted #205493;
  font: italic 100%/1.25em "Source Sans Pro",Helvetica,Arial,sans-serif;
  padding: 1.5em;
  margin: 0 0 0.5em 1em;
}

.pullquote-quote::first-letter {
  text-transform: uppercase;
}

.pullquote-quote.pullquote-left {
  float: left;
  margin-left: 0;
  margin-right: 1em;
}

/* inserts quotation marks around pullquoted text */
.pullquote-quote .pullquote-content:before {
  content: open-quote;
}

.pullquote-quote .pullquote-content:after {
  content: close-quote;
}

.pullquote-quote .attribution:before {
  content: "\2014";
}

.pullquote-quote .attribution {
  text-transform: uppercase;
  font-size: .8em;
  font-style: normal;
  float: right;
}

/* Adds a period at the end of every pullquote */
.pullquote.pullquote-processed.pullquote-quote:after {
  content:".";
}

/* Responsive fixes */
@media only screen and (max-width: 600px) {
  .pullquote-quote {
    float: none;
    width: 100%;
    border-left: none;
    margin: 0 0 1em 0;
    display: block;
  }
}