  :root{
    --max-width-body: 1200px;
  }

  .callout-quote{
    display: flex;
    flex-flow: row-reverse;
    position: relative;
    width: 90%;
    max-width: var(--width-normal);
    margin: 0 auto;
    padding: 1.5rem;
    justify-content: center;
    align-items: center;
    background-color: white;
  }

  .bg-quote-container{
    width:100%;
  }
  .bg-quote {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    
  }
  .quote-body{
    margin: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .quote-body-content{
    display: flex;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-end;
  }
  .quote-body-blurb{
    font-family: var(--utm-body-font);
    font-style: italic;
    font-size: min(max(2vh,2vw),38px);
    line-height: 1.5;
    width: 90%;
    margin:0 auto;
  }


  .quote-body-info > div{
    margin-top:1em;
    font-size: 20px;
    color:var(--utm-orange);
    font-weight: 600;
    width:90%;
  }
  .quote-body-info > div > div{
    font-weight: 400;
    font-size:16px;
    color: var(--utm-blue);

  }

  @media only screen and (max-width:900px) {
    .callout-quote{
      padding: .5rem;
      flex-flow: row wrap;
   
    }


  }
  @media only screen and (max-width:768px) {
    .bg-quote {

      aspect-ratio: 1 / 1;
    }
    
    .quote-body-blurb{
    
      width: 100%;
    }
  }