.blockquote-container {
    font-weight: 500;
    display: flex;
    position: relative;
    margin: 0 auto 1rem auto;
    overflow: hidden;
    flex-wrap: wrap;
    align-items: center;
    width: 70%;
}

.blockquote.open,
.blockquote.close {
    display: flex;
    margin: 1rem auto;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.blockquote hr {
    width: 100%;
    max-width: calc(50% - 3rem);
    border: none;
    margin: 0;
    height: 1px;
    color: #ccc;
    background-color: #ccc;
}

.blockquote-character {
    display: inline-block;
    position: relative;
    max-width: 3rem;
    overflow: hidden;
    padding: 0;
    margin: 0 1rem;
    flex-shrink: 0;
}

.blockquote-character svg {
    width: 100%;
    height: auto;
}

.blockquote-character svg .quote-fill {
    fill: #949494;
}

.blockquote-character.open {
    vertical-align: top;
}

.blockquote-character.close {
    vertical-align: bottom;
    transform: rotate(180deg);
}

.blockquote-content-holder {
  width: 80%;
  height: auto;
  margin: 0 auto;
}

.blockquote-content {
    display: block;
    position: relative;
    width: 100%;
    margin: 0 auto;
    font-size: 2.25rem;
    line-height: 2.75rem;
    font-weight: 500;
    font-style: italic;
}

.blockquote-content p {
    padding: 0;
    margin: 0 auto;
    width: fit-content;
}

.blockquote-content.author,
.blockquote-content.author p {
  font-weight: normal;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #717171;
  margin: unset;
  margin-top: 1.25rem;
  font-style: italic;
}

.blockquote-content.author-title,
.blockquote-content.author-title p {
  font-size: 1rem;
  color: #717171;
  line-height: 1.25rem;
  margin: unset;
  margin-top: 0.25rem;
}

.blockquote.excerpt {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.blockquote.excerpt.open {
    margin-bottom: 1rem;
}

.blockquote.excerpt.close {
    margin-top: 1rem;
}

.blockquote.excerpt hr {
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
}

.blockquote.with-background {
  max-width: 100%;
  background-attachment: fixed;
  background-position-x: center;
  background-position-y: center; 
  background-size: cover;
  margin-bottom: 1rem;
}
.blockquote.with-background .entry-element {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh;
}
.blockquote.with-background.fullscreen .entry-element {
  padding: 0;
  height: 110vh;
}
.blockquote.with-background .blockquote-container {
  width: 70%;
}
.blockquote.with-background::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: #00000026;
}

.high-contrast .blockquote hr,
.blockquote.with-background hr {
  color: #D7D5CB;
  background-color: #D7D5CB;
}
.high-contrast .blockquote .blockquote-character svg .quote-fill,
.blockquote.with-background .blockquote-character svg .quote-fill {
  fill: #D7D5CB;
}
.high-contrast .blockquote-content,
.blockquote.with-background .blockquote-content {
  color: #F9F6EE;
}
.high-contrast .blockquote-content.author,
.high-contrast .blockquote-content.author-title,
.blockquote.with-background .blockquote-content.author,
.blockquote.with-background .blockquote-content.author-title {
  color: #EAEAE6;
}


@media only screen and (max-width: 40rem) {
  .blockquote-content {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .blockquote-content.author,
  .blockquote-content.author p {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .blockquote-content.author-title,
  .blockquote-content.author-title p {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .blockquote-character {
    width: 2.5rem;
  }
}

@media only screen and (max-width: 30rem) {
  .blockquote-content {
    font-size: 1.675rem;
    line-height: 2rem;
  }

  .blockquote-content.author,
  .blockquote-content.author p {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .blockquote-content.author-title,
  .blockquote-content.author-title p {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .blockquote-content-holder {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }

  .blockquote.with-background {
    background-attachment: inherit;
  }
  
  .blockquote-character {
    width: 2rem;
  }
}