.quote-paragraph-wrapper {
  width: 100%;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
}

.quote-paragraph-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  max-width: 850px;
  width: 100%;
  flex-wrap: wrap;
}

.quote-image {
  flex: 0 0 180px;
  text-align: center;
}

.quote-image img {
  border-radius: 50%;
  width: 180px;
  height: 180px;
  object-fit: cover;
  
}

.quote-text-content {
  flex: 1;
  min-width: 300px;
}

.quote-text blockquote,
.quote-text {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 1.5rem;
  color: #000;
  quotes: "“" "”" "‘" "’";
  text-align: justify;
}

.quote-text blockquote::before {
  content: open-quote;
}
.quote-text blockquote::after {
  content: close-quote;
}

.quote-author {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.quote-name {
  font-weight: bold;
  font-size: 1.7rem;
  margin-bottom: 0.25rem;
}

.quote-title {
  color: #555;
  font-size: 1.3rem;
}

.quote-link {
  text-align: center;
}
    
.quote-link a {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border-color: var(--color-red);
  color: var(--color-red);
  border: 2px solid;
}

.quote-link a:hover {
  background-color: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}
