/* Quote section */
.quote-section {
  margin: 20px 0 10px;
}
.seasonal-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-style: italic;
  color: var(--mulled-wine);
  text-align: center;
  margin: 80px auto;
  max-width: 650px;
  position: relative;
  padding: 0 60px;
}
.seasonal-quote::before,
.seasonal-quote::after {
  content: '"';
  position: absolute;
  font-size: 6rem;
  color: var(--harvest-gold);
  opacity: 0.4;
  font-family: "Cormorant Garamond", serif;
}
.seasonal-quote::before {
  top: -30px;
  left: 0;
}
.seasonal-quote::after {
  bottom: -50px;
  right: 0;
}
@media (max-width: 768px) {
  .seasonal-quote {
    font-size: 1.55rem;
    line-height: 2.1rem;
  }
  .seasonal-quote::before {
    left: 25px;
  }
  .seasonal-quote::after {
    right: 25px;
  }
}
