.wp-block-quote {
  position: relative;

  p {
    font-style: italic;
    font-size: 24px;
    color: rgb(71, 71, 71);
    font-weight: 400;
  }


  &.is-style-default {
    background-color: #FDFAA6;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 5px;

    cite {
      font-size: 11px;
      font-style: normal;
      color: rgb(71, 71, 71);
    }

    &::after {
      content: "";
      background-image: url(../images/quote.svg);
      background-repeat: no-repeat;
      display: block;
      position: absolute;
      top: 92%;
      width: 110px;
      height: 44px;
    }
  }

  &.is-style-large {
    padding: 20px 10px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    cite {
      align-self: end;
      font-size: 16px;
      font-weight: 700;
    }

    &::before {
      content: "\f10e";
      font-family: "Font Awesome 6 Pro";
      font-weight: 800;
      font-size: 50px;
      color: #F2685F;
    }
  }
}