/* Standalone variables
========================================================================== */
/*
==========================================================================
    Mixins - typography - body
========================================================================== */
.c-quote-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}
.c-quote-block::before {
  content: "";
  width: 2px;
  height: 6rem;
  background-color: currentColor;
  margin-bottom: 2rem;
}
@media (min-width: 1025px) {
  .c-quote-block::before {
    margin-bottom: 4rem;
  }
}

.c-quote-block--alt::before {
  display: none;
}

.c-quote-block__cite {
  font-size: 32px;
  line-height: 1;
  font-weight: normal;
}
@media (min-width: 1025px) {
  .c-quote-block__cite {
    font-size: 48px;
    line-height: 1.333;
    font-weight: normal;
  }
}

.c-quote-block__arrow {
  display: flex;
}

.c-quote-block__arrow-img {
  fill: none;
  color: currentColor;
}

.c-quote-block__cite + .c-quote-block__arrow,
.c-quote-block__arrow + .c-quote-block__cite {
  margin-top: 2rem;
}
@media (min-width: 1025px) {
  .c-quote-block__cite + .c-quote-block__arrow,
.c-quote-block__arrow + .c-quote-block__cite {
    margin-top: 4rem;
  }
}
