blockquote {
  margin: 2rem auto;
  padding: 1.5rem 2rem;
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}

blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #be830e;
}

blockquote::after {
  content: "\201C";
  font-size: 2rem;
  color: #be830e;
  font-weight: 700;
  position: absolute;
  top: -0.2rem;
  left: 20px;
  line-height: 1;
}

blockquote p {
  font-size: 1.4rem;
  font-family: "Public Sans", sans-serif;
  font-weight: 300;
  line-height: 1.1em;
  color: #2c2c2c;
  margin: 0;
  letter-spacing: 0.01em;
  position: relative;
}

blockquote p::after {
  content: "\201D";
  font-size: 2rem;
  color: #be830e;
  font-weight: 700;
  position: absolute;
  bottom: -1.3rem;
  right: -2rem;
  line-height: 1;
}

@media (max-width: 768px) {
  blockquote {
    margin: 1.5rem 1rem;
    padding: 1.25rem 1.5rem;
    max-width: calc(100% - 2rem);
  }
  
  blockquote::before {
    width: 3px;
  }
  
  blockquote::after {
    left: 15px;
    top: -0.1rem;
  }
  
  blockquote p::after {
    right: -1.5rem;
    bottom: -1.1rem;
  }
  
  blockquote p {
    font-size: 1.1rem;
  }
}