/**
 * Blockquote Markup
 *
    <figure>
      <blockquote cite="">
        <p></p>
      </blockquote>
      <figcaption>
        <cite>
          <small><a href=""></a></small>
        </cite>
      </figcaption>
    </figure>
 *
 * Extend this object into your markup.
 *
 */
/**
 * Pull Quotes Markup
 *
  <aside class="typl8-pull-quote">
    <blockquote>
      <p></p>
    </blockquote>
  </aside>
 *
 * Extend this object into your custom stylesheet.
 *
 */
.typl8-pull-quote {
  position: relative;
  padding: 1em;
}

.typl8-pull-quote:before,
.typl8-pull-quote:after {
  height: 1em;
  opacity: 0.5;
  position: absolute;
  font-size: 4em;
  color: #dc976e;
}

.typl8-pull-quote:before {
  content: "“";
  top: 0;
  left: 0;
}

.typl8-pull-quote:after {
  content: "”";
  bottom: 0;
  right: 0;
}


/* BArometer video in campaign page */

.cor-quote-text {
  --space: var(--space-s);
  display: grid;
  grid-template:
  "left links"
  "right quote"/1fr 1fr;
  padding: var(--space-s) 0;
  }
  
  .cor-quote-text .blockquote {
    font-size: var(--step--3);
    }
    
    
    
    .ec-cor-barometer-webstreaming__links {
    font-size: var(--step--3);
    }