@charset "UTF-8";
/* ---------------------------------
-----  dimension variables --------
---------------------------------- */
/* ------  standard elements padding & margin  ------- */
/* spacing */
/**
**  Official Font sizes
------------------------------- */
/**
** Line-heights
------------------------------- */
/*
  Mixin to progressively-enhance :focus-visible, keeping :focus where not supported
  Add an arbitrary list of selectors into the arguments, and the styling in the block.
  I you pass no selectors to the mixin the parent ("ampersand") operator is used instead.

  There are two mixins:
  - focus-visible: a generic focus-visible, giving you "slots" to decide what to render for :focus, :focus reset, and :focus-visible
  - focus-visible-outline: a focus-visible, which only resets the outline. If you don't need more custom resets, use this one!

  Use focus-visible:
  The key thing here is checking which slot is being rendered.
  For example, you can reset box-shadow here, or anything else.

  @include focus-visible using ($slot) {
      @if $slot == focus {
          outline: 2px solid transparent;
          box-shadow: 0 0 0 4px blue;
      }
      @if $slot == focusReset {
          box-shadow: none;
      }
      @if $slot == focusVisible {
          box-shadow: 0 0 0 4px blue;
      }
  }

  Use focus-visible-outline:
  @include focus-visible-outline("button", "a[href]") {
      outline: 2px solid blue;
  }

  Resulting CSS (compressed):

  button:focus,
  a[href]:focus {
      outline: 2px solid blue;
  }

  button:focus:not(:focus-visible),
  a[href]:focus:not(:focus-visible) {
      outline: none;
  }
  button:focus-visible,
  a[href]:focus-visible {
      outline: 2px solid blue;
  }
*/
.ux-quote {
  display: block;
  position: relative;
  width: 100%;
  max-width: var(--ux-quote-max-width);
}

.ux-quote__container {
  position: relative;
  color: #fff;
  background-image: var(--ux-quote-background-image);
  padding: 15px;
  padding-left: 35px;
  z-index: 3;
  box-shadow: var(--ux-quote-box-shadow);
  display: flex;
  width: 95%;
}
@media only screen and (min-width: 768px) {
  .ux-quote__container {
    padding: 25px 5% 25px 9%;
  }
}
@media only screen and (min-width: 1024px) {
  .ux-quote__container {
    padding: 30px 10%;
  }
}
.ux-quote__container-image {
  flex: 0 0 auto;
  object-fit: cover;
  width: var(--ux-quote-image-width);
  height: var(--ux-quote-image-height);
  margin-right: 3%;
}
.ux-quote__container-text {
  line-height: var(--ux-quote-text-line-height);
  font-size: var(--ux-quote-text-font-size);
  padding-left: 20px;
}
@media only screen and (min-width: 768px) {
  .ux-quote__container-text {
    padding-left: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .ux-quote__container-text {
    padding: 30px 0 30px 55px;
  }
}
.ux-quote__container-text::before {
  display: inline-block;
  position: absolute;
  content: "»";
  font-weight: 700;
  font-size: 30px;
  margin-top: -2px;
  margin-left: -22px;
}
@media only screen and (min-width: 768px) {
  .ux-quote__container-text::before {
    font-size: 50px;
    margin-top: -5px;
    margin-left: -35px;
  }
}
@media only screen and (min-width: 1024px) {
  .ux-quote__container-text::before {
    font-size: 70px;
    margin-left: -55px;
  }
}

.ux-quote__source-container {
  position: relative;
  background-image: var(--ux-quote-source-container-background-image);
  z-index: 1;
  margin-top: -50px;
  padding: 60px 10px 10px 10%;
  left: 8.3333%;
  color: var(--ux-quote-source-container-color);
  font-size: var(--ux-quote-source-container-font-size);
}
@media only screen and (min-width: 768px) {
  .ux-quote__source-container {
    margin-top: -60px;
    padding-top: 80px;
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .ux-quote__source-container {
    margin-top: -80px;
    padding-top: 100px;
  }
}
.ux-quote__source-container--image {
  padding-left: 25%;
}